@charset "utf-8";
.cont_h2--txt:first-letter{
	color: var(--color-subyellow);
}

/*-----------------------------------------------
 * GUIDE
-------------------------------------------------*/
.guideContentIn{
	width: 100%;
	max-width: 1920px;
	padding: 0 min(calc(160 / var(--vw-min) * 100vw), calc(160px * var(--max-percent)));
	margin: 0 auto;
}
.guideContentIn__cont{
	width: 100%;
}

@media screen and (max-width:768px){
	.guideContentIn{
		padding-top: calc(96 / var(--vw-min)* 100vw);
        padding-left: 6.4%;
        padding-right: 6.4%;
	}
	.guideContent{
		padding-bottom: calc(48 / var(--vw-min) * 100vw);
	}
	.guideContentIn{
		flex-direction: column;
	}
}


.guideArea{
	width: 100%;
	color: #FFF;
	padding: 80px 0 40px;
	position: relative;
}

.guideAreaCont{
	display: block;
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}
.guideAreaContIn{
	display: block;
	width: 100%;
	padding: 0 9.091%;/* 0 80 */
}

.newsArea .cont_h2{
	color: #000;
}
.guideArea .cont_h2--txt:first-letter{
	color: var(--color-yellow);
}
.guideArea .cont_h2--line{
	background-color: #000;
}


.guideAreaContent{
	width: 100%;
	padding-top: 36px;
}

@media screen and (max-width:768px){
	.guideArea{
		width: 100%;
		max-width: 100%;
		padding:0;
	}
	.guideAreaCont{
		width: 100%;
		max-width: 100%;
		padding-left: 0;
	}
	.guideAreaContIn{
		padding: 0 6.4%;/* 0 48 */
	}
	.guideAreaContent{
		padding-top: calc(48 / var(--vw-min) * 100vw);
	}
}

.indent{
	display: inline-block;
	padding-left: 1em;
	text-indent: -1em;
}
p.indent{
	display: block;
}



/**
* LOADED ANIMATION
**/
.guideAreaContent{
	opacity: 0;
	transition: opacity .4s ease;
}
.is-ani .guideAreaContent{
	opacity: 1;
	transition-delay: .6s;
}




/*-----------------------------------------------
 * GUIDE
-------------------------------------------------*/
/**
* HEAD
**/
.guideHead{
	width: 100%;
	font-weight: 700;
	text-align: center;
	padding-bottom: 24px;
}
.guideHead_title{
	font-size: 32px;
	line-height: 1.5;
	padding-bottom: 20px;
	font-weight: 700;
}
.guideHead_text{
	font-size: 20px;
	line-height: 2;
}
.guideHead_caution{
	line-height: 2;
	text-align: left;
	font-weight: 700;
}
@media screen and (max-width: 767px){
	.guideHead{
		padding-bottom: var(--sp-size-32);
	}
	.guideHead_title{
		font-size: var(--sp-size-36);
		padding-bottom: var(--sp-size-24);
	}
	.guideHead_text{
		font-size: var(--sp-size-28);
		padding-bottom: 0;
	}
}



/**
* Main
**/
.guideCont{
	padding-top: 48px;
}

.guideCont_tgl{
	width: 100%;
	cursor: pointer;
	position: relative;
}
.guideCont_tgl .btn_comLink__link{
	width: 100%;
	text-align: left;
	padding-right: 64px;
}
.guideCont_tgl .btn_comLink__link:before{
	background-position: left top;
	background-size: 100% 0%
}
.guideCont.is-active .btn_comLink__link:before{
	background-position: left top;
	background-size: 100% 100%
}
.guideCont_tgl .btn_comLink__txt{
	line-height: 1.4;
}
.guideCont_tgl .btn_comLink__link:after{
	content: '';
	width: 20px;
	height: 20px;
	right: 16px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	background-color: #fff;
	-webkit-mask: url(../img/common/arrow_t.svg) no-repeat center / contain;
	mask: url(../img/common/arrow_t.svg) no-repeat center / contain;
	transition: .4s ease;
	transform: scale(1, -1);
}

.guideCont .btn_comLink__link:before,
.guideCont .btn_comLink__line.--x:after,
.guideCont .btn_comLink__line.--x span:after,
.guideCont .btn_comLink__line.--y:after,
.guideCont .btn_comLink__line.--y span:after{
	background-image: linear-gradient(var(--color-subyellow), var(--color-subyellow));
}

@media (hover: hover) and (pointer: fine){
	.guideCont_tgl:hover .btn_comLink__link:after{
		top: 4px;
		transition-delay: .45s;
	}
	.btn_comLink__link:hover{
		color: #FFF;
	}
	.guideCont_tgl .btn_comLink__link:hover::before{
	background-position: left top;
	background-size: 100% 100%
}
}

/* is-active */

.guideCont.is-active .btn_comLink__link{
	color: #000;
    transition-delay: .45s;
}
@media (hover: hover) and (pointer: fine) {
    .btn_comLink__link:hover {
        color: #000;
        transition-delay: .45s;
    }
	.guideCont .btn_comLink__link:hover:after{
		background-color: #000;
		transition-delay: .45s;
	}
}
.guideCont.is-active .btn_comLink__line.--x span:after{
	background-size: 100% 100%;
    background-position: right bottom;
}
.guideCont.is-active .btn_comLink__line.--x:after{
	background-size: 100% 100%;
    background-position: left bottom;
}
.guideCont.is-active .btn_comLink__line.--y span:after{
	background-size: 100% 100%;
    background-position: right bottom;
}
.guideCont.is-active .btn_comLink__line.--y:after {
    background-size: 100% 100%;
    background-position: left top;
}
.guideCont.is-active .btn_comLink__link:after{
	transform: scale(1, -1) rotate(180deg);
	background-color: #000;
}

@media (hover: hover) and (pointer: fine){
	.guideCont.is-active .btn_comLink__link:hover::after{
		top: -4px;
	}
}


.guideContIn{
	display: none;
	padding-top: 32px;
	line-height: 2;	
}
.guideContIn strong{
	font-weight: 700;
}
.guideContIn u{
	text-underline-offset: 5px;
}
.guideContIn a{
	transition: .3s ease;
	text-underline-offset: 6px;
}
.guideContIn a:hover{
	text-decoration: underline;
}
.guideContIn p.indent{
	display: block;
	margin-bottom: 12px;
}


.guideCont_dlists{
	margin-top: 20px;
}
.guideCont_dl dt{
	font-size: 18px;
	font-weight: 700;
	color: var(--color-subyellow);
	margin-bottom: 8px;
}
.guideCont_dl dd:not(:last-child){
	margin-bottom: 8px;
}




@media screen and (max-width: 767px){
	.guideCont{
		padding-top: var(--sp-size-64);
	}
	.guideCont_tgl .btn_comLink__link{
		padding-right: var(--sp-size-72);
	}
	.guideCont_tgl .btn_comLink__link:after{
		width: var(--sp-size-26);
		height: var(--sp-size-26);
		right: var(--sp-size-24);
	}
	.guideContIn{
		padding-top: var(--sp-size-48);
	}
	.guideContIn p.indent{
		margin-bottom: var(--sp-size-16);
	}
	.guideContIn a{
		text-underline-offset: var(--sp-size-8);
	}
	.guideCont_dl{
		margin-top: var(--sp-size-32);
	}
	.guideCont_dl dt{
		font-size: var(--sp-size-26);
		margin-bottom: var(--sp-size-12);
	}
	.guideCont_dl dd:not(:last-child){
		margin-bottom: var(--sp-size-12);
	}
}





/** Animation **/
.guideDetail{
	opacity: 0;
	transform: translateY(50px);
	transition: transform .4s cubic-bezier(.57,.37,.51,.92) , opacity .4s cubic-bezier(.57,.37,.51,.92);
}
.guideContIn.active .guideDetail{
	opacity: 1;
	transform: translateY(0px);
}



/**
* COMLINK BTN
**/
.btn_comLink{
	text-align: center;
}
.btn_comLink.-en{
	font-family: var(--font-en);
}
.btn_comLink.w50 .btn_comLink__link{
	min-width: 50%;
}
.btn_comLink.w100 .btn_comLink__link{
	min-width: 100%;
}
.btn_comLink__link{
	display: inline-block;
	padding: 20px 32px;
	position: relative;
	line-height: 1;
	text-decoration: none;
	color: #FFF;
	font-weight: 500;
	background-color: #000;
	transition: .4s ease;
}
.btn_comLink__link:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-image: linear-gradient(var(--color-subyellow), var(--color-subyellow));
	background-repeat: no-repeat;
	background-position:  right bottom;
	background-size: 0% 100%;
	transition: background-size .4s ease;
}
@media (hover: hover) and (pointer: fine){
	.btn_comLink__link:hover::before{
		background-size: 100% 100%;
		transition-delay: .4s;
		background-position:  left bottom;
	}
}
.btn_comLink__line{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
.btn_comLink__line.--x:before,
.btn_comLink__line.--x:after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
}
.btn_comLink__line.--x:before{
	background-color: #fff;
}
.btn_comLink__line.--x:after{
	background-image: linear-gradient(var(--color-subyellow), var(--color-subyellow));
	background-repeat: no-repeat;
	background-position:  right bottom;
	background-size: 0% 100%;
	transition: background-size .4s ease;
}
.btn_comLink__line.--x span,
.btn_comLink__line.--x span:after{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
}
.btn_comLink__line.--x span{
	background-color: #fff;
}
.btn_comLink__line.--x span:after{
	content: '';
	background-image: linear-gradient(var(--color-subyellow), var(--color-subyellow));
	background-repeat: no-repeat;
	background-position:  left bottom;
	background-size: 0% 100%;
	transition: background-size .4s ease;
}

.btn_comLink__line.--y:before,
.btn_comLink__line.--y:after{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 2px;
}
.btn_comLink__line.--y:before{
	background-color: #fff;
}
.btn_comLink__line.--y:after{
	background-image: linear-gradient(var(--color-subyellow), var(--color-subyellow));
	background-repeat: no-repeat;
	background-position:  left bottom;
	background-size: 100% 0%;
	transition: background-size .4s ease;
}
.btn_comLink__line.--y span,
.btn_comLink__line.--y span:after{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 2px;
}
.btn_comLink__line.--y span{
	background-color: #fff;
}
.btn_comLink__line.--y span:after{
	content: '';
	background-image: linear-gradient(var(--color-subyellow), var(--color-subyellow));
	background-repeat: no-repeat;
	background-position:  right top;
	background-size: 100% 0%;
	transition: background-size .4s ease;
}

@media (hover: hover) and (pointer: fine){

	.btn_comLink__link:hover .btn_comLink__line.--x:after{
		background-size: 100% 100%;
		background-position:  left bottom;
	}
	.btn_comLink__link:hover .btn_comLink__line.--x span:after{
		background-size: 100% 100%;
		background-position:  right bottom;
	}
	.btn_comLink__link:hover .btn_comLink__line.--y:after{
		background-size: 100% 100%;
		background-position:  left top;
	}
	.btn_comLink__link:hover .btn_comLink__line.--y span:after{
		background-size: 100% 100%;
		background-position:  right bottom;
	}
}
.btn_comLink__txt{
	position: relative;
	z-index: 2;
	display: inline-block;
	line-height: 1;
}

@media screen and (max-width: 767px){
	.btn_comLink__link{
		padding: var(--sp-size-26) var(--sp-size-40);
	}
}

a[target="_blank"] .btn_comLink__txt.link_blank{
	padding-left: 10px;
	padding-right: 20px;
	padding-bottom: 4px;
	position: relative;
}
a[target="_blank"] .btn_comLink__txt.link_blank:after{
	content: '';
	position: absolute;
	bottom: 6px;
	right: 0;
	width: 12px;
	height: 12px;
	margin: auto 0;
	-webkit-mask: url(../img/common/icon_blank.svg) no-repeat center / contain;
	mask: url(../img/common/icon_blank.svg) no-repeat center / contain;
	background-color: #fff;
	transition: .3s ease;
}
@media (hover: hover) and (pointer: fine){
	a[target="_blank"]:hover .btn_comLink__txt.link_blank:after{
		background-color: #000;
		transition-delay: .45s;
	}
}
@media screen and (max-width: 767px){
	a[target="_blank"] .btn_comLink__txt.link_blank{
		padding-left: var(--sp-size-20);
		padding-right: var(--sp-size-40);
		padding-bottom: 0;
	}
	a[target="_blank"] .btn_comLink__txt.link_blank:after{
		width: var(--sp-size-20);
		height: var(--sp-size-20);
		right: var(--sp-size-8);
		bottom: var(--sp-size-4);
	}
}
@-moz-document url-prefix() {
	.btn_comLink__txt.link_blank{
		display: inline-block;
	}
	a[target="_blank"] .btn_comLink__txt.link_blank:after{
		top: 0;
		bottom: 4px;
	}
	@media screen and (max-width: 767px){
		a[target="_blank"] .btn_comLink__txt.link_blank:after{
			bottom: var(--sp-size-4);
		}
	}
}


.guideDetail p.mb{
	margin-bottom: 2em;
}