@charset "utf-8";
/*-----------------------------------------------
 * common.css
 * レスポンシブは基本スタイルを引き継ぐ（PCファースト）
 * @media screen and (max-width:767px)
-------------------------------------------------*/
/*-----------------------------------------------
 * Reset, root
 * Bace
 * Modal
 * Header
 * Footer
 * Parts
 * Sub page
 * Scroll animation
-------------------------------------------------*/
/*-----------------------------------------------
 * 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: 640px;

    /* メインで使用するサイズやカラー */
    --main-font-size: 16px;
    --main-font-family: "Noto Sans JP", sans-serif;

	--color-rightblue: 87,228,239;
	--color-youtube: 255,0,54;
	--color-twitter: 0,186,255;

    /* ヘッダーの高さ */
    --common-header-height: 0;

	/* サブページの共通横幅の最大値 */
	--sub-max-width: 1600px;

	/* vw min 計算 => min(calc(数値 / var(--vw-min) * 100vw), 数値); */
	--vw-min: 1200;

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

		/* ヘッダーの高さ */
		--common-header-height: 60px;

		/* 共通幅 */
		--common-in-maxwidth: 100%;

		/* vw min 計算 => min(calc(数値 / var(--vw-min) * 100vw), 数値); */
		--vw-min: 750;
	}
}


/*-----------------------------------------------
 * 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.01em;
	line-height: 1.8;
	word-wrap: break-word;
	scrollbar-gutter: stable;
}
.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:767px){
    .sp{ display: block; }
    .pc{ display: none; }
    .ah:hover { opacity: 1; }
}

/**
 * scroll bar
 */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #000;
}
::-webkit-scrollbar-thumb {
    background: rgb(var(--color-rightblue));
    margin: 2px;
    box-shadow: none;
}

/**
 * font
 */
.font-oswald {
	font-family: "Oswald", sans-serif;
}


/**
 * Wrap
 * 大枠のwrap指定
 */
/* fullWrap */
#fullWrap {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	position: relative;
	z-index: 1;
}

/**
 * keyframes
 */
@keyframes pCircle_mv {
	0% {
		stroke-dasharray: 0 76; /*-- 円の直径(24)x3.14 --*/
	}
	100% {
		stroke-dasharray: 76 76;
	}
}
@keyframes pCircle-out_mv {
	0% {
		stroke-dasharray: 76 76; /*-- 円の直径(24)x3.14 --*/
	}
	100% {
		stroke-dasharray: 0 76;
	}
}


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

/**
 * modalBox
 * 基盤のモーダル
 */
 .modalBox{
    -webkit-overflow-scrolling: touch;
	-webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,.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;
}

/* oneModalIn */
.oneModalIn{
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
    min-height: 100%;
    margin: 0 auto;
    position: relative;
}
@media screen and (max-width:767px){
    .oneModalIn{
        min-width: 100%;
    }
    .oneModalIn__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;
	top: 0;
	right: 0;
	z-index: 100;
}
@media screen and (max-width:960px){
	.closeBtn{
		width: 14.66666vw;
		height: 6.66666vw;
	}
}

.closeBtn a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	right: -5px;
    top: -2px;
}
@media screen and (max-width:767px){
	.closeBtn a {
		right: 0;
    	top: 0;
	}
}

.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 .3s 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 */
.youtubeIframeWrap {
    width: 70%;
    max-width: 159.993vh;
    position: relative;
}
@media screen and (max-width:767px){
    .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;
}
/**
 * imgModal
 */
.imgModal__imgWrap {
	width: 100%;
	max-width: 159.993vh;
	margin: 0 auto;
	position: relative;
}
.imgModal__imgWrap img {
	width: 100%;
}

/* prev, next */
.imgModal--prev,
.imgModal--next {
	display: block;
	width: min(calc(80 / var(--vw-min) * 100vw), 80px);
	height: min(calc(80 / var(--vw-min) * 100vw), 80px);
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
}

.imgModal--prev:before {
	content: "";
	width: 70%;
	height: 70%;
	border-top: solid 1px #000;
	border-left: solid 1px #000;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 48%;
	transform: rotate(-45deg);
	right: 0;
}
.imgModal--next:before {
	content: "";
	width: 70%;
	height: 70%;
	border-top: solid 1px #000;
	border-right: solid 1px #000;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -68%;
	transform: rotate(45deg);
	right: 0;
}
.imgModal--prev {
	left: 0;
}
.imgModal--next {
	right: 0;
}

@media screen and (min-width:768px){
	.imgModal--prev:before,
	.imgModal--next:before {
		transition: all .4s ease;
	}
	.imgModal--prev:hover:before{
		left: 28%;
	}
	.imgModal--next:hover:before{
		left: -38%;
	}
}

/**
 * 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:767px){
    .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:767px){
    .galleryLists__pagerWrap {
        width: 100%;
        height: 40px;
    }
}

/* pager */
.galleryLists__pager {
    width: 60px;
    height: 60px;
    pointer-events: auto;
}
@media screen and (max-width:767px){
    .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:767px){
    .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:767px){
    .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:767px){
    .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: flex;
	align-items: center;
	width: 100%;
	height: min(calc(86 / var(--vw-min) * 100vw), 86px);
	padding: 0 min(calc(24 / var(--vw-min) * 100vw), 24px);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
}
@media screen and (max-width:767px){
	.header {
		display: block;
		height: 0;
		padding: 0;
	}

	/* bg */
	.header:before {
		content: "";
		background-color: rgba(255,255,255,.8);
		-webkit-backdrop-filter: blur(8px);
		backdrop-filter: blur(8px);
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		z-index: 0;
		pointer-events: none;
	}
}

/* logo */
.header__logo {
	width: min(calc(120 / var(--vw-min) * 100vw), 120px);
	margin-right: min(calc(40 / var(--vw-min) * 100vw), 40px);
}
.header__logo img {
	width: 100%;
}
@media screen and (max-width:767px){
	.header__logo {
		width: 100px;
		margin-right: 0;
		position: absolute;
		top: 20px;
		left: 10px;
		z-index: 2;
	}
}

/* inner */
.header__inner {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}
@media screen and (max-width:767px){
	.header__inner {
		-webkit-overflow-scrolling: touch;
		width: 100%;
		height: 100%;
		overflow-y: auto;
		overscroll-behavior: contain;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1;
	}
}

/**
 * headerNav
 */
.headerNav,
.headerNav__inner,
.headerNav__cont {
	width: 100%;
	height: 100%;
	position: relative;
}
.headerNav__cont {
	display: flex;
	align-items: center;
}
@media screen and (max-width:767px){
	.headerNav {
		height: calc(100% + 1px);
	}
	.headerNav__inner {
		display: flex;
		align-items: center;
		justify-content: center;
		height: auto;
		min-height: 100%;
		margin: 0 auto;
		position: relative;
	}
	.headerNav__cont {
		display: block;
		height: auto;
		margin: 80px 0 40px;
		position: static;
	}
}

/* right */
.headerNav__cont__right {
	display: flex;
	margin-top: -0.5em;
	margin-left: auto;
}
@media screen and (max-width:767px){
	.headerNav__cont__right {
		display: block;
		margin-top: 40px;
		margin-left: 0;
	}
}

/**
 * headerNavLists
 */
.headerNavLists {
	height: 100%;
	display: flex;
	align-items: center;
}
@media screen and (max-width:767px){
	.headerNavLists {
		width: 100%;
		height: auto;
		display: block;
	}
}

/* item */
.headerNavLists__item {
	height: min(calc(27 / var(--vw-min) * 100vw), 27px);
	position: relative;
}
.headerNavLists__item:nth-child(n + 3) {
	margin-left: min(calc(20 / var(--vw-min) * 100vw), 20px);
}
@media screen and (max-width:767px){
	.headerNavLists__item {
		height: auto;
	}
	.headerNavLists__item:nth-child(n + 3) {
		margin-left: 0;
	}
}

/* link */
.headerNavLists__link {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}
@media screen and (max-width:767px){
	.headerNavLists__link {
		padding: 16px 30px;
		justify-content: flex-start;
	}
}

/* icon */
.headerNavLists__icon {
	display: block;
	background: #000 url(../img/common/icon/icon_arrow_b.svg) no-repeat center / 50%;
	width: min(calc(19 / var(--vw-min) * 100vw), 19px);
	height: min(calc(19 / var(--vw-min) * 100vw), 19px);
	margin-left: min(calc(8 / var(--vw-min) * 100vw), 8px);
}
@media screen and (max-width:767px){
	.headerNavLists__icon {
		background: #000;
		width: 20px;
		height: 20px;
		margin-top: 1px;
		margin-left: 16px;
		position: relative;
	}
	.headerNavLists__icon:before,
	.headerNavLists__icon:after {
		content: "";
		background-color: #fff;
		margin: auto;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		left: 0;
	}
	.headerNavLists__icon:before {
		width: 9px;
		height: 1px;
	}
	.headerNavLists__icon:after {
		width: 1px;
		height: 9px;
	}
}

/* text */
.headerNavLists__text {
	background-color: #fff;
	display: block;
	font-size: min(calc(16 / var(--vw-min) * 100vw), 16px);
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1;
	padding: 1px 1px 2px 1px;
	position: relative;
}
.headerNavLists__text > span {
	color: #000;
	position: relative;
	z-index: 1;
}
@media screen and (max-width:767px){
	.headerNavLists__text {
		background-color: transparent;
		font-size: 22px;
		padding: 0;
	}
}

/* hover, is-active */
@media screen and (min-width:768px){
	.headerNavLists__text:before {
		content: "";
		background-color: #000;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 0;
		transform: scale(0, 1);
		transform-origin: right top;
		transition: transform .3s ease;
	}
	.headerNavLists__link:is(:hover, .is-active) .headerNavLists__text:before {
		transform-origin: left top;
		transform: scale(1, 1);
	}
	.headerNavLists__text > span {
		transition: color .3s ease;
	}
	.headerNavLists__link:is(:hover, .is-active) .headerNavLists__text > span {
		color: rgb(var(--color-rightblue));
	}
}
@media screen and (max-width:767px){
	.headerNavLists__link {
		transition: background-color .3s ease;
	}
	.headerNavLists__link.is-plactive {
		background-color: #000;
	}
	.headerNavLists__text > span {
		transition: color .3s ease;
	}
	.headerNavLists__link.is-plactive .headerNavLists__text > span {
		color: rgb(var(--color-rightblue));
	}
	.headerNavLists__icon {
		transition: background-color .3s ease;
	}
	.headerNavLists__link.is-plactive .headerNavLists__icon {
		background-color: #fff;
	}
	.headerNavLists__icon:before,
	.headerNavLists__icon:after {
		transition: opacity .3s ease-in-out,
					transform .3s ease-in-out,
					background-color .3s ease;
	}
	.headerNavLists__link.is-plactive .headerNavLists__icon:before {
		background-color: #000;
	}
	.headerNavLists__link.is-plactive .headerNavLists__icon:after {
		background-color: #000;
		opacity: 0;
		transform: translateY(10px);
	}
}

/**
 * headerPullLists
 */
.headerPullListsWrap {
	display: none;
	position: absolute;
	top: min(calc(27 / var(--vw-min) * 100vw), 27px);
	left: 0;
}
.headerPullLists {
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	background-color: rgba(0,0,0,.8);
	/*width: min(calc(200 / var(--vw-min) * 100vw), 200px);*/
	padding: min(calc(20 / var(--vw-min) * 100vw), 20px) min(calc(24 / var(--vw-min) * 100vw), 24px);
}
@media screen and (max-width:767px){
	.headerPullListsWrap {
		position: relative;
		top: auto;
		left: auto;
	}
	.headerPullLists {
		-webkit-backdrop-filter: blur(0);
		backdrop-filter: blur(0);
		background-color: rgba(0,0,0,1);
		width: 100%;
		padding: 0 0 12px;
	}
}

/* item */
.headerPullLists__item:not(:first-child) {
	margin-top: min(calc(10 / var(--vw-min) * 100vw), 10px);
}
.headerPullLists__item:nth-child(2) {
	margin-top: 0;
}
.headerPullLists__link {
	color: #fff;
	display: block;
	font-size: min(calc(16 / var(--vw-min) * 100vw), 16px);
	letter-spacing: 0.01em;
	text-decoration: none;
	white-space: nowrap;
}
@media screen and (max-width:767px){
	.headerPullLists__item:not(:first-child) {
		margin-top: 0;
	}
	.headerPullLists__link {
		font-size: 22px;
		padding: 4px 30px;
	}
}

/* hover, is-active */
.headerPullLists__link {
	transition: color .3s ease;
}
.headerPullLists__link:is(:hover, .is-active) {
	color: rgb(var(--color-rightblue));
}

/**
 * headerNavSnsLists
 */
.headerNavSnsLists {
	display: flex;
	align-items: center;
}
@media screen and (max-width:767px){
	.headerNavSnsLists {
		padding: 0 20px;
		justify-content: center;
	}
}

/* item */
.headerNavSnsLists__item {
	width: min(calc(120 / var(--vw-min) * 100vw), 120px);
	height: min(calc(32 / var(--vw-min) * 100vw), 32px);
}
.headerNavSnsLists__item:not(:first-child) {
	margin-left: min(calc(20 / var(--vw-min) * 100vw), 20px);
}
@media screen and (max-width:767px){
	.headerNavSnsLists__item {
		width: calc((100% - 10px) / 2);
		height: 40px;
	}
	.headerNavSnsLists__item:not(:first-child) {
		margin-left: 10px;
	}
}

/* a */
.headerNavSnsLists__item > a {
	background-color: #fff;
	border-radius: min(calc(32 / var(--vw-min) * 100vw), 32px);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: min(calc(16 / var(--vw-min) * 100vw), 16px);
	letter-spacing: 0.01em;
	text-decoration: none;
}
.headerNavSnsLists__item.is-youtube > a {
	color: rgb(var(--color-youtube));
}
.headerNavSnsLists__item.is-twitter > a {
	color: rgb(var(--color-twitter));
}
@media screen and (max-width:767px){
	.headerNavSnsLists__item > a {
		border-radius: 20px;
		border: 2px solid;
		font-size: 18px;
	}
	.headerNavSnsLists__item.is-youtube > a {
		border-color: rgb(var(--color-youtube));
	}
	.headerNavSnsLists__item.is-twitter > a {
		border-color: rgb(var(--color-twitter));
	}
}

/* icon */
.headerNavSnsLists__item > a:before {
	content: "";
	background-color: #000;
	display: block;
	-webkit-mask: no-repeat center / contain;
	mask: no-repeat center / contain;
	width: min(calc(22 / var(--vw-min) * 100vw), 22px);
	height: min(calc(16 / var(--vw-min) * 100vw), 16px);
	margin-right: min(calc(10 / var(--vw-min) * 100vw), 10px);
}
.headerNavSnsLists__item.is-youtube > a:before {
	background-color: rgb(var(--color-youtube));
	-webkit-mask-image: url(../img/common/icon/icon_yt.svg);
	mask-image: url(../img/common/icon/icon_yt.svg);
}
.headerNavSnsLists__item.is-twitter > a:before {
	background-color: rgb(var(--color-twitter));
	-webkit-mask-image: url(../img/common/icon/icon_tw.svg);
	mask-image: url(../img/common/icon/icon_tw.svg);
}
@media screen and (max-width:767px){
	.headerNavSnsLists__item > a:before {
		width: 25px;
		height: 22px;
	}
}

/* hover */
.headerNavSnsLists__item > a {
	transition: background-color .3s ease,
				color .3s ease;
}
.headerNavSnsLists__item > a:hover {
	color: #fff;
}
.headerNavSnsLists__item.is-youtube > a:hover {
	background-color: rgb(var(--color-youtube));
}
.headerNavSnsLists__item.is-twitter > a:hover {
	background-color: rgb(var(--color-twitter));
}
.headerNavSnsLists__item > a:before {
	transition: background-color .3s ease;
}
.headerNavSnsLists__item > a:hover:before {
	background-color: #fff;
}

/**
 * headerLangLists
 */
.headerLangLists {
	display: flex;
	margin-left: min(calc(40 / var(--vw-min) * 100vw), 40px);
}
@media screen and (max-width:767px){
	.headerLangLists {
		margin-left: 0;
		width: 74px;
		margin: auto;
		position: fixed;
		top: 20px;
		right: 0;
		left: 0;
		z-index: 100;
	}
}

/* item */
.headerLangLists__item {
	width: min(calc(32 / var(--vw-min) * 100vw), 32px);
	height: min(calc(32 / var(--vw-min) * 100vw), 32px);
}
.headerLangLists__item:not(:first-child) {
	margin-left: min(calc(12 / var(--vw-min) * 100vw), 12px);
}
@media screen and (max-width:767px){
	.headerLangLists__item {
		width: 32px;
		height: 32px;
	}
	.headerLangLists__item:not(:first-child) {
		margin-left: auto;
	}
}

/* a */
.headerLangLists__item > a {
	background-color: #fff;
	border: 2px solid rgb(var(--color-rightblue));
	border-radius: 50%;
	color: rgb(var(--color-rightblue));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: min(calc(14 / var(--vw-min) * 100vw), 14px);
	letter-spacing: 0.01em;
	width: 100%;
	height: 100%;
	text-decoration: none;
}
@media screen and (max-width:767px){
	.headerLangLists__item > a {
		color: #000;
		font-size: 12px;
	}
}

/* hover, is-active */
.headerLangLists__item > a {
	transition: background-color .3s ease,
				color .3s ease;
}
@media screen and (min-width:768px){
	.headerLangLists__item > a:is(:hover, .is-active) {
		background-color: rgb(var(--color-rightblue));
		color: #fff;
	}
}
@media screen and (max-width:767px){
	.headerLangLists__item > a.is-active {
		background-color: #000;
		color: rgb(var(--color-rightblue));
	}
}

@media screen and (max-width:767px){
	.navBtnWrap {
		width: 50px;
		height: 50px;
		position: absolute;
		top: 10px;
		right: 10px;
		z-index: 2;
	}
	.navBtn {
		background-color: #000;
		border: 2px solid #fff;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		position: relative;
	}
	.navBtn__lineWrap {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: space-between;
		width: 14px;
		height: 12px;
		position: relative;
	}
	.navBtn--line {
		background-color: rgb(var(--color-rightblue));
		border-radius: 2px;
		display: block;
		width: 100%;
		height: 2px;
		position: relative;
	}
}

/**
 * active sp
 */
@media screen and (max-width:767px){
	.header__inner,
	.header:before {
		transform: translateX(100%);
		transition: transform .5s var(--easing-outquart);
	}
	.header.is-active .header__inner,
	.header.is-active:before {
		transform: translateX(0);
	}

	.navBtn--line {
		transition: transform .3s ease,
					opacity .3s ease;
	}
	.navBtn.is-active .navBtn--line:nth-child(1) {
		transform: rotate(45deg);
		top: 5px;
	}
	.navBtn.is-active .navBtn--line:nth-child(3) {
		transform: rotate(-45deg);
		bottom: 5px;
	}
	.navBtn.is-active .navBtn--line:nth-child(2) {
		opacity: 0;
		transform: translateX(10px);
	}
}

/*-----------------------------------------------
 * Footer
-------------------------------------------------*/
.footer {
	margin-top: auto;
	padding-top: min(calc(100 / var(--vw-min) * 100vw), 100px);
}

/**
 * footerAside
 */
.footerAside {
	display: flex;
}
@media screen and (max-width:767px){
	.footerAside {
		display: block;
	}
}

/* cont */
.footerAside__cont {
	background-color: rgb(var(--color-rightblue));
	width: 50%;
	padding: min(calc(50 / var(--vw-min) * 100vw), 50px);
}
.footerAside__cont.is-tgs {
	background-color: #000;
}
@media screen and (max-width:767px){
	.footerAside__cont {
		width: 100%;
		padding: calc(40 / var(--vw-min) * 100vw);
	}
}

/* title */
.footerAside__title {
	display: flex;
	align-items: center;
	justify-content: center;
	height: min(calc(56 / var(--vw-min) * 100vw), 56px);
	background-color: #000;
	color: rgb(var(--color-rightblue));
	margin-bottom: min(calc(40 / var(--vw-min) * 100vw), 40px);
}
.footerAside__title > span {
	font-size: min(calc(30 / var(--vw-min) * 100vw), 30px);
}
.footerAside__cont.is-tgs .footerAside__title {
	background-color: rgb(var(--color-rightblue));
	color: #000;
}
@media screen and (max-width:767px){
	.footerAside__title {
		height: calc(75 / var(--vw-min) * 100vw);
	}
	.footerAside__title > span {
		font-size: calc(34 / var(--vw-min) * 100vw);
	}
}

/* inner */
/* .footerAside__cont__inner {
	max-width: 500px;
	margin: 0 auto;
} */

/* dt */
.footerAside__dl > dt {
	font-size: min(calc(14 / var(--vw-min) * 100vw), 14px);
	font-weight: 700;
}
.footerAside__dl > dt:not(:first-of-type) {
	margin-top: min(calc(20 / var(--vw-min) * 100vw), 20px);
}
@media screen and (max-width:767px){
	.footerAside__dl > dt {
		font-size: calc(20 / var(--vw-min) * 100vw);
	}
	.footerAside__dl > dt:not(:first-of-type) {
		margin-top: calc(30 / var(--vw-min) * 100vw);
	}
}

/* dd */
.footerAside__dl > dd {
	font-size: min(calc(14 / var(--vw-min) * 100vw), 14px);
	line-height: 2;
}
@media screen and (max-width:767px){
	.footerAside__dl > dd {
		font-size: calc(20 / var(--vw-min) * 100vw);
	}
}

/* sps */
.footerAside__sps {
	display: table;
	margin: 0 auto;
}
.footerAside__sps img {
	max-width: 100%;
}

/**
 * footerAside__lists
 */
.footerAside__lists {
	display: flex;
	flex-wrap: wrap;
	margin-top: min(calc(40 / var(--vw-min) * 100vw), 40px);
}

/* li */
.footerAside__lists > li {
	width: 50%;
	padding-right: 1em;
}
.footerAside__lists > li:nth-child(n + 3) {
	margin-top: 0.5em;
}

/* a */
.footerAside__lists > li a {
	color: rgb(var(--color-rightblue));
	display: block;
	font-size: min(calc(12 / var(--vw-min) * 100vw), 12px);
	text-decoration: none;
}

/**
 * footerBottom
 */
.footerBottom {
	padding: min(calc(40 / var(--vw-min) * 100vw), 40px);
	position: relative;
}
@media screen and (max-width:767px){
	.footerBottom {
		padding: calc(60 / var(--vw-min) * 100vw) calc(40 / var(--vw-min) * 100vw) calc(120 / var(--vw-min) * 100vw);
	}
}

/* top, bottom */
.footerBottom__top {
	display: flex;
}
.footerBottom__bottom {
	display: flex;
	margin-top: min(calc(34 / var(--vw-min) * 100vw), 34px);
}
@media screen and (max-width:767px){
	.footerBottom__top {
		flex-wrap: wrap;
	}
	.footerBottom__bottom {
		flex-direction: column-reverse;
		margin-top: calc(40 / var(--vw-min) * 100vw);
	}
}

/* logo */
.footerBottom__logo {
	width: min(calc(285 / var(--vw-min) * 100vw), 285px);
}
.footerBottom__logo img {
	width: 100%;
}

/**
 * footerBottom__sns
 */
.footerBottom__sns {
	display: flex;
	align-items: flex-end;
	margin-left: min(calc(40 / var(--vw-min) * 100vw), 40px);
}
@media screen and (max-width:767px){
	.footerBottom__sns {
		margin-left: auto;
	}
}

/* li */
.footerBottom__sns > li {
	width: min(calc(80 / var(--vw-min) * 100vw), 80px);
	height: min(calc(37 / var(--vw-min) * 100vw), 37px);
}
.footerBottom__sns > li:not(:first-child) {
	margin-left: min(calc(10 / var(--vw-min) * 100vw), 10px);
}
@media screen and (max-width:767px){
	.footerBottom__sns > li {
		width: calc(150 / var(--vw-min) * 100vw);
		height: calc(50 / var(--vw-min) * 100vw);
	}
}

/* a */
.footerBottom__sns > li > a {
	background-color: #fff;
	border-radius: min(calc(37 / var(--vw-min) * 100vw), 37px);
	border: 2px solid;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
}
.footerBottom__sns > li.is-youtube > a {
	border-color: rgb(var(--color-youtube));
}
.footerBottom__sns > li.is-twitter > a {
	border-color: rgb(var(--color-twitter));
}

/* icon */
.footerBottom__sns > li > a:before {
	content: "";
	background-color: #000;
	display: block;
	-webkit-mask: no-repeat center / contain;
	mask: no-repeat center / contain;
	width: min(calc(22 / var(--vw-min) * 100vw), 22px);
	height: min(calc(16 / var(--vw-min) * 100vw), 16px);
}
.footerBottom__sns > li.is-youtube > a:before {
	background-color: rgb(var(--color-youtube));
	-webkit-mask-image: url(../img/common/icon/icon_yt.svg);
	mask-image: url(../img/common/icon/icon_yt.svg);
}
.footerBottom__sns > li.is-twitter > a:before {
	background-color: rgb(var(--color-twitter));
	-webkit-mask-image: url(../img/common/icon/icon_tw.svg);
	mask-image: url(../img/common/icon/icon_tw.svg);
}
@media screen and (max-width:767px){
	.footerBottom__sns > li > a:before {
		width: calc(46 / var(--vw-min) * 100vw);
		height: calc(30 / var(--vw-min) * 100vw);
	}
}

/* hover */
@media screen and (min-width:768px){
	.footerBottom__sns > li > a {
		transition: background-color .3s ease;
	}
	.footerBottom__sns > li.is-youtube > a:hover {
		background-color: rgb(var(--color-youtube));
	}
	.footerBottom__sns > li.is-twitter > a:hover {
		background-color: rgb(var(--color-twitter));
	}
	.footerBottom__sns > li > a:before {
		transition: background-color .3s ease;
	}
	.footerBottom__sns > li > a:hover:before {
		background-color: #fff;
	}
}

/**
 * footerBottom__orLists
 */
.footerBottom__orLists {
	margin-bottom: auto;
	margin-left: min(calc(40 / var(--vw-min) * 100vw), 40px);
}
@media screen and (max-width:767px){
	.footerBottom__orLists {
		width: 100%;
		margin-top: calc(48 / var(--vw-min) * 100vw);
		margin-bottom: 0;
		margin-left:0;
	}
}

/* item */
.footerBottom__orLists__item {
	display: flex;
	font-size: min(calc(14 / var(--vw-min) * 100vw), 14px);
}

/* dt */
.footerBottom__orLists__item > dt {
	display: flex;
	white-space: nowrap;
}
.footerBottom__orLists__item > dt:after {
	content: "：";
}

/**
 * footerBottom__link
 */
.footerBottom__link {
	display: flex;
	align-items: center;
}
@media screen and (max-width:767px){
	.footerBottom__link {
		justify-content: center;
		margin-top: calc(30 / var(--vw-min) * 100vw);
	}
}

/* li */
.footerBottom__link > li {
	position: relative;
}
.footerBottom__link > li:not(:first-child) {
	margin-left: min(calc(20 / var(--vw-min) * 100vw), 20px);
	padding-left: min(calc(20 / var(--vw-min) * 100vw), 20px);
}
.footerBottom__link > li:not(:first-child):before {
	content: "";
	background-color: #000;
	width: 1px;
	height: 1em;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
}

/* a */
.footerBottom__link > li > a {
	font-size: min(calc(12 / var(--vw-min) * 100vw), 12px);
	padding-bottom: 0.5em;
	position: relative;
	text-decoration: none;
}

/* line */
.footerBottom__link > li > a:before,
.footerBottom__link > li > a:after {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	position: absolute;
	bottom: 0;
}
.footerBottom__link > li > a:before {
	background-color: #d4d4d4;
	z-index: 1;
}
.footerBottom__link > li > a:after {
	background-color: #000;
	z-index: 2;
}

/* hover */
.footerBottom__link > li > a:after {
	left: 0;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s ease;
}
.footerBottom__link > li > a:hover:after {
	transform-origin: left top;
	transform: scale(1, 1);
}

/**
 * copyright
 */
.footerBottom__copyright {
	display: block;
	font-size: min(calc(12 / var(--vw-min) * 100vw), 12px);
	margin-left: auto;
}
@media screen and (max-width:767px){
	.footerBottom__copyright {
		width: 100%;
		text-align: center;
	}
}

/**
 * pagetop sp
 */
@media screen and (max-width:767px){
	.pagetop {
		width: 40px;
		height: 40px;
		position: fixed;
		right: 10px;
		bottom: 10px;
		z-index: 998;
		transform: translateY(calc(100% + 10px));
		transition: transform .3s ease;
	}
	.pagetop.is-none {
		transform: translateY(0);
	}
	.pagetop > a {
		background-color: #000;
		border-radius: 50%;
		display: block;
		width: 100%;
		height: 100%;
	}
	.pagetop > a:before {
		content: "";
		width: 10px;
		height: 10px;
		border-top: solid 3px rgb(var(--color-rightblue));
		border-right: solid 3px rgb(var(--color-rightblue));
		position: absolute;
		top: calc(50% + 2px);
		left: 50%;
		-webkit-transform: translate(-50%, -50%) rotate(-45deg);
		transform: translate(-50%, -50%) rotate(-45deg);
		pointer-events: none;
	}
}

/**
 * pagetop pc
 */
 .footer__pagetop {
	width: min(calc(80 / var(--vw-min) * 100vw), 80px);
	height: min(calc(120 / var(--vw-min) * 100vw), 120px);
	position: absolute;
	top: 0;
	right: min(calc(40 / var(--vw-min) * 100vw), 40px);
}
.footer__pagetop > a {
	display: flex;
	width: 100%;
	height: 100%;
}
.footer__pagetop .dicircleLink__cWrap {
	margin-top: auto;
}
@media screen and (max-width:767px){
	.footer__pagetop {
		width: 19.2vw;
		height: 25.86666vw;
		position: relative;
		margin: auto;
		right: 0;
		left: 0;
	}
}

/**
 * circleLink
 */
 .circleLink {
	position: relative;
}
.circleLink:before {
	content: "";
	background-color: #000;
	margin: auto;
	position: absolute;
}
.circleLink.is-white:before {
	background-color: #fff;
}
.circleLink.is-lineBottom:before {
	width: 1px;
	height: min(calc(80 / var(--vw-min) * 100vw), 80px);
	bottom: 0;
	right: 0;
	left: 0;
}
.circleLink.is-lineTop:before {
	width: 1px;
	height: min(calc(80 / var(--vw-min) * 100vw), 80px);
	top: 0;
	right: 0;
	left: 0;
}
.circleLink.is-lineRight:before {
	width: min(calc(80 / var(--vw-min) * 100vw), 80px);
	height: 1px;
	top: 0;
	bottom: 0;
	left: min(8.33333vw,100px);
}
@media screen and (max-width:767px){
	.circleLink.is-lineBottom:before {
		height: 9.6vw;
	}
	.circleLink.is-lineTop:before {
		height: 9.6vw;
	}
	.circleLink.is-lineRight:before {
		width: 9.6vw;
		left: 16vw;
	}
}

/* c */
.circleLink__cWrap {
	width: min(calc(120 / var(--vw-min) * 100vw), 120px);
	height: min(calc(80 / var(--vw-min) * 100vw), 80px);
	padding-top: 100%;
	position: relative;
}
.circleLink__cWrap.is-lineTop {
	margin-top: auto;
}
.circleLink__c {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: 1;
}
.circleLink__cWrap:before {
	content: "";
	border: 2px solid rgba(0,0,0,.2);
	border-radius: 50%;
	box-sizing: border-box;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.circleLink.is-white .circleLink__cWrap:before {
	border-color:rgba(255,255,255,.2);
}
@media screen and (max-width:767px){
	.circleLink__cWrap {
		width: 19.2vw;
	}
}

/* svg */
.circleLink__c svg {
	fill: none;
	stroke: #000;
	stroke-width: 8;
	stroke-linecap: round;
	stroke-dasharray: 1100 1100;
	animation: loader 1.9s infinite cubic-bezier(.3,0,.2,1), loading 1.8s infinite linear;
	vertical-align: middle;
	width: 100%;
	height: 100%;
}
.circleLink.is-white .circleLink__c svg {
	stroke: #fff;
}
@keyframes loader {
	from { stroke-dashoffset: 1100; }
	to { stroke-dashoffset: -1100; }
}
@keyframes loading {
	from { transform: none; }
	to { transform: rotate(360deg); }
}


/*-----------------------------------------------
 * Parts
-------------------------------------------------*/
/**
 * fontsize
 * %で親に依存
 */
.fontsize-80p {
	font-size: 80%;
}
.fontsize-70p {
	font-size: 70%;
}

/* box-shadow */
.c-shadow {
	box-shadow: 0 0 min(calc(40 / var(--vw-min) * 100vw), 40px) rgba(0, 0, 0, 0.2);
}

/* 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;
}

/**
 * contTitle
 */
.contTitle {
	display: table;
	margin: 0 auto;
	overflow: hidden;
	padding: 0.3em 2.5em;
	position: relative;
}
.contTitle:before {
	content: "";
	background-color: #000;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.contTitle.is-bgnone:before {
	content: none;
}

/* text */
.contTitle > span {
	color: rgb(var(--color-rightblue));
	display: block;
	font-size: min(calc(40 / var(--vw-min) * 100vw), 40px);
	letter-spacing: -.01em;
	line-height: 1;
	margin-bottom: 0.1em;
	text-align: center;
	position: relative;
	z-index: 1;
}
@media screen and (max-width:767px){
	.contTitle > span {
		font-size: calc(68 / var(--vw-min) * 100vw);
	}
}

/**
 * contTitle2
 */
.contTitle2 {
	color: rgb(var(--color-rightblue));
	font-size: min(calc(50 / var(--vw-min) * 100vw), 50px);
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.4;
	text-align: center;
}
@media screen and (max-width:767px){
	.contTitle2 {
		font-size: calc(60 / var(--vw-min) * 100vw);
	}
}
.contTitle2 small {
	font-size:min(calc(16 / var(--vw-min) * 100vw), 16px);
	display: block;
	text-align: center;
	line-height:1.7;
}


/**
 * textBg
 */
.textBg-white {
	background-position: bottom;
	background: linear-gradient( to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 16%, rgba(255,255,255,1) 16%, rgba(255,255,255,1) 92%, rgba(255,255,255,0) 92%, rgba(255,255,255,0) 100% );
}
.textBg-black {
	background-position: bottom;
	background: linear-gradient( to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 16%, rgba(0,0,0,1) 16%, rgba(0,0,0,1) 92%, rgba(0,0,0,0) 92%, rgba(0,0,0,0) 100% );
}
.textBg-blue {
	background-position: bottom;
	background: linear-gradient( to bottom, rgba(var(--color-rightblue),0) 0%, rgba(var(--color-rightblue),0) 16%, rgba(var(--color-rightblue),1) 16%, rgba(var(--color-rightblue),1) 92%, rgba(var(--color-rightblue),0) 92%, rgba(var(--color-rightblue),0) 100% );
}

/**
 * linkA
 */
.linkA {
	width: 100%;
	height: min(calc(50 / var(--vw-min) * 100vw), 50px);
}
@media screen and (max-width:767px){
	.linkA {
		height: calc(80 / var(--vw-min) * 100vw);
	}
}

/* a */
.linkA > a {
	background-color: #fff;
	border-radius: min(calc(50 / var(--vw-min) * 100vw), 50px);
	border: 2px solid rgb(var(--color-rightblue));
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
	text-decoration: none;
}

/* text, arrow */
.linkA > a > span {
	color: rgb(var(--color-rightblue));
	font-size: min(calc(20 / var(--vw-min) * 100vw), 20px);
	letter-spacing: 0.01em;
	margin-top: -0.1em;
	position: relative;
	z-index: 1;
}
.linkA > a:before {
	content: "";
	width: min(calc(8 / var(--vw-min) * 100vw), 8px);
	height: min(calc(8 / var(--vw-min) * 100vw), 8px);
	border-top: solid 2px rgb(var(--color-rightblue));
	border-right: solid 2px rgb(var(--color-rightblue));
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 1.5em;
	transform: rotate(45deg);
}
@media screen and (max-width:767px){
	.linkA > a > span {
		font-size: calc(28 / var(--vw-min) * 100vw);
	}
	.linkA > a:before {
		width: calc(14 / var(--vw-min) * 100vw);
		height: calc(14 / var(--vw-min) * 100vw);
	}
}

/* hover */
@media screen and (min-width:768px){
	.linkA > a {
		transition: background-color .3s ease;
	}
	.linkA > a:hover {
		background-color: rgb(var(--color-rightblue));
	}
	.linkA > a > span {
		transition: color .3s ease;
	}
	.linkA > a:hover > span {
		color: #fff;
	}
	.linkA > a:before {
		transition: border-color .3s ease;
	}
	.linkA > a:hover:before {
		border-color: #fff;
	}
}

/**
 * swiper pager
 */
.swPagerListsWrap{
	width: 100%;
	height: 24px;
	margin-top: min(calc(24 / var(--vw-min) * 100vw), 24px);
	position: relative;
	z-index: 10;
}

.swPagerLists.swiper-pagination-bullets.swiper-pagination-horizontal{
	display: flex;
	align-items: center;
	justify-content: center;
	height: auto;
	width: 100%;
	height: 100%;
	bottom: unset;
	left: unset;
}
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swPagerLists__item{
	width: 24px;
	height: 24px;
	background: unset;
	opacity: 1;
}
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swPagerLists__item:not(:first-child) {
	margin-left: min(calc(12 / var(--vw-min) * 100vw), 12px);
}
.swPagerLists__link{
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}
.swPagerLists__link:after {
	content: '';
	position: absolute;
	top: calc(50% - 2px);
	left: calc(50% - 2px);
	width: 4px;
	height: 4px;
	background-color: #000;
	transition: .3s ease;
	border-radius: 50%;
}
.swPagerLists__item svg{
	margin: 0;
	width: 24px;
	height: 24px;
	position: absolute;
	top: 0;
	left: 0;
	transform: rotate(-90deg);
}
.swPagerLists__item svg circle{
	cx: 12px;
	cy: 12px;
	r: 11px;
	fill: transparent;
	stroke-width: 1px;
}
.swPagerLists__item svg.swPagerLists__circle{
	z-index: 2;
	opacity: 0;
}
.swPagerLists__item svg.swPagerLists__circle circle{
	stroke: rgb(var(--color-rightblue));
}
.swPagerLists__item svg.swPagerLists__bg circle{
	stroke: rgba(0,0,0,24%);
}
.swPagerLists__item.swiper-pagination-bullet-active .swPagerLists__link:after {
	background-color: rgb(var(--color-rightblue));
}
.swPagerLists__item.swiper-pagination-bullet-active svg.swPagerLists__circle {
	opacity: 1;
}
.swPagerLists__item.swiper-pagination-bullet-active svg.swPagerLists__circle circle{
	animation: pCircle_mv 12s forwards;
}

/**
 * cursor
 */
 .cursor{
    width: 80px;
    height: 80px;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
	/* ipad */
	.cursor{
        display: none;
    }
}
@media screen and (max-width:767px){
	.cursor{
        display: none;
    }
}

/* play icon */
.cursor__play{
    border-radius: 50%;
	background-color: rgba(0,0,0,.4);
    width: 80px;
    height: 80px;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity .1s ease-in-out;
}
.cursor.on-movieLink .cursor__play{
    opacity: 1;
}
.cursor__play svg{
    margin-top: 0;
    margin-left: 0;
    transform: rotate(-90deg);
}
.cursor__play svg circle{
    fill: transparent;
    stroke: #fff;
    stroke-width: 2;
    /* animation: pCircle-out .8s forwards; */
}
.cursor.on-movieLink .cursor__play svg circle{
    animation: pCircle .8s forwards;
}

.cursor__play:before {
	content: "";
	background-color: #fff;
	-webkit-mask: url(../img/common/icon/icon_mouse1.svg) no-repeat center / contain;
	mask: url(../img/common/icon/icon_mouse1.svg) no-repeat center / contain;
	width: 40px;
	height: 40px;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

@keyframes pCircle {
    0% {
        stroke-dasharray: 0 251.2; /*-- 円の直径(80)x3.14 --*/
    }
    26% {
        stroke-dasharray: 0 251.2;
    }
    100% {
        stroke-dasharray: 251.2 251.2;
    }
}
@keyframes pCircle-out {
    0% {
        stroke-dasharray: 251.2 251.2; /*-- 円の直径(80)x3.14 --*/
    }
    26% {
        stroke-dasharray: 251.2 251.2;
    }
    100% {
        stroke-dasharray: 0 251.2;
    }
}

/*-----------------------------------------------
 * Sub page
-------------------------------------------------*/
/**
 * loading
 */
.sub-loading {
	background-color: #fff;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9999;
}

/**
 * subMain
 */
.subMain {
	position: relative;
	z-index: 1;
}

/**
 * subHeader
 */
.subHeader {
	height: 100vh;
	min-height: var(--common-min-height);
	position: relative;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation:portrait) {
	/* iPadが縦向き */
	.subHeader {
		max-height: var(--common-min-height);
	}
}
@media screen and (max-width:767px){
	.subHeader {
		height: auto;
		min-height: calc(640 / var(--vw-min) * 100vw);
	}
}

/* inner */
.subHeader__inner {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: 2;
}
@media screen and (max-width:767px){
	.subHeader__inner {
		height: auto;
		padding-top: calc(294 / var(--vw-min) * 100vw);
		position: relative;
	}
}

/* deco */
.subHeader:before {
	content: "";
	background-color: #fff;
	width: calc(100% - min(calc(160 / var(--vw-min) * 100vw), 160px));
	height: min(calc(80 / var(--vw-min) * 100vw), 80px);
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}
@media screen and (max-width:767px){
	.subHeader:before {
		content: none;
	}
}

/* bg */
.subHeader__bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: 0;
}
.subHeader__bg:before {
	content: "";
	background-color: rgba(255,255,255,.2);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: 2;
}
@media screen and (max-width:767px){
	.subHeader__bg {
		height: calc(640 / var(--vw-min) * 100vw);
	}
}

.subHeader__bgCont {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	z-index: 0;
}

/* enTitle */
@media screen and (max-width:767px){
	.subHeader__bg__enTitle {
		width: 100%;
		height: calc(96 / var(--vw-min) * 100vw);
		position: absolute;
		bottom: 0;
		right: 0;
		z-index: 3;
	}
	.subHeader__bg__enTitle > span {
		color: rgb(var(--color-rightblue));
		font-size: calc(118 / var(--vw-min) * 100vw);
		display: block;
		text-align: right;
		line-height: 1;
		margin-top: -0.14em;
	}
}

/**
 * subHeader__cont
 */
.subHeader__cont {
	display: flex;
	flex-direction: column;
	width: calc(100% - min(calc(160 / var(--vw-min) * 100vw), 160px));
	height: 54%;
	padding-left: min(calc(40 / var(--vw-min) * 100vw), 40px);
	padding-bottom: min(calc(34 / var(--vw-min) * 100vw), 34px);
	position: absolute;
	left: 0;
	bottom: 0;
}
@media screen and (max-width:767px){
	.subHeader__cont {
		width: 100%;
		height: auto;
		padding-left: calc(48 / var(--vw-min) * 100vw);
		padding-bottom: 0;
		position: relative;
		left: auto;
		bottom: auto;
	}
}

/* title */
.subHeader__cont__title {
	display: table;
	font-size: min(calc(48 / var(--vw-min) * 100vw), 48px);
	font-weight: 700;
	line-height: 1;
	position: relative;
	z-index: 2;
}
.subHeader__cont__title > span {
	position: relative;
}
.subHeader__cont__title > span:before {
	content: "";
	background-color: #000;
	width: 100%;
	height: calc(100% - 0.5em);
	position: absolute;
	top: 54%;
	transform: translateY(-50%);
}
.subHeader__cont__title > span > span {
	color: rgb(var(--color-rightblue));
	position: relative;
	z-index: 1;
}

/* catch */
.subHeader__cont__catch {
	font-size: min(calc(24 / var(--vw-min) * 100vw), 24px);
	margin-top: 0.8em;
	position: relative;
	z-index: 2;
}
.subHeader__cont__catch > span {
	color: #fff;
}
@media screen and (max-width:767px){
	.subHeader__cont__catch {
		font-size: calc(28 / var(--vw-min) * 100vw);
		margin-top: 0;
		position: absolute;
		top: calc(80 / var(--vw-min) * 100vw);
	}
}

/* detail */
.subHeader__cont__detail {
	font-size: min(calc(16 / var(--vw-min) * 100vw), 16px);
	line-height: 2;
	margin-top: auto;
	position: relative;
	z-index: 2;
}
@media screen and (max-width:767px){
	.subHeader__cont__detail {
		font-size: calc(24 / var(--vw-min) * 100vw);
		letter-spacing: -0.094em;
		margin-top: calc(224 / var(--vw-min) * 100vw);
		padding-right: calc(48 / var(--vw-min) * 100vw);
	}
}

/* enTitle */
.subHeader__cont__enTitle {
	width: 100%;
	height: min(calc(160 / var(--vw-min) * 100vw), 160px);
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 0;
}
.subHeader__cont__enTitle > span {
	color: rgb(var(--color-rightblue));
	font-size: min(calc(198 / var(--vw-min) * 100vw), 198px);
	display: block;
	text-align: right;
	line-height: 1;
	margin-top: -0.14em;
}

/**
 * subHeaderNav
 */
.subHeaderNav {
	width: 100%;
	height: min(calc(80 / var(--vw-min) * 100vw), 80px);
	padding-left: min(calc(40 / var(--vw-min) * 100vw), 40px);
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 3;
}
.subHeaderNavLists {
	display: flex;
	align-items: center;
	height: 100%;
}
@media screen and (max-width:767px){
	.subHeaderNav {
		height: calc(80 / var(--vw-min) * 100vw);
		padding-left: calc(24 / var(--vw-min) * 100vw);
	}
}

/* li */
.subHeaderNavLists > li {
	height: min(calc(27 / var(--vw-min) * 100vw), 27px);
	position: relative;
}
.subHeaderNavLists > li:not(:first-child) {
	margin-left: min(calc(20 / var(--vw-min) * 100vw), 20px);
}
@media screen and (max-width:767px){
	.subHeaderNavLists > li {
		height: calc(24 / var(--vw-min) * 100vw);
	}
	.subHeaderNavLists > li:not(:first-child) {
		margin-left: calc(48 / var(--vw-min) * 100vw);
	}
}

/* link */
.subHeaderNavLists__link {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

/* icon */
.subHeaderNavLists__icon {
	display: block;
	background-color: #000;
	width: min(calc(19 / var(--vw-min) * 100vw), 19px);
	height: min(calc(19 / var(--vw-min) * 100vw), 19px);
	margin-left: min(calc(8 / var(--vw-min) * 100vw), 8px);
	position: relative;
}
.subHeaderNavLists__icon:before {
	content: "";
	background-color: #fff;
	-webkit-mask: url(../img/common/icon/icon_arrow_b.svg) no-repeat center / contain;
	mask: url(../img/common/icon/icon_arrow_b.svg) no-repeat center / contain;
	width: calc(8 / var(--vw-min) * 100vw);
	height: calc(8 / var(--vw-min) * 100vw);
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
@media screen and (max-width:767px){
	.subHeaderNavLists__icon {
		background-color: #fff;
		width: calc(24 / var(--vw-min) * 100vw);
		height: calc(24 / var(--vw-min) * 100vw);
	}
	.subHeaderNavLists__icon:before {
		background-color: #000;
		width: calc(12 / var(--vw-min) * 100vw);
		height: calc(12 / var(--vw-min) * 100vw);
	}
}

/* text */
.subHeaderNavLists__text {
	background-color: #fff;
	display: block;
	font-size: min(calc(16 / var(--vw-min) * 100vw), 16px);
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1;
	padding: 1px 1px 2px 1px;
	position: relative;
}
.subHeaderNavLists__text > span {
	color: #000;
	position: relative;
	z-index: 1;
}
@media screen and (max-width:767px){
	.subHeaderNavLists__text {
		background-color: transparent;
	}
	.subHeaderNavLists__text > span {
		color: #fff;
	}
}

/* hover */
@media screen and (min-width:768px){
	.subHeaderNavLists__text:before {
		content: "";
		background-color: #000;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 0;
		transform: scale(0, 1);
		transform-origin: right top;
		transition: transform .3s ease;
	}
	.subHeaderNavLists__link:is(:hover) .subHeaderNavLists__text:before {
		transform-origin: left top;
		transform: scale(1, 1);
	}
	.subHeaderNavLists__text > span {
		transition: color .3s ease;
	}
	.subHeaderNavLists__link:is(:hover) .subHeaderNavLists__text > span {
		color: rgb(var(--color-rightblue));
	}
}

/**
 * subHeader__scroll
 */
.subHeader__scroll {
	width: min(calc(80 / var(--vw-min) * 100vw), 80px);
	height: min(calc(120 / var(--vw-min) * 100vw), 120px);
	position: absolute;
	bottom: 0;
	right: min(calc(40 / var(--vw-min) * 100vw), 40px);
}
.subHeader__scroll > a {
    display: flex;
    width: 100%;
    height: 100%;
}
.subHeader__pagetop .dicircleLink__cWrap {
	margin-top: auto;
}

/**
 * subHeader__dl
 */
.subHeader__dlWrap {
	position: absolute;
	top: 50%;
	right: min(2vw, 24px);
	transform: translate(0%, -50%);
	z-index: 2;
}
.subHeader__dl {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

/* dt */
.subHeader__dl > dt {
	color: #fff;
	font-size: min(calc(14 / var(--vw-min) * 100vw), 14px);
	letter-spacing: 0.01em;
	margin-bottom: 1em;
}

/* shareLists */
.subHeader__dl__share__item {
	width: min(calc(24 / var(--vw-min) * 100vw), 24px);
	height: min(calc(24 / var(--vw-min) * 100vw), 24px);
}
.subHeader__dl__share__item:not(:first-child) {
	margin-top: min(calc(24 / var(--vw-min) * 100vw), 24px);
}

/* link */
.subHeader__dl__share__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
	text-decoration: none;
}
.subHeader__dl__share__link:before {
	content: "";
	background-color: #fff;
	display: block;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	width: 100%;
	height: 100%;
}

/* 各SNSパーツ */
.subHeader__dl__share__item.is-twitter .subHeader__dl__share__link:before {
	-webkit-mask-image: url(../img/common/icon/icon_tw.svg);
	mask-image: url(../img/common/icon/icon_tw.svg);
}
.subHeader__dl__share__item.is-facebook .subHeader__dl__share__link:before {
	-webkit-mask-image: url(../img/common/icon/icon_fb.svg);
	mask-image: url(../img/common/icon/icon_fb.svg);
}

/* hover */
.subHeader__dl__share__link:before {
	transition: background-color .3s ease;
}
.subHeader__dl__share__link:hover:before {
	background-color: rgb(var(--color-rightblue));
}

/**
 * subContOne
 */
.subContOne {
	padding-top: min(calc(160 / var(--vw-min) * 100vw), 160px);
}
@media screen and (max-width:767px){
	.subContOne {
		padding-top: calc(100 / var(--vw-min) * 100vw);
	}
}

/* head */
.subContOne__head {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
	max-width: var(--sub-max-width);
	margin: 0 auto;
}

/* num */
.subContOne__num {
	position: absolute;
	top: 50%;
	left: min(calc(40 / var(--vw-min) * 100vw), 40px);
	transform: translateY(-50%);
}
.subContOne__num > span {
	font-size: min(calc(88 / var(--vw-min) * 100vw), 88px);
	font-weight: 700;
	line-height: 1;
}
@media screen and (max-width:767px){
	.subContOne__num {
		left: calc(24 / var(--vw-min) * 100vw);
	}
	.subContOne__num > span {
		font-size: calc(58 / var(--vw-min) * 100vw);
	}
}

/* enTitle */
.subContOne__enTitle {
	font-size: min(calc(10 / var(--vw-min) * 100vw), 10px);
	letter-spacing: -0.04em;
	line-height: 1.4;
	position: absolute;
	top: 50%;
	right: min(calc(40 / var(--vw-min) * 100vw), 40px);
	transform: translateY(-50%);
	text-align: right;
}
@media screen and (max-width:767px){
	.subContOne__enTitle {
		font-size: calc(14 / var(--vw-min) * 100vw);
		top: auto;
		right: calc(24 / var(--vw-min) * 100vw);
		bottom: -2.5em;
		transform: translateY(0);
	}
}

/**
 * subContOne__title
 */
.subContOne__title {
	width: min(calc(560 / var(--vw-min) * 100vw), 560px);
	position: relative;
}
.subContOne__title__inner {
	display: block;
	color: rgb(var(--color-rightblue));
	font-size: min(calc(40 / var(--vw-min) * 100vw), 40px);
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	padding: 0.225em 0;
	position: relative;
}
@media screen and (max-width:767px){
	.subContOne__title {
		width: calc(526 / var(--vw-min) * 100vw);
	}
	.subContOne__title__inner {
		font-size: calc(32 / var(--vw-min) * 100vw);
		padding: 0.3em 0;
	}
}

/* line */
.subContOne__title__line:before,
.subContOne__title__line:after {
	content: "";
	background-color: rgba(0,0,0,.2);
	width: 100%;
	height: 2px;
	margin: auto;
	position: absolute;
	right: 0;
	left: 0;
}
.subContOne__title__line:before {
	top: 0;
}
.subContOne__title__line:after {
	bottom: 0;
}

/* deco */
.subContOne__title:before,
.subContOne__title__deco:before,
.subContOne__title:after,
.subContOne__title__deco:after {
	content: "";
	background-color: #000;
	width: min(calc(8 / var(--vw-min) * 100vw), 8px);
	height: min(calc(8 / var(--vw-min) * 100vw), 8px);
	margin: auto;
	position: absolute;
}

.subContOne__title:before,
.subContOne__title__deco:before {
	top: -4%;
}
.subContOne__title:after,
.subContOne__title__deco:after {
	bottom: -4%;
}
.subContOne__title:before,
.subContOne__title:after {
	left: -3%;
}
.subContOne__title__deco:before,
.subContOne__title__deco:after {
	right: -3%;
}

/**
 * animation
 */
/* ani-sub-title */
.ani-sub-title > span:before {
	width: 0;
	transition: width .4s var(--easing-outquart);
}
.ani-sub-title.is-ani > span:before {
	width: 100%;
}
.ani-sub-title > span > span {
	display: inline-block;
	transform: translateY(20%);
	opacity: 0;
	transition: transform .6s ease,
				opacity .6s ease;
}
.ani-sub-title.is-ani > span > span {
	transition-delay: .2s;
	transform: translateY(0);
	opacity: 1;
}

/* ani-sub-fade */
.ani-sub-fade {
	transform: translateY(20%);
	opacity: 0;
	transition: transform .8s ease,
				opacity .8s ease;
}
.ani-sub-fade.is-ani {
	transition-delay: .1s;
	transform: translateY(0);
	opacity: 1;
}

/* ani-sub-fade2 */
.ani-sub-fade2 {
	opacity: 0;
	transition: opacity .8s ease;
}
.ani-sub-fade2.is-ani {
	transition-delay: .1s;
	opacity: 1;
}

/* ani-sub-fade-ho */
.ani-sub-fade-ho {
	transform: translateX(5%);
	opacity: 0;
	transition: transform .8s ease,
				opacity .8s ease;
}
.ani-sub-fade-ho.is-ani {
	transition-delay: .1s;
	transform: translateY(0);
	opacity: 1;
}

/* ani-sub-header */
@media screen and (min-width:768px){
	.ani-sub-header {
		transform: translateY(-100%);
		opacity: 0;
		transition: transform 1s ease,
					opacity 1s ease;
	}
	.ani-sub-header.is-ani {
		opacity: 1;
		transform: translateY(0);
	}
}
@media screen and (max-width:767px){
	.ani-sub-header {
		opacity: 0;
		transition: opacity 1s ease;
	}
	.ani-sub-header.is-ani {
		opacity: 1;
	}
}

/* ani-sub-bg */
.ani-sub-bg {
	transform: scale(1.3);
	opacity: 0;
	transition: transform 5s cubic-bezier(0.16, 1, 0.3, 1),
				opacity .8s ease;
}
.ani-sub-bg.is-ani {
	transform: scale(1);
	opacity: 1;
}

/* ani-sub-bg-wrap */
.ani-sub-bg-wrap:before {
	opacity: 0;
	transition: opacity .8s ease;
}
.ani-sub-bg-wrap.is-ani:before {
	opacity: 1;
}


/*-----------------------------------------------
 * Scroll animation
-------------------------------------------------*/
/* フェードイン */
.ani-fade {
	transform: translateY(30%);
	opacity: 0;
	transition: transform .6s ease,
				opacity .6s ease;
}
.ani-fade.is-ani {
	transform: translateY(0);
	opacity: 1;
}

/* フェードイン：縦幅が大きすぎる時に使用 */
.ani-fade-s {
	transform: translateY(10%);
	opacity: 0;
	transition: transform .6s ease,
				opacity .6s ease;
}
.ani-fade-s.is-ani {
	transform: translateY(0);
	opacity: 1;
}

/* フェードイン：横から */
.ani-fade-ho {
	transform: translateX(10%);
	opacity: 0;
	transition: transform .6s ease,
				opacity .6s ease;
}
.ani-fade-ho.is-ani {
	transform: translateY(0);
	opacity: 1;
}

/* contTitle */
.ani-contTitle:before {
	width: 0;
	transition: width .4s var(--easing-outquart);
}
.ani-contTitle.is-ani:before {
	width: 100%;
}
.ani-contTitle > span {
	transform: translateY(20%);
	opacity: 0;
	transition: transform .6s ease,
				opacity .6s ease;
}
.ani-contTitle.is-ani > span {
	transition-delay: .2s;
	transform: translateY(0);
	opacity: 1;
}

/**
 * ani-subcont-title
 */
/* num entitle */
.ani-subcontHead .subContOne__num > span,
.ani-subcontHead .subContOne__enTitle {
	display: block;
	transform: translateY(20%);
	opacity: 0;
	transition: transform .6s ease,
				opacity .6s ease;
}
.ani-subcontHead.is-ani .subContOne__num > span,
.ani-subcontHead.is-ani .subContOne__enTitle {
	transform: translateY(0%);
	opacity: 1;
}

/* line */
.ani-subcontHead .subContOne__title__line:before,
.ani-subcontHead .subContOne__title__line:after {
	width: 0;
	transition: width .4s ease;
}
.ani-subcontHead.is-ani .subContOne__title__line:before,
.ani-subcontHead.is-ani .subContOne__title__line:after {
	width: 100%;
}

/* inner */
.ani-subcontHead .subContOne__title__inner {
	transform: translateY(-30%);
	opacity: 0;
	transition: transform .6s ease,
				opacity .6s ease;
}
.ani-subcontHead.is-ani .subContOne__title__inner {
	transform: translateY(0%);
	opacity: 1;
}

/* deco */
.ani-subcontHead .subContOne__title:before,
.ani-subcontHead .subContOne__title__deco:before,
.ani-subcontHead .subContOne__title:after,
.ani-subcontHead .subContOne__title__deco:after{
	opacity: 0;
	transform: translateX(-300%);
	transition: transform .3s ease,
				opacity .3s ease;
}
.ani-subcontHead.is-ani .subContOne__title:before,
.ani-subcontHead.is-ani .subContOne__title__deco:before,
.ani-subcontHead.is-ani .subContOne__title:after,
.ani-subcontHead.is-ani .subContOne__title__deco:after{
	opacity: 1;
	transform: translateX(0%);
}
/*-----------------------------------------------
 * margin-top
-------------------------------------------------*/
.mt80{
	margin-top: 80px !important;
}
@media screen and (max-width:767px){
	.mt80{
		margin: min(calc(64 / var(--vw-min) * 100vw), 64px) auto 0 !important;
	}
}