/* ------------------------------
 見出し&テキスト
------------------------------ */
/*-- CONTENTSTOP & CONTENTS --*/
.headeringTop h1,
.headering h1 {
	display: flex;
	font-size: 4.5rem;
	font-weight: bold;
	text-align: center;
    line-height: 1.3;
    justify-content: center;
    flex-direction: column;
}
.headeringTop h1::after, 
.headering h1::after {
	content: "";
	display: block;
	width: 60px;
	height: 6px;
	background-color: #f8b500;
	margin: 10px auto 0;
}
/*-- CONTENTSTOP --*/
.headeringTop h1 {	
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
	color: #fff;
	letter-spacing: 0.2em;
}
/*-- CONTENTS --*/
.headering h1 {
	color: #333333;
	letter-spacing: 0.2em;
	margin-bottom: 40px;
}
/*-- H2 --*/
.contentsTop h2,
.contents h2 {
	position: relative;
	display: block;
	font-size: 3.6rem;
	font-weight: bold;
	text-align: center;
	color: #333333;
	padding-bottom: 14px;
	margin-bottom: 60px;
}
.contentsTop h2 span,
.contents h2 span {
	display: block;
	font-size: 1.6rem;
	font-weight: 600;
	text-align: center;
	font-family: 'Inter', sans-serif;
	color: #9a9d9e;
}
.contentsTop h2::after,
.contents h2::after {
	content: "";
	position: absolute;
	display: block;
	width: 35px;
	height: 4px;
	background-color: #f8b500;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
/*-- H3 --*/
.contentsTop h3,
.contents h3 {
	position: relative;
	font-size: 2.5rem;
	font-weight: bold;
	line-height: 1.2;
	padding-bottom: 15px;
	margin-bottom: 30px;
	border-bottom: 2px solid #494442;
}
.contentsTop h3::before,
.contents h3::before {
	content: "";
	position: absolute;
	display: block;
	width: 30px;
	height: 2px;
	left: 0;
	bottom: -2px;
	background-color: #f8b500;
}
/*-- H4 --*/
.contentsTop h4,
.contents h4 {
	position: relative;
	font-size: 2.1rem;
	font-weight: bold;
	line-height: 1.4;
	text-align: center;
	padding-bottom: 15px;
	margin-bottom: 30px;
}
.contentsTop h4::before,
.contents h4::before {
	content: "";
	position: absolute;
	display: block;
	width: 28px;
	height: 4px;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #f8b500;
	margin: auto;
}
/*-- H5 --*/
.contentsTop h5,
.contents h5 {
	font-size: 2.0rem;
	font-weight: bold;
	text-align: left;
	margin-bottom: 10px;
}
/* ----------------------
 スマホ用コード
---------------------- */
@media screen and (max-width: 767px) {
	/*-- CONTENTSTOP & CONTENTS --*/
	.headeringTop h1,
	.headering h1 {
		font-size: 2.8rem;
	}
	.headeringTop h1::after, 
	.headering h1::after {
		width: 40px;
		height: 4px;
		margin-top: 5px;
	}
	/*-- CONTENTS --*/
	.headering h1 {
		margin-bottom: 25px;
	}
	/*-- H2 --*/
	.contentsTop h2,
	.contents h2 {
		font-size: 2.2rem;
		padding-bottom: 8px;
		margin-bottom: 35px;
	}
	.contentsTop h2 span,
	.contents h2 span {
		font-size: 1.4rem;
	}
	.contentsTop h2::after,
	.contents h2::after {
		width: 30px;
		height: 4px;
	}
	/*-- H3 --*/
	.contentsTop h3,
	.contents h3 {
		font-size: 2.2rem;
	}
	/*-- H4 --*/
	.contentsTop h4,
	.contents h4 {
		margin-bottom: 15px;
	}
}

/* ------------------------------
 ボックス
------------------------------ */
/* -- 横並びボックス（flexbox） --- */
.flexBox {
	display: flex !important;
	flex-flow: row wrap;
}
.flexBox::after {
	display: none;
}
.flexBox > * {
	width: 100%;
}
/* -- 横並びボックス（flexbox） センター揃え --- */
.flexBox.fb-tac {
	justify-content: center;
}
/* -- 横並びボックス（flexbox） 縦センター揃え --- */
.flexBox.fb-vac {
	align-items: center;
}
/* -- 横並びボックス（flexbox） 縦下揃え --- */
.flexBox.fb-vab {
	align-items: flex-end;
}
/* -- 横並びボックス（flexbox） 左右別れ --- */
.flexBox.fb-btw {
	justify-content: space-between;
}
/* -- 横並びボックス（flexbox） 左詰め --- */
.flexBox.fb-fst {
	justify-content: flex-start;
}
/* -- flex-flow（flexbox） コラム --- */
.ff-clm > div {
	flex-flow: column;
}

/* ------------------------------
 横幅グリッド PC用限定CSS
------------------------------ */
@media print, screen and (min-width: 768px) {
	/* -- 50% --- */
	.w50p {
		width: 50%;
	}

	/* -- 1/2 --- */
	.w546 {
		width: 546px;
	}
	.w1-2 {
		width: 47.895%;
	}
	.fl.w546 {
		margin-right: 48px;
	}
	.fr.w546 {
		/* margin-left: 48px; */
		margin-left: 0;
	}
	.fl.w1-2 {
		margin-right: 4.211%;
	}
	.fr.w1-2 {
		/* margin-left: 4.211%; */
		margin-left: 0;
	}

	/* -- サイドナビ有 1/2 --- */
	.w405 {
		width: 405px;
	}

	/* -- 1/3 --- */
	.w350 {
	    width: 350px;
	}
	.w1-3 {
	    width: 30.702%;
	}
	/* -- 2/3 --- */
	.w745 {
	    width: 745px;
	}
	.w2-3 {
	    width: 65.351%;
	}
	.fl.w350, .fl.w745 {
		margin-right: 45px;
	}
	.fr.w350, .fr.w745 {
		/* margin-left: 45px; */
		margin-left: 0;
	}
	.fl.w1-3, .fl.w2-3 {
		margin-right: 3.947%;
	}
	.fr.w1-3, .fr.w2-3 {
		/* margin-left: 3.947%; */
		margin-left: 0;
	}

	/* -- 1/4 --- */
	.w258 {
		width: 258px;
	}
	.w1-4 {
		width: 22.632%;
	}
	/* -- 3/4 --- */
	.w846{
		width: 846px !important;
	}
	.w3-4 {
		width: 74.211%;
	}
	.fl.w258, .fl.w846, .fl.w552 {
		margin-right: 36px;
	}
	.fr.w258, .fr.w846 {
		/* margin-left: 36px; */
		margin-left: 0;
	}
	.fl.w1-4, .fl.w3-4 {
		margin-right: 3.159%;
	}
	.fr.w1-4, .fr.w3-4 {
		/* margin-left: 3.159%; */
		margin-left: 0;
	}

	/* -- 1/5 --- */
	.w208{
		width: 208px;
	}
	.w1-5 {
		width: 18.246%;
	}
	.fl.w208{
		margin-right: 25px;
	}
	.fr.w208 {
		/* margin-left: 25px; */
		margin-left: 0;
	}
	.fl.w1-5 {
		margin-right: 2.194%;
	}
	.fr.w1-5 {
		/* margin-left: 2.194%; */
		margin-left: 0;
	}
	
	/* -- 3/5 --- */
	.w3-5 {
		width: 59.123%;
	}
	/* -- 4/5 --- */
	.w4-5 {
		width: 79.562%;
	}
	
	/* -- その他 --- */
	.w780{
		width: 780px;
	}
	.w290{
		width: 290px;
	}
	.wide {
		width: 100%;
	}
	.wide:not(.flexBox) > * {
		width: 1140px;
		margin-left: auto;
		margin-right: auto;
	}
	
	/* -- 横並びボックス（flexbox） --- */
	.flexBox.nowide > * {
		width: auto;
	}
	/* flexbox 1/2 */
	.flexBox .w546:not(:nth-of-type(2n)),
	.flexBox .w1-2:not(:nth-of-type(2n)) {
		margin-right: 4.211%;
	}
	/* flexbox 1/2 order使用時 */
	.flexBox .w546.order2,
	.flexBox .w1-2.order2 {
		margin-right: 0;
	}
	.flexBox .w546.order1,
	.flexBox .w546.order3,
	.flexBox .w1-2.order1,
	.flexBox .w1-2.order3 {
		margin-right: 4.211%;
	}
	
	/* flexbox 1/3 */
	.flexBox .w1-3:not(:nth-of-type(3n)) {
		margin-right: 3.947%;
	}
	/* flexbox 1/4 */
	.flexBox .w258:not(:nth-of-type(4n)),
	.flexBox .w1-4:not(:nth-of-type(4n)) {
		margin-right: 3.159%;
	}
	/* flexbox 1/5 */
	.flexBox .w1-5:not(:nth-of-type(5n)),
	.flexBox .w208:not(:nth-of-type(5n)) {
		margin-right: 2.194%;
	}
	/* -- 横並びボックス（flexbox） 改行させない --- */
	.flexBox.fb-nowrap {
		flex-flow: nowrap;
	}
	/* -- 横並びボックス（flexbox） センター揃え --- */
	.flexBox.pc_fb-tac {
		justify-content: center;
	}
	/* -- 横並びボックス（flexbox） 縦センター揃え --- */
	.flexBox.pc_fb-vac {
		align-items: center;
	}
	/* -- 横並びボックス（flexbox） 左右別れ --- */
	.flexBox.pc_fb-btw {
		justify-content: space-between;
	}

	/* flexbox 順番 */
	.order1 {
		order: 1;
	}
	.order2 {
		order: 2;
	}
	.order3 {
		order: 3;
	}
	.order4 {
		order: 4;
	}
}
/* ----------------------
 スマホ用コード
---------------------- */
@media screen and (max-width: 767px) {
	/* -- 横並びボックス（flexbox） --- */
	/* -- 1/4 --- */
	/* -- 1/5 --- */
	.w1-5,
	.w208 {
		width: 49%;
	}
	.w4-5 + .w208,
	.w4-5 + .w1-5 {
		width: 100%;
	}
	.w1-5.fl,
	.w208.fl {
		float: left !important;
		margin-right: 2%;
	}
	.w1-5.fr,
	.w208.fr {
		float: right !important;
	}
	
	/* flexbox 1/5 */
	.flexBox .w1-5:not(:nth-child(2n)),
	.flexBox .w208:not(:nth-child(2n)),
	.sp_mr2 {
		margin-right: 2%;
	}
	/* -- 横並びボックス（flexbox） センター揃え --- */
	.flexBox.sp_fb-tac {
		justify-content: center;
	}
	/* -- 横並びボックス（flexbox） 縦センター揃え --- */
	.flexBox.sp_fb-vac {
		align-items: center;
	}
	/* -- 横並びボックス（flexbox） 左右別れ --- */
	.flexBox.sp_fb-btw {
		justify-content: space-between;
	}
	
	/* -- 横幅100％ --- */
	.w1-5.sp100, 
	.w208.sp100 {
		width: 100%;
		margin-right: 0 !important;
		float: none !important;
	}
}
/* ------------------------------
 リスト
------------------------------ */
/* ノーマルリスト */
.list li {
	padding-left: 15px;
	position: relative;
}
.list li:before {
	content: "";
	width: 8px;
    height: 8px;
    display: block;
    border-radius: 100%;
	background-color: #fae051;
	position: absolute;
	left: 0;
	top: .6em;
}
/*横並び*/
.inline li {
	display: inline-block;
}
.inline li:not(:last-child) {
	margin-right: 10px;
}

/* ------------------------------
 背景色
------------------------------ */
.colorBg {
	background: #E6EAED;
}
.contents .colorBg {
	padding: 120px 0;
}
.contents .colorBg:last-child {
	margin-bottom: -120px;
}
/* ----------------------
 スマホ用コード
---------------------- */
@media screen and (max-width: 767px) {
	.contents .colorBg {
		padding: 60px 0;
	}
	.contents .colorBg:last-child {
		margin-bottom: -50px;
	}
}
/* ------------------------------
 アイコン
------------------------------ */
/* -- blank -- */
a.icon-blank,
.icon-blank a {
	display:inline-block;
}
a.icon-blank:after,
.icon-blank a:after {
	content:" ";
	display:inline-block;
	width: 20px;
	height: 20px;
	vertical-align:middle;
	margin-left: 5px;
	background: url('../img/icon_circle_blank.svg') no-repeat;
}

/* ------------------------------
 ボタン
------------------------------ */
.btn a,
a .btn {
	position: relative;
	display: inline-block; 
	min-width: 190px;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	color: #333;
	background-color: #f9d826;
	border-radius: 22px;   
    padding: 5px 15px;
	-webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.btn a::after,
a .btn::after {
	content: "";
	position: absolute;
	display: inline-block;
	width: 10px;
	height: 10px;
	border-top: 2px solid #333;
	border-right: 2px solid #333;
	transform: rotate(45deg);
	right: 16px;
	top: 0;
	bottom: 0;
	margin: auto;
}
/*英語*/
.btn.en a,
a .btn.en {
	font-size: 1.5rem;
	font-weight: 600;
	font-family: 'Inter', sans-serif;
	letter-spacing: -0.02em;
	padding: 10px;
}
/* -- blank -- */
a.icon-blank.btn::after,
.icon-blank.btn a::after {
	width: 20px;
	height: 20px;
	border-color: rgb(0,0,0,0);
	transform: rotate(0deg);
}
/* ------------------------------
 PC用限定CSS
------------------------------ */
@media print, screen and (min-width: 768px) {
	.btn a:hover,
	.btn a:focus,
	a:hover .btn,
	a:focus .btn {
		opacity: .8;
	}
}


/* ------------------------------
 ポップアップイメージ
------------------------------ */
img.btnClose {
	width: 45px;
	height: 45px;
}
.btnPrev img,
.btnNext img {
	width: 27px;
	height: 50px;
}

/* ------------------------------
 モーダル
------------------------------ */
body.modal-enable {
	position: fixed;
	overflow: scroll;
}

.modal-content {
	position: relative !important;
	display: none;
	width: 720px !important;
	padding: 40px;
	background: #fff;
	overflow: visible;
}

.modal-close {
	display: block;
	position: fixed;
	top: 30px;
	right: 45px;
	width: 45px;
	height: 45px;
	line-height: 45px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	z-index: 11000;
	background: url(../img/modal-close_white.png) no-repeat 0 0 / 45px 45px;
}
.modal-close span {
	visibility: hidden;
}
.modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;/*for old Safari*/
	height: 100vh;
	background-color: rgba(26,26,26,0.9);
	z-index: 11000;
/*	overflow: scroll;*/
	overflow-y: scroll;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
}
.modal-container {
	position: relative;
	text-align: left;
	max-width: 100%;
	left: 0;
	right: 0;
	margin: auto;
	height: 100%;
}
.modal-open:hover {
    cursor: pointer;
}
.modal-close:hover {
	cursor: pointer;
}
.pop-content {
	width: 900px ;
	background: #fff;
    position: relative !important;
	overflow: visible;
	margin-bottom: 40px !important;
	border-radius: 12px;
}
.pop-content .text {
	padding: 45px;
}
/* ----------------------
 スマホ用コード
---------------------- */
@media screen and (max-width: 900px) {
	.pop-content {
		width: 90% !important;
	}
}
@media screen and (max-width: 767px) {

	body.modal-enable {
		overflow: hidden;
	}

	.modal-content {
		width: 90% !important;
		padding: 20px;
		margin: 0 !important;
	}
	.modal-close {
		position: absolute;
		top: 20px;
		right: 20px;
		width: 30px;
		height: 30px;
		line-height: 30px;
		background: url(../img/modal-close_white.png) no-repeat 0 0 / 30px 30px;
	}
	.pop-content {
		width: 90%;
		margin-bottom: 120px !important;
	}
	.pop-content .text {
		padding: 5%;
	}
}
/* ------------------------------
 画像付きリンク
------------------------------ */
.Links a {
    text-decoration: none;
}
.Links a img {
    margin-bottom: 10px;
	border-radius: 10px;
}
.Links a p {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: #333333;
}
.Links a p::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('../img/icon_arrow.svg') no-repeat ;
    vertical-align: text-top;
    margin-top: 2px;
    margin-left: 10px;
}
.Links a[target="_blank"] p::after {
    background: url('../img/icon_circle_blank.svg') no-repeat;
}
/* ------------------------------
 角丸
------------------------------ */
.r10 {
	border-radius: 10px;
}