@charset "utf-8";
body,div,dl,dt,dd,ul,ol,li,p,h1,h2,h3,h4,h5,h6,th,td,pre,code,blockquote,form,fieldset,legend,input,textarea,figcaption,figure{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,th,var{font-style:normal;font-weight:normal}li{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit}input,textarea,select{*font-size:100%}legend{color:#FFF}hr{display:none}img{vertical-align:bottom}select,input,button,textarea{font-size:99%}table{font-size:inherit;font:100%;border-collapse:collapse;border-spacing:0}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:100%}.hd{display:block;width:0;height:0;overflow:hidden}.cf:before,.cf:after{content:"";display:table}.cf:after{clear:both}.cf{*zoom:1}article,aside,details,figcaption,figure,footer,header,hgroup,hr,menu,nav,section,main{display:block}*{margin:0;padding:0;box-sizing:border-box;max-height:999999px;outline:none;}*:focus{outline: none;}button{background-color:transparent;border:none;cursor:pointer;outline:none;padding:0;}
/*-----------------------------------------------
 * Bace
 * Modal
 * Header
 * Parts
-------------------------------------------------*/
/*-----------------------------------------------
 * Bace
-------------------------------------------------*/
:root{
	--font-sans: 'Noto Sans JP', sans-serif;
	--font-serif: 'Noto Serif JP', serif;
	--font-eng: 'Cormorant Garamond', serif;

	--color-gray: #353535;

	--sp-size-2: min(0.2667vw, 2px);
	--sp-size-4: min(0.5334vw, 4px);
	--sp-size-8: min(1.0667vw, 8px);
	--sp-size-10: min(1.3334vw, 10px);
	--sp-size-12: min(1.6vw, 12px);
	--sp-size-14: min(1.8667vw, 14px);
	--sp-size-16: min(2.1334vw, 16px);
	--sp-size-20: min(2.6667vw, 20px);
	--sp-size-24: min(3.2vw, 24px);
	--sp-size-26: min(3.4667vw, 26px);
	--sp-size-28: min(3.7334vw, 28px);
	--sp-size-30: min(4vw, 30px);
	--sp-size-32: min(4.2667vw, 32px);
	--sp-size-36: min(4.8vw, 36px);
	--sp-size-40: min(5.3334vw, 40px);
	--sp-size-48: min(6.4vw, 48px);
	--sp-size-50: min(6.6667vw, 50px);
	--sp-size-56: min(7.4667vw, 56px);
	--sp-size-60: min(8vw, 60px);
	--sp-size-64: min(8.5334vw, 64px);
	--sp-size-72: min(9.6vw, 72px);
	--sp-size-80: min(10.6667vw, 80px);
	--sp-size-88: min(11.7334vw, 88px);
	--sp-size-96: min(12.8vw, 96px);
}


body{
	-webkit-text-size-adjust: 100%;
	background-color: #000;
	color: #FFF;
	font-family: 'Noto Serif JP', serif;
	font-feature-settings: "palt";
	font-size: 16px;
	font-weight: normal;
	letter-spacing: 0.07em;
	line-height: 1.8;
	word-wrap: break-word;
}
.pc{ display: block; }
.sp{ display: none; }
a{ color: #222; }
a:hover{ text-decoration: none; }
.ah { transition: opacity .3s ease; }
.ah:hover { opacity: .7; }
::selection{
	background: #6ccfee;
	color: #fff;
}
::-moz-selection{
	background: #6ccfee;
	color:#fff;
}
.f_sans{
	font-family: var(--font-sans);
}
@media screen and (max-width:767px){ 
	html{ 
		font-size: 62.5%;
	}
	body{
		font-size: 10px; 
		font-size: 1rem;
		min-width: 320px;
	}
	.sp{ display: block; }
	.pc{ display: none; }
	.ah:hover { opacity: 1; }
}


/*-----------------------------------------------
 * Modal
-------------------------------------------------*/

/**
 * modalBox
 * 基盤のモーダル
 */
.modalBox{
	-webkit-overflow-scrolling: touch;
	background: rgba(0,0,0,.75);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	display: none;
	width: 100%;
	height: 100%;
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}
.oneModal{
	display: none;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}

/* oneModalIn */
.oneModalIn{
	display: flex;
	justify-content: center;
	align-items: center;
	height: auto;
	width: 100%;
	min-height: 100%;
	margin: 0 auto;
	position: relative;
}
.oneModalIn__cont{
	padding: 50px 0;
}
@media screen and (max-width:767px){
	.oneModalIn__cont{
		width: 100%;
		padding: 30px 0;
	}
}

/**
 * closeBtn
 */
.closeBtn{
	width: 90px;
	height: 40px;
	position: absolute;
	top: 0;
	margin-top: 2%;
	right: 4%;
	z-index: 2;
}
.closeBtn a{
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}
.closeBtn a:before {
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	top: 19px;
	left: 0;
	transform: rotate(22.5deg);
	background-color: #fff;
}
.closeBtn a:after {
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	bottom: 19px;
	left: 0;
	transform: rotate(-22.5deg);
	background-color: #fff;
}
@media screen and (max-width:767px){
	.closeBtn{
		width: min(12vw, 90px);
		height: var(--sp-size-40);
		margin-top: var(--sp-size-12);
		right: var(--sp-size-24);
	}
	.closeBtn a:before {
		top: min(2.5334vw, 19px);	
	}
	.closeBtn a:after {
		bottom: min(2.5334vw, 19px);	
	}
}

/**
 * iframe
 */
/* common */
.commonIframe{
	width: 100%;
	height: 100%;
	display: block;
}

/* youtube */
.youtubeIframeWrap {
	width: 70%;
	max-width: 159.993vh;
	position: relative;
}
@media screen and (max-width:767px){
	.youtubeIframeWrap {
		width: 100%;
		max-width: 100%;
	}
}
.youtubeIframeWrap:before{
	content: "";
	display: block;
	padding-top: 56.25%;
	z-index: 0;
}
.youtubeIframe{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}


/*-----------------------------------------------
 * Header
-------------------------------------------------*/
.header {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 999;
}
@media screen and (max-width:767px){
	.header {
		top: 0;
		bottom: auto;
	}
}

/* inner */
.header__inner {
	-webkit-overflow-scrolling: touch;
	width: calc(100% - 50px);
	height: 100%;
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	padding: 4.1667% 6.6667%;
	opacity: 0;
	pointer-events: none;
	z-index: 1;
	transition: opacity .5s ease-in-out;
	display: flex;
	flex-wrap: wrap;
}
.header.is-active .header__inner {
	opacity: 1;
	pointer-events: auto;
}

.header__inner:before {
	content: "";
	background: #000 url(../img/common/nav_bg.jpg) no-repeat center / cover;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
}

@media screen and (max-width: 767px){
	.header__inner {
		flex-wrap: nowrap;
		flex-direction: column;
		padding: 8.5334% 4.2667%;
		width: calc(100% - var(--sp-size-50));
	}
}


/**
 * headerNav
 */
.headerNav {
	position: relative;
	z-index: 2;
	display: flex;
	margin-left: auto;
}

@media screen and (max-width:959px){
	.headerNav {
		margin-left: 0;
	}
}
@media screen and (max-width: 767px){
	.headerNav{
		width: 100%;
		display: block;
	}
}

.headerNavLists.pagelinks{
	height: 290px;
	display: grid;
	grid-template-columns: repeat(3, 1fr) repeat(1, 0);
	grid-template-rows: repeat(5, 1fr);
	gap: 20px;
}
@media screen and (min-width: 768px){
	.headerNavLists.pagelinks .headerNavList:nth-of-type(1){
		grid-area: 1 / 1 / 2 / 2;
	}
	.headerNavLists.pagelinks .headerNavList:nth-of-type(2){
		grid-area: 2 / 1 / 3 / 2;
	}
	.headerNavLists.pagelinks .headerNavList:nth-of-type(3){
		grid-area: 3 / 1 / 4 / 2;
	}
	.headerNavLists.pagelinks .headerNavList:nth-of-type(4){
		grid-area: 4 / 1 / 5 / 2;
	}
	.headerNavLists.pagelinks .headerNavList:nth-of-type(5){
		grid-area: 5 / 1 / 6 / 2;
	}
	.headerNavLists.pagelinks .headerNavList:nth-of-type(6){
		grid-area: 1 / 2 / 2 / 3;
	}
	.headerNavLists.pagelinks .headerNavList:nth-of-type(7){
		grid-area: 2 / 2 / 3 / 3;
	}
	.headerNavLists.pagelinks .headerNavList:nth-of-type(8){
		grid-area: 3 / 2 / 4 / 3;
	}
	.headerNavLists.pagelinks .headerNavList:nth-of-type(9){
		grid-area: 4 / 2 / 5 / 3;
	}
	.headerNavLists.pagelinks .headerNavList:nth-of-type(10){
		grid-area: 5 / 2 / 6 / 3;
	}
	.headerNavLists.pagelinks .headerNavList:nth-of-type(11){
		grid-area: 1 / 3 / 2 / 4;
	}
	.headerNavLists.pagelinks .headerNavList:nth-of-type(12){
		grid-area: 2 / 3 / 3 / 4;
	}
	.headerNavLists.pagelinks .headerNavList:nth-of-type(13){
		grid-area: 3 / 3 / 4 / 4;
	}
	.headerNavLists.pagelinks .headerNavList:nth-of-type(14){
		grid-area: 4 / 3 / 5 / 4;
	}
	.headerNavLists.pagelinks .headerNavList:nth-of-type(15){
		grid-area: 5 / 3 / 6 / 4;
	}
}


.snslinks{
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.headerNavList__link{
	color: #fff;
	text-decoration: none;
	font-family: var(--font-eng);
	font-weight: 500;
	font-size: 30px;
	line-height: 1;
	letter-spacing: 0.1em;
}
.headerNavList__link span{
	position: relative;
	display: inline-block;
	padding: 0 0 12px;
}
.headerNavList__link span:before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	right: 50%;
	height: 2px;
	background-color: #fff;
	filter: blur(4px);
	transition: .6s cubic-bezier(.19,.83,.55,1.1);
}
.headerNavList__link.--current span:before,
.headerNavList__link:hover span:before{
	left: 0;
	right: 0;
	filter: blur(0px);
}

.headerNavList__link.twi span,
.headerNavList__link.insta span{
	padding-right: 40px;
}
.headerNavList__link.twi span:after,
.headerNavList__link.insta span:after{
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 24px;
	padding-top: 28px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	background-color: #fff;
}
.headerNavList__link.twi span:after{
	-webkit-mask-image: url(../img/common/icon_tw.svg);
	mask-image: url(../img/common/icon_tw.svg);
}
.headerNavList__link.insta span:after{
	-webkit-mask-image: url(../img/common/icon_insta.svg);
	mask-image: url(../img/common/icon_insta.svg);
}


@media screen and (max-width: 767px){
	.headerNavLists.pagelinks,
	.snslinks{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		gap: unset;
		flex-direction: unset;
		height: unset;
	}
	.headerNavList{
		padding-right: var(--sp-size-72);
		position: relative;
		margin-bottom: var(--sp-size-40);
	}
	.headerNavList:after{
		content: '';
		position: absolute;
		top: 0;
		right: var(--sp-size-12);
		width: var(--sp-size-56);
		height: var(--sp-size-56);
		background: url(../img/common/nav_line.svg) no-repeat right bottom / contain;
	}
	.headerNavList__link{
		display: inline-block;
		font-size: var(--sp-size-60);
	}
	.headerNavList__link span{
		padding-bottom: var(--sp-size-16);
	}
	.headerNavLists.pagelinks .headerNavList:nth-of-type(3),
	.headerNavLists.pagelinks .headerNavList:nth-of-type(5),
	.headerNavLists.pagelinks .headerNavList:nth-of-type(6),
	.headerNavLists.pagelinks .headerNavList:nth-of-type(9),
	.headerNavLists.pagelinks .headerNavList:nth-of-type(11),
	.headerNavLists.pagelinks .headerNavList:nth-of-type(13),
	.headerNavLists .headerNavList:last-child{
		padding-right: 0;
	}
	.headerNavLists.pagelinks .headerNavList:nth-of-type(3)::after,
	.headerNavLists.pagelinks .headerNavList:nth-of-type(5)::after,
	.headerNavLists.pagelinks .headerNavList:nth-of-type(6)::after,
	.headerNavLists.pagelinks .headerNavList:nth-of-type(9)::after,
	.headerNavLists.pagelinks .headerNavList:nth-of-type(11)::after,
	.headerNavLists.pagelinks .headerNavList:nth-of-type(13)::after,
	.headerNavLists .headerNavList:last-child::after{
		content: unset;
	}
	.headerNavList__link.twi span,
	.headerNavList__link.insta span{
		padding-right: var(--sp-size-40);
	}
	.headerNavList__link.twi span:after,
	.headerNavList__link.insta span:after{
		width: var(--sp-size-32);
		padding-top: var(--sp-size-56);
	}
}




/**
 * header__content
 */
.header__content{
	width: 100%;
	position: relative;
	z-index: 2;
	margin-top: auto;
}
.header__newsListsWrap{
	width: 100%;
	margin-top: 64px;
}
.header__newsListsWrap dt{
	font-family: var(--font-eng);
	font-weight: 500;
	font-size: 14px;
	line-height: 1;
}
.header__newsLists{
	width: 100%;
	margin-top: 32px;
	padding-bottom:30px;
}
.header__newsList{
	width: 100%;
	margin-bottom: 20px;
}
.header__newsList_link{
	width: 100%;
	overflow: hidden;
	display: flex;
	line-height: 1;
	align-items: center;
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #FFF;
}
.header__newsList_date{
	display: inline-block;
	flex-shrink: 0;
	padding-right: 32px;
	font-family: var(--font-eng);
	font-weight: 500;
	font-size: 16px;
	padding-bottom: 6px;
}
.header__newsList_ttl{
	font-size: 12px;
	line-height: 1;
	position: relative;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-bottom: 6px;
}
.header__newsList_ttl:after{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	height: 1px;
	width: 100%;
	background: linear-gradient(#FFF,#FFF) no-repeat right center / 0 100%;
	transition: background-size .6s ease 0s;
}
.header__newsList_link:hover .header__newsList_ttl:after{
	background-position: left center;
	background-size: 100% 100%;
}

@media screen and (max-width: 767px){
	.header__newsListsWrap{
		margin-top: var(--sp-size-60);
	}
	.header__newsListsWrap dt{
		font-size: var(--sp-size-24);
	}
	.header__newsLists{
		margin-top: var(--sp-size-32);
	}
	.header__newsList:not(:last-child){
		margin-bottom: var(--sp-size-36);
	}
	.header__newsList_link{
		line-height: 2;
		display: block;
		white-space: normal;
		overflow: unset;
		text-overflow: unset;
	}
	.header__newsList_date{
		display: block;
		font-size: var(--sp-size-20);
		padding-bottom: var(--sp-size-4);
	}
	.header__newsList_ttl{
		font-size: var(--sp-size-24);
		padding-bottom: var(--sp-size-8);
		display: inline-block;
		max-width: 100%;
	}
	.header__newsList_ttl:after{
		background-position: left center;
		background-size: 100% 100%;
	}
}


.header__contact{
	width: 100%;
	font-size: 10px;
	display: block;
	align-items: center;
	color: rgba(255,255,255,.4);
	margin-top: 32px;
}
.header__contactLink{
	flex-shrink: 0;
	padding-right: 14px;
	margin-bottom:15px;
}
.header__contactLink a{
	font-size: 16px;
	line-height: 1;
	display: inline-block;
	text-decoration: none;
	color: rgba(255,255,255,.4);
	padding: 10px 70px;
	border: 1px solid rgba(255,255,255,.4);
	background-color: #000;
	position: relative;
	transition: .4s ease;
}
.header__contactLink a:hover{
	color: rgba(255,255,255,1);
}
.header__contactLink a:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(rgba(255,255,255,.4),rgba(255,255,255,.4)) no-repeat right center / 0 100%;
	transition: background-size .4s ease 0s;
}
.header__contactLink a:hover::after{
	background-position: left center;
	background-size: 100% 100%;
}

@media screen and (max-width: 767px){
	.header__contact{
		/* align-items: normal; */
		margin-top: var(--sp-size-40);
	}
	.header__contactLink{
		height: 100%;
		padding-right: var(--sp-size-16);
	}
	.header__contactLink a{
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: var(--sp-size-16) var(--sp-size-24);
		font-size: var(--sp-size-20);
	}
	.header__contact_notice{
		font-size: var(--sp-size-20);
		text-align: center
	}
}



/**
 * header__foot
 */
.header__foot{
	order: -1;
	position: relative;
	z-index: 2;
}
.header__shareLists{
	display: flex;
	align-items: center;
}
.header__shareLists dt{
	font-family: var(--font-eng);
	font-size: 10px;
	line-height: 1;
}
.companyLogo{
	width: 200px;
	margin: 30px 0 20px;
}
.companyLogo img{
	width: 100%;
}
.copyright{
	font-size: 10px;
	line-height: 2;
	letter-spacing: 0.1em;
}

.copyright a{
	color:#fff;
}

@media screen and (max-width:959px){
	.header__foot{
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		flex-wrap: wrap;
		order: unset;
		margin-top: var(--sp-size-40);
	}
	.header__shareLists{
		width: 31.4592%;
		flex-wrap: wrap;
		align-items: normal;
		justify-content: space-between;
	}
	.header__shareLists dt{
		width: 100%;
		font-size: var(--sp-size-20);
		text-align: center;
		margin-bottom: var(--sp-size-12);
	}
	.copyright{
		width: 100%;
		font-size: var(--sp-size-20);
		text-align: center;
		margin-top: var(--sp-size-48);
	}
	.companyLogo{
		width: 54.2453%;
		margin: 0;
	}
}

/**
 * headerinbg
 **/
.header_inbg{
	position: fixed;
	top: 0;
	left: 0;
	right: 50px;
	bottom: 0;
	z-index: 1;
	pointer-events: none;
	opacity: 10%;
}
.header_inbg-t{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 17.4194%;
	background: url(../img/common/ttl_t.png) no-repeat center top / contain;
}
.header_inbg-c{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 17.5281%;
	margin: auto 0;
	background: url(../img/common/ttl_c.png) no-repeat center top / contain;
}
.header_inbg-b{
	position: absolute;
	bottom: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 28.7097%;
	margin: auto 0;
	background: url(../img/common/ttl_b.png) no-repeat center bottom / contain;
}

@media screen and (max-width: 767px){
	.header_inbg{
		right: var(--sp-size-50);
	}
}



/**
 * headerbg
 */
.header__bg{
	position: sticky;
	top: 0;
	right: 0;
	width: 50px;
	height: 100vh;
	/* min-height: 620px; */
	background-color: #000;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
}
.header__navBtnWrap {
	background-color: #000;
	width: 50px;
	height: 60px;
	z-index: 2;
}
.header__navBtn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}
.header__navBtn__lineWrap {
	width: 16px;
	height: 100%;
	position: relative;
	transition: .3s ease;
}
@media screen and (min-width: 767px){
	.header__navBtn:hover .header__navBtn__lineWrap{
		transform: rotate(15deg);
	}
}
.header__navBtn__line--open,
.header__navBtn__line--close{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: .3s ease;
}
.header__navBtn__line--close{
	opacity: 0;
	transition-delay: .3s;
}
.header__navBtn--line {
	background-color: #fff;
	display: block;
	width: 1px;
	height: 100%;
	margin: auto;
	position: absolute;
	transition: .3s ease;
}
.header__navBtn--line:nth-child(1) {
	left: 0;
}
.header__navBtn--line:nth-child(2) {
	left: 0;
	right: 0;
}
.header__navBtn--line:nth-child(3) {
	right: 0;
}

/* is-active */
.header__navBtn.is-active .header__navBtn__line--open{
	opacity: 0;
}
.header__navBtn.is-active .header__navBtn__line--close {
	opacity: 1;
}

.header__navBtn.is-active .header__navBtn--line:nth-child(1),
.header__navBtn.is-active:hover .header__navBtn--line:nth-child(1) {
	transform: rotate(15deg);
	left: 7px;
}

.header__navBtn.is-active .header__navBtn--line:nth-child(2) {
	transform: translateY(30%);
	opacity: 0;
}

.header__navBtn.is-active .header__navBtn--line:nth-child(3),
.header__navBtn.is-active:hover .header__navBtn--line:nth-child(3) {
	transform: rotate(-15deg);
	right: 7px;
}
.header__navBtn.is-active:hover .header__navBtn__lineWrap{
	transform: rotateY(180deg);
}


/* SNS */
.officialsnsLists{
	position: absolute;
	bottom: 0;
	margin-bottom: 20px;
	width: 100%;
}
.officialsnsLists dt{
	display: block;
	margin-bottom: 20px;
	line-height: 1;
	font-size: 10px;
	font-family: var(--font-eng);
	letter-spacing: 0.1em;
	text-align: center;
}
.officialsnsLists dd{
	display: block;
	width: 100%;
	line-height: 0;
	text-align: center;
}
.officialsnsLists dd:not(:last-child){
	margin-bottom: 20px;
}
.officialsnsLists dd a{
	display: inline-block;
	width: 40%;
	padding-top: 40%;
	text-decoration: none;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	background-color: #fff;
}
.ofsns_twi{
	-webkit-mask-image: url(../img/common/icon_tw.svg);
	mask-image: url(../img/common/icon_tw.svg);
}
.ofsns_insta{
	-webkit-mask-image: url(../img/common/icon_insta.svg);
	mask-image: url(../img/common/icon_insta.svg);
}

@media screen and (max-width: 767px){
	.header__bg{
		width: var(--sp-size-50);
		height: var(--oneview_height);
	}
	.header__navBtnWrap {
		width: 100%;
		height: var(--sp-size-60);
	}
	.header__navBtn__lineWrap {
		width: var(--sp-size-16);
	}
	.header__navBtn.is-active .header__navBtn--line:nth-child(1),
	.header__navBtn.is-active:hover .header__navBtn--line:nth-child(1) {
		left: 0.9334vw;
	}
	.header__navBtn.is-active .header__navBtn--line:nth-child(3),
	.header__navBtn.is-active:hover .header__navBtn--line:nth-child(3) {
		right: 0.9334vw;
	}
}


/*-----------------------------------------------
 * Parts
-------------------------------------------------*/

/**
 * shareLists
 */
.shareLists {
	display: flex;
}

/* item */
.shareLists__item {
	width: 40px;
	height: 20px;
}

/* link */
.shareLists__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50%;
	height: 100%;
	position: relative;
	text-decoration: none;
	margin: 0 auto;
}
.shareLists__link:before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #FFF;
	display: block;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: 100%;
	mask-size: 100%;
	transition: background-color .4s ease;
}
.shareLists__link:hover:before {
	background-color: rgba(255,255,255,70%);
}

@media screen and (max-width: 767px){
	.shareLists__item {
		width: var(--sp-size-40);
		height: var(--sp-size-40);
	}
	.shareLists__link {
		width: 100%;
	}
}

/* 各SNSパーツ */
.shareLists__item.is-twitter .shareLists__link:before {
	-webkit-mask-image: url(../img/common/icon_tw.svg);
	mask-image: url(../img/common/icon_tw.svg);
}
.shareLists__item.is-facebook .shareLists__link:before {
	-webkit-mask-image: url(../img/common/icon_fb.svg);
	mask-image: url(../img/common/icon_fb.svg);
}
.shareLists__item.is-line .shareLists__link:before {
	-webkit-mask-image: url(../img/common/icon_line.svg);
	mask-image: url(../img/common/icon_line.svg);
}


/**
 * Circle
 */
.com_linkCircle{
	position: relative;
	width: 72px;
	display: block;
}
.com_linkCircle_out,
.com_linkCircle_in{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 8px;
	height: 8px;
	transition: all .3s ease;
	border-radius: 50%;
	transform-origin: center;
}
.com_linkCircle.com_linkCicle--b .com_linkCircle_out,
.com_linkCircle.com_linkCicle--b .com_linkCircle_in{
	transform-origin: center top;
}
.com_linkCircle.com_linkCicle--b .com_linkCircle_out,
.com_linkCircle.com_linkCicle--b .com_linkCircle_in{
	top: unset;
	bottom: 0;
	transform-origin: center bottom;
}

.com_linkCircle_out{
	border: 1px solid #fff;
	z-index: 2;
}
.com_linkCircle_in{
	background-color: #fff;
}

.com_linkCircle_txt{
	position: absolute;
	top: 0;
	display: inline-block;
	width: 100%;
	padding-top: 100%;
	pointer-events: none;
	z-index: 3
}
.com_linkCircle_txt span{
	position: absolute;
	top: 0px;
	left: 0;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .3s ease;
	opacity: 0;
	transform: scale(50%);
	font-family: var(--font-eng);
	font-size: 12px;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-align: center;
}

.com_linkCircle.com_linkCicle--b .com_linkCircle_txt{
	top: unset;
	bottom: 0;
}

.com_linkCircle:hover .com_linkCircle_out,
.com_linkCircle.-view .com_linkCircle_out{
	width: 72px;
	height: 72px;
}
.com_linkCircle:hover .com_linkCircle_in,
.com_linkCircle.-view .com_linkCircle_in{
	width: 72px;
	height: 72px;
	opacity: 0;
}
.com_linkCircle:hover .com_linkCircle_txt span,
.com_linkCircle.-view .com_linkCircle_txt span{
	opacity: 1;
	transform: scale(100%);
	transition-delay: .05s;
}

@media screen and (max-width: 767px){
	.com_linkCircle{
		width: var(--sp-size-96);
	}
	.com_linkCircle:hover .com_linkCircle_out,
	.com_linkCircle:hover .com_linkCircle_in,
	.com_linkCircle.-view .com_linkCircle_out,
	.com_linkCircle.-view .com_linkCircle_in,
	.com_linkCircle_out,
	.com_linkCircle_in{
		width: var(--sp-size-96);
		height: var(--sp-size-96);
	}
	.com_linkCircle_in{
		background-color: #000;
		opacity: 50%!important;
	}
	.com_linkCircle_txt span{
		opacity: 1;
		font-size: var(--sp-size-24);
		transform: scale(100%);
	}
}


/**
 * LandScape
 */
 #landscape{
	display: none;
 }
 @media screen and (max-width: 767px) and (orientation: landscape) and (hover: none) and (pointer: coarse) {
	#landscape {
		display: flex;
		position:fixed;
		left:0;
		top:0;
		right:0;
		bottom:0;
		z-index:100001;
		background:#000;
		justify-content: center;
		align-items: center;
	}
	#landscape:before {
		content:'';
		position: absolute;
		top:0;
		bottom:0;
		right:0;
		left:0;
		margin: auto;
		width: 80%;
		height: 70%;
		background:url(../img/common/logo.svg) no-repeat center center / contain;
		opacity:0.15;
	}
	#landscape p {
		color:#FFF;
		font-size:var(--sp-size-26);
		font-weight: 700;
		position:relative;
		z-index:10;
	}
 }


/**------------------------------------
** INPAGE CONTENT COMMON
------------------------------------**/
#fullWrap.inPage{
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: max(100vh, 640px);
	background-color: #111111;
}
#fullWrap.inPage .header{
	bottom: 0;
}
#fullWrap.inPage .header__bg{
	height: 100vh;
	height: 100dvh;
}
@media screen and (max-width: 767px){
	#fullWrap.inPage{
		min-height: 100vh;
		min-height: 100svh;
	}
}

.comMain{
	width: calc(100% - 50px);
	position: relative;
	background-color: #111111;
}

.mainHead{
	width: 100%;
	height: 210px;
	position: relative;
	background: url(../img/common/inP_head_bg.jpg) no-repeat right top / cover;
	display: flex;
	align-items: center;
	justify-content: center;
}
.mainh_h2{
	position: relative;
	font-size: 70px;
	line-height: 0.8;
	font-style: italic;
	font-weight: 400;
}
.mainh_h2:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../img/common/nav_line.svg) no-repeat right bottom / contain;
	width: 110px;
	height: 110px;
	margin: auto;
}
.mainh_h2 span{
	display: inline-block;
	line-height: 0.9;
	position: relative;
	z-index: 2;
	vertical-align: text-top;
}

.mainh_logo{
	width: min(20.8696%, 240px);
	height: 63px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: min(2.6087%, 45px);
	margin: auto 0;
	background: url(../img/common/logo.svg) no-repeat center / contain;
}

.mainh_releaseDay{
	/*width: min(14.087%, 162px);
	padding-top: min(5.2174%, 60px);
	position: absolute;
	bottom: 0;
	right: min(2.6087%, 45px);
	background: url(../img/top/kv/releaseDay.svg) no-repeat right top / cover;*/
	display: none;
}
.mainContentWrap{
	position: relative;
	width: 100%;
}

@media screen and (max-width: 767px){
	.comMain{
		width: calc(100% - var(--sp-size-50));
	}
	.mainHead{
		height: min(36vw, 270px);
	}
	.mainh_h2{
		font-size: var(--sp-size-72);
	}
	.mainh_h2:before{
		content: unset;
	}
	.mainh_logo{
		display: none;
	}
	.mainh_releaseDay{
		/*width: min(23.1429%, 162px);
		padding-top: min(8.5715%, 60px);
		right: 2.8572%;*/
		display: none;
	}
}


/**
** Footer
**/
.comfooter{
	width: calc(100% - 50px);
	border-top: 1px solid var(--color-gray);
	background-color: #111111;
	position: relative;
	margin-top: auto;
	padding: 80px calc(112px + 4%);
}
.comf_toTop{
	position: absolute;
	top: 0;
	right: 36px;
	padding-top: 40px;
}
.comf_toTop:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 1px;
	height: 36px;
	background-color: var(--color-gray);
}
.comf_toTop a{
	color: #FFF;
}

.comf_toTop .com_linkCircle.-view .com_linkCircle_out{
	z-index: 2;
}
.comf_toTop .com_linkCircle.-view .com_linkCircle_in{
	opacity: 1;
	background-color: #111111;
}
.comf_toTop .com_linkCircle.-view .com_linkCircle_txt span{
	transition-delay: 0s;
}

@media screen and (min-width: 768px){
	.comf_toTop .com_linkCircle.-view:hover .com_linkCircle_in{
		background-color: #fff;
	}
	.comf_toTop .com_linkCircle.-view:hover .com_linkCircle_txt span{
		color: #111111;
	}
}


.comf_cont{
	width: 100%;
	position: relative;
}
.comf_logo{
	display: none;
}
.comf_companyLogo{
	width: min(295px, 100%);
	padding-top: 30px;
	background: url(../img/common/logo_company.png) no-repeat center / contain;
	margin: 0 auto;
}
.comf_copyright{
	font-size: 10px;
	line-height: 2;
	text-align: center;
	margin-top: 20px;
}

@media screen and (max-width: 767px){
	.comfooter{
		width: calc(100% - var(--sp-size-50));
		padding: 48% 11.7334% 24%;
	}
	.comf_toTop{
		right: 0;
		left: 0;
		padding-top: var(--sp-size-36);
	}
	.comf_toTop:before{
		height: var(--sp-size-36);
	}
	.comf_toTop a{
		margin: 0 auto;
	}
	.comf_logo{
		display: block;
		width: 100%;
		padding-top: 25.7576%;
		background: url(../img/common/logo.svg) no-repeat center / contain;
	}
	.comf_companyLogo{
		width: min(56.2978%, 295px);
		padding-top: min(5.7252%, 30px);
		margin: 43.8932% auto 0;
	}
	.comf_copyright{
		font-size: var(--sp-size-20);
		margin-top: var(--sp-size-32);
	}
}


/**------------------------------------
** Detail
------------------------------------**/

/* com */
.comDetailWrap{
	width: 100%;
}
.comDetail__titleWrap,
.comDetail__content{
	width: 100%;
	padding: 48px 4.174%;
}

.comDetail__titleWrap{
	border-bottom: 1px solid var(--color-gray);
}
.comDetail__title{
	line-height: 2;
}


@media screen and (max-width: 767px){
	.comDetail__titleWrap,
	.comDetail__content{
		padding: 5.7143%
	}
	.comDetail__title{
		font-size: var(--sp-size-24);
	}
}

/* comDetail__content */
.comDetail__content{
	line-height: 2;
	word-break: break-all;
}
/* p */
.comDetail__content > p:not(:first-of-type) {
	margin-top: 32px;
}
.comDetail__content p.center{
	text-align: center;
}
.comDetail__content p.right{
	text-align: right;
}


/* a */
.comDetail__content a {
	color: var(--main-color-dark);
	font-weight: 500;
}


/* img */
.comDetail__content img {
	height: auto!important;
	max-width: 100%;
}


/* youtube */
.youtubeWrap{
	max-width: 1260px;
	margin: 0 auto;
}
.youtubeInWrap{
	display: block;
	width: 100%;
	position: relative;
	padding-top: 56.25%;
	margin: auto;
}
.youtubeWrap iframe[src*="youtube"]{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 767px){
	.comDetail__content{
		font-size: var(--sp-size-24);
	}
	.comDetail__content > p:not(:first-of-type) {
		margin-top: var(--sp-size-48);
	}
}



/** back **/
.com_toBack{
	width: 100%;
	position: relative;
	padding: 0;
	margin-bottom: 48px;
}
.com_toBack:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	height: 1px;
	width: calc(50% - 36px);
	background-color: var(--color-gray);
	margin: auto 0;
}
.com_toBack a{
	height: 72px;
	margin: 0 auto;
	color: #FFF;
}
.com_toBack .com_linkCircle.-view .com_linkCircle_out{
	z-index: 2;
}
.com_toBack .com_linkCircle.-view .com_linkCircle_in{
	opacity: 1;
	background-color: #111111;
}
.com_toBack .com_linkCircle.-view .com_linkCircle_txt span{
	transition-delay: 0s;
}

@media screen and (min-width: 768px){
	.com_toBack .com_linkCircle.-view:hover .com_linkCircle_in{
		background-color: #fff;
	}
	.com_toBack .com_linkCircle.-view:hover .com_linkCircle_txt span{
		color: #111111;
	}
}

@media screen and (max-width: 767px){
	.com_toBack{
		margin: var(--sp-size-96) 0;
	}
	.com_toBack a{
		height: var(--sp-size-96);
	}
	.com_toBack:before{
		width: calc(50% - var(--sp-size-48));
	}
}