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

/*
	Reset CSS
-----------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video{
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section{
	display: block;
}
html{
	font-size: 62.5%;
}
body{
	background-color: #f3f1f4;
	color:#000;
	font-size: 1.5em;
	font-family: 'Noto Sans JP', 'Yu Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
	font-weight: 400;
	letter-spacing: 0.2rem;
	font-feature-settings: "palt";
	overflow-wrap: break-word;
}
p{
	line-height: 170%;
}
ol, ul{
	list-style: none;
}
blockquote, q{
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after{
	content: '';
	content: none;
}
a{
	color:#000;
	text-decoration:none;
	transition: all 0.3s;
}
a:link{
	color:#000;
}
a:visited{
	color:#000;
}
a:hover{
	text-decoration:none;
}
a.normallink,
a.normallink:link,
a.normallink:visited{
	color: var(--clrBase);
}
img{
	vertical-align: top;
}
table{
	table-layout:fixed;
	border-collapse: collapse;
	border-spacing: 0;
}
*,*::before,*::after{
	box-sizing: border-box;
}

/* iPad背景切れ対策 */
@media print, screen and (min-width:813px){
	body{
		min-width: 1200px;
	}
}

/* 表示切替 */
.switch{
	visibility: hidden;
}
.sp{
	display: none;
}


/*
	common
-----------------------------------------------------------------------------------------------*/
:root{
	/* color */
	--clrBase:     #005aaf;
	--clrLBlue:    #377ed5;
	--clrDBlue:    #002c49;
	--clrPink:     #e155b9;
	--clrYellow:   #ffff00;
	--clrYellow02: #f3d44c;
	--clrBg:       #f3f1f4;
	--clrBgBlue01: #ceddf4;
	--clrBgBlue02: #95b6f4;
	--clrLine:     #e2e2e2;
	
	/* font */
	--fEn: 'Hind', 'Noto Sans JP', 'Yu Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
	
	/* width */
	--ctsW: 1200px;
}

/* txt */
.fwB{
	font-weight: 700;
}

/* box */
#ctsWrapper{
	padding-bottom: 110px;
	overflow: hidden;
	position: relative;
}
#ctsWrapper.heightControl{
	padding-top: 85px;
}
.ctsArea{
	width: var(--ctsW);
	padding: 0 30px 80px 30px;
	margin: 0 auto;
}
.ctsArea:last-of-type{
	padding-bottom: 0;
}
.whiteArea{
	background-color: #fff;
	border-radius: 15px;
	padding: 60px 80px 80px 80px;
	position: relative;
	z-index: 2;
}
#kvWrapper{
	display: flex;
	flex-direction: column;
}
#kvWrapper .heightControl{
	height: calc(100% - 85px);/* headerの高さ引く */
	margin-top: auto;
}
#kvWrapper .heightControl .kvIn{
	height: calc(100% - 50px);/* パン屑の高さ引く */
}
#kvWrapper .kvIn{/* パン屑の下に使用（パン屑含めない） */
	width: var(--ctsW);
	padding: 0 30px;
	margin: 0 auto;
	position: relative;
}

/* titBase */
.titBase{
	margin-bottom: 30px;
}
.titBase span{
	display: block;
	text-align: center;
}
.titBase .en{
	font-size: 5.4rem;
	font-family: var(--fEn);
	font-weight: 700;
	line-height: 90%;
}
.titBase .clr{
	color: var(--clrBase);
	font-size: 1.3rem;
	font-weight: 700;
	margin-top: 3px;
	line-height: 100%;
}

/* titMarker */
.titMarker{
	text-align: center;
	margin-bottom: 40px;
}
.titMarker span{
	display: inline;
	background: linear-gradient(transparent 80%, var(--clrYellow) 0%);
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 160%;
	padding: 0 5px;
}

/* ico */
.btnBase::before, a.ico::before, ul.ico li a::before,
.btnBase::after, a.ico::after, ul.ico li a::after{
	content: " ";
	display: block;
	position: absolute;
	transition: all 0.3s;
}
.btnBase::before, a.ico::before, ul.ico li a::before{
	width: 45px;
	height: 45px;
	background-color: var(--clrBase);
	top: -1px;
	right: 0;
	z-index: 1;
}
.btnBase::after, a.ico::after, ul.ico li a::after{
	width: 13px;
	height: 13px;
	border: 2px solid;
	border-color: #fff #fff transparent transparent;
	top: 50%;
	right: 19px;
	transform: translateY(-50%) rotate(45deg);
	z-index: 2;
}
ul.ico li a::before{
	top: auto;
	bottom: 0;
}
ul.ico li a::after{
	top: auto;
	bottom: 15px;
	transform: rotate(45deg);
}
.btnBase:hover::before,
a.ico:hover::before,
ul.ico li a:hover::before{
	background-color: var(--clrLBlue);
}
.btnBase.clrW::before, a.ico.clrW::before, ul.ico.clrW li a::before{
	background-color: #fff;
}
.btnBase.clrW::after, a.ico.clrW::after, ul.ico.clrW li a::after{
	border-color: var(--clrBase) var(--clrBase) transparent transparent;
}

/* btn */
.btnArea{
	display: flex;
	justify-content: center;
	margin-top: 50px;
}
.btnBase, a.btnBase{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 300px;
	height: 45px;
	background-color: #fff;
	border: 1px solid var(--clrBase);
	color: var(--clrBase);
	text-align: center;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 130%;
	padding: 0 55px 0 10px;
	position: relative;
}
.btnBase:not(:last-of-type){
	margin-right: 30px;
}
.btnBase.clrW, a.btnBase.clrW{
	background-color: transparent;
	border-color: #fff;
	color: #fff;
}
.btnBase.clrDB, a.btnBase.clrDB{
	border: 1px solid var(--clrDBlue);
	color: var(--clrDBlue);
}
.btnBase.clrDB::before{
	background-color: var(--clrDBlue);
}
@media print, screen and (min-width:813px){
	.btnBase:hover::before{
		right: -5px;
	}
	.btnBase:hover::after{
		right: 14px;
	}
}
.btnBase.icoLink::after{/* icoLink */
	width: 18px;
	height: 16px;
	background: url("../images/ico_link_w.svg") no-repeat top left / 100% auto;
	border: none;
	right: 14px;
	transform: translateY(-50%);
}
@media print, screen and (min-width:813px){
	.btnBase.icoLink:hover::after{
		right: 9px;
	}
}

/* btn coming soon */
/*
.btnBase.cms{
	pointer-events: none;
}
*/
.btnBase.cms .txtCms{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.6);
	color: #fff;
	font-size: 1.3rem;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

/* txtLink */
a.txtLink{
	text-decoration: underline;
	color: var(--clrBase);
	word-wrap:break-word;
}
a.txtLink:hover{
	text-decoration: none;
}

/* listBase */
[class *= "listBase"] li{
	margin-bottom: 8px;
}
[class *= "listBase"] li:last-of-type{
	margin-bottom: 0;
}
.listBaseIco li{
	padding-left: 18px;
	position: relative;
}
.listBaseIco > li::before{
	content: " ";
	display: block;
	width: 10px;
	height: 10px;
	background-color: var(--clrPink);
	border-radius: 50%;
	position: absolute;
	top: 6px;
	left: 0;
}

/* table */
[class ^= tblBase]{
	width: 100%;
	border-top: 1px solid var(--clrLine);
}
[class ^= tblBase] th,
[class ^= tblBase] td{
	border-bottom: 1px solid var(--clrLine);
	line-height: 170%;
	padding: 30px 0;
}
[class ^= tblBase] th{
	width: 200px;
	text-align: left;
	font-weight: 700;
}
[class ^= tblBase] .kome{
	display: block;
	padding-left: 20px;
	position: relative;
}
[class ^= tblBase] .kome::before{
	content: "※";
	display: block;
	color: var(--clrBase);
	position: absolute;
	top: 0;
	left: 0;
}
[class ^= tblBase] .line{
	display: inline-block;
	border-bottom: 2px solid #000;
	line-height: 130%;
	padding: 10px 0 5px 0;
	margin-bottom: 10px;
}


/*
	header
-----------------------------------------------------------------------------------------------*/
#headerWrapper{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	min-width: 1200px;
	height: 85px;
	padding-left: 30px;
	position: fixed;
	z-index: 8000;
}
#headerWrapper .logo a{
	display: block;
}
#headerWrapper .logo a:hover{
	opacity: 0.5;
}

/* ロゴ通常 */
#headerWrapper .logo .normal{
	display: block;
}
#headerWrapper .logo .white{
	display: none;
}

/* ロゴ白 */
#headerWrapper.logoWhite .logo .normal{
	display: none;
}
#headerWrapper.logoWhite .logo .white{
	display: block;
}

@media print, screen and (min-width:813px){
	#headerWrapper .boxR{
		display: flex;
		justify-content: flex-end;
		gap: 0 30px;
	}
	
	/* listMenu */
	#headerWrapper .listMenu{
		display: flex;
	}
	#headerWrapper .listMenu > li{
		display: flex;
		justify-content: center;
		align-items: center;
		height: 85px;
		border-bottom: 3px solid transparent;
	}
	#headerWrapper .listMenu li:not(:last-of-type){
		margin-right: 30px;
	}
	#headerWrapper .listMenu > li > span,
	#headerWrapper .listMenu > li > a{
		display: block;
		font-family: var(--fEn);
		font-weight: 700;
		font-size: 1.8rem;
		line-height: 100%;
		letter-spacing: 0.15rem;
	}
	#headerWrapper .listMenu > li > a{
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100%;
	}
	#headerWrapper .listMenu > li.open,
	#headerWrapper .listMenu > li.link:hover{
		border-bottom: 3px solid var(--clrBase);
	}
	#headerWrapper .listMenu > li > span:hover{
		cursor: default;
	}
	
	/* jsMenuIn */
	#headerWrapper .jsMenuIn{
		display: none;
		width: 100%;
		background: #fff;
		padding: 30px 0;
		position: absolute;
		top: 85px;/* header height */
		left: 0;
	}
	#headerWrapper .listIn{
		display: flex;
		justify-content: center;
		width: var(--ctsW);
		padding: 0 30px;
		margin: 0 auto;
	}
	#headerWrapper .listIn li{
		width: 270px;
	}
	#headerWrapper .listIn li:not(:last-of-type){
		margin-right: 20px;
	}
	#headerWrapper .listIn figure{
		height: 150px;
		border-radius: 10px;
		position: relative;
		overflow: hidden;
		z-index: 1;
	}
	#headerWrapper .listIn a figure img{
		transition: all 0.3s;
	}
	#headerWrapper .listIn a:hover figure img{
		transform: scale(1.1, 1.1);
	}
	#headerWrapper .listIn p{
		text-align: center;
		font-size: 1.2rem;
		font-weight: 500;
		line-height: 130%;
		margin-top: 15px;
	}
}

/* ENTRY btn */
#headerWrapper .btnEntry{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 150px;
	height: 85px;
	background-color: var(--clrBase);
	padding: 10px;
	position: relative;
	z-index: 2;
	transition: all 0.3s;
}
#headerWrapper .btnEntry span{
	text-align: center;
	color: #fff;
	font-size: 1.8rem;
	font-family: var(--fEn);
	font-weight: 700;
	line-height: 100%;
	letter-spacing: 0.1rem;
}
#headerWrapper .btnEntry:hover{
	cursor: pointer;
	background-color: var(--clrLBlue);
}
body.jsActive{
	overflow-y: hidden;/* スクロール固定 */
}


/*
	footer
-----------------------------------------------------------------------------------------------*/
#footerWrapper{
	font-size: 1.3rem;
}
#footerWrapper .menuBox{
	width: var(--ctsW);
	padding: 70px 30px 30px 30px;
	margin: 0 auto;
}
#footerWrapper .logo{
	display: block;
	width: 140px;
	margin: 0 auto 60px auto;
}
#footerWrapper .logo img{
	width: 100%;
}
#footerWrapper .menuBox a:hover{
	opacity: 0.5;
}

/* listOut */
#footerWrapper .listOut{
	display: flex;
	justify-content: space-between;
}
#footerWrapper .listOut .tit{
	font-size: 2rem;
	font-family: var(--fEn);
	font-weight: 700;
	line-height: 100%;
	letter-spacing: 0.15rem;
	margin-bottom: 15px;
}
#footerWrapper .listOut .list li{
	line-height: 130%;
}
#footerWrapper .listOut .list li:not(:last-of-type){
	margin-bottom: 15px;
}

/* listBtm */
#footerWrapper .listBtm{
	display: flex;
	justify-content: flex-end;
	margin-top: 80px;
}
#footerWrapper .listBtm li:not(:last-of-type){
	border-right: 1px solid #000;
	padding-right: 15px;
	margin-right: 15px;
}

/* copyrightArea */
#footerWrapper .copyrightArea{
	background-color: #fff;
	font-size: 1.0rem;
	position: relative;
}
#footerWrapper .copyrightArea .inBox{
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
	background-color: #fff;
	padding: 0 100px 0 30px;
	margin: 0 auto;
}
#footerWrapper .copyrightArea p{
	line-height: 130%;
}

/* pageTop */
#pageTop{
	display: block;
	width: 80px;
	height: 80px;
	background-color: var(--clrBase);
	position: absolute;
	bottom: 0;
	right: 0;
}
#pageTop::before{
	content: " ";
	display: block;
	width: 13px;
	height: 13px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -30%) rotate(-45deg);
	transition: all 0.3s;
}
#pageTop:hover{
	background-color: var(--clrLBlue);
	opacity: 1;
}


/*
	commonEntry
-----------------------------------------------------------------------------------------------*/
#commonEntryWrapper .list{
	display: flex;
}
#commonEntryWrapper .list li{
	width: calc(100% / 2);
	position: relative;
}
#commonEntryWrapper .list li a{
	display: block;
	background-color: var(--clrBase);
	color: #fff;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 120%;
	padding: 70px 30px;
}
#commonEntryWrapper .list li:nth-of-type(2) a{
	background-color: var(--clrLBlue);
}
#commonEntryWrapper .list span{
	display: block;
	font-size: 3.2rem;
	line-height: 120%;
	margin-bottom: 10px;
}
#commonEntryWrapper .list li a:hover{
	background-color: #67a2e9;
}

/* coming soon */
#commonEntryWrapper .list .cmsBtn a{
	pointer-events: none;
}
#commonEntryWrapper .list .cmsBtn .txtCms{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.6);
	font-size: 1.6rem;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}


/*
	pan
-----------------------------------------------------------------------------------------------*/
#olistPan{
	display: flex;
	align-items: center;
	width: calc(100% - 60px);
	height: 50px;
	font-size: 1.2rem;
	line-height: 100%;
	letter-spacing: 0.05em;
	padding: 15px 0 20px;
	margin: 0 auto 0 auto;
	overflow-y: scroll;
	-ms-overflow-style: none;/* IE, Edge 対応 */
	scrollbar-width: none;/* Firefox 対応 */
	position: relative;
	z-index: 100;
}
#olistPan::-webkit-scrollbar{/* Chrome, Safari 対応 */
	display:none;
}
#olistPan li a{
	white-space: nowrap
}
#olistPan.white li a{/* 白文字の場合 */
	color: rgba(255, 255, 255, 0.8);
}
#olistPan li{
	padding:0 20px 0 0;
	position:relative;
}
#olistPan li:nth-last-of-type(n+2)::after{
	content:' ';
	display:block;
	width:6px;
	height:6px;
	border-top:1px solid rgba(000, 000, 000, 0.3);
	border-right:1px solid rgba(000, 000, 000, 0.3);
	position:absolute;
	top:50%;
	right:9px;
	transform:translateY(-50%) rotate(45deg);
}
#olistPan li:last-of-type{
	padding:0;
}
#olistPan li a{
	color:rgba(000, 000, 000, 0.5);
}
#olistPan li a:hover{
	color:rgba(000, 000, 000, 0.8);
}
#olistPan li:last-of-type a,
#olistPan li.none a{
	text-decoration:none;
	pointer-events:none;
}


/*
	下層ページタイトル
-----------------------------------------------------------------------------------------------*/
#cmnTitWrapper{
	width: 1200px;
	min-height: 230px;
	padding: 60px 30px 80px 30px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
#cmnTitWrapper::before{
	content: " ";
	display: block;
	position: absolute;
	z-index: 1;
}
#cmnTitWrapper .tit,
#cmnTitWrapper .titSub,
#cmnTitWrapper .txt{
	position: relative;
	z-index: 2;
}
#cmnTitWrapper .tit{
	font-size: 3.8rem;
	font-weight: 700;
	line-height: 130%;
}
#cmnTitWrapper .titSub{
	color: var(--clrBase);
	font-size: 1.8rem;
	font-family: var(--fEn);
	font-weight: 700;
	line-height: 130%;
	letter-spacing: 0.1rem;
	margin-top: 20px;
}
#cmnTitWrapper .txt{
	margin-top: 40px;
}

/* anm */
#cmnTitWrapper .tit,
#cmnTitWrapper .titSub,
#cmnTitWrapper .txt{
	opacity: 0;
	animation: anmLeftIn 1s ease 0.5s forwards;
}
#cmnTitWrapper::before{
	opacity: 0;
	animation: anmRightIn 1s ease 0.5s forwards;
}


/*
	吹き出し
-----------------------------------------------------------------------------------------------*/
.picCommentWrapper{
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 2;
}
.picCommentWrapper .txtArea{
	width: 500px;
	border: 3px solid #a3a3a3;
	border-radius: 10px;
	padding: 30px;
	margin-right: 50px;
	position: relative;
	z-index: 1;
}
.picCommentWrapper .txtArea::before,
.picCommentWrapper .txtArea::after{
	content: " ";
	display: block;
	position: absolute;
	top: 50%;
}
.picCommentWrapper .txtArea::before{/* bg */
	width: 3px;
	height: 60px;
	background-color: var(--clrBg);
	right: -3px;
	transform: translateY(-50%);
}
.picCommentWrapper .txtArea::after{/* 線 */
	width: 3px;
	height: 55px;
	background-color: #a3a3a3;
	right: -10px;
	transform: translateY(-60%) rotate(60deg);
}
.picCommentWrapper .txtArea .titPoint{
	background-color: var(--clrBg);
	color: var(--clrPink);
	font-size: 2.2rem;
	font-family: var(--fEn);
	font-weight: 700;
	line-height: 100%;
	font-style: italic;
	padding: 0 10px;
	position: absolute;
	top: 0;
	transform: translate(-10px, -50%);
}
.picCommentWrapper .txtArea .txt{
	text-align: justify;
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 150%;
}
.picCommentWrapper figure{
	position: relative;
	z-index: 2;
}


/*
	丸背景アイテム
-----------------------------------------------------------------------------------------------*/
[class *= itemCircleArea]{
	position: relative;
	z-index: 2;
}
[class *= itemCircleArea].itemZ{
	z-index: 1;
}
[class ^= itemCircle]{
	border-radius: 50%;
	position: absolute;
	z-index: -1;
}

/* size */
[class ^= itemCircle].sizeS{
	width: 35px;
	height: 35px;
}
[class ^= itemCircle].sizeM{
	width: 100px;
	height: 100px;
}
[class ^= itemCircle].sizeL{
	width: 330px;
	height: 330px;
}

/* color */
[class ^= itemCircle].clr01{
	background-color: var(--clrBgBlue01);
}
[class ^= itemCircle].clr02{
	background-color: var(--clrBgBlue02);
}
[class ^= itemCircle].clr03{
	background-color: var(--clrYellow02);
}


/*
	tab
-----------------------------------------------------------------------------------------------*/
.tabWrapper{
	overflow: hidden;
}
.tabWrapper .whiteArea{
	border-radius: 0 0 15px 15px
}

/* tab js */
.jsTabBox{
	display: none;
}
.jsTabBox.show{
	display: block;
}

/* listTab */
.listTab{
	display: flex;
	justify-content: center;
	margin: 0 auto;
}
.listTab li{
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc((100% - 10px)/2);
	min-height: 80px;
	background-color: var(--clrBase);
	border-radius: 10px 10px 0 0;
	text-align: center;
	color: #fff;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 130%;
	padding: 15px;
	transition: all 0.3s;
}
.listTab li:not(:last-of-type){
	margin-right: 10px;
}
.listTab li.active,
.listTab li:hover{
	background-color: #fff;
	color: var(--clrBase);
}
.listTab li:hover{
	cursor: pointer;
}


/*
	swiper
-----------------------------------------------------------------------------------------------*/
/* common */
.swiper-wrapper,
.swiper-slide{
	width: 100%;
	height: 100%;
}
.swiper-pagination-bullet{
	background-color: #fff;
	opacity: 0.5;
}
.swiper-pagination-bullet-active{
	background-color: #fff;
	opacity: 1;
}
.swiper-button-next,
.swiper-button-prev{
	width: 50px;
	height: 50px;
}
.swiper-button-next{
	right: 40px;
}
.swiper-button-prev{
	left: 40px;
}
.swiper-button-next:after,
.swiper-button-prev:after{
	content: " ";
	width: 30px;
	height: 30px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}
.swiper-button-prev:after{
	transform: rotate(-135deg);
}

.swiper-button-next:focus,
.swiper-button-prev:focus,
.swiper-pagination-bullet:focus{
	outline: none;
}


/*
	bnr
-----------------------------------------------------------------------------------------------*/
#bnrWrapper{
	width: 980px;
	margin: 0 auto;
}
#bnrWrapper .bnrBase{
	display: block;
	background-color: var(--clrBase);
	border-radius: 10px 10px 0 10px;
	color: #fff;
	padding: 40px 40px 40px 50px;
	position: relative;
}
#bnrWrapper .bnrBase::before{
	background-color: #fff;
	top: auto;
	bottom: 0;
}
#bnrWrapper .bnrBase::after{
	border-color: var(--clrBase) var(--clrBase) transparent transparent;
	top: auto;
	bottom: 15px;
	transform: translateY(0) rotate(45deg);
}
#bnrWrapper .bnrBase figure{
	position: absolute;
	bottom: 0;
	right: 20px;
}
#bnrWrapper .bnrBase .titArea{
	font-weight: 700;
	margin-bottom: 15px;
}
#bnrWrapper .bnrBase .titSub{
	display: block;
	font-size: 1.8rem;
	line-height: 100%;
}
#bnrWrapper .bnrBase .titSub span{
	display: inline-block;
	border-bottom: 2px solid #fff;
	padding-bottom: 10px;
	margin-bottom: 13px;
}
#bnrWrapper .bnrBase .tit{
	font-size: 3.2rem;
	line-height: 100%;
}
#bnrWrapper .bnrBase .txt{
	font-size: 1.8rem;
	line-height: 150%;
}
#bnrWrapper .bnrBase:hover{
	background-color: var(--clrDBlue);
}


/*
	modal
-----------------------------------------------------------------------------------------------*/
@media print, screen and (min-width:813px){
	.lb_overlay{/* 背景 */
		min-width: 1200px;
	}
}
.modalCmn{
	display: none;
	position: relative;
}
.modalCmn .modalBox{
	width: 800px;
	background-color: #fff;
	border-radius: 10px;
	padding: 30px;
}

/* close */
.modalCmn .close{
	width: 30px;
	height: 30px;
	position: absolute;
	top: -40px;
	right: 0;
}
.modalCmn .close:hover{
	cursor: pointer;
}
.modalCmn .close::before,
.modalCmn .close::after{
	content: ' ';
	display: block;
	width: 100%;
	height: 1px;
	background-color: #fff;
	position: absolute;
	top: 15px;
}
.modalCmn .close::before{
	transform: rotate(45deg);
}
.modalCmn .close::after{
	transform: rotate(-45deg);
}


/*
	バナーlist
-----------------------------------------------------------------------------------------------*/
* + .cmnListBnrWrapper{
	margin-top: 100px;
}

/* txt */
.cmnListBnrWrapper .txtBnr{
	text-align: center;
	margin-bottom: 20px;
}

/* list */
.cmnListBnr{
	display: flex;
	justify-content: center;
	gap: 0 30px;
}
.cmnListBnr a{
	display: block;
	position: relative;
}
.cmnListBnr img{
	border-radius: 15px 15px 0 15px;
	box-shadow: 7px 7px 5px 0 rgb(0 0 0 / 10%);
	position: relative;
	z-index: 1;
}

/* 矢印 */
.cmnListBnr a::before,
.cmnListBnr a::after{
	z-index: 3;
}
.cmnListBnr a::before{
	top: auto;
	bottom: 0;
}
.cmnListBnr a::after{
	top: auto;
	bottom: 16px;
	transform: rotate(45deg);
}

/* hover */
	@media print, screen and (min-width:813px){
	.cmnListBnr img{
		transition: all 0.3s;
	}
	.cmnListBnr a:hover img{
		filter: saturate(180%);
	}
}


@media screen and (max-width:812px){
	body{
		-webkit-text-size-adjust:100%;
		font-size: 1.4rem;
	}
	img{
		width:100%;
	}
	p{
		line-height: 150%;
	}
	.pc{
		display:none;
	}
	.sp{
		display:block;
	}
	br.sp{
		display:inline-block;
	}
	
	
	/*
		common
	-----------------------------------------------------------------------------------------------*/
	:root{
		/* width */
		--ctsW: 100%;
	}

	/* box */
	#ctsWrapper{
		padding-bottom: 70px;
	}
	#ctsWrapper.heightControl{
		padding-top: 55px;
	}
	.ctsArea{
		max-width: 500px;
		padding: 0 20px 60px 20px;
	}
	.whiteArea{
		border-radius: 10px;
		padding: 30px 15px 20px 15px;
	}
	#kvWrapper .heightControl{
		height: calc(100% - 55px);/* headerの高さ引く */
	}
	#kvWrapper .kvIn{
		padding: 0 20px;
	}
	body.jsActive .heightControl,
	body.jsActive #kvWrapper .heightControl{
		padding-top: 55px;
		height: 100%;
	}

	/* titBase */
	.titBase{
		margin-bottom: 20px;
	}
	.titBase .en{
		font-size: 4.2rem;
		letter-spacing: 0.05rem;
	}
	.titBase .clr{
		font-size: 1.2rem;
	}
	
	/* titMarker */
	.titMarker{
		margin-bottom: 20px;
	}
	.titMarker span{
		font-size: 2rem;
	}

	/* ico */
	.btnBase::before, a.ico::before, ul.ico li a::before{
		width: 30px;
		height: 30px;
	}
	.btnBase::after, a.ico::after, ul.ico li a::after{
		width: 8px;
		height: 8px;
		right: 13px;
	}
	ul.ico li a::after{
		bottom: 11px;
	}

	/* btn */
	.btnArea{
		display: block;
		margin-top: 30px;
	}
	.btnArea.clm2{
		display: flex;
		justify-content: space-between;
	}
	.btnBase, a.btnBase{
		width: 100%;
		height: 40px;
		font-size: 1.4rem;
		padding: 0 50px 0 10px;
	}
	.btnBase:not(:last-of-type){
		margin: 0 0 10px 0;
	}
	.btnArea.clm2 .btnBase:not(:last-of-type){
		margin-right: 10px;
	}
	.btnBase::before{
		width: 39px;
		height: 39px;
	}
	.btnBase::after{
		right: 17px;
	}
	.btnBase.icoLink::after{/* icoLink */
		width: 15px;
		height: 13px;
		right: 13px;
	}

	/* listBase */
	[class *= "listBase"] li{
		margin-bottom: 8px;
	}
	[class *= "listBase"] li:last-of-type{
		margin-bottom: 0;
	}
	
	/* table */
	[class ^= tblBase] th,
	[class ^= tblBase] td{
		line-height: 150%;
		padding: 20px 0;
	}
	[class ^= tblBase] .kome{
		padding-left: 18px;
	}
	.tblBase th, .tblBase td{
		display: block;
		width: 100%;
	}
	.tblBase th{
		padding: 8px 0;
	}


	/*
		header
	-----------------------------------------------------------------------------------------------*/
	#headerWrapper{
		width: 100%;
		min-width: initial;
		height: 55px;
		padding: 0 55px 0 10px;
	}
	#headerWrapper.jsActive{
		position: fixed;
		top: 0;
		left: 0;
	}
	#headerWrapper.jsActive::after{
		content: " ";
		display: block;
		width: 100%;
		height: 55px;
		position: absolute;
		top: 0;
		left: 0;
	}
	#headerWrapper .logo{
		width: 80px;
		z-index: 9000;
	}
	#headerWrapper.jsActive .logo .normal{
		display: block;
	}
	#headerWrapper.jsActive .logo .white{
		display: none;
	}
	
	/* btnMenu */
	#headerWrapper .btnMenu{
		display: block;
		width: 55px;
		height: 55px;
		background-color: #000;
		transition: all 0.3s;
		z-index: 9000;
		position: absolute;
		top: 0;
		right: 0;
	}
	#headerWrapper .btnMenu::before,
	#headerWrapper .btnMenu::after{
		content: " ";
		display: block;
		width: 20px;
		height: 1px;
		background-color: #fff;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		transition: all 0.3s;
	}
	#headerWrapper .btnHbg::before{
		margin-top: -3px;
	}
	#headerWrapper .btnHbg::after{
		margin-top: 3px;
	}
	#headerWrapper .btnHbg.jsActive::before{
		margin-top: 0;
		transform: translateX(-50%) rotate(45deg);
	}
	#headerWrapper .btnHbg.jsActive::after{
		margin-top: 0;
		transform: translateX(-50%) rotate(-45deg);
	}
	
	/* menuOut */
	#headerWrapper .menuOut{
		display: none;
		width: 100%;
		height: 100vh;
		background-color: #fff;
		padding: 80px 20px 30px 20px;
		position: absolute;
		top: 0;
		left: 0;
		overflow-y: scroll;
	}
	
	/* listMenu */
	#headerWrapper .listMenu{
		border-top: 1px solid rgba(0,0,0,0.4);
	}
	#headerWrapper .listMenu > li{
		border-bottom: 1px solid rgba(0,0,0,0.4);
	}
	#headerWrapper .listMenu li span,
	#headerWrapper .listMenu li a{
		display: block;
		font-size: 1.5rem;
		padding: 15px 0;
		position: relative;
	}
	#headerWrapper .listMenu > li[class ^= "toggle"] > span{
		pointer-events: none;
	}
	#headerWrapper .listMenu > li[class ^= "toggle"] > span::before,
	#headerWrapper .listMenu > li[class ^= "toggle"] > span::after{
		content: " ";
		display: block;
		width: 13px;
		height: 1px;
		background-color: #000;
		position: absolute;
		top: 50%;
		right: 5px;
		transform: translateY(-50%);
		transition: all 0.3s;
	}
	#headerWrapper .listMenu > li[class ^= "toggle"] > span::after{
		transform: translateY(-50%) rotate(90deg);
	}
	#headerWrapper .listMenu > li[class ^= "toggle"].close_btn > span::before{
		transform: translateY(-50%) rotate(180deg);
	}
	#headerWrapper .listMenu > li[class ^= "toggle"].close_btn > span::after{
		transform: translateY(-50%) rotate(180deg);
		opacity: 0;
	}
	#headerWrapper .listMenu li a::after{
		content: " ";
		display: block;
		width: 9px;
		height: 9px;
		border-top: 1px solid #000;
		border-right: 1px solid #000;
		position: absolute;
		top: 50%;
		right: 10px;
		transform: translateY(-50%) rotate(45deg);
	}
	
	/* listIn */
	#headerWrapper .listMenu .listIn{
		border-top: 1px solid rgba(0,0,0,0.4);
	}
	#headerWrapper .listMenu .listIn > li:not(:last-of-type){
		border-bottom: 1px solid rgba(0,0,0,0.2);
	}
	#headerWrapper .listMenu .listIn > li > a{
		display: block;
		color: rgba(0,0,0,0.6);
		font-size: 1.3rem;
		padding: 15px 0;
		position: relative;
	}
	#headerWrapper .listMenu .listIn > li > a::after{
		content: " ";
		display: block;
		width: 8px;
		height: 8px;
		border-top: 1px solid #000;
		border-right: 1px solid #000;
		position: absolute;
		top: 50%;
		right: 7px;
		transform: translateY(-50%) rotate(45deg);
		transition: all 0.3s;
	}
	#headerWrapper .listMenu .listIn figure{
		display: none;
	}
	
	/* ENTRY btn */
	#headerWrapper .btnEntry{
		align-items: center;
		width: 55px;
		height: 55px;
		padding: 5px;
	}
	#headerWrapper .btnEntry span{
		font-size: 1rem;
	}


	/*
		footer
	-----------------------------------------------------------------------------------------------*/
	#footerWrapper{
		font-size: 1.2rem;
	}
	#footerWrapper .menuBox{
		padding: 30px 20px;
	}
	#footerWrapper .logo{
		width: 120px;
		margin-bottom: 0;
	}

	/* listOut */
	#footerWrapper .listOut{
		display: none;
	}

	/* listBtm */
	#footerWrapper .listBtm{
		display: block;
		text-align: center;
		margin-top: 20px;
	}
	#footerWrapper .listBtm li:not(:last-of-type){
		border-right: none;
		padding-right: 0;
		margin: 0 0 8px 0;
	}

	/* copyrightArea */
	#footerWrapper .copyrightArea{
		font-size: 1rem;
		letter-spacing: 0.1rem;
	}
	#footerWrapper .copyrightArea .inBox{
		justify-content: flex-start;
		align-content: center;
		flex-wrap: wrap;
		flex-direction: column-reverse;
		height: auto;
		padding: 15px 55px 15px 20px;
	}
	#footerWrapper .copyrightArea p{
		width: 100%;
	}
	#footerWrapper .copyrightArea .txt{
		text-align: justify;
		margin-bottom: 10px;
	}

	/* pageTop */
	#pageTop{
		width: 40px;
		height: 40px;
	}
	#pageTop::before{
		width: 10px;
		height: 10px;
	}


	/*
		commonEntry
	-----------------------------------------------------------------------------------------------*/
	#commonEntryWrapper .list{
		display: block;
	}
	#commonEntryWrapper .list li{
		width: 100%;
	}
	#commonEntryWrapper .list li a{
		font-size: 1.4rem;
		padding: 30px 20px;
	}
	#commonEntryWrapper .list span{
		font-size: 2.4rem;
	}
	
	
	/*
		pan
	-----------------------------------------------------------------------------------------------*/
	#olistPan{
		width: calc(100% - 40px);
	}
	
	
	/*
		下層ページタイトル
	-----------------------------------------------------------------------------------------------*/
	#cmnTitWrapper{
		width: 100%;
		max-width: 500px;
		min-height: 250px;
		padding: 20px 20px 150px 20px;
	}
	#cmnTitWrapper::before{
		height: 100% !important;
	}
	#cmnTitWrapper .tit{
		font-size: 2.2rem;
	}
	#cmnTitWrapper .titSub{
		font-size: 1.4rem;
		margin-top: 15px;
	}
	#cmnTitWrapper .txt{
		width: 100%;
		text-align: justify;
		margin-top: 20px;
	}


	/*
		吹き出し
	-----------------------------------------------------------------------------------------------*/
	.picCommentWrapper .txtArea{
		border-radius: 5px;
		padding: 15px;
		margin-right: 30px;
	}
	.picCommentWrapper .txtArea::before{/* bg */
		height: 40px;
	}
	.picCommentWrapper .txtArea::after{/* 線 */
		height: 30px;
	}
	.picCommentWrapper .txtArea .titPoint{
		font-size: 1.6rem;
	}
	.picCommentWrapper .txtArea .txt{
		font-size: 1.4rem;
	}
	
	/* tyep */
	.picCommentWrapper.type01 .txtArea{/* 男性 */
		width: 75%;
	}
	.picCommentWrapper.type01 figure{
		width: calc((100% - 75%) - 30px);
		max-width: 70px;
	}
	.picCommentWrapper.type02 .txtArea{/* 机 */
		width: 55%;
	}
	.picCommentWrapper.type02 figure{
		width: calc((100% - 55%) - 30px);
	}
	.picCommentWrapper.type03 .txtArea{/* 女性 */
		width: 77%;
	}
	.picCommentWrapper.type03 figure{
		width: calc((100% - 77%) - 30px);
		max-width: 55px;
	}


	/*
		丸背景アイテム
	-----------------------------------------------------------------------------------------------*/
	/* size */
	[class ^= itemCircle].sizeS{
		width: 20px;
		height: 20px;
	}
	[class ^= itemCircle].sizeM{
		width: 50px;
		height: 50px;
	}
	[class ^= itemCircle].sizeL{
		width: 100px;
		height: 100px;
	}
	
	
	/*
		scroll
	-----------------------------------------------------------------------------------------------*/
	.scrollXArea{
		position: relative;
		overflow-x: scroll;
	}
	.scrollXArea .scrollBox{
		display: block;
		width: 150px;
		height: 80px;
		background-color: rgba(0, 0, 0, 0.85);
		border-radius: 5px;
		position: absolute;
		top: 100px;
		left: 50%;
		transform: translateX(-50%);
		pointer-events: none;
		z-index: 100;
	}
	.scrollXArea .scrollBox.anmStart{
		animation: anmScrollBox 4.5s ease 0.5s;
	}
	.scrollXArea .scrollBox span{
		display: block;
		height: 100%;
		text-align: center;
		color: #fff;
		font-size: 1.2rem;
		line-height: 140%;
		padding: 12px 10px;
		position: relative;
	}
	.scrollXArea .scrollBox span::before,
	.scrollXArea .scrollBox span::after{
		content: " ";
		display: block;
		position: absolute;
	}
	.scrollXArea .scrollBox span::before{
		width: 9px;
		height: 9px;
		border: 1px solid transparent;
		border-top: 1px solid #fff;
		border-right: 1px solid #fff;
		bottom: 13px;
		right: 55px;
		transform: rotate(45deg);
	}
	.scrollXArea .scrollBox span::after{
		width: 40px;
		height: 1px;
		background-color: #fff;
		bottom: 17px;
		left: 50%;
		transform: translateX(-50%);
	}
	
	
	/*
		tab
	-----------------------------------------------------------------------------------------------*/
	.tabWrapper .whiteArea{
		border-radius: 0 0 10px 10px
	}
	
	/* listTab */
	.listTab li{
		min-height: 70px;
		font-size: 1.6rem;
		padding: 10px;
	}
	
	
	/*
		swiper
	-----------------------------------------------------------------------------------------------*/
	/* common */
	.swiper-button-next,
	.swiper-button-prev{
		width: 30px;
		height: 50px;
	}
	.swiper-button-next{
		right: 5px;
	}
	.swiper-button-prev{
		left: 5px;
	}
	.swiper-button-next:after,
	.swiper-button-prev:after{
		width: 15px;
		height: 15px;
	}
	
	
	/*
		bnr
	-----------------------------------------------------------------------------------------------*/
	#bnrWrapper{
		width: 100%;
	}
	#bnrWrapper .bnrBase{
		padding: 20px 15px 40px 15px
	}
	#bnrWrapper .bnrBase::after{
		bottom: 10px;
	}
	#bnrWrapper .bnrBase figure{
		display: flex;
		flex-direction: column;
		width: calc(100% - 180px);
		max-width: 250px;
		height: 100px;
		right: 10px;
		overflow: hidden;
	}
	#bnrWrapper .bnrBase figure img{
		display: block;
		margin-top: auto;
	}
	#bnrWrapper .bnrBase .titArea{
		margin-bottom: 15px;
	}
	#bnrWrapper .bnrBase .titSub{
		font-size: 1.4rem;
	}
	#bnrWrapper .bnrBase .titSub span{
		padding-bottom: 8px;
		margin-bottom: 10px;
	}
	#bnrWrapper .bnrBase .tit{
		font-size: 1.8rem;
		letter-spacing: 0.15rem;
	}
	#bnrWrapper .bnrBase .txt{
		font-size: 1.2rem;
		line-height: 150%;
	}
	
	
	/*
		modal
	-----------------------------------------------------------------------------------------------*/
	.modalCmn .modalBox{
		width: calc(100% - 40px);
		max-width: 500px;
		padding: 15px;
		margin: 0 auto;
	}

	/* close */
	.modalCmn .close{
		right: 20px;
	}


	/*
		バナーlist
	-----------------------------------------------------------------------------------------------*/
	* + .cmnListBnrWrapper{
		margin-top: 60px;
	}

	/* txt */
	.cmnListBnrWrapper .txtBnr{
		margin-bottom: 15px;
	}

	.cmnListBnr{
		flex-direction: column;
		gap: 20px 0;
	}

	/* 矢印 */
	.cmnListBnr a::after{
		bottom: 11px;
	}
}