@charset "utf-8";
/*-----------------------------------------------
 * common.css
 * レスポンシブは基本スタイルを引き継ぐ（PCファースト）
 * @media screen and (max-width:768px)
-------------------------------------------------*/
/*-----------------------------------------------
 * Reset, root
 * Bace
 * Modal
 * Header
 * Footer
 * Parts
-------------------------------------------------*/
/*-----------------------------------------------
 * Reset, root
-------------------------------------------------*/
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;}

:root {
	/* デザインサイズ */
	--vw-min: 1366;
	--vh-min: 640;
	--max-percent: 1.6;/* 1920/1200 */

	/* フォント（Google Fonts: index.html で Noto Sans JP / Roboto Condensed を読み込み） */
	--font-ja: "Noto Sans JP", sans-serif;
	--font-en: "Roboto Condensed", sans-serif;
	--font-main: "Noto Sans JP", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;

	/* カラー */
	--color-white: #FFFFFF;
	--color-white2: #EBECEB;
	--color-black: #000000;
	--color-main: #202A12;
	--color-sub: #B42F2F;

	/* easing */
	--easing-outquart: cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width:768px){
	:root {
		/* デザインサイズ */
		--vw-min: 375;
		--vh-min: 1314;
		--max-percent: 1;
	}
}

/*-----------------------------------------------
 * Bace
-------------------------------------------------*/
body{
	-webkit-text-size-adjust: 100%;
	background-color: #fff;
	color: #000;
	font-family: var(--font-main);
	font-size: min(calc(16 / var(--vw-min) * 100vw), 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: #B7D4F9;
	color: #000;
}
::-moz-selection{
	background: #B7D4F9;
	color: #000;
}
@media screen and (max-width:768px){
	.sp{ display: block; }
	.pc{ display: none; }
	.ah:hover { opacity: 1; }
	body{
		font-size: calc(13 / var(--vw-min) * 100vw);
	}
}

/**
 * scroll bar
 */
::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}
::-webkit-scrollbar-track {
	background: #fff;
}
::-webkit-scrollbar-thumb {
	background: #000;
	margin: 2px;
	box-shadow: none;
}


/**
 * Wrap
 * 大枠のwrap指定
 */
/* fullWrap */
#fullWrap {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	position: relative;
	z-index: 1;
}

/*-----------------------------------------------
 * Loading
-------------------------------------------------*/
#loading__out {
	position: fixed;
	z-index: 99999;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: #202a12;
	display: flex;
	justify-content: center;
	align-items: center;
}
.loading__out--box {
	width: 120px;
	height: 126px;
	position: fixed;
	left: 50%;
	top: 50%;
	margin-left: -60px;
	margin-top: -63px;
}
.loading__out--text {
	height: 21px;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	background: url(../img/common/loading/loading_off.png) no-repeat left center;
}
.loading__out--text:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	height: 21px;
	width: 0;
	background: url(../img/common/loading/loading_on.png) no-repeat left center;
	animation: loadingText 1.6s steps(1) 0s infinite;
}
@keyframes loadingText {
	0%, 100% {
		width: 0;
		left: 0;
		right: auto;
		background-position: left center;
	}
	5% {
		width: 16px;
		left: 0;
		right: auto;
		background-position: left center;
	}
	10% {
		width: 33px;
		left: 0;
		right: auto;
		background-position: left center;
	}
	15% {
		width: 51px;
		left: 0;
		right: auto;
		background-position: left center;
	}
	20% {
		width: 69px;
		left: 0;
		right: auto;
		background-position: left center;
	}
	25% {
		width: 85px;
		left: 0;
		right: auto;
		background-position: left center;
	}
	30% {
		width: 104px;
		left: 0;
		right: auto;
		background-position: left center;
	}
	35% {
		width: 120px;
		left: 0;
		right: auto;
		background-position: left center;
	}
	50% {
		width: 120px;
		left: auto;
		right: 0;
		background-position: right center;
	}
	55% {
		width: 104px;
		left: auto;
		right: 0;
		background-position: right center;
	}
	60% {
		width: 87px;
		left: auto;
		right: 0;
		background-position: right center;
	}
	65% {
		width: 69px;
		left: auto;
		right: 0;
		background-position: right center;
	}
	70% {
		width: 51px;
		left: auto;
		right: 0;
		background-position: right center;
	}
	75% {
		width: 35px;
		left: auto;
		right: 0;
		background-position: right center;
	}
	80% {
		width: 16px;
		left: auto;
		right: 0;
		background-position: right center;
	}
	85% {
		width: 0;
		left: auto;
		right: 0;
		background-position: right center;
	}
}
.loading__out--turret {
	width: 96px;
	height: 96px;
	margin: 0 auto;
	background: url(../img/common/loading/loading_turret.png) no-repeat center center;
	animation: loadingTurret 4s linear infinite;
}
@keyframes loadingTurret {
	0%, 100% {
		transform: rotate(0deg);
	}
	12% {
		transform: rotate(-106deg);
	}
	34% {
		transform: rotate(-106deg);
	}
	46% {
		transform: rotate(-210deg);
	}
	56% {
		transform: rotate(-210deg);
	}
	68% {
		transform: rotate(-106deg);
	}
	74% {
		transform: rotate(-106deg);
	}
	86% {
		transform: rotate(0deg);
	}
}


/*-----------------------------------------------
 * Modal
-------------------------------------------------*/
/**
 * modalBox
 * 基盤のモーダル
 */
.modalBox{
	-webkit-overflow-scrolling: touch;
	background: rgba(0,0,0,.85);
	display: none;
	width: 100%;
	height: 100%;
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	padding: 0 calc(12 / var(--vw-min) * 100vw);
}
.imageModal__image{
	padding: calc(48 / var(--vw-min) * 100vw) 0;
}
.oneModal{
	display: none;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}
.oneModal.is-show {
	display: block;
}

/* 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:768px){
	.oneModalIn{
		min-width: 100%;
	}
	.oneModalIn__cont{
		width: 100%;
	}
}

/**
 * closeBtn
 */
.closeBtn{
	width: calc(72 / var(--vw-min) * 100vw);
	height: calc(72 / var(--vw-min) * 100vw);
	position: fixed;
	top: 0;
	right: 0;
	z-index: 2;
}
.closeBtn::before{
	content: "";
	position: absolute;
	top:calc(2 / var(--vw-min) * 100vw);
	right: calc(2 / var(--vw-min) * 100vw);
	width: calc(6 / var(--vw-min) * 100vw);
	height: calc(6 / var(--vw-min) * 100vw);
	background-color: var(--color-main);
	mask: url(../img/common/menu_spdeco.svg) no-repeat center center / contain;
	-webkit-mask: url(../img/common/menu_spdeco.svg) no-repeat center center / contain;
}
@media screen and (max-width:768px){
	.closeBtn{
		width: calc(48 / var(--vw-min) * 100vw);
		height: calc(48 / var(--vw-min) * 100vw);
	}
	.closeBtn::before{
		width: calc(5 / var(--vw-min) * 100vw);
		height: calc(5 / var(--vw-min) * 100vw);
	}
}

.closeBtn a {
	background-color: var(--color-sub);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

/* img */
.closeBtn a:before {
	content: "";
	background: url(../img/common/icon/ic_close.png) no-repeat 0 0 / 100%;
	width:calc(34 / var(--vw-min) * 100vw);
	height:calc(37 / var(--vw-min) * 100vw);
	transition: transform .4s ease;
}
@media screen and (max-width:768px){
	.closeBtn a:before{
		width: calc(26 / var(--vw-min) * 100vw);
		height: calc(27 / var(--vw-min) * 100vw);
	}
}
@media screen and (hover:hover){
    .closeBtn:hover a:before{
       transform: scale(1.06);
    }
}
/**
 * iframe
 */
/* common */
.commonIframe{
	width: 100%;
	height: 100%;
	display: block;
}

/* youtube */
.youtubeIframeWrap {
	width: 70%;
	max-width: 159.993vh;
	position: relative;
}
@media screen and (max-width:768px){
	.youtubeIframeWrap {
		width: 100%;
		max-width: 100%;
		margin: 50px 0;
	}
}
.youtubeIframeWrap:before{
	content: "";
	display: block;
	padding-top: 56.25%;
	z-index: 0;
}
.youtubeIframe{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

/**
 * Image Modal
 */
/*
.imageModal__image{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
	height: 100vh;
	height: 100svh;
}
*/
.imageModal__image img{
	width: 100%;
	/*height: 100%;
	object-fit:scale-down;*/
	height: auto;
    display: block;
    max-width: min(calc(1000 / var(--vw-min) * 100vw), 1000px);
    margin: 0 auto;
}



/*-----------------------------------------------
 * Header
-------------------------------------------------*/
.header {
	position: absolute;
	top: 0;
}
@media screen and (max-width:768px){
	.header {
		width: 100%;
		position: absolute;
		bottom: 0;
		pointer-events: none;
		z-index: 100;
	}
}
@media screen and (min-width:769px){
	.header {
		width: min(calc(400 / var(--vw-min) * 100vw), 400px);
		position: sticky;
		height: min(100vh, 100%);
		z-index: 1;
	}
}
@media screen and (max-width:768px){
	.header__cont{
		position: sticky;
		height: min(100vh, 100%);
		z-index: 1;
	}
}
.header__cont{
	position: sticky;
	height: min(100vh, 100%);
	z-index: 1;
	top: 0;
}


/* inner */
@media screen and (max-width:768px){
	.header__contInner {
		-webkit-overflow-scrolling: touch;
		width: 100%;
		overflow: auto;
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		padding: 0;
		opacity: 1;
		pointer-events: none;
		z-index: 2;
		opacity: 0;
		overscroll-behavior: contain;
		transition: opacity .2s ease-in-out;
	}
	.header.is-active .header__contInner {
		opacity: 1;
		pointer-events: auto;
	}
}
@media screen and (min-width:769px){
	.header__cont,
	.header__contInner{
		height: 100%;
	}
}

/** 
 * inner
**/
.header__inner{
	width: 100%;
	height: 100%;
	min-height: 100%;
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.header__inner::before{
	content: '';
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
	margin: auto;
    width: 100%;
	height: 100%;
	min-height: 100vh;
    background-color: var(--color-main);
}
@media screen and (min-width:769px){
	.header__inner::before{
		right: unset;
		left: 0;
		width: min(calc(400 / var(--vw-min) * 100vw), 400px);
	}
}
.header__innerCont{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	position: relative;
	padding: min(calc(40 / var(--vw-min) * 100vw), 40px) 0 min(calc(22 / var(--vw-min) * 100vw), 22px);
	z-index: 1;
}
@media screen and (min-width:769px){
	.header__innerCont{
		min-height: 100vh;
}
}
@media screen and (max-width:768px){
	.header__innerCont{
		padding: calc(28 / var(--vw-min) * 100vw) 0;
	}
}

/*header__title*/
.header__title{
	width: min(calc(150 / var(--vw-min) * 100vw), 150px);
	position: relative;
	z-index: 1;
	margin-bottom: min(calc(98 / var(--vw-min) * 100vw), 98px);
	margin-left: min(calc(24 / var(--vw-min) * 100vw), 24px);
}
@media screen and (max-width:768px){
	.header__title{
		width: calc(120 / var(--vw-min) * 100vw);
		margin-bottom: calc(72 / var(--vw-min) * 100vw);
		margin-left: calc(20 / var(--vw-min) * 100vw);
	}
}
.header__titleImg{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.header__titleLink{
	display: block;
	transition: transform .4s ease;
}

@media screen and (hover:hover){
	.header__titleLink:hover{
        transform: scale(1.04);
    }
}
/**
 * headerNav
 */


/**
 * headerNavLists
 */
.headerNavLists {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	gap: min(calc(24 / var(--vw-min) * 100vw), 24px);
}

@media screen and (max-width:768px){
	.headerNavLists {
		display: block;
		padding-bottom: calc(84 / var(--vw-min) * 100vw);
	}
	.headerNavLists .navList {
		height: auto;
	}
	.headerNavLists .navList:not(:first-child) {
		margin-top: calc(20 / var(--vw-min) * 100vw);
	}
}

/* a */
.headerNavLists .navList__link {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-weight: 500;
	padding: 0 min(calc(8 / var(--vw-min) * 100vw), 8px) 0 0;
	position: relative;
	text-decoration: none;
	color: var(--color-white);
	transition: color .4s ease;
}
@media screen and (max-width:768px){
	.headerNavLists .navList__link {
		height: auto;
		padding: calc(5 / var(--vw-min) * 100vw) 0;
	}
}
.headerNavLists .navList__link.--is-active{
	color: var(--color-sub);
}
@media screen and (hover:hover){
	.headerNavLists .navList__link:hover{
        color: var(--color-sub);
    }
}

/*
 * comingsoon
 */
.nav_comingsoon{
	opacity: 0.2;
	pointer-events: none;
}
.comingsoon__txt{
	font-size: min(calc(10 / var(--vw-min) * 100vw), 10px);
	color: var(--color-main);
	font-weight: 700;
	font-family: var(--font-en);
	background-color: var(--color-white2);
	line-height: 0.6em;
	letter-spacing: 0;
	padding: min(calc(6 / var(--vw-min) * 100vw), 6px) min(calc(5 / var(--vw-min) * 100vw), 5px) min(calc(4 / var(--vw-min) * 100vw), 4px);
}
@media screen and (max-width:768px){
	.comingsoon__txt{
		font-size: calc(10 / var(--vw-min) * 100vw);
	}
}


.navList,
.navList__link{
	width: 100%;
	display: block;
}
.navList__link .navList__deco {
	display: block;
	flex: 1;
	position: relative;
	height: 100%;
	margin-left: min(calc(8 / var(--vw-min) * 100vw), 8px);
	opacity: 0.15;
}
.navList__deco::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -3px;
	height: 7px;
	width: 1px;
	background: #fff;
}
.navList__deco::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	right: 0;
	height: 1px;
	background: #fff;
}

/*  */
.navList__num{
	display: block;
	width: min(calc(22 / var(--vw-min) * 100vw), 22px);
	height: min(calc(16 / var(--vw-min) * 100vw), 16px);
	background-color: var(--color-white);
	opacity: 0.2;
	margin-right: min(calc(10 / var(--vw-min) * 100vw), 10px);
}
.navList__link.nav_comingsoon .navList__num{
	opacity: 1;
}
@media screen and (max-width:768px){
	.navList__num{
		width: calc(22 / var(--vw-min) * 100vw);
		height: calc(16 / var(--vw-min) * 100vw);
		margin-right:calc(10 / var(--vw-min) * 100vw);
		margin-left:calc(8 / var(--vw-min) * 100vw);
	}
}
.navList__num._num01{
	mask: url(../img/common/num/num_01.svg) no-repeat center center / 100%;
	-webkit-mask: url(../img/common/num/num_01.svg) no-repeat center center / 100%;
}
.navList__num._num02{
	mask: url(../img/common/num/num_02.svg) no-repeat center center / 100%;
	-webkit-mask: url(../img/common/num/num_02.svg) no-repeat center center / 100%;
}
.navList__num._num03{
	mask: url(../img/common/num/num_03.svg) no-repeat center center / 100%;
	-webkit-mask: url(../img/common/num/num_03.svg) no-repeat center center / 100%;
}
.navList__num._num04{
	mask: url(../img/common/num/num_04.svg) no-repeat center center / 100%;
	-webkit-mask: url(../img/common/num/num_04.svg) no-repeat center center / 100%;
}
.navList__num._num05{
	mask: url(../img/common/num/num_05.svg) no-repeat center center / 100%;
	-webkit-mask: url(../img/common/num/num_05.svg) no-repeat center center / 100%;
}
.navList__num._num06{
	mask: url(../img/common/num/num_06.svg) no-repeat center center / 100%;
	-webkit-mask: url(../img/common/num/num_06.svg) no-repeat center center / 100%;
}
.navList__num._num07{
	mask: url(../img/common/num/num_07.svg) no-repeat center center / 100%;
	-webkit-mask: url(../img/common/num/num_07.svg) no-repeat center center / 100%;
}
@media screen and (max-width:768px){
	.navList__txt{
		font-size: calc(17 / var(--vw-min) * 100vw);
		line-height: calc(23 / var(--vw-min) * 100vw);
	}
}
/**
 * navBtn
 */
@media screen and (max-width:768px){
	.header__navBtnWrap {
		background-color: #000;
		width: calc(48 / var(--vw-min) * 100vw);
		height: calc(48 / var(--vw-min) * 100vw);
		position: fixed;
		top: 0;
		right: 0;
		z-index: 2;
		pointer-events: auto;
	}
	.header__navBtn {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		position: relative;
		cursor: pointer;
		flex-direction: column;
	}
	.header__navBtn.is-active {
		background-color: var(--color-sub);
	}

	.header__navBtn::before{
		content: '';
		position: absolute;
		right: 1px;
		top:1px;
		width: calc(5 / var(--vw-min) * 100vw);
		height: calc(5 / var(--vw-min) * 100vw);
		background-color: var(--color-sub);
		mask: url(../img/common/menu_spdeco.svg) no-repeat center center / 100%;
		-webkit-mask: url(../img/common/menu_spdeco.svg) no-repeat center center / 100%;
	}
	.header__navBtn.is-active::before{
		background-color: #000;
	}

	.header__navBtn__lineWrap {
		display: block;
		width: calc(24 / var(--vw-min) * 100vw);
		height: calc(11 / var(--vw-min) * 100vw);
		position: relative;
	}
	.header__navBtn--line {
		background-color: var(--color-white2);
		display: block;
		width: 100%;
		height: calc(1.3 / var(--vw-min) * 100vw);
		margin: auto;
		position: absolute;
	}
	.header__navBtn--line:nth-child(1) {
		top: 0;
		bottom: calc(100% - calc(1.3 / var(--vw-min) * 100vw));
	}
	.header__navBtn--line:nth-child(2) {
		top: 0;
		bottom: 0;
	}
	.header__navBtn--line:nth-child(3) {
		top: calc(100% - calc(1.3 / var(--vw-min) * 100vw));
		bottom: 0;
	}
	.header__navBtn__txt{
		font-size: calc(9.5 / var(--vw-min) * 100vw);
		height: calc(10 / var(--vw-min) * 100vw);
		width: 100%;
		position: relative;
		font-weight: 700;
		line-height: 1;
		color: var(--color-white2);
		margin-top: calc(5 / var(--vw-min) * 100vw);
		font-family: var(--font-en);
	}
	.header__navBtn__txt::after{
		content: 'MENU';
		position: absolute;
		inset: 0;
		margin: auto;
		width: 100%;
		height: 100%;
		font-size: calc(9.5 / var(--vw-min) * 100vw);
	}
	.header__navBtn.is-active .header__navBtn__txt::after{
		content: 'CLOSE';
	}
}

/**
 * active
 */
@media screen and (max-width:768px){
	.header__inner:before{
		width: 0%;
		transition: width .25s ease;
	}
	.header.is-active .header__inner:before{
		width: 100%;
	}
	.header__innerCont{
		opacity: 0;
		transition: opacity .3s ease;
	}
	.header.is-active .header__innerCont{
		opacity: 1;
		transition-delay: .15s;
	}
	.header__navBtn--line {
		transition: transform .3s ease, opacity .3s ease;
	}
	.header__navBtn.is-active .header__navBtn--line:nth-child(1) {
		transform: rotate(25deg);
		bottom: 0;
	}
	.header__navBtn.is-active .header__navBtn--line:nth-child(3) {
		transform: rotate(-25deg);
		top: 0;
		filter: drop-shadow(2px 2px 0px var(--color-sub)) drop-shadow(-2px -2px 0px var(--color-sub));
	}
	.header__navBtn.is-active .header__navBtn--line:nth-child(2) {
		transform: translateX(20%);
		opacity: 0;
	}
}

.header__scroll.pc{
	display: flex;
	justify-content: space-between;
	margin-top: auto;
	padding: min(calc(48 / var(--vw-min) * 100vw), 48px) min(calc(8 / var(--vw-min) * 100vw), 8px) 0;
	align-items: flex-end;
}
@media screen and (max-width:768px){
	.header__scroll.pc{
		display: none;
	}
}
.scrollLink{
	/*position: absolute;
	left: min(calc(14 / var(--vw-min) * 100vw), 14px);
	bottom: min(calc(24 / var(--vw-min) * 100vw), 24px);*/
	width: min(calc(42 / var(--vw-min) * 100vw), 42px);
	height: min(calc(40 / var(--vw-min) * 100vw), 40px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: min(calc(7 / var(--vw-min) * 100vw), 7px);
	z-index: 10;
}
.scrollLink__txt{
	mask: url(../img/common/icon/ic_totop_txt.svg) no-repeat center center / 100%;
	-webkit-mask: url(../img/common/icon/ic_totop_txt.svg) no-repeat center center / 100%;
	background-color:var(--color-white2);
	width: min(calc(7 / var(--vw-min) * 100vw), 7px);
	height: min(calc(40 / var(--vw-min) * 100vw), 40px);
}
.scrollLink__arrow{
	-webkit-mask: url(../img/common/icon/ic_totop_arrow.svg) no-repeat center center / 100%;
	mask: url(../img/common/icon/ic_totop_arrow.svg) no-repeat center center / 100%;
	background-color:var(--color-white2);
	width: min(calc(24 / var(--vw-min) * 100vw), 24px);
	height: min(calc(40 / var(--vw-min) * 100vw), 40px);
	transition: all .4s ease;
}
@media screen and (hover:hover){
    .scrollLink:hover .scrollLink__arrow{
        transform: translateY(-5px);
		background-color: var(--color-sub);
    }
}

.header__copyright{
	font-size: min(calc(10 / var(--vw-min) * 100vw), 10px);
	color: var(--color-white2);
	text-align: right;
	opacity: 0.3;
	font-family: var(--font-en);
	line-height: 1;
}

.header__deco{
	position: absolute;
	inset: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	min-height: max(100vh, 100%);
	z-index: 2;
	pointer-events: none;
	transition: opacity .3s ease;
}
@media screen and (max-width:768px){
	.header__deco{
		opacity: 0;
	}
	.is-active .header__deco{
		opacity: 1;
	}
}


.deco__line {
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	height: 6px;
	width: calc(100% - min(calc(16 / var(--vw-min) * 100vw), 16px));
	border-left:1px solid rgba(255,255,255,.12);
	border-right:1px solid rgba(255,255,255,.12);
	pointer-events: none;
}
.deco__line._top {
		top: min(calc(10 / var(--vw-min) * 100vw), 10px);
}

.deco__line._btm {
	bottom: min(calc(10 / var(--vw-min) * 100vw), 10px);
}

.deco__line:after{
	content: '';
	position: absolute;
	inset: 0;
	margin: auto;
	background: rgba(255,255,255,.12);
	width: min(calc(26 / var(--vw-min) * 100vw), 26px);
	height: 100%;
	mask: url(../img/common/liner_c_w.png) no-repeat center center / min(calc(26 / var(--vw-min) * 100vw), 26px) auto;
	-webkit-mask: url(../img/common/liner_c_w.png) no-repeat center center / min(calc(26 / var(--vw-min) * 100vw), 26px) auto;
}
.deco__line::before{
	content: '';
	position: absolute;
	inset: 0;
	margin: auto;
	height: 1px;
	width: 100%;
	background: rgba(255,255,255,.12);
}
@media screen and (max-width:768px){
	.deco__line {
		height: calc(6 / var(--vw-min) * 100vw);
	}
	.deco__line:after{
		width: calc(26 / var(--vw-min) * 100vw);
	}
}

/* 黒線 */
.deco__line._b {
	border-color: rgba(0, 0, 0, 0.16);
}
.deco__line._b::after{
	background-color: var(--color-black);
}
.deco__line._b::before{
	background-color: rgba(0, 0, 0, 0.16);
}




/*-----------------------------------------------
 * Parts
-------------------------------------------------*/
/**
 * shareLists
 */
.shareLists {
	display: flex;
	gap: min(calc(20 / var(--vw-min) * 100vw), 20px);
}

/* item */
.shareLists__item {
	width: min(calc(24 / var(--vw-min) * 100vw), 24px);
	height: min(calc(24 / var(--vw-min) * 100vw), 24px);
}

/* link */
.shareLists__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
	text-decoration: none;
}
.shareLists__link:before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #000;
	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: #ff0000;
}

/* 各SNSパーツ */
.shareLists__item.is-x .shareLists__link:before {
	-webkit-mask-image: url(../img/common/sns/icon_x.svg);
	mask-image: url(../img/common/sns/icon_x.svg);
}
.shareLists__item.is-facebook .shareLists__link:before {
	-webkit-mask-image: url(../img/common/sns/icon_fb.svg);
	mask-image: url(../img/common/sns/icon_fb.svg);
}
.shareLists__item.is-line .shareLists__link:before {
	-webkit-mask-image: url(../img/common/sns/icon_line.svg);
	mask-image: url(../img/common/sns/icon_line.svg);
}



/**
* modalOpen
**/
.js-modalOpen{
	cursor: pointer;
}
@media screen and (min-width:769px){
	.fullWrap__inner{
		position: relative;
		display: flex;
	}
	.contentsWrap{
		width: calc(100% - min(calc(400 / var(--vw-min) * 100vw), 400px));
	}
}

.fullWrap__bg{
	position: absolute;
	inset: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: -2;
}
.fullWrap__bg::before{
	content: "";
	display: block;
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background:url(../img/common/bg.jpg) repeat center center / min(calc(966 / var(--vw-min) * 100vw), 966px) auto;
}
@media screen and (max-width:768px){
	.fullWrap__bg::before{
		background:url(../img/common/bg_sp.jpg) repeat center center / 100% auto;
	}
}
.main{
	position: relative;
}
/*-----------------------------------------------
 * sectionTtl
-------------------------------------------------*/
.sectionTtl{
	height: min(calc(144 / var(--vw-min) * 100vw), 144px);
	display: flex;
	align-items: flex-start;
    justify-content: center;
	text-align: left;
	padding: min(calc(24 / var(--vw-min) * 100vw), 24px) min(calc(83 / var(--vw-min) * 100vw), 83px);
	position: relative;
	flex-direction: column;
	line-height: 1.2;
	color: var(--color-white2);
	background: var(--color-main) url(../img/common/secttl__deco.svg) no-repeat center right / auto 100%;
}
.sectionTtl__txt{
	font-size: min(calc(40 / var(--vw-min) * 100vw), 40px);
	font-weight: 700;
}
.sectionTtl__deco__txt{
	font-size: min(calc(10 / var(--vw-min) * 100vw), 10px);
	opacity: 0.2;
	font-family: var(--font-en);
	font-weight: 500;
	display: inline-block;
	padding-left: min(calc(6 / var(--vw-min) * 100vw), 6px);
	border-left: 2px solid var(--color-white2);
	margin-bottom: min(calc(8 / var(--vw-min) * 100vw), 8px);
}
@media screen and (max-width:768px){
	.sectionTtl{
		height: calc(120 / var(--vw-min) * 100vw);
		padding: calc(24 / var(--vw-min) * 100vw) calc(20 / var(--vw-min) * 100vw);
		background: var(--color-main) url(../img/common/secttl__deco.svg) no-repeat center right 8% / auto 100%;
	}
	.sectionTtl__txt{
		font-size: calc(28 / var(--vw-min) * 100vw);
	}
	.sectionTtl__deco__txt{
		font-size: calc(10 / var(--vw-min) * 100vw);
		margin-bottom: calc(6 / var(--vw-min) * 100vw);
	}
}

.sectionCont{
	padding: min(calc(60 / var(--vw-min) * 100vw), 60px) min(calc(83 / var(--vw-min) * 100vw), 83px) min(calc(120 / var(--vw-min) * 100vw), 120px);
}
@media screen and (max-width:768px){
	.sectionCont{
		padding:calc(32 / var(--vw-min) * 100vw) 0 calc(48 / var(--vw-min) * 100vw);

	}
}

@media screen and (max-width:768px){
	.txtBox{
		padding:0 calc(16 / var(--vw-min) * 100vw);

	}
}

.visualImg{
	width: 100%;
	height: auto;
}


.corpLinksWrap{
	background-color: #000;
	display: flex;
	color: rgba(235, 236, 235, 0.7);
	padding: min(calc(14 / var(--vw-min) * 100vw), 14px);
	justify-content: flex-end;
	gap: min(calc(16 / var(--vw-min) * 100vw), 16px);
}
.corpLinksWrap__txt{
	font-size: min(calc(12 / var(--vw-min) * 100vw), 12px);
	text-align: center;
}
.corpLinksWrap__txt a{
	color: var(--color-sub);
}
@media screen and (max-width:768px){
	.corpLinksWrap{
		flex-direction: column;
		align-items: center;
		font-size: calc(10.5 / var(--vw-min) * 100vw);
		padding: calc(20 / var(--vw-min) * 100vw);
		gap: 0;
	}
	.corpLinksWrap__txt{
		margin-bottom: calc(8 / var(--vw-min) * 100vw);
	}
}

.corpLinks{
	display: flex;
    justify-content: flex-end;
	gap: min(calc(24 / var(--vw-min) * 100vw), 24px);
}
.corpLinksItem{
	display: flex;
	align-items: center;
	justify-content: center;
}
.corpLinksItem__link{
	display: block;
	text-decoration: underline;
	color: rgba(235, 236, 235, 0.7);
	line-height: 1;
}
.corpLinksItem__txt{
	font-size: min(calc(12 / var(--vw-min) * 100vw), 12px);
}

.sectionWrap{
	position: relative;
}
.section__bg{
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: -1;
}
.section__bg:before{
	content: "";
	display: block;
	position: sticky;
	right: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	background:url(../img/common/bg_mark.png) no-repeat top right  / min(calc(456 / var(--vw-min) * 100vw), 456px) auto;
}
@media screen and (max-width:768px){
	.section__bg:before{
		background-size: calc(204 / var(--vw-min) * 100vw) auto;
	}
}
.sunriseLogo{
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: min(calc(50 / var(--vw-min) * 100vw), 50px);
	padding-bottom: min(calc(64 / var(--vw-min) * 100vw), 64px);
}
.sunriseLogo__img{
	width: min(calc(160 / var(--vw-min) * 100vw), 160px);
	height: auto;
}
@media screen and (max-width:768px){
	.sunriseLogo{
		padding-top: calc(35 / var(--vw-min) * 100vw);
		padding-bottom: calc(40 / var(--vw-min) * 100vw);
	}
	.sunriseLogo__img{
		width: calc(144 / var(--vw-min) * 100vw);
	}
}





