@charset "UTF-8";

.gothic {
	font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
.serif {
	font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}



p {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 3.3rem;
	margin-bottom: 3rem;
}

p:last-child {
	margin-bottom: 0;
}

@media (max-width:480px) {
	p {
		font-size: 1.6rem;
		line-height: 2.8rem;
	}
}



a {
	text-decoration: none;
}

sup {
	font-size: 70%;
	vertical-align: top;
	position: relative;
	top: -0.1em;
}



/* --------------- 改行 --------------- */

.t2 {
	margin-top: 5.5rem !important;
}

.t3 {
	margin-top: 7rem !important;
}

@media (max-width:768px) {
	.t2 {
		margin-top: 5.2rem !important;
	}

	.t3 {
		margin-top: 6.7rem !important;
	}

}

/* スマホのときは改行なし */
.br-pc {
	display: none;
}

@media (min-width:768px) {
	.br-pc {
		display: inline;
	}

}

/* スマホのときは改行あり */
.br-sp,.sp {
	display: none;
}

@media (max-width:768px) {
	.br-sp,.sp {
		display: inline;
	}

}




/* --------------- フォントサイズ、行間 --------------- */

.p20 {
	font-size: 2rem;
}

.p24 {
	font-size: 2.4rem;
}



strong {
	font-weight: bold;
}

.small {
	font-size: 80%;
}

.small2 {
	font-size: 90%;
}

.bold {
	font-weight: bold;
}

.light {
	font-size: 90%;
	line-height: 1.5;
}

.big {
	font-size: 130%;
	font-weight: bold;
}

.big2 {
	font-size: 140%;
	line-height: 1.7;
	font-weight: bold;
}

.big3 {
	font-size: 190%;
	line-height: 1.6;
	font-weight: bold;
}

.big-big {
	font-size: 4rem;
	font-weight: bold;
	line-height: 1.5;
}

@media (max-width:768px) {
	.big-big {
		font-size: 3.5rem;
	}

}

@media (max-width:480px) {
	.big {
		font-size: 120%;
	}

	.big2 {
		font-size: 130%;
	}

	.big3 {
		font-size: 180%;
	}

}


.line-height-12 {
	line-height: 1.2;
}

.line-height-13 {
	line-height: 1.3;
}

.line-height-14 {
	line-height: 1.4;
}

.line-height-15 {
	line-height: 1.5;
}


.txt-center {
	text-align: center;
}

.txt-right {
	text-align: right;
}


/* --------------- カラー --------------- */


.red {
	color: #d60b1d;
}

.black {
	color: #424242;
}

.yellow {
	color: #ffda0c;
}

.lightyellow {
	color: #fffb00;
}

.d-blue {
	color: #27261f;
}



/* --------------- アンダーライン --------------- */


.mkYL {
	background: linear-gradient(rgba(255, 255, 255, 0) 40%, #F7FD9B 70%);
}

.mkPN {
	background: linear-gradient(rgba(255, 255, 255, 0) 40%, #FBD4E6 70%);
}

.mkGR {
	background: linear-gradient(rgba(255, 255, 255, 0) 40%, #B5F8D9 70%);
}

.mkBL {
	background: linear-gradient(rgba(255, 255, 255, 0) 40%, #d5eafb 70%);
}

.keiko_yellow {
	background: linear-gradient(transparent 80%, #fff070 50%);
	font-weight: bold;
}

.keiko_red {
	background: linear-gradient(transparent 80%, #ff7070 10%);
	font-weight: bold;
}

.keiko_orange {
	background: linear-gradient(transparent 80%, #f0a27f 10%);
	font-weight: bold;
}

.keiko_blue {
	background: linear-gradient(transparent 80%, #d5eafb 10%);
	font-weight: bold;
}

.nami_blue {
	text-decoration: underline #6b90db wavy;
	text-underline-offset: 0.6rem;
}





/* --------------- 文字装飾 --------------- */

.shadow-w {
	text-shadow: 0px 0px 2px #ffffff;
}

.curning {
	font-feature-settings: "palt";
}


.point-blue:before {
	content: "";
	display: inline-block;
	width: 60px;
	height: 60px;
	background-image: url(./icon/icon_point_3.png);
	background-size: contain;
	vertical-align: middle;
}

.point-red:before {
	content: "";
	display: inline-block;
	width: 60px;
	height: 60px;
	background-image: url(./icon/icon_point_5.png);
	background-size: contain;
	vertical-align: middle;
}



/* --------------- 見出しタグ --------------- */
.h2,
.h2line {
	font-size: 4.5rem;     /*  font-weight: 900;*/
	font-feature-settings: "palt";
	text-align: center;
	line-height: 1.2;
	margin-bottom: 80px;
	margin-top: 120px;
}

.h2line {
	position: relative;
}

.h2line:before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -10px;     /*下線の上下位置調整*/
	display: inline-block;
	width: 800px;     /*下線の幅*/
	max-width: 90%;
	height: 2px;     /*下線の太さ*/
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translate(-50%);     /*位置調整*/
	background-color: #666666;     /*下線の色*/
}

.h2 .pt {

	/*color: #bbb;*/
	font-size: 75%;
}

.h3 {
	position: relative;
	padding: 26px 30px 31px;
	text-align: center;
	color: #231c1a;
	font-size: 3.8rem;
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
	line-height: 1.6;
	font-feature-settings: "palt";
	margin-bottom: 50px;
	margin-top: 70px;
}

.h3::before,
.h3::after {
	position: absolute;
	left: 0;
	content: "";
	width: 100%;
	height: 6px;
	box-sizing: border-box;
}

.h3::before {
	top: 0;
	border-top: 2px solid #231c1a;
	border-bottom: 1px solid #231c1a;
}

.h3::after {
	bottom: 0;
	border-top: 1px solid #231c1a;
	border-bottom: 2px solid #231c1a;
}

.h3line {
	font-size: 4.0rem;     /*  font-weight: 900;*/
	font-feature-settings: "palt";
	text-align: center;
	line-height: 1.2;
	margin-bottom: 80px;
	margin-top: 120px;
	padding: 2rem 0;
	border: 1px solid #454545;
	border-width: 1px 0;
}

.h4 {
	color: #ffebbe;
	padding: 0.75em 0;
	border-top: 1px solid #ffebbe;
	border-bottom: 1px solid #ffebbe;
	font-size: 4rem;
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
	line-height: 1.6;
	font-feature-settings: "palt";
	margin-bottom: 3rem;
	text-align: center;
}

.h4line {
	font-size: 2.2rem;
	color: #454545;
	margin-bottom: 80px;
	margin-top: 120px;
	position: relative;
	border-bottom: 3px solid #ddd;
	padding: 10px 0;
}

.h4line:before {
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 20%;
	height: 3px;
	content: '';
	background: #01406b;
}

.h5 {
	font-size: 3.0rem;
	font-feature-settings: "palt";
	text-align: center;
	line-height: 1.2;
	margin-bottom: 20px;
}

.h5line {
	font-size: 2.6rem;
	color: #d60b1d;
	margin-bottom: 80px;
	margin-top: 120px;
	background: linear-gradient(transparent 80%, #e2e1e1 80%)
}

.h51 {
	/*font-size: 1.1rem;*/
	padding: 6px 0;
	border-bottom: 4px solid #3391cf81;
	position: relative;
}

.h51:before,
h51:after {
	content: "";
	display: block;
	height: 4px;
	position: absolute;
	bottom: -4px;
}

.h51:before {
	width: 20%;
	left: 8%;
	background: #3391cf;
}

.h51:after {
	width: 30%;
	left: 12%;
	background: #3391cfe2;
}


.h6 {
	position: relative;
	margin: 100px auto;
	font-size: 24px;
	line-height: 24px;
	white-space: nowrap;
	overflow: hidden;
}

.h6::after {
	content: "";
	display: inline-block;
	position: relative;
	width: 100%;
	height: 2px;
	left: 10px;
	bottom: 10px;
	background-color: #01406b;
}

@media (max-width:768px) {
	.h3 {
		font-size: 2.4rem;
		padding: 25px 15px;
		margin-bottom: 35px;
		margin-top: 55px;
	}

	.h4 {
		font-size: 2.5rem;
		padding: 20px 15px;
		background-size: 100px;
	}

	.h5 {
		font-size: 2.0rem;
	}

}

@media (max-width:480px) {
	.h2,
	.h2line {
		font-size: 2.4rem;
		margin-top: 80px;
	}

	.h3line {
		font-size: 2.4rem;
		margin-top: 80px;
	}

}




/* --------------- 段落位置 --------------- */
.center-block {
	display: block;
	margin: 0 auto;
}


.mb15 {
	margin-bottom: 1.5rem;
	margin-top: 1.5rem;
}

.mb30 {
	margin-bottom: 3rem;
}

.mb50 {
	margin-top: 5rem;
	margin-bottom: 5rem;
}

.mb100 {
	margin-top: 10rem;
	margin-bottom: 10rem;
}



.mt30 {
	margin-top: 3rem;
}

.mt50 {
	margin-top: 5rem;
}

@media (min-width:768px) {
	.mt-30 {
		margin-top: -3rem;
	}

}

.mr10 {
	margin-right: 10px;
}

@media (max-width:480px) {
	.mr10 {
		margin-right: 0;
	}

}





/* --------------- ボックススタイル --------------- */

.txt-box {
	padding: 0 50px;
}

@media (max-width:480px) {
	.txt-box {
		padding: 0 0px;
	}

}

blockquote {
	position: relative;
	padding: 25px 30px 25px 37px;
	box-sizing: border-box;
	/*font-style: italic;*/
	color: #464646;
	background: #e0e0e0;
	border-left: 0;
	margin-bottom: 30px;
	/*font-size: 2.2rem;
	line-height: 1.6;*/
}

blockquote:before {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	vertical-align: middle;
	content: "\f10d";
	font-family: FontAwesome;
	color: #e0e0e0;
	font-size: 22px;
	line-height: 1;
	z-index: 2;
}

blockquote:after {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	border-width: 0 0 40px 40px;
	border-style: solid;
	border-color: transparent #ffffff;
}

blockquote p {
	position: relative;
	padding: 0;
	margin: 10px 0;
	z-index: 3;
	line-height: 1.7;
	font-size: 20px !important;
	font-family: serif;
}

@media (max-width:768px) {
		blockquote {
		font-size: 1.8rem;
	}

	blockquote p {
		font-size: 16px !important;
	}

}

blockquote cite {
	display: block;
	text-align: right;
	color: #888888;
	font-size: 0.9em;
}





.kakomi-box {
	position: relative;
	padding: 3.5rem 1rem 1rem;
	background-color: #ffffff;
	outline: 2px solid #ddd;
	outline-offset: -0.5rem;
}

.kakomi-box::before {
	position: absolute;
	top: 1rem;
	left: 0;
	width: 100%;
	padding: 0.5rem 0;
	background-color: rgb(1, 64, 107, .7);
	color: white;
	text-align: center;
	content: attr(data-title);
}

.kakomi-box p {
	color: #333;
	line-height: 1.5;
}

.kakomi-box2 {
	position: relative;
	margin: 30px auto;
	padding: 20px;
	box-shadow: 0 0 15px #ccc;
}

.kakomi-box2::before {
	position: absolute;
	top: 0;
	right: 0;
	height: 25px;
	width: 7px;
	background-color: #01406b;
	content: '';
}

.kakomi-box2 p {
	line-height: 1.5;
}

.kakomi-box3 {
	position: relative;
}

.kakomi-box3-title {
	position: absolute;
	top: -1.5rem;
	left: 50%;
	transform: translateX(-50%);
	display: inline-block;
	line-height: 1;
	padding: 1rem 2rem;
	margin: 0;
	border-radius: 1rem;
	color: #ffffff;
	background-color: #01406b;
}

.kakomi-box3-body {
	padding: 3rem 2rem 1rem 2rem;
	margin: 0;
	border: 2px solid #01406b;
	border-radius: 1rem;
	background-color: #fff;
}

.kakomi-box4 {
	margin: 20px auto;
	padding: 0 1rem;
	border-left: 2px solid #01406b;
	background: #ffffff;
}

.kakomi-box4-body {
	padding: 2rem;
	margin: 0;
}

.kotoba {
	font-family: 'Hina Mincho';
	margin: 2em auto;
	padding: 2em;     /*内側余白*/
	border: 2px solid #eee;
	position: relative;
	z-index: 0;
	max-width: 80%;
}

.kotoba:before {
	border-top: 2px solid #c6d4c6;
	border-left: 2px solid #c6d4c6;
	content: '';
	display: block;
	position: absolute;
	top: -2px;
	left: -2px;
	width: 30px;
	height: 30px;
	z-index: 1;
}

.kotoba:after {
	background-color: #f9f8f868;     /*ずらしたボックスの背景色*/
	border: none;
	content: '';
	position: absolute;     /*配置（ここを動かす）*/
	top: 7px;     /*上から7pxずらす*/
	left: 7px;     /*左から7pxずらす*/
	width: 100%;
	height: 100%;
	z-index: -1;
}

@media (max-width:480px) {
	.kotoba {
		padding: 1em;         /*内側余白*/
	}
}




.reviewBox {
	width: 100%;
	margin: 0 auto 30px;
	padding: 0 0px;
	background-color: #fff;
	display: block;
	overflow: hidden;
}

.reviewBox .reviewBox-inner {
	border: 1px solid #423d2a;
	width: 100%;
	padding: 25px 5px 40px 20px;
	overflow: hidden;
}

.reviewBox .reviewBox-inner .left {
	float: left;
	width: 150px;
}

.reviewBox .reviewBox-inner .left img {
	width: 100%;
}

.reviewBox .reviewBox-inner .right {
	float: right;
	width: 100%;
	margin-left: -150px;
}

.reviewBox .reviewBox-inner .right .right-inner {
	margin-left: 150px;
	padding-left: 20px;
	padding-right: 20px;
}

.reviewBox .reviewBox-inner .right .right-inner img {
	width: 80%;
	display: block;
	margin: 0 auto;
}

.reviewBox .reviewBox-inner .right .right-inner h3 {
	width: 100%;
	margin: 0 auto 20px;
	padding: 10px 15px;
	text-align: left;
	background-color: #3c351b;
	color: #fff;
	font-size: 1.2em;
	border-radius: 3px;
}

.reviewBox .reviewBox-inner .right .right-inner p {
	padding-left: 0;
	padding-right: 0;
	font-size: 1.6rem;
}

@media (max-width:768px) {
	.reviewbox_p {
		padding: 0 12px;
	}

	.reviewBox {
		padding: 0;
		margin-bottom: 20px;
	}

	.reviewBox .reviewBox-inner {
		padding: 10px 10px 20px;
	}

	.reviewBox .reviewBox-inner .right {
		float: none;
		width: 100%;
		margin-left: 0;
	}

	.reviewBox .reviewBox-inner .right .right-inner {
		margin-left: 0;
		padding-left: 0;
		padding-right: 0;
	}

	.reviewBox .reviewBox-inner .right .right-inner h3 {
		width: 100%;
		margin: 0 auto 15px;
		padding: 10px 15px;
		font-size: 1.1em;
	}

	.reviewBox .reviewBox-inner .right .right-inner img {
		width: 50%;
	}

	.reviewBox .reviewBox-inner .right .right-inner p {
		margin-top: 18px;
		padding-left: 0;
		padding-right: 0;
		font-size: 1.4rem;
	}

}





.profileBox .profile_img {
	float: right;
	margin-left: 10px;
}

.profileBox .profileDetail {
	padding: 50px 45px;
}

.profileBox p {
	padding: 0;
}

.profileBox h3 {
	font-weight: bold;
}

.profileBox h4 {
	border-left: 5px solid #000;
	padding: 5px 0px 5px 15px;
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 30px;
}

.profileBox h4 .yomi {
	font-size: 20px;
}

.profileBox h5 {
	font-weight: bold;
}

@media only screen and (max-width:480px) {
	.profileBox {
		width: 100%;
		margin: 0 0 30px;
	}

	.profileBox .profileInner {
		width: 100%;
		border: 1px solid #dcdcdc;
			padding: 5px;
	}

	.profileBox .profileInner h3 {
		font-size: 1.8rem;
	}

	.profileBox .profile_img {
		float: right;
	}

	.profileBox .profileDetail {
		padding: 30px 20px;
	}

	.profileBox p {
		padding: 0;
	}

	.profileBox h4 {
		font-size: 28px;
		font-weight: bold;
	}

	.profileBox h4 .yomi {
		font-size: 18px;
	}

	.profileBox h5 {
		font-weight: bold;
	}

}





/* --------------- フレーム --------------- */

.embed-responsive {
	position: relative;
	display: block;
	height: 0;
	padding: 0;
	overflow: hidden;
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	border: 0;
}

.embed-responsive-16by9 {
	padding-bottom: 56.25%;
}

.embed-responsive-4by3 {
	padding-bottom: 75%;
}



.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.video-container iframe,
.video-container video {
	position: absolute;
	top: 0;
	left: 0;
	width: 98%;
	height: 98%;
	background-color: #363636;     /*background-color: #222222;*/
	background-image: -moz-linear-gradient(top, #444444, #222222);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));
	background-image: -webkit-linear-gradient(top, #444444, #222222);
	background-image: -o-linear-gradient(top, #444444, #222222);
	background-image: linear-gradient(to bottom, #444444, #222222);
	background-repeat: repeat-x;
	border: 5px solid #cccccc;
	border-color: #222222 #222222 #000000;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);     /*zoom: 1;*/
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

