@charset "utf-8";
/*-----------------------------------------------
 * common.css
 * レスポンシブは基本スタイルを引き継ぐ（PCファースト）
 * @media screen and (max-width:960px)
-------------------------------------------------*/
/*-----------------------------------------------
 * Reset, root
 * Bace
 * Modal
 * Header
 * Footer
 * Parts
 * Subpage
-------------------------------------------------*/
/*-----------------------------------------------
 * 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 {
	--common-min-width: 1200px;
	--common-min-height: 620px;
	--main-font-size: 16px;
	--main-font-family: 'Noto Serif JP', "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;

	/* フォントサイズ デザイン横幅1200px */
	--fontsize-12: min(1vw, 12px);
	--fontsize-14: min(1.16666vw, 14px);
	--fontsize-16: min(1.33333vw, 16px);
	--fontsize-18: min(1.5vw, 18px);
	--fontsize-20: min(1.66666vw, 20px);
	--fontsize-22: min(1.83333vw, 22px);
	--fontsize-24: min(2vw, 24px);
	--fontsize-26: min(2.16666vw, 26px);

	/* color */
	--color-green: 89, 142, 91;     /* #598e5b */
	--color-mao: 53, 138, 81;       /* #358a51 */
	--color-zinsi: 93, 75, 135;     /* #604a8a */
	--color-gaosyun: 40, 52, 89;    /* #283459 */
	--color-gyokuyouhi: 220, 33, 44;/* #dc212c */
	--color-rifahi: 26, 31, 149;    /* #1a1f95 */
	--color-risyuhi: 250, 202, 219; /* #facadb */
	--color-aduohi: 162, 21, 70;    /* #a21546 */
	--color-syaoran: 225 235, 73;   /* #db5f3f */
	--color-rihaku: 179, 149, 29;   /* #b3951d */
	--color-ouranhi: 101, 36, 80;   /* #652450 */
	--color-suirei: 168, 140, 182;   /* #a88cb6 */
	--color-rakan: 179, 180, 176;   /* #353a4a */

	/* easing */
	--easing-outquart: cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width:960px){
	:root {
		--common-min-width: 100%;
		--common-min-height: auto;
		--main-font-size: 12px;

		/* フォントサイズ デザイン横幅750px */
		--fontsize-12: min(2.66666vw, 20px);
		--fontsize-14: min(2.66666vw, 20px);
		--fontsize-16: min(2.66666vw, 20px);
		--fontsize-18: min(2.93333vw, 22px);
		--fontsize-20: min(3.2vw, 24px);
		--fontsize-22: min(3.46666vw, 26px);
		--fontsize-24: min(3.73333vw, 28px);
		--fontsize-26: min(4vw, 30px);
	}
}


/*-----------------------------------------------
 * Bace
-------------------------------------------------*/
body{
	-webkit-text-size-adjust: 100%;
	background-color: #fff;
	color: #000;
	font-family: var(--main-font-family);
	font-size: var(--main-font-size);
	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:960px){
	.sp{ display: block; }
	.pc{ display: none; }
	.ah:hover { opacity: 1; }
}

/**
 * scroll bar
 */
::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}
::-webkit-scrollbar-track {
	background: #bebebe;
}
::-webkit-scrollbar-thumb {
	background: #000;
	margin: 2px;
	box-shadow: none;
}


/**
 * Wrap
 * 大枠のwrap指定
 */
/* fullWrap */
#fullWrap {
	display: flex;
	flex-direction: column;
	min-width: 1200px;
	min-height: 100vh;
	position: relative;
	z-index: 1;
}
@media screen and (max-width:960px){
	#fullWrap {
		min-width: 100%;
	}
}


/*-----------------------------------------------
 * Modal
-------------------------------------------------*/

/**
 * modalBox
 * 基盤のモーダル
 */
 .modalBox{
    -webkit-overflow-scrolling: touch;
    background: rgba(255,255,255,1);
    display: none;
    width: 100%;
    height: 100%;
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
@media screen and (max-width:767px){
	.modalBox::-webkit-scrollbar {
		display:none;
	}
}
.oneModal{
    display: none;
    width: 100%;
    height: 100%;
	min-width: var(--common-min-width);
    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:960px){
    .oneModalIn{
        min-width: 100%;
    }
    .oneModalIn__cont{
        width: 100%;
    }
}

/**
 * movie用モーダル
 */
 .modalMovieBox{
    -webkit-overflow-scrolling: touch;
    background: rgba(255,255,255,.8);
    display: none;
    width: 100%;
    height: 100%;
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
}
.oneMovieModal{
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

/* oneModalIn */
.oneMovieModalIn{
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
    min-height: 100%;
    margin: 0 auto;
    position: relative;
}
.oneMovieModalIn__cont{
    padding: 50px 0;
}
@media screen and (max-width:960px){
    .oneMovieModalIn{
        min-width: 100%;
    }
    .oneMovieModalIn__cont{
        width: 100%;
    }
}

/**
 * closeBtn
 */
.closeBtn{
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(13.33333vw,160px);
	height: min(5vw,60px);
	overflow: hidden;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 100;
}
@media screen and (max-width:960px){
	.closeBtn{
		display: none !important;
	}
}

.closeBtn a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: -5px;
    bottom: -2px;
}
.closeBtn a:before,
.closeBtn a:after {
	content: "";
	background-color: #000;
	display: block;
	width: 100%;
	height: 1px;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transition: transform .4s var(--easing-outquart);
}
.closeBtn a:before {
	transform: rotate(20deg);
}
.closeBtn a:after {
	transform: rotate(-20deg);
}
.closeBtn a:hover:before,
.closeBtn a:hover:after {
	transform: rotate(0);
}

/**
 * iframe
 */
/* common */
.commonIframe{
    width: 100%;
    height: 100%;
    display: block;
}

/* youtube */
.youtubeIframeFullWrap {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	width: 100%;
}
.youtubeIframeWrap {
    width: 70%;
    max-width: 159.993vh;
    position: relative;
}
@media screen and (max-width:960px){
    .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;
}

/**
 * imgModal
 */
 .imgModal__imgWrap {
    max-width: 1200px;
}
.imgModal__imgWrap img {
    width: 100%;
}
@media screen and (max-width:960px){
    .imgModal__imgWrap {
        width: 100%;
    }
}

/**
 * modalSubCont
 */
.modalSubCont {
	display: flex;
	justify-content: center;
	flex-direction: row-reverse;
	width: 74%;
	min-height: 100vh;
	position: relative;
}
.modalSubCont.is-w100 {
	width: 100%;
	padding: 0 3vw;
}
.modalSubCont.has-rightVisual {
	justify-content: flex-start;
	padding-right: 4.5vw;
}
@media screen and (max-width:960px){
	.modalSubCont {
		flex-direction: column;
		width: 100%;
	}
	.modalSubCont.is-w100 {
		width: 100%;
		padding: 0;
	}
	.modalSubCont.has-rightVisual {
		justify-content: center;
		padding-right: 0;
	}
	.modalSubCont:before {
		content: "";
		background: url(../img/common/bg/subcont_bg_sp.jpg) no-repeat 0 0 / 100%;
		display: block;
		width: 100%;
		height: 40vw;
		position: relative;
		z-index: 0;
	}
	.modalSubCont:after {
		content: "";
		background-color: #bebebe;
		width: 1px;
		height: 100%;
		pointer-events: none;
		position: absolute;
		top: 0;
		right: 9.9vw;
		z-index: 1;
	}
}

/* modalSubContWrap */
.modalSubContWrap {
	width: 100%;
	padding: 0;
	position: relative;
}

/* bg */
.modalSubContBg {
	width: 26%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}
.modalSubContBg img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
	object-position: center;
	position: sticky;
	top: 0;
}
@media screen and (max-width:960px){
	.modalSubContBg {
		display: none;
	}
}

/**
 * modalSubContOne
 */
.modalSubContOne {
	display: flex;
	position: relative;
	padding: 4vw 0;
}
.modalSubContOne.no-padding {
	width: 100%;
	padding: 0;
}
.modalSubContOne:not(:first-of-type) {
	margin-right: min(4vw, 50px);
}
@media screen and (max-width:960px){
	.modalSubContOne {
		display: block;
		padding: 6.66666vw 0;
	}
	.modalSubContOne:not(:first-of-type) {
		margin-right: 0;
	}
}

/* line */
.modalSubContOne:before {
	content: "";
	background-color: #bebebe;
	width: 1px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 52px;
}
@media screen and (max-width:960px){
	.modalSubContOne:before {
		content: none;
	}
	.modalSubContOne:after {
		content: "";
		background-color: #bebebe;
		width: 100%;
		height: 1px;
		position: absolute;
		bottom: 0;
		left: 0;
	}
}

/* in */
.modalSubContOne__inner {
	display: flex;
	flex-direction: row-reverse;
}
.modalSubContOne__inner.no-padding {
	width: 100%;
}
@media screen and (max-width:960px){
	.modalSubContOne__inner {
		padding-right: 3px;
	}
}

/* title */
.modalSubContOne__title {
	color: #bebebe;
	font-size: 34px;
	line-height: 1;
	padding-left: 18px;
	position: relative;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	white-space: nowrap;
}
.modalSubContOne__title.no-padding {
	padding-top: min(2.33333vw, 28px);
}
@media screen and (max-width:960px){
	.modalSubContOne__title {
		font-size: 3.2vw;
		margin-left: 2.3vw;
		padding-right: 2vw;
		padding-left: 0;
	}
}

/**
 * modalFooter
 */
.modalFooter {
	display: none;
}
@media screen and (max-width:960px){
	.modalFooter {
		display: block;
		margin-top: auto;
	}

	/* linkArea */
	.modalFooter__linkArea {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: min(10.66666vw,80px);
		margin: min(6.66666vw,50px) 0;
	}

	/* tw */
	.modalFooter__tw {
		height: 100%;
		margin-right: min(12vw,90px);
	}
	.modalFooter__tw > a {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 100%;
		font-size: var(--fontsize-16);
		letter-spacing: .01em;
		text-decoration: none;
	}
	.modalFooter__tw > a:after {
		content: "";
		background-color: #000;
		display: block;
		-webkit-mask-image: url(../img/common/icon/icon_tw.svg);
		mask-image: url(../img/common/icon/icon_tw.svg);
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
		-webkit-mask-position: center;
		mask-position: center;
		-webkit-mask-size: 100%;
		mask-size: 100%;
		width: min(6.4vw,48px);
		height: min(5.33333vw,40px);
		margin-left: min(4vw,30px);
	}

	/**
	* shareDl
	*/
	.modalFooter__shareDl {
		display: flex;
		align-items: center;
		height: 100%;
	}

	/* dt, dd */
	.modalFooter__shareDl--dt {
		font-size: var(--fontsize-16);
		letter-spacing: .01em;
	}
	.modalFooter__shareDl--dd {
		height: 100%;
		margin-left: min(4vw,30px);
	}

	/**
	* shareLists
	*/
	.modalFooter__shareLists {
		display: flex;
		align-items: center;
		height: 100%;
	}
	.modalFooter__shareLists__item {
		width: min(10.66666vw,80px);
		height: min(10.66666vw,80px);
	}
	.modalFooter__shareLists__item:not(:first-child) {
		margin-left:  min(2.66666vw,20px);
	}

	/* a */
	.modalFooter__shareLists__item > a {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
	}
	.modalFooter__shareLists__item > a:before {
		content: "";
		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%;
	}

	/* 各SNS */
	.modalFooter__shareLists__item.is-twitter > a:before {
		-webkit-mask-image: url(../img/common/icon/icon_tw.svg);
		mask-image: url(../img/common/icon/icon_tw.svg);
		width: min(6.4vw,48px);
		height: min(5.33333vw,40px);
	}
	.modalFooter__shareLists__item.is-facebook > a:before {
		-webkit-mask-image: url(../img/common/icon/icon_fb.svg);
		mask-image: url(../img/common/icon/icon_fb.svg);
		width: min(5.6vw,42px);
		height: min(5.6vw,42px);
	}
	.modalFooter__shareLists__item.is-line > a:before {
		-webkit-mask-image: url(../img/common/icon/icon_line.svg);
		mask-image: url(../img/common/icon/icon_line.svg);
		width: min(5.6vw,42px);
		height: min(5.6vw,42px);
	}

	/**
	 * pagetop
	 */
	.modalFooter__pagetop {
		background-color: #000;
		width: 10vw;
		height: 10vw;
		position: fixed;
		bottom: 5vw;
		right: 5vw;
		z-index: 100;
		transform: rotate(45deg);
	}
	.modalFooter__pagetop:before {
		content: "";
		border: .4vw solid #fff;
		width: 79%;
		height: 79%;
		margin: auto;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
	}
	.modalFooter__pagetop > a {
		display: block;
		width: 100%;
		height: 100%;
		position: relative;
	}
	.modalFooter__pagetop > a > span {
		display: block;
		width: 100%;
		height: 100%;
		transform: rotate(-45deg);
	}
	.modalFooter__pagetop > a > span:before {
		content: "";
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		display: block;
		width: 1.4vw;
		height: 1.4vw;
		margin: auto;
		position: absolute;
		top: .4vw;
		right: 0;
		bottom: 0;
		left: 0;
		transform: rotate(-45deg);
	}

	/**
	 * copyright
	 */
	.modalFooter__copyright {
		display: block;
		font-size: 10px;
		letter-spacing: .07em;
		padding-bottom: min(8vw,60px);
		padding-left: min(10.66666vw,80px);
		transform: scale(.8);
		transform-origin: left;
	}

	/**
	 * close btn
	 */
	.modalFooter__close {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 14.66666vw;
		height: 6.66666vw;
		margin: min(6.66666vw,50px) auto 0;
		overflow: hidden;
		position: relative;
		z-index: 100;
	}
	.modalFooter__close.is-comment {
		margin: auto;
		position: fixed;
		right: 0;
		bottom: 4vw;
		left: 0;
	}
	.modalFooter__close a {
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
	}
	.modalFooter__close a:before,
	.modalFooter__close a:after {
		content: "";
		background-color: #000;
		display: block;
		width: 100%;
		height: 1px;
		margin: auto;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		transition: transform .4s var(--easing-outquart);
	}
	.modalFooter__close a:before {
		transform: rotate(20deg);
	}
	.modalFooter__close a:after {
		transform: rotate(-20deg);
	}
	.modalFooter__close a:hover:before,
	.modalFooter__close a:hover:after {
		transform: rotate(0);
	}
}

/**
 * galleryImgModal
 */
 .galleryImgModal__cont {
    position: relative;
}
.galleryImgModal__imgWrap {
    width: 800px;
    opacity: 0;
    position: relative;
    z-index: 1;
    transition: opacity .3s ease;
}
.galleryImgModal__imgWrap.is-active {
    opacity: 1;
}
@media screen and (max-width:960px){
    .galleryImgModal__imgWrap {
        width: calc(100% - 40px);
        margin: 0 auto;
    }
}

/* img */
.galleryImgModal__imgWrap img {
    width: 100%;
}

/**
 * galleryLists__pagerWrap
 */
.galleryLists__pagerWrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 60px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}
@media screen and (max-width:960px){
    .galleryLists__pagerWrap {
        width: 100%;
        height: 40px;
    }
}

/* pager */
.galleryLists__pager {
    width: 60px;
    height: 60px;
    pointer-events: auto;
}
@media screen and (max-width:960px){
    .galleryLists__pager {
        width: 40px;
        height: 40px;
        pointer-events: auto;
    }
}

/* prev, next */
.galleryLists__pager.is-prev {
    margin-left: -60px;
}
.galleryLists__pager.is-next {
    margin-right: -60px;
}
@media screen and (max-width:960px){
    .galleryLists__pager.is-prev {
        margin-left: 0;
    }
    .galleryLists__pager.is-next {
        margin-right: 0;
    }
}

/* a */
.galleryLists__pager > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* arrow */
.galleryLists__pager > a:before {
    content: "";
    background-color: rgb(var(--main-color-red));
    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%;
    width: 32px;
    height: 58px;
    transition: transform .3s ease;
}
@media screen and (max-width:960px){
    .galleryLists__pager > a:before {
        width: 18px;
        height: 38px;
    }
}

/* hover */
.galleryLists__pager.is-prev > a:hover:before {
    transform: translateX(-10px);
}
.galleryLists__pager.is-next > a:hover:before {
    transform: translateX(10px);
}
@media screen and (max-width:960px){
    .galleryLists__pager.is-prev > a:hover:before {
        transform: translateX(0);
    }
    .galleryLists__pager.is-next > a:hover:before {
        transform: translateX(0);
    }
}

.galleryLists__pager.is-prev > a:before {
    -webkit-mask-image: url(../img/common/arrow_prev.svg);
    mask-image: url(../img/common/arrow_prev.svg);
}
.galleryLists__pager.is-next > a:before {
    -webkit-mask-image: url(../img/common/arrow_next.svg);
    mask-image: url(../img/common/arrow_next.svg);
}

.galleryImgModalContents {
    opacity: 0;
    transition: opacity .3s ease;
}
.galleryImgModalContents.is-active {
    opacity: 1;
}


/*-----------------------------------------------
 * Header
-------------------------------------------------*/
.header {
	display: none;
}
@media screen and (max-width:960px){
	.header {
		display: block;
		width: 100%;
		position: fixed;
		top: 0;
		z-index: 10000;
	}
}

/* inner */
@media screen and (max-width:960px){
	.header__inner {
		-webkit-overflow-scrolling: touch;
		width: 100%;
		height: 100%;
		overflow-y: auto;
		overscroll-behavior: contain;
		position: fixed;
		top: 0;
		left: 0;
		padding: min(9.33333vw,70px) 0;
		opacity: 0;
		pointer-events: none;
		z-index: 1;
		transition: opacity .5s ease-in-out;
	}
	.header.is-active .header__inner {
		opacity: 1;
		pointer-events: auto;
	}

	.header__inner:before {
		content: "";
		background: #fff;
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		z-index: 0;
	}

	.headerNav {
		position: relative;
		z-index: 1;
	}

	/* logo */
	.header__logo {
		width: 15.46666vw;
		height: 39.73333vw;
		margin: 0 auto min(9.33333vw,70px);
	}
	.header__logo img {
		width: 100%;
	}

	/* menu */
	.header__menu {
		border-bottom: 1px solid #bebebe;
		color: #bebebe;
		font-size: 3.2vw;
		letter-spacing: .07em;
		line-height: 1;
		margin-bottom: min(6.66666vw,50px);
		padding-bottom: 2.13333vw;
		padding-left: 21.86666vw;
	}

	/**
	 * headerNavLists
	 */
	.headerNavLists__item:not(:first-child) {
		margin-top: min(6.66666vw,50px);
	}
	.headerNavLists__item > a {
		display: block;
		font-size: 5.33333vw;
		letter-spacing: .01em;
		line-height: 1;
		padding-left: 21.86666vw;
		text-decoration: none;
	}
}

/**
 * navBtn
 */
@media screen and (max-width:960px){
	.header__navBtnWrap {
		background-color: #000;
		width: 10vw;
		height: 10vw;
		position: absolute;
		top: 5vw;
		right: 5vw;
		z-index: 2;
		transform: rotate(45deg);
	}
	.header__navBtnWrap:before {
		content: "";
		border: .4vw solid #fff;
		width: 79%;
		height: 79%;
		margin: auto;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
	}
	.header__navBtn {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		position: relative;
	}
	.header__navBtn__lineWrap {
		width: 40%;
		height: 29%;
		position: relative;
		transform: rotate(-45deg);
	}
	.header__navBtn--line {
		background-color: #fff;
		display: block;
		width: 100%;
		height: 2px;
		margin: auto;
		position: absolute;
		transition: all .3s ease;
	}
	.header__navBtn--line:nth-child(1) {
		top: 0;
	}
	.header__navBtn--line:nth-child(2) {
		top: 0;
		bottom: 0;
	}
	.header__navBtn--line:nth-child(3) {
		bottom: 0;
	}
	.header__navBtn.is-active .header__navBtn--line:nth-child(1) {
		top:1.21vw;
		transform: rotate(45deg);
	}
	.header__navBtn.is-active .header__navBtn--line:nth-child(2) {
		opacity: 0;
		transform: translateX(10px);
	}
	.header__navBtn.is-active .header__navBtn--line:nth-child(3) {
		bottom:1.3vw;
		transform: rotate(-45deg);
	}
}


/*-----------------------------------------------
 * Footer
-------------------------------------------------*/
.footer {
	display: none;
}
@media screen and (max-width:960px){
	.footer {
		display: block;
		margin-top: auto;
	}

	/* linkArea */
	.footer__linkArea {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: min(10.66666vw,80px);
		margin: min(6.66666vw,50px) 0;
	}

	/* tw */
	.footer__tw {
		height: 100%;
		margin-right: min(12vw,90px);
	}
	.footer__tw > a {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 100%;
		font-size: var(--fontsize-16);
		letter-spacing: .01em;
		text-decoration: none;
	}
	.footer__tw > a:after {
		content: "";
		background-color: #000;
		display: block;
		-webkit-mask-image: url(../img/common/icon/icon_tw.svg);
		mask-image: url(../img/common/icon/icon_tw.svg);
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
		-webkit-mask-position: center;
		mask-position: center;
		-webkit-mask-size: 100%;
		mask-size: 100%;
		width: min(6.4vw,48px);
		height: min(5.33333vw,40px);
		margin-left: min(4vw,30px);
	}

	/**
	* shareDl
	*/
	.footer__shareDl {
		display: flex;
		align-items: center;
		height: 100%;
	}

	/* dt, dd */
	.footer__shareDl--dt {
		font-size: var(--fontsize-16);
		letter-spacing: .01em;
	}
	.footer__shareDl--dd {
		height: 100%;
		margin-left: min(4vw,30px);
	}

	/**
	* shareLists
	*/
	.footer__shareLists {
		display: flex;
		align-items: center;
		height: 100%;
	}
	.footer__shareLists__item {
		width: min(10.66666vw,80px);
		height: min(10.66666vw,80px);
	}
	.footer__shareLists__item:not(:first-child) {
		margin-left:  min(2.66666vw,20px);
	}

	/* a */
	.footer__shareLists__item > a {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
	}
	.footer__shareLists__item > a:before {
		content: "";
		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%;
	}

	/* 各SNS */
	.footer__shareLists__item.is-twitter > a:before {
		-webkit-mask-image: url(../img/common/icon/icon_tw.svg);
		mask-image: url(../img/common/icon/icon_tw.svg);
		width: min(6.4vw,48px);
		height: min(5.33333vw,40px);
	}
	.footer__shareLists__item.is-facebook > a:before {
		-webkit-mask-image: url(../img/common/icon/icon_fb.svg);
		mask-image: url(../img/common/icon/icon_fb.svg);
		width: min(5.6vw,42px);
		height: min(5.6vw,42px);
	}
	.footer__shareLists__item.is-line > a:before {
		-webkit-mask-image: url(../img/common/icon/icon_line.svg);
		mask-image: url(../img/common/icon/icon_line.svg);
		width: min(5.6vw,42px);
		height: min(5.6vw,42px);
	}

	/**
	 * pagetop
	 */
	.footer__pagetop {
		background-color: #000;
		width: 10vw;
		height: 10vw;
		position: absolute;
		bottom: 5vw;
		right: 5vw;
		z-index: 100;
		transform: rotate(45deg);
	}
	.footer__pagetop.is-fixed {
		position: fixed;
	}
	.footer__pagetop:before {
		content: "";
		border: .4vw solid #fff;
		width: 79%;
		height: 79%;
		margin: auto;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
	}
	.footer__pagetop > a {
		display: block;
		width: 100%;
		height: 100%;
		position: relative;
	}
	.footer__pagetop > a > span {
		display: block;
		width: 100%;
		height: 100%;
		transform: rotate(-45deg);
	}
	.footer__pagetop > a > span:before {
		content: "";
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		display: block;
		width: 1.4vw;
		height: 1.4vw;
		margin: auto;
		position: absolute;
		top: .4vw;
		right: 0;
		bottom: 0;
		left: 0;
		transform: rotate(-45deg);
	}

	/**
	 * copyright
	 */
	.footer__copyright {
		display: block;
		font-size: 10px;
		letter-spacing: .07em;
		padding-bottom: min(6.66666vw,50px);
		padding-left: min(10.66666vw,80px);
		transform: scale(.8);
		transform-origin: left;
	}

	/**
	 * close btn
	 */
	 .footer__close {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 14.66666vw;
		height: 6.66666vw;
		margin: min(6.66666vw,50px) auto 0;
		overflow: hidden;
		position: relative;
	}
	.footer__close a {
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
	}
	.footer__close a:before,
	.footer__close a:after {
		content: "";
		background-color: #000;
		display: block;
		width: 100%;
		height: 1px;
		margin: auto;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		transition: transform .4s var(--easing-outquart);
	}
	.footer__close a:before {
		transform: rotate(20deg);
	}
	.footer__close a:after {
		transform: rotate(-20deg);
	}
	.footer__close a:hover:before,
	.footer__close a:hover:after {
		transform: rotate(0);
	}
}


/*-----------------------------------------------
 * Parts
-------------------------------------------------*/
/**
 * back
 */
.backTo {
	max-width: 246px;
	margin: 0 auto min(6.66666vw,80px);
}
.backTo > a {
	color: #fff;
	background-color: #000;
	display: block;
	font-size: var(--fontsize-16);
	padding: 8px 0;
	text-align: center;
	text-decoration: none;
}
@media screen and (max-width:960px){
	.backTo {
		max-width: 40vw;
		margin: 0 auto 5.33333vw;
	}
}

/**
 * fontsize
 * 親に依存
 */
/* 80% */
.fontsize_min80 {
	font-size: 80%;
}


/*-----------------------------------------------
 * Subpage
-------------------------------------------------*/
/**
 * subCont
 */
 .subCont {
	display: flex;
	justify-content: center;
	flex-direction: row-reverse;
	width: 74%;
	min-height: 100vh;
	position: relative;
	z-index: 1;
}
.subCont.is-w100 {
	width: 100%;
	padding: 0 3vw;
}
@media screen and (max-width:960px){
	.subCont {
		flex-direction: column;
		justify-content: flex-start;
		width: 100%;
	}
	.subCont.is-w100 {
		width: 100%;
		padding: 0;
	}
	.subCont:before {
		content: "";
		background: url(../img/common/bg/subcont_bg_sp.jpg) no-repeat 0 0 / cover;
		display: block;
		width: 100%;
		height: 40vw;
		position: relative;
		z-index: 0;
	}
	.subCont:after {
		content: "";
		background-color: #bebebe;
		width: 1px;
		height: 100%;
		pointer-events: none;
		position: fixed;
		top: 0;
		right: 9.9vw;
		z-index: 1;
	}
}

/* subContWrap */
.subContWrap {
	width: 100%;
	padding: 0;
	position: relative;
}

/* bg */
.subContBg {
	width: 26%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 0;
}
.subContBg img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
	object-position: center;
	position: sticky;
	top: 0;
}
@media screen and (max-width:960px){
	.subContBg {
		display: none;
	}
}

/**
 * subContOne
 */
.subContOne {
	display: flex;
	flex-direction: row-reverse;
	width: 100%;
	position: relative;
}
.subContOne:not(:first-of-type) {
	margin-right: min(5vw, 60px);
}
@media screen and (max-width:960px){
	.subContOne:not(:first-of-type) {
		margin-right: 0;
	}
}

/* in */
.subContOne__inner {
	width: 100%;
}

/* title */
.subContOne__title {
	color: #bebebe;
	display: flex;
	align-items: flex-end;
	flex: none;
	font-size: min(2vw, 34px);
	line-height: 1;
	width: 8.66666vw;
	padding-top: min(2.33333vw, 28px);
	padding-left: min(2.33333vw, 28px);
	position: relative;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	white-space: nowrap;
}
@media screen and (max-width:960px){
	.subContOne__title {
		font-size: 3.2vw;
		width: 9.9vw;
		padding-right: 0;
		padding-left: 3vw;
	}
}

/* line */
.subContOne__title:before {
	content: "";
	background-color: #bebebe;
	width: 1px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (max-width:960px){
	.subContOne__title:before {
		content: none;
	}
}

/* span */
.subContOne__title > span {
	position: sticky;
	top: min(2.33333vw, 28px);
}
@media screen and (max-width:960px){
	.subContOne__title > span {
		top: 20vw;
	}
}


/* indent */
.indent-1 {
	display: block;
	padding-left:1em;
	text-indent:-1em;
}
.indent-5{
	display: inline-block;
	padding-left: 5.5em;
	text-indent: -5.5em;
}
.indent-6{
	display: inline-block;
	padding-left: 6.5em;
	text-indent: -6.5em;
}
.indent-7{
	display: inline-block;
	padding-left: 7.5em;
	text-indent: -7.5em;
}
