@charset "UTF-8";
/* CSS Document */


/* font */
:root{
	--serif:'Noto Serif JP', 'Yu Mincho', YuMincho, 'Hiragino Mincho ProN', serif;
}

.jsTabBox{
	display: none;
}
.jsTabBox.show{
	display: block;
}


/* ctsWrapper */
#ctsWrapper {
	position: relative;
}
/* pan */
#olistPan {
    position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
#olistPan li a{
	color:rgba(255, 255, 255, 0.5);
}
#olistPan li a:hover{
	color:rgba(255, 255, 255, 0.8);
}

/*
	kv
-----------------------------------------------------------------------------------------------*/
#kvWrapper{
	height: 300px;
	background: url("../images/bg_guidelines_kv_pc.png") no-repeat center center / cover;
	margin-bottom: 80px;
}
#kvWrapper .inBox{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 1200px;
	height: 100%;
	padding: 0 30px;
	margin: 0 auto;
}

/* tit
============================== */
#kvWrapper .tit > *{
	display: block;
	filter: drop-shadow(0 0 5px rgb(0 0 0 / 20%));
	text-align: center;
	line-height: 100%;
}

/* ja */
#kvWrapper .tit .ja{
	border-bottom: 1px solid #fff;
	padding: 0 15px 10px 15px;
	margin-bottom: 10px;
}

/* en */
#kvWrapper .tit .en{
	color: #fff;
	font-size: 3rem;
	font-family: var(--fEn);
	font-weight: 300;
	font-style: italic;
	letter-spacing: 0.4rem;
}
/* anm */
#kvWrapper .tit .ja{
	opacity: 0;
	animation: anmFadeUp 1.2s ease 0.2s forwards;
}
#kvWrapper .tit .en{
	opacity: 0;
	animation: anmFadeUp 1.2s ease 0.4s forwards;
}

/* listTab */
.listTab{
	display: flex;
	justify-content: center;
	margin-bottom: 70px;
}
.listTab .btnTab{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 300px;
	height: 80px;
	background-color: #fff;
	color: var(--clrBase);
	text-align: center;
	font-size: 2.0rem;
	font-weight: 500;
	line-height: 100%;
	margin-right: 40px;
	border: 2px solid var(--clrBase);
	transition: all 0.3s;
}
.listTab .btnTab:last-of-type{
	margin-right: initial;
}
.listTab .btnTab.active,
.listTab .btnTab:hover{
	background-color: var(--clrBase);
	color: #fff;
	cursor: pointer;
}
.listTab .btnTab.active::after{
	content: " ";
	display: block;
	position: absolute;
	border-color: var(--clrBase) transparent transparent transparent;
	border-width: 14px 14px 0 14px;
	border-style: solid;
	bottom: -14px;
	left: 50%;
	transform: translatex(-50%);
}

/* tblBox */
.tblBox .tblTit,
.tblBox .tbl th,
.tblBox .tbl td{
	padding: 20px 20px 20px 25px;
}
.tblBox .tblTit{
	background-color: var(--clrBase);
	color: #fff;
	font-size: 1.8rem;
}
.tblBox .tbl tr{
	border-bottom: 1px solid #ccc;
}
.tblBox .tbl th{
	min-width: 220px;
	color: var(--clrBase);
	font-weight: 600;
	font-size: 1.6rem;
	background-color: #F2F2F2;
}
.tblBox .tbl td{
	width: 100%;
}

/* txtBox */
.txtBox:nth-of-type(n+2){
	margin-top: 15px;
}
.txtBox .tit{
	font-weight: 600;
	font-size: 1.6rem;
}
.txtBox .tit .mark{
	color: var(--clrBase);
}

/* myPageEntry */
a.myPageEntry{
	color: var(--clrBase);
	text-decoration: underline;
	transition: all 0.3s;
}
a.myPageEntry:hover{
	text-decoration: none;
	opacity: 0.7;
}

/* txtLead
============================== */
.txtLead{
	text-align: center;
	margin-bottom: 50px;
}



@media screen and (max-width:812px){
	/* pan */
	#olistPan{
		margin-bottom: 10px;
	}
	#ctsWrapper {
		padding-bottom: 60px;
	}

	/*
	kv
	-----------------------------------------------------------------------------------------------*/
	#kvWrapper{
		height: 180px;
		background: url("../images/bg_guidelines_kv_sp.png") no-repeat center center / cover;
		margin-bottom: 40px;
	}
	#kvWrapper .inBox{
		width: 220px;
		padding: 0;
	}

	/* tit
	============================== */
	#kvWrapper .tit{
		width: 350px;
		max-width: 100%;
	}
	#kvWrapper .tit > *{
		margin: 0 auto;
	}
	#kvWrapper .tit .ja img{
		width: 60%;
	}

	/* en */
	#kvWrapper .tit .en{
		font-size: 1.8rem;
		line-height: 100%;
		letter-spacing: 0.2rem;
	}

	/* listTab */
	.listTab{
		margin-bottom: 30px;
	}
	.listTab .btnTab{
		width: 100%;
		height: 50px;
		font-size: 1.5rem;
		margin-right: 20px;
	}

	/* tblBox */
	.txtBox .tit {
		font-size: 1.5rem;
	}
	.tblBox .tblTit,
	.tblBox .tbl th,
	.tblBox .tbl td{
		padding: 15px;
	}
	.tblBox .tblTit{
		font-size: 1.5rem;;
	}
	.tblBox .tbl tr{
		display: flex;
		flex-direction: column;
		border-bottom: initial;
	}
	.tblBox .tbl th{
		min-width: initial;
		font-size: 1.5rem;
	}
	.tblBox .tbl td{
		padding-bottom: 20px;
	}

	/* txtLead
	============================== */
	.txtLead{
		text-align: justify;
		margin-bottom: 20px;
	}
}