@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: 1200;
	--vh-min: 640;
	--max-percent: 1.6;/* 1920/1200 */

	/* フォント  */
	--font-ja: "Noto Serif JP", serif;
	--font-en: "Cormorant Infant", serif;
	--font-main: "Noto Serif JP", "Cormorant Infant", serif;

	/* カラー */
	--color-white: #FFFFFF;
	--color-black: #000000;

	/* グラデーション */
	--gradation_gold: linear-gradient(180deg, #FFFFC7 0%, #FFCA9B 100%);

	/* easing */
	--easing-outquart: cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width:768px){
	:root {
		/* デザインサイズ */
		--vw-min: 750;
		--vh-min: 1314;
		--max-percent: 1;
	}
}

/*-----------------------------------------------
 * Bace
-------------------------------------------------*/
body{
	-webkit-text-size-adjust: 100%;
	background-color: #000;
	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(24 / 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;
}


/*-----------------------------------------------
 * 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;
}
.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: 80px;
	height: 80px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
}
@media screen and (max-width:768px){
	.closeBtn{
		width:50px;
		height:50px;
	}
}

.closeBtn a {
	background-color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

/* img */
.closeBtn a:before {
	content: "";
	background: url(../img/common/icon/icon_close.png) no-repeat 0 0 / 100%;
	width: 100%;
	height: 100%;
}

/**
 * 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;
}



/*-----------------------------------------------
 * Header
-------------------------------------------------*/
.header {
    width: 100%;
    position: sticky;
    top: 0;
}
@media screen and (max-width:768px){
	.header {
		position: absolute;
		bottom: 0;
		pointer-events: none;
	}
}

.header__cont{
	position: relative;
    top: 0;
	width: 100%;
}
@media screen and (max-width:768px){
	.header__cont{
		position: sticky;
		height: min(100vh, 100%);
		z-index: 1;
	}
}


/* 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;
	}
}


/** 
 * inner
**/
.header__inner{
	width: 100%;
	min-height: 100%;
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.header__inner:before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: #000;
}
.header__innerCont{
	width: 100%;
	position: relative;
	padding: min(calc(24 / var(--vw-min) * 100vw), 24px) min(calc(48 / var(--vw-min) * 100vw), 48px);
	z-index: 1;
}
@media screen and (max-width:768px){
	.header__innerCont{
		padding: calc(96 / var(--vw-min) * 100vw) calc(48 / var(--vw-min) * 100vw);
	}
}



/**
 * headerNav
 */
.headerNav,
.headerNav__inner,
.headerNav__cont {
	width: 100%;
	height: 100%;
}

/**
 * headerNavLists
 */
.headerNavLists {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.headerNavLists .navList {
	height: 100%;
}
@media screen and (max-width:768px){
	.headerNavLists {
		display: block;
	}
	.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: 800;
	padding: 0 min(calc(20 / var(--vw-min) * 100vw), 20px);
	position: relative;
	text-decoration: none;
	color: var(--color-white);
}
@media screen and (max-width:768px){
	.headerNavLists .navList__link {
		display: block;
		color: #fff;
		height: auto;
		padding: calc(8 / var(--vw-min) * 100vw) 0;
	}
}

/**
 * navBtn
 */
@media screen and (max-width:768px){
	.header__navBtnWrap {
		background-color: red;
		width: calc(80 / var(--vw-min) * 100vw);
		height: calc(80 / 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;
	}
	.header__navBtn__lineWrap {
		display: block;
		width: calc(40 / var(--vw-min) * 100vw);
		height: calc(24 / var(--vw-min) * 100vw);
		position: relative;
	}
	.header__navBtn--line {
		background-color: #000;
		display: block;
		width: 100%;
		height: calc(4 / var(--vw-min) * 100vw);
		margin: auto;
		position: absolute;
	}
	.header__navBtn--line:nth-child(1) {
		top: 0;
		bottom: calc(100% - calc(4 / var(--vw-min) * 100vw));
	}
	.header__navBtn--line:nth-child(2) {
		top: 0;
		bottom: 0;
	}
	.header__navBtn--line:nth-child(3) {
		top: calc(100% - calc(4 / var(--vw-min) * 100vw));
		bottom: 0;
	}
}

/**
 * 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(45deg);
		bottom: 0;
	}
	.header__navBtn.is-active .header__navBtn--line:nth-child(3) {
		transform: rotate(-45deg);
		top: 0;
	}
	.header__navBtn.is-active .header__navBtn--line:nth-child(2) {
		transform: translateX(20%);
		opacity: 0;
	}
}


/*-----------------------------------------------
 * 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;
}


.footer{
    position: relative;
    z-index: 1;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    padding: min(calc(48 / var(--vw-min) * 100vw), 48px) 0;
}
.footer__inner{
    display: flex;
    align-items: center;
    flex-direction: column;
    width: min(calc(780 / var(--vw-min) * 100vw), 780px);
    margin: 0 auto;
}
@media screen and (max-width:768px){
    .footer__inner{
        width: 100%;
        padding: 0 calc(48 / var(--vw-min) * 100vw);
    }
}
.sitelinkLists{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: min(calc(20 / var(--vw-min) * 100vw), 20px);
}
.sitelinkItem{
    display: flex;
    align-items: center;
    gap: min(calc(20 / var(--vw-min) * 100vw), 20px);
    position: relative;
    padding-right: min(calc(20 / var(--vw-min) * 100vw), 20px);
}
.sitelinkItem:not(:last-child)::before{
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: min(calc(12 / var(--vw-min) * 100vw), 12px);
    width: 1px;
    background: #fff;
}
.sitelinkItem a{
    text-decoration: none;
    transition: opacity .3s ease;
}
.sitelinkItem__txt{
    color: #fff;
}

@media screen and (hover: hover){   
    .sitelinkItem a:hover{
        opacity: 0.6;
    }
}

@media screen and (max-width:768px){
	.sitelinkItem{
		font-size: calc(26 / var(--vw-min) * 100vw);
	}
	.sitelinkItem:not(:last-child)::before{
		height: calc(26 / var(--vw-min) * 100vw);
	}

}
.ftTxt{
	margin-top: min(calc(20 / var(--vw-min) * 100vw), 20px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: min(calc(12 / var(--vw-min) * 100vw), 12px);
	color: #fff;

}
@media screen and (max-width:768px){
	.ftTxt{
		font-size: calc(20 / var(--vw-min) * 100vw);
	}
}