@charset "utf-8";
body,div,dl,dt,dd,ul,ol,li,p,h1,h2,h3,h4,h5,h6,th,td,pre,code,blockquote,form,fieldset,legend,input,textarea,figcaption,figure{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,th,var{font-style:normal;font-weight:normal}li{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit}input,textarea,select{*font-size:100%}legend{color:#FFF}hr{display:none}img{vertical-align:bottom}select,input,button,textarea{font-size:99%}table{font-size:inherit;font:100%;border-collapse:collapse;border-spacing:0}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:100%}.hd{display:block;width:0;height:0;overflow:hidden}.cf:before,.cf:after{content:"";display:table}.cf:after{clear:both}.cf{*zoom:1}article,aside,details,figcaption,figure,footer,header,hgroup,hr,menu,nav,section,main{display:block}*{margin:0;padding:0;box-sizing:border-box;max-height:999999px;outline:none;}*:focus{outline: none;}button{background-color:transparent;border:none;cursor:pointer;outline:none;padding:0;}
/*-----------------------------------------------
 * root
 * Base
 * Modal
 * Header
 * Parts
-------------------------------------------------*/
/*-----------------------------------------------
 * root
-------------------------------------------------*/
:root {
    /* color */
    --color-yellow: #ffe90e;
    --color-red: #e93430;
    --color-green: #00d06f;
    /* font */
    --main-font: source-han-sans-japanese, sans-serif;;
    --en-font: futura-pt, sans-serif;
    --en2-font: oswald, sans-serif;

    /* vw min 計算 => min(calc(数値 / var(--vw-min) * 100vw), 数値); */
	--vw-min: 1200;
}
@media screen and (max-width:768px){
	:root {
		/* vw min 計算 => min(calc(数値 / var(--vw-min) * 100vw), 数値); */
		--vw-min: 750;
	}
}
.font-futura {
    font-family: var(--en-font);
}
.font-oswald {
    font-family: oswald, sans-serif;
}
.is-c-red {
    color: var(--color-red);
}
.is-c-yellow {
    color: var(--color-yellow);
}
.is-c-green {
    color: var(--color-green);
}
.is-indent {
    padding-left: 1em;
    text-indent: -1em;
}
/*-----------------------------------------------
 * Base
-------------------------------------------------*/
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 100;
}
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 200;
}
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 300;
}
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 400;
}
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Bold");
    font-weight: bold;
}
body{
    -webkit-text-size-adjust: 100%;
    background-color: var(--color-yellow);
    color: #000;
    font-family: var( --main-font);
    font-feature-settings: "palt";
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 0.07em;
    line-height: 1.8;
    word-wrap: break-word;
}
.pc{ display: block; }
.sp{ display: none; }
a{ color: #222; }
a:hover{ text-decoration: none; }
.ah { transition: opacity .3s ease; }
.ah:hover { opacity: .7; }
::selection{
    background: #6ccfee;
    color: #fff;
}
::-moz-selection{
    background: #6ccfee;
    color:#fff;
}
@media screen and (max-width:768px){
    html{ 
        font-size: 62.5%;
    }
    body{
        font-size: 10px; 
        font-size: 1rem;
        min-width: 320px;
    }
    .sp{ display: block; }
    .pc{ display: none; }
    .ah:hover { opacity: 1; }
}
/* Adobe font */
.wf-loading {
	opacity: 0;
}
.wf-active {
	opacity: 1;
	transition: opacity 0.3s ease;
}
/*-----------------------------------------------
 * common
-------------------------------------------------*/
#fullWrap {
    position: relative;
}
.subFullWrap {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.footer {
    margin-top: auto;
}
.main {
    position: relative;
    z-index: 2;
}
.is-red {
    color: var(--color-red);
}
.linkBtn .js-txtSpan span:first-child {
	color: var(--color-red);
    transition: .3s ease;
}
/**
* TXT SLIDER
**/
/** pc **/
.textSlider {
    width: 100%;
    height: min(calc(58 / var(--vw-min) * 100vw), 58px);
    position: absolute;
}
.textSlider.is-sliderYellow {
	top: 0;
	background-color: var(--color-yellow);
}
.textSlider.is-sliderBlack {
	bottom: 0;
	background-color: #000;
}
.textSlider::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
}
.textSlider.is-sliderYellow::before {
	top: 0;
	background: url(../img/top/b-textSlider.svg)repeat-x center left/ min(calc(1348 / var(--vw-min) * 100vw), 1348px) min(calc(68 / var(--vw-min) * 100vw), 68px);
    animation:titSlider 20s linear reverse infinite;
}
.textSlider.is-sliderBlack::before {
	top: 0;
	background: url(../img/top/y-textSlider.svg)repeat-x center left/ min(calc(1348 / var(--vw-min) * 100vw), 1348px) min(calc(68 / var(--vw-min) * 100vw), 68px);
    animation:titSlider 20s linear normal infinite;
}
@keyframes titSlider{
	0%{
		background-position:0 center;
	}
	100%{
		background-position:min(calc(1348 / var(--vw-min) * 100vw), 1348px) center;
	}
}
/** sp **/
@media screen and (max-width:768px){ 
    .textSlider {
        height: calc(58 / var(--vw-min) * 100vw);
    }
	.textSlider.is-sliderYellow::before {
		background: url(../img/top/b-textSlider.svg)repeat-x center left/ calc(1348 / var(--vw-min) * 100vw) calc(68 / var(--vw-min) * 100vw);
	}
	.textSlider.is-sliderBlack::before {
		background: url(../img/top/y-textSlider.svg)repeat-x center left/ calc(1348 / var(--vw-min) * 100vw) calc(68 / var(--vw-min) * 100vw);
	}
    @keyframes titSlider{
		0%{
			background-position:0 center;
		}
		100%{
			background-position:calc(1348 / var(--vw-min) * 100vw) center;
		}
	}
}
/** 
* KEEP OUT 
**/
.deco__keepOutWrap {
    position: absolute;
    top: max(calc(-40 / var(--vw-min) * 100vw), -40px);
    right: 0;
    bottom: max(calc(-60 / var(--vw-min) * 100vw), -60px);
    left: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.deco__keepOutLists {
    width: 100%;
    position: absolute;
}
.deco__keepOutLists.is-keepT {
    top: 0;
}
.deco__keepOutLists.is-keepB {
    bottom: 0;
}
.deco__keepOutItem {
    width: 110%;
    height: min(calc(45 / var(--vw-min) * 100vw), 45px);
    position: absolute;
    background-color: #ffe33e;
}
.deco__keepOutItem::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: url(../img/common/keepSlider.png)repeat-x center left / min(calc(313 / var(--vw-min) * 100vw), 313px) min(calc(15 / var(--vw-min) * 100vw), 15px);
    animation:keepSlider 15s linear normal infinite;
}
.deco__keepOutItem.is-reverse::before {
    animation:keepSlider 15s linear reverse infinite;
}
@keyframes keepSlider{
	0%{
		background-position:0 center;
	}
	100%{
		background-position:min(calc(313 / var(--vw-min) * 100vw), 313px) center;
	}
}
.deco__keepOutLists.is-keepT .deco__keepOutItem:first-child {
    transform: rotate(-3deg);
    top: min(calc(10 / var(--vw-min) * 100vw), 10px);
    right: 0;
    transform-origin: right top;
}
.deco__keepOutLists.is-keepT .deco__keepOutItem:last-child {
    transform: rotate(3deg);
    top: min(calc(18 / var(--vw-min) * 100vw), 18px);
    left: 0;
    transform-origin: left top;
    box-shadow: 0px 8px 10px rgba(0,0,0,.5);
}
.deco__keepOutLists.is-keepB .deco__keepOutItem:first-child {
    transform: rotate(3deg);
    bottom: min(calc(5 / var(--vw-min) * 100vw), 5px);
    right: 0;
    transform-origin: right bottom;
}
.deco__keepOutLists.is-keepB .deco__keepOutItem:last-child {
    transform: rotate(-7deg);
    bottom: min(calc(10 / var(--vw-min) * 100vw), 10px);
    left: 0;
    transform-origin: left bottom;
    box-shadow: 0px 8px 10px rgba(0,0,0,.5);
}
/**
* Sub content KEEP
**/
.subFullWrap .deco__keepOutWrap {
    top: max(calc(-160 / var(--vw-min) * 100vw), -160px);
    bottom: max(calc(-100 / var(--vw-min) * 100vw), -100px);
}
.subFullWrap .deco__keepOutLists.is-keepT {
    top: min(calc(140 / var(--vw-min) * 100vw), 140px);
}
.subFullWrap .deco__keepOutLists.is-keepB {
    bottom: min(calc(100 / var(--vw-min) * 100vw), 100px);
}
.subFullWrap .deco__keepOutLists.is-keepT .deco__keepOutItem:first-child {
    transform: rotate(3deg);
}
.subFullWrap .deco__keepOutLists.is-keepT .deco__keepOutItem:last-child {
    transform: rotate(-4deg);
}
.subFullWrap .deco__keepOutLists.is-keepB .deco__keepOutItem:first-child {
    transform: rotate(-3deg);
}
.subFullWrap .deco__keepOutLists.is-keepB .deco__keepOutItem:last-child {
    transform: rotate(3deg);
}
.linkBtn {
    position: relative;
}
.linkBtn .linkA {
	width: 100%;
	font-size: min(calc(20 / var(--vw-min) * 100vw), 20px);
	color: var(--color-yellow);
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1em;
    position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: min(calc(20 / var(--vw-min) * 100vw), 20px) min(calc(50 / var(--vw-min) * 100vw),50px);
	background-color: #000;
	text-decoration: none;
}
.linkBtn .linkA span {
	position: relative;
	z-index: 2;
}
.linkBtn .linkA::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	margin: auto;
	background-repeat: no-repeat;
	background-position: right bottom;
	background-image: linear-gradient(var(--color-red), var(--color-red));
	background-size: 0% 100%;
	transition: background-size .5s ease-out;
}
@media screen and (max-width:768px){
	.linkBtn .linkA {
		font-size: calc(24 / var(--vw-min) * 100vw);
		padding: calc(20 / var(--vw-min) * 100vw) calc(40 / var(--vw-min) * 100vw);
	}
}
.cont-title {
	font-size: min(calc(50 / var(--vw-min) * 100vw), 50px);
	line-height: 1;
	display: flex;
	justify-content: center;
	margin-bottom: min(calc(40 / var(--vw-min) * 100vw), 40px);
}
@media screen and (max-width:768px){
	.cont-title {
		font-size: calc(50 / var(--vw-min) * 100vw);
		margin-bottom: calc(40 / var(--vw-min) * 100vw);
	}
}
.headerNavLists__item .js-txtSpan span:first-child,
.nav-project .js-txtSpan span:nth-child(13),
.nav-x .js-txtSpan span:last-child,
.cont-title .js-txtSpan span:first-child,
.project .cont-title .js-txtSpan span:nth-child(13),
.topicsLists--date_year.js-txtSpan span:nth-child(n+3),
.comment__contItem-title .js-txtSpan span:first-child {
	color: var(--color-red);
	transition: .3s ease;
}
.cont-title .js-txtSpan span {
	display: inline-block;
	opacity: 0;
	transform: translateY(10%);
	transition: .3s ease;
}
.js-scrani.is-ani .cont-title .js-txtSpan span,
.subFullWrap .cont-title .js-txtSpan span {
	opacity: 1;
	transform: translateY(0);
}
.cont-title .js-txtSpan span:nth-child(2) {
	transition-delay: .05s;
}
.cont-title .js-txtSpan span:nth-child(3) {
	transition-delay: .1s;
}
.cont-title .js-txtSpan span:nth-child(4) {
	transition-delay: .15s;
}
.cont-title .js-txtSpan span:nth-child(5) {
	transition-delay: .2s;
}
.cont-title .js-txtSpan span:nth-child(6) {
	transition-delay: .25s;
}
.cont-title .js-txtSpan span:nth-child(7) {
	transition-delay: .3s;
}
.cont-title .js-txtSpan span:nth-child(8) {
	transition-delay: .35s;
}
.cont-title .js-txtSpan span:nth-child(9) {
	transition-delay: .4s;
}
.cont-title .js-txtSpan span:nth-child(10) {
	transition-delay: .45s;
}
.cont-title .js-txtSpan span:nth-child(11) {
	transition-delay: .5s;
}
.cont-title .js-txtSpan span:nth-child(12) {
	transition-delay: .55s;
}
.cont-title .js-txtSpan span:nth-child(13) {
	transition-delay: .6s!important;
}
.cont-title .js-txtSpan span:nth-child(14) {
	transition-delay: .65s;
}
.cont-title .js-txtSpan span:nth-child(15) {
	transition-delay: .7s;
}
.cont-title .js-txtSpan span:nth-child(16) {
	transition-delay: .75s;
}
.cont-title .js-txtSpan span:nth-child(17) {
	transition-delay: .8s;
}
.cont-title .js-txtSpan span:nth-child(18) {
	transition-delay: .85s;
}
.cont-title .js-txtSpan span:nth-child(19) {
	transition-delay: .9s;
}
.cont-titleWrap {
	position: relative;
}
.subCont__head-deco {
    width: min(calc(104 / var(--vw-min) * 100vw),104px);
    height: min(calc(81 / var(--vw-min) * 100vw),81px);
    display: block;
    position: absolute;
    top: min(calc(30 / var(--vw-min) * 100vw),30px);
    left: min(calc(48 / var(--vw-min) * 100vw),48px);
    background: url(../img/common/logo.svg)no-repeat center/contain;
    transition: .3s ease;
}
.subCont__head-deco a {
    width: 100%;
    height: 100%;
    display: block;
}
@media screen and (max-width:768px){
    .subCont__head-deco {
        width: calc(137 / var(--vw-min) * 100vw);
        height: calc(105 / var(--vw-min) * 100vw);
        top: calc(30 / var(--vw-min) * 100vw);
        left: calc(30 / var(--vw-min) * 100vw);
    }
}
@media (hover: hover) and (pointer: fine){
    .subCont__head-deco:hover {
        opacity: .7;
    }
}
/*-----------------------------------------------
 * Sub content
-------------------------------------------------*/
.subCont__head {
    position: relative;
    padding: min(calc(40 / var(--vw-min) * 100vw), 40px) 0 min(calc(100 / var(--vw-min) * 100vw), 100px);
}
@media screen and (max-width:768px) {
	.subCont__head {
		padding: calc(70 / var(--vw-min) * 100vw) 0 calc(96 / var(--vw-min) * 100vw);
	}
}
@media screen and (min-width:769px){
    .subCont__head {
        margin-top: min(calc(65 / var(--vw-min) * 100vw),65px);
    }
}
/** BG **/
.subCont__headBg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
	min-height: min(calc(190 / var(--vw-min) * 100vw), 190px);
    pointer-events: none;
    /* overflow: hidden; */
}
@media screen and (max-width:768px) {
    .subCont__headBg {
        min-height: calc(212 / var(--vw-min)* 100vw);
    }
}
.subCont__headBg-clip {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.subCont__headBg-clip-in {
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    position: fixed;
    background: url(../img/common/bg/bg_subCont.jpg)no-repeat top center/100%;
}
@media screen and (max-width:768px) {
	.subCont__headBg-clip-in {
		background-position: top center;
		background-size: contain;
	}
}
.subCont-title {
    width: 100%;
    height: min(calc(52 / var(--vw-min) * 100vw), 52px);
    background: url(../img/common/tit/ttl_news.svg)no-repeat center/contain;
}
@media screen and (max-width:768px) {
	.subCont-title {
		height: calc(50 / var(--vw-min) * 100vw);
	}
}
.sub__cont {
	position: relative;
    padding: min(calc(70 / var(--vw-min) * 100vw), 70px) 0;
}
@media screen and (max-width:768px) {
	.sub__cont {
		padding: calc(86 / var(--vw-min) * 100vw) 0 calc(70 / var(--vw-min) * 100vw);
	}
}
/*-----------------------------------------------
 * Modal
-------------------------------------------------*/
/**
 * modalBox
 * 基盤のモーダル
 */
 .modalBox{
	-webkit-overflow-scrolling: touch;
	background: var(--color-yellow);
	display: none;
	width: 100%;
	height: 100%;
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}
.oneModal{
	display: none;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}
/* oneModalIn */
.oneModalIn{
	display: flex;
	justify-content: center;
	align-items: center;
	height: auto;
	width: 100%;
	min-height: 100%;
	margin: 0 auto;
	position: relative;
}
.oneModalIn__cont{
	padding: 50px 0;
}
@media screen and (max-width:768px){
	.oneModalIn{
		min-width: 100%;
	}
	.oneModalIn__cont{
		width: 100%;
		padding: 30px 0;
	}
}
/**
 * closeBtn
 */
 .closeBtn{
	width: min(calc(65 / var(--vw-min)* 100vw), 65px);
    height: min(calc(65 / var(--vw-min)* 100vw), 65px);
	position: absolute;
	top: 0;
    right: 0;
	margin: auto;
	z-index: 2;
	background-color: #000;
}
@media screen and (max-width:768px){
	.closeBtn{
		width: calc(65 / var(--vw-min) * 100vw);
		height: calc(65 / var(--vw-min) * 100vw);
	}
}
.closeBtn a{
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
    align-items: center;
    justify-content: center;
}
.closeBtn__line {
	width: min(calc(22 / var(--vw-min) * 100vw), 22px);
	height: min(calc(22 / var(--vw-min) * 100vw), 22px);
	position: relative;
}
@media screen and (max-width:768px){
	.closeBtn__line {
		width: calc(22 / var(--vw-min) * 100vw);
		height: calc(22 / var(--vw-min) * 100vw);
	}
}
.closeBtn__line span {
	display: block;
    width: 100%;
    height: min(calc(5 / var(--vw-min) * 100vw), 5px);
    margin: auto;
    background-color: var(--color-yellow);
    position: absolute;
    transition: .4s ease-out;
}
.closeBtn__line span:nth-child(1) {
    top: 0;
    bottom: 0;
    transform: rotate(45deg);
}
.closeBtn__line span:nth-child(2) {
    top: 0;
    bottom: 0;
    transform: rotate(-45deg);
}
.closeBtn a:hover .closeBtn__line span:nth-child(1) {
	transform: rotate(-45deg);
}
.closeBtn a:hover .closeBtn__line span:nth-child(2) {
	transform: rotate(45deg);
}
/**
 * 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%;
	}
}
.youtubeIframeWrap:before{
	content: "";
	display: block;
	padding-top: 56.25%;
	z-index: 0;
}
.youtubeIframe{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

/* goods */
.goodsIframeWrap{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
@media screen and (max-width:768px){
    .goodsIframeWrap{
        width: 100%;
        height: 100%;
    }
}
/* shop */
.shopIframeWrap{
    width: 800px;
}
@media screen and (max-width:768px){
    .shopIframeWrap{
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
    .shopIframeWrap iframe{
        height: 100% !important;
    }
}
/* download */
.dlIframeWrap{
    width: 740px;
}
@media screen and (max-width:768px){
    .dlIframeWrap{
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
    .dlIframeWrap iframe{
        height: 100% !important;
    }
}


/*-----------------------------------------------
 * Header
-------------------------------------------------*/
.header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
}
@media screen and (max-width:768px){
    .header {
        top: 0;
        bottom: auto;
    }
}

/* inner */
@media screen and (max-width:768px){
    .header__inner {
        -webkit-overflow-scrolling: touch;
        width: 100%;
        height: 100%;
        overflow: auto;
        position: fixed;
        top: 0;
        left: 0;
        padding: calc(110 / var(--vw-min) * 100vw) 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: var(--color-yellow);
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 0;
    }
}

/**
 * headerNav
 */
 .headerNav {
	background-color: #000;
	display: flex;
    flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
 }
@media screen and (max-width:768px){
	.headerNav {
		position: relative;
		z-index: 1;
		background-color: unset;
		flex-direction: column;
	}
}
@media screen and (min-width:769px){
    .header__deco {
        width: min(calc(26 / var(--vw-min) * 100vw),26px);
        height: min(calc(31 / var(--vw-min) * 100vw),31px);
        margin: 0 min(calc(24 / var(--vw-min) * 100vw),24px);
        background: url(../img/common/deco/deco_c-btn1.svg)no-repeat center/contain;
        transition: .3s ease;
    }
}
.headerNavLists {
	display: flex;
	justify-content: center;
	padding: min(calc(20 / var(--vw-min) * 100vw),20px) 0;
}
@media screen and (max-width:768px){
	.headerNavLists {
		flex-direction: column;
        padding: 0;
	}
}
.headerNavLists__item {
	font-size: min(calc(16 / var(--vw-min) * 100vw),16px);
	color: var(--color-yellow);
	line-height: 1;
    position: relative;
    display: flex;
	padding: 0 min(calc(17 / var(--vw-min) * 100vw),17px);
}
@media screen and (max-width:768px){
	.headerNavLists__item {
		font-size: calc(48 / var(--vw-min) * 100vw);
        color: #000;
	    line-height: 1;
        display: block;
		padding: 0;
		margin-bottom: calc(35 / var(--vw-min) * 100vw);
	}
}
.headerNavLists__item a {
	color: var(--color-yellow);
    position: relative;
    z-index: 2;
	text-decoration: none;
	transition: .3s ease;
}
@media screen and (max-width:768px){
	.headerNavLists__item a {
        color: #000;
	}
}
.headerNavLists__item .headerNavLists__itemA::before {
    content: '';
    width: 100%;
    height: min(calc(1 / var(--vw-min) * 100vw),1px);
    position: absolute;
    left: 0;
    bottom: -2px;
    background: var(--color-red);
    transform: scale(0, 1);
    transform-origin: right top; 
    transition: transform .3s ease;  
} 
@media screen and (max-width:768px){
    .headerNavLists__item .headerNavLists__itemA::before {
        height: calc(2 / var(--vw-min) * 100vw);
    }
} 
.headerNavLists__item .headerNavLists__itemA:hover::before {
    transform: scale(1, 1);    
    transform-origin: left top;
}
.headerNavLists__item .headerNavLists__itemA.is-active::before {
    transform: scale(1, 1);    
    transform-origin: left top;
}
.nav-top a {
    color: var(--color-red);
}
@media screen and (min-width:769px){
    .headerNavLists__item-arrow {
        border: solid transparent;
        border-width: min(calc(6 / var(--vw-min) * 100vw),6px) min(calc(4 / var(--vw-min) * 100vw),4px) 0;
        border-top-color: var(--color-red);
        display: block;
        margin: auto 0  auto min(calc(10 / var(--vw-min) * 100vw),10px);
    }
    .headerNav__selectLists {
        width: min(calc(182 / var(--vw-min) * 100vw),182px);
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        margin: auto;
        padding-top: min(calc(30 / var(--vw-min) * 100vw),30px);
        opacity: 0;
        pointer-events: none;
        transition: .3s ease;
    }
    .headerNav__selectLists.is-select {
        opacity: 1;
        pointer-events: auto;
    }
    .headerNav__selectLists::before {
        content: "";
        position: absolute;
        top: min(calc(20 / var(--vw-min) * 100vw),20px);
        left: 50%;
        display: block;
        border: solid transparent;
        border-width: 0 min(calc(7 / var(--vw-min) * 100vw),7px) min(calc(10 / var(--vw-min) * 100vw),10px);
        border-bottom-color: var(--color-red);
    }
    .headerNav__select a {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--color-red);
        padding: min(calc(10 / var(--vw-min) * 100vw),10px) 0;
        transition: .3s ease;
    }
    .headerNav__select:not(:last-child) a {
        border-bottom: min(calc(1 / var(--vw-min) * 100vw),1px) solid var(--color-yellow);
    }
    .headerNav__select .header__txt {
        position: relative;
        transition: .3s ease;
    }
    .headerNav__select .header__txt::before {
        content: '';
        width: 100%;
        height: min(calc(1 / var(--vw-min)* 100vw), 1px);
        position: absolute;
        left: 0;
        bottom: -2px;
        background: var(--color-yellow);
        transform: scale(0, 1);
        transform-origin: right top;
        transition: transform .3s ease;
    }
    .headerNav__selectLists .headerNav__select .headerNavLists__itemA.is-active .header__txt::before {
        transform: scale(1,1);
    }
    .headerNav__selectLists .headerNav__select .headerNavLists__itemA.is-active::before {
        transform: scale(0,1);
    }
    .headerNav__select a .js-txtSpan span:first-child {
        color: #000;
    }
    @media (hover: hover) and (pointer: fine){
        .headerNav__select a:hover .header__txt {
            opacity: .7;
        }
    }
}
@media screen and (max-width:768px){
    .headerNav__selectLists {
        margin-left: calc(30 / var(--vw-min) * 100vw);
        font-size: calc(38 / var(--vw-min)* 100vw);
    }
    .headerNav__select {
        margin-top: calc(20 / var(--vw-min) * 100vw);
    }
}

/**
 * navBtn
 */
@media screen and (max-width:768px){
    .header__navBtnWrap {
        width: calc(88 / var(--vw-min) * 100vw);
        height: calc(100 / var(--vw-min) * 100vw);
        position: absolute;
        top: calc(6 / var(--vw-min) * 100vw);
        right: calc(12 / var(--vw-min) * 100vw);
        z-index: 2;
        background: url(../img/common/deco/header_btn.png)no-repeat center/contain;
    }
    .header__navBtn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        position: relative;
    }
    .header__navBtnIn {
        width: calc(64 / var(--vw-min)* 100vw);
        height: calc(64 / var(--vw-min)* 100vw);
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: #000;
        margin-top: calc(12 / var(--vw-min) * 100vw);
        transition: .3s ease;
    }
    .header__navBtn__lineWrap {
        width: calc(24 / var(--vw-min) * 100vw);
        height: calc(18 / var(--vw-min) * 100vw);
        position: relative;
    }
    .header__navBtn--line {
        background-color: var(--color-yellow);
        display: block;
        width: 100%;
        height: calc(3 / var(--vw-min) * 100vw);
        border-radius: calc(20 / var(--vw-min) * 100vw);
        margin: auto;
        position: absolute;
        transition: .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){ 
        transform: rotate(25deg);
        top: 0;
        bottom: 0;
    }
    .header__navBtn.is-active .header__navBtn--line:nth-child(2){
        transform: translateX(20%);
        opacity: 0;
    }   
    .header__navBtn.is-active .header__navBtn--line:nth-child(3){ 
        transform: rotate(-25deg);
        top: 0;
        bottom: 0;
    }
    .header__navBtn.is-active .header__navBtnIn {
        background-color: var(--color-red);
    }
}



/*-----------------------------------------------
 * Parts
-------------------------------------------------*/

/**
 * shareLists
 */
.shareLists {
    display: flex;
}

/* item */
.shareLists__item {
    width: 60px;
    height: 60px;
}

/* link */
.shareLists__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}
.shareLists__link: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%;
    transition: background-color .4s ease;
}
.shareLists__link:hover:before {
    background-color: #ff0000;
}

/* 各SNSパーツ */
.shareLists__item.is-twitter .shareLists__link:before {
    width: 26px;
    height: 26px;
    -webkit-mask-image: url(../img/common/sns/icon_tw.svg);
    mask-image: url(../img/common/sns/icon_tw.svg);
}
.shareLists__item.is-facebook .shareLists__link:before {
    width: 26px;
    height: 26px;
    -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 {
    width: 26px;
    height: 26px;
    -webkit-mask-image: url(../img/common/sns/icon_line.svg);
    mask-image: url(../img/common/sns/icon_line.svg);
}
/*-----------------------------------------------
* footer
-------------------------------------------------*/
.footer {
	position: relative;
	/* padding: min(calc(55 / var(--vw-min) * 100vw), 55px) 0 min(calc(340 / var(--vw-min) * 100vw), 340px); */
	padding: min(calc(80 / var(--vw-min) * 100vw), 80px) 0 min(calc(340 / var(--vw-min) * 100vw), 340px);

}
@media screen and (max-width:768px) {
	.footer {
		padding: calc(100 / var(--vw-min) * 100vw) calc(50 / var(--vw-min) * 100vw) calc(300 / var(--vw-min) * 100vw);
	}
}
.footer::before {
    content: "";
    width: min(calc(420 / var(--vw-min) * 100vw), 420px);
    height: min(calc(215 / var(--vw-min) * 100vw), 215px);
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0 auto min(calc(60 / var(--vw-min) * 100vw), 60px);
    background: url(../img/top/loading_face.svg)no-repeat center/contain;
}
@media screen and (max-width:768px) {
    .footer::before {
        content: "";
        width: calc(420 / var(--vw-min) * 100vw);
        height: calc(215 / var(--vw-min) * 100vw);
        margin: 0 auto calc(40 / var(--vw-min) * 100vw);
    }
}
.subFullWrap .footer {
	padding: min(calc(120 / var(--vw-min) * 100vw), 120px) calc(50 / var(--vw-min) * 100vw) min(calc(40 / var(--vw-min) * 100vw), 40px);
}
.subFullWrap .footer::before {
    content: unset;
}
@media screen and (max-width:768px) {
	.subFullWrap .footer {
        padding: calc(50 / var(--vw-min) * 100vw);
    }
}
.footerWrap {
	width: min(calc(960 / var(--vw-min) * 100vw), 960px);
	margin: 0 auto;
}
@media screen and (max-width:768px) {
	.footerWrap {
		width: 100%;
	}
}
/** BNA **/
.footer__bnr img,
.footer__bnrItem img {
	width: 100%;
	pointer-events: none;
    transition: .3s ease;
}
.footer__bnr {
	position: relative;
	width: 100%;
    margin-bottom: min(calc(12 / var(--vw-min) * 100vw), 12px);
}
.footer__bnr a,
.footer__bnrItem a {
	width: 100%;
	height: 100%;
	display: block;
    background-color: #fff;
}
.footer__bnrLists {
	width: min(calc(972 / var(--vw-min) * 100vw), 972px);
	display: flex;
	flex-wrap: wrap;
	margin:  min(calc(6 / var(--vw-min) * 100vw), 6px) max(calc(-6 / var(--vw-min) * 100vw), -6px) min(calc(12 / var(--vw-min) * 100vw), 12px);
}
@media screen and (max-width:768px) {
	.footer__bnrLists {
		width: 100%;
		margin: calc(10 / var(--vw-min) * 100vw) 0;
	}
}
.footer__bnrItem {
	width: calc(100% / 2);
	padding: min(calc(6 / var(--vw-min) * 100vw), 6px);
}
@media screen and (max-width:768px) {
	.footer__bnrItem {
		width: calc((100% - calc(10 / var(--vw-min) * 100vw)) / 2);
		padding: 0;
	}
	.footer__bnrItem:nth-child(2n) {
		margin-left: calc(10 / var(--vw-min) * 100vw);
	}
	.footer__bnrItem:nth-child(n+3) {
		margin-top: calc(10 / var(--vw-min) * 100vw);
	}
}
@media screen and (max-width:768px) {
	.footer__spFlex {
		display: flex;
		justify-content: space-between;
	}
}
.footer__sns_x {
	width: 100%;
	position: relative;
}
@media screen and (max-width:768px) {
	.footer__sns_x {
		width: calc(540 / var(--vw-min) * 100vw);
	}
}
.footer__sns_x a {
	width: 100%;
	height: min(calc(82 / var(--vw-min) * 100vw), 82px);
	font-size: min(calc(40 / var(--vw-min) * 100vw), 40px);
	color: var(--color-yellow);
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--color-red);
	text-decoration: none;
    transition: .3s ease;
}
@media screen and (max-width:768px) {
	.footer__sns_x a {
		height: calc(100 / var(--vw-min) * 100vw);
		font-size: calc(40 / var(--vw-min) * 100vw);
	}
}
.footer__x-icon {
	width: min(calc(33 / var(--vw-min) * 100vw), 33px);
	height: min(calc(33 / var(--vw-min) * 100vw), 33px);
	-webkit-mask: url(../img/common/sns/icon_tw.svg)no-repeat center/contain;
	mask: url(../img/common/sns/icon_tw.svg)no-repeat center/contain;
	background-color: var(--color-yellow);
	margin-left: min(calc(20 / var(--vw-min) * 100vw), 20px);
}
@media screen and (max-width:768px) {
	.footer__x-icon {
		width: calc(31 / var(--vw-min) * 100vw);
		height: calc(33 / var(--vw-min) * 100vw);
		margin-left: calc(20 / var(--vw-min) * 100vw);
	}
}
.scroll-top a {
	width: min(calc(65 / var(--vw-min) * 100vw), 65px);
	height: min(calc(65 / var(--vw-min) * 100vw), 65px);
	position: absolute;
	display: block;
	top: min(calc(80 / var(--vw-min) * 100vw), 80px);
	/* top: min(calc(55 / var(--vw-min) * 100vw), 55px); */
	right: min(calc(43 / var(--vw-min) * 100vw), 43px);
	background-color: #000;
    border: min(calc(5 / var(--vw-min) * 100vw), 5px) solid #000;
    transition: .3s ease;
}
@media screen and (max-width:768px) {
	.scroll-top a {
		width: calc(100 / var(--vw-min) * 100vw);
		height: calc(100 / var(--vw-min) * 100vw);
		position: relative;
		top: unset;
		right: unset;
	}
}
.subFullWrap .scroll-top a {
    top: min(calc(120 / var(--vw-min) * 100vw), 120px);
}
@media screen and (max-width:768px) {
	.subFullWrap .scroll-top a {
        top: unset;
    }
}
.scroll-top a::before {
	content: "";
	width: min(calc(19 / var(--vw-min) * 100vw), 19px);
	height: min(calc(13 / var(--vw-min) * 100vw), 13px);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	-webkit-mask: url(../img/common/deco/deco_arrow.svg)no-repeat center/contain;
	mask: url(../img/common/deco/deco_arrow.svg)no-repeat center/contain;
	background-color: var(--color-yellow);
    transition: .3s ease;
}
@media screen and (max-width:768px) {
	.scroll-top a::before {
		width: calc(29 / var(--vw-min) * 100vw);
		height: calc(19 / var(--vw-min) * 100vw);
	}
}
.copyright {
	font-size: min(calc(14 / var(--vw-min) * 100vw), 14px);
	text-align: center;
	margin-top: min(calc(40 / var(--vw-min) * 100vw), 40px);
}
@media screen and (max-width:768px) {
	.copyright {
		font-size: calc(16 / var(--vw-min) * 100vw);
		margin-top: calc(50 / var(--vw-min) * 100vw);
	}
}
.subFullWrap .copyright {
    color: var(--color-yellow);
}
/** SUB BG **/
.subFullWrap .footer__bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* overflow: hidden; */
}
.subFullWrap .footer__bg-clip {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.subFullWrap .footer__bg-clip-in {
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    position: fixed;
    background: url(../img/common/bg/bg_subCont.jpg)no-repeat bottom center/100%;
}
@supports (background-image:url(../img/common/bg/bg_subCont.webp)){
	.subFullWrap .footer__bg-clip-in {
		background-image: url(../img/common/bg/bg_subCont.webp)
	}
}
@media screen and (max-width:768px) {
	.subFullWrap .footer__bg-clip-in {
		background-position: bottom;
		background-size: 300%;
	}
}
@media (hover: hover) and (pointer: fine) {
    .topicsLists__item a:hover .topicsLists--title,
    .newsLists__item a:hover .newsLists--title {
        color: var(--color-red);
    }
    .movie__contItemWrap a:hover {
        transform: scale(1.1);
    }
    .movie__contItemWrap a:hover::before {
        opacity: 1;
    }
    .backBtn a:hover {
        color: #fff;
        background-color: #000;
    }
    .backBtn a:hover .backBtn .js-txtSpan span:first-child {
        color: var(--color-red);
    }
    .linkBtn .linkA:hover::before  {
        background-position: left bottom;
        background-size: 100% 100%;
    }
    .linkBtn a:hover .js-txtSpan span:first-child {
        color: #000;
    }
    /* .comment__contItemBtn:hover .comment__contItem-title .js-txtSpan span:first-child {
        color: #000;
    }
    .comment__contItemBtn:hover {
        background-color: var(--color-red);
    }
    .comment__contItemBtn:hover .comment__contItem__arrow {
        transform: rotate(180deg) translateY(-5px);
    } */
    .scroll-top a:hover {
        background-color: var(--color-yellow);
    }
    .scroll-top a:hover::before {
        background-color: #000;
        transform: translateY(-3px);
    }
    .footer__bnr a:hover img,
    .footer__bnrItem a:hover img {
        opacity: .7;
    }
    .footer__sns_x a:hover {
        background-color: #000;
    }
}
 #acmncopy .copyright{
    margin-top: unset;
    color: #fff;
}
@media screen and (min-width:769px) {
    #acmncopy .copyright{
        position: absolute;
        right: 32px;
    }
}
.footerNav {
    margin: 0 auto;
}
#acmncopy.acommoncopy .footerNav .footerNav__lists {
    justify-content: center!important;
}
/*-------------------------------------
* sub loading
--------------------------------------*/
.subLoading{
    display: none;
}
body.--is-subload .subLoading{
    display: block;
    position:fixed;
	z-index: 10000;
    width: 100%;
    height: 100vh;
    top: 0;
	left: 0;
    background-color: var(--color-yellow);
	animation: subload .4s ease-out forwards;
}
@keyframes subload{
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		display:none;
		pointer-events:none;
	}
}
.subFullWrap{
	opacity: 0;
}
body.--is-subload .subFullWrap{
	animation: subloadfade 1s forwards;
	animation-delay: .6s;
	opacity: 0;
}
@keyframes subloadfade{
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}