@charset "utf-8";
/*-----------------------------------------------
 * common.css
 * レスポンシブは基本スタイルを引き継ぐ（PCファースト）
 * @media screen and (max-width:767px)
-------------------------------------------------*/
/*-----------------------------------------------
 * Reset, root, keyframes
 * Bace
 * Modal
 * Header
 * Footer
 * Parts
 * White ver. style
-------------------------------------------------*/
/*-----------------------------------------------
 * Reset, root, keyframes
-------------------------------------------------*/
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 Serif JP', "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	--main-color-red: 200,0,15;			/* #c8000f */
	--main-color-lightblue: 0,166,199;	/* #00a6c7 */

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

	/* サブページの共通で使用するコンテンツ幅 */
	--common-incont-width: 1040px;
}
@media screen and (max-width:767px){
	:root {
		--common-min-width: 100%;
		--common-min-height: auto;
		--main-font-size: 12px;

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

		/* サブページの共通で使用するコンテンツ幅 */
		--common-incont-width: 100%;
	}
}

/* keyframes */
@keyframes Topslideeng {
	from { background-position: 3230px 0; }
	to   { background-position: 0 0; }
}
@keyframes Bottomslideeng {
	from { background-position: -3230px 0; }
	to   { background-position: 0 0; }
}
@keyframes flashAni {
	0%,35%,50%,85%{
		opacity: 0;
	}
	20%,65%,100%{
		opacity: 1;
	}
}


/*-----------------------------------------------
 * Bace
-------------------------------------------------*/
body{
	-webkit-text-size-adjust: 100%;
	background-color: #000;
	color: #fff;
	font-family: var(--main-font-family);
	font-size: var(--main-font-size);
	font-weight: normal;
	letter-spacing: 0.07em;
	line-height: 1.8;
	word-wrap: break-word;
}
.pc{ display: block; }
.sp{ display: none; }
a{ color: #222; }
a:hover{ text-decoration: none; }
.ah { transition: opacity .3s ease; }
.ah:hover { opacity: .7; }
::selection{
	background: #c8000f;
	color: #fff;
}
::-moz-selection{
	background: #c8000f;
	color: #fff;
}
@media screen and (max-width:767px){
	body{
		font-size: 12px;
	}
	.sp{ display: block; }
	.pc{ display: none; }
	.ah:hover { opacity: 1; }
}

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

/* font */
.font-bellota {
	font-family: 'Bellota Text', cursive;
}


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


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

/**
 * modalBox
 * 基盤のモーダル
 */
 .modalBox{
    -webkit-overflow-scrolling: touch;
	background: rgba(0,0,0,.75);
	backdrop-filter:blur(10px);
	-webkit-backdrop-filter:blur(10px);
	display: none;
	width: 100%;
	height: 100%;
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}
@-moz-document url-prefix(){
	.modalBox{
		background: rgba(0,0,0,.95);
	}
}
.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-width: var(--common-min-width);
    min-height: 100%;
    margin: 0 auto;
    position: relative;
}
.oneModalIn__cont{
    padding: 50px 0;
}
@media screen and (max-width:767px){
    .oneModalIn{
        min-width: 100%;
    }
    .oneModalIn__cont{
        width: 100%;
		padding: 30px 0;
    }
}

/**
 * closeBtn
 */
.closeBtn{
    width: 100px;
    height: 64px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}
@media screen and (max-width:767px){
    .closeBtn{
		width: 70px;
		height: 46px;
    }
}

.closeBtn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* img */
.closeBtn a:before {
    content: "";
    background: url(../img/common/close.svg) no-repeat 0 0 / 100%;
	width: 100%;
    height: 100%;
}

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

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

/**
 * 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 {
    width: 100%;
	height: var(--common-header-height);
	min-width: 1200px;
    position: absolute;
    top: 0;
    z-index: 999;
	transition: transform .4s ease-in-out;
}
.header.is-fixed {
	position: fixed;
}
.header:before {
	content: "";
	background-color: rgba(0,0,0,.64);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

@media screen and (max-width:767px){
    .header {
        height: 0;
		min-width: 100%;
		position: fixed;
		top: 0!important;
    }
	.header:before {
		background-color: rgba(0,0,0,.8);
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		z-index: 0;
		transform: translateX(100%);
        transition: transform .5s cubic-bezier(0.25, 1, 0.5, 1);
	}
	.header.is-active:before {
        transform: translateX(0);
    }
}

/* inner */
.header__inner {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (max-width:767px){
    .header__inner {
        -webkit-overflow-scrolling: touch;
        width: 100%;
        height: 100%;
        overflow: auto;
        position: fixed;
        top: 0;
        left: 0;
        padding: 40px 0 60px;
        z-index: 1;
		transform: translateX(100%);
        transition: transform .5s cubic-bezier(0.25, 1, 0.5, 1);
    }
    .header.is-active .header__inner {
        transform: translateX(0);
    }
}

/**
 * headerNav
 */
.headerNav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (max-width:767px){
    .headerNav {
		display: block;
		height: auto;
        position: relative;
        z-index: 1;
    }
}

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

/* item */
.headerNavLists__item {
	height: 100%;
	min-width: 100px;
	position: relative;
}
@media screen and (max-width:767px){
	.headerNavLists__item {
		height: auto;
		width: 50%;
		min-width: auto;
	}
}

/* icon */
.headerNavLists__item:after {
	content: "";
	background-color: #fff;
	display: block;
	width: 15px;
	height: 24px;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: 100%;
	mask-size: 100%;
	-webkit-mask-image: url(../img/common/icon_slash.svg);
	mask-image: url(../img/common/icon_slash.svg);
	margin: auto;
	position: absolute;
	top: 0;
	right: -8px;
	bottom: 0;
}
.headerNavLists__item:last-child:after {
	content: none;
}
@media screen and (max-width:767px){
	.headerNavLists__item:nth-child(even):after {
		content: none;
	}
}

/* a */
.headerNavLists__item a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	text-decoration: none;
	padding: 0 22px;
	position: relative;
}
@media screen and (max-width:767px){
	.headerNavLists__item a {
		height: auto;
		padding: 24px 0;
	}
}

/* headerNavLists__textWrap */
.headerNavLists__textWrap {
	display: block;
	position: relative;
}
.headerNavLists__textWrap:before {
	content: "";
	background-color: rgb(var(--main-color-red));
	width: 100%;
	height: 100%;
	position: absolute;
	top: -1px;
	left: 0;
	z-index: 0;
	transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .3s ease;
}
.headerNavLists__item a:hover .headerNavLists__textWrap:before,
.headerNavLists__item a.is-active .headerNavLists__textWrap:before {
	transform-origin: left top;
    transform: scale(1, 1);
}

/* headerNavLists__text */
.headerNavLists__text {
	color: #fff;
	display: block;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1;
	position: relative;
	z-index: 1;
	transition: color .3s ease;
	text-align: center;
}
@media screen and (max-width:767px){
	.headerNavLists__text {
		font-size: 16px;
	}
}

/**
 * headerSnsDl
 */
.headerSnsDl {
	display: flex;
	align-items: center;
	height: 100%;
	margin-right: 30px;
}
@media screen and (max-width:767px){
	.headerSnsDl {
		display: flex;
		justify-content: center;
		height: 40px;
		margin-top: 40px;
		margin-right: auto;
	}
}

/* dt */
.headerSnsDl > dt {
	display: flex;
	align-items: center;
	height: 100%;
	font-size: 14px;
	margin-right: 14px;
}
@media screen and (max-width:767px){
	.headerSnsDl > dt {
		font-size: 1.4rem;
	}
}

/* dd */
.headerSnsDl > dd {
	height: 100%;
}

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

/* item */
.headerSnsLists__item {
	display: flex;
	align-items: center;
	height: 100%;
}
.headerSnsLists__item:not(:first-child) {
	margin-left: 4px;
}
.headerSnsLists__item a {
	display: block;
	width: 40px;
	height: 40px;
	position: relative;
}

/* icon */
.headerSnsLists__item a:before {
	content: "";
	background-color: #fff;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: 100%;
	mask-size: 100%;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transition: background-color .3s ease;
}
.headerSnsLists__item a:hover:before {
	background-color: #ff0056;
}

.headerSnsLists__item.is-youtube a:before {
	width: 24px;
	height: 18px;
	-webkit-mask-image: url(../img/common/icon_youtube.svg);
	mask-image: url(../img/common/icon_youtube.svg);
}
.headerSnsLists__item.is-twitter a:before {
	width: 20px;
	height: 18px;
	-webkit-mask-image: url(../img/common/icon_tw.svg);
	mask-image: url(../img/common/icon_tw.svg);
}

/**
 * header__navLogo
 */
.header__navLogo {
	width: 200px;
	margin-top: 8px;
	margin-right: 10px;
	margin-left: 40px;
}
.header__navLogo img {
	width: 100%;
}
@media screen and (max-width:767px){
	.header__navLogo {
		margin-top: 0;
		margin-right: auto;
		margin-bottom: 50px;
		margin-left: auto;
	}
}

/**
 * navBtn
 */
@media screen and (max-width:767px){
    .header__navBtnWrap {
        width: 54px;
        height: 54px;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 2;
    }
    .header__navBtn {
        display: flex;
        align-items: center;
		flex-direction: column;
        justify-content: center;
        width: 100%;
        height: 100%;
        position: relative;
		text-decoration: none;
    }
    .header__navBtn__lineWrap {
        width: 28px;
        height: 8px;
		margin-top: 4px;
        position: relative;
		z-index: 1;
    }
    .header__navBtn--line {
        background-color: #fff;
        display: block;
        width: 100%;
        height: 1px;
        margin: auto;
        position: absolute;
		transition: all .3s ease-in-out;
    }
	.header__navBtn.is-active .header__navBtn--line {
		background-color: #fff;
	}
    .header__navBtn--line:nth-child(1) {
        top: 0;
    }
    .header__navBtn--line:nth-child(2) {
        bottom: 0;
    }

	.header__navBtn.is-active .header__navBtn--line:nth-child(1) {
		top: 3px;
		transform: rotate(30deg);
	}
	.header__navBtn.is-active .header__navBtn--line:nth-child(2) {
		bottom: 4px;
		transform: rotate(-30deg);
	}

	.header__navBtn:after {
		content: "MENU";
		color: #fff;
		font-family: 'Bellota Text', cursive;
		font-size: 10px;
		font-weight: 700;
		letter-spacing: 0.01em;
		line-height: 1;
		margin-top: 8px;
		transition: all .3s ease-in-out;
		/* transform: scale(.9); */
	}
	.header__navBtn.is-active:after {
		content: "CLOSE";
		color: #fff;
	}
}

/**
 * shareLists
 */
.header__shareWrap {
	display: none;
}
@media screen and (max-width:767px){
	.header__shareWrap {
		display: flex;
		align-items: center;
		justify-content: center;
		margin-top: 50px;
	}
	/* dt */
	.header__share__dt {
		color: #fff;
		font-size: 14px;
		font-weight: 700;
		letter-spacing: 0.01em;
		margin-right: 12px;
	}

	/* dd */
	.header__share__dd {
		display: flex;
		align-items: center;
	}
}


/*-----------------------------------------------
 * Footer
-------------------------------------------------*/
.footer {
	background-color: #000;
	margin-top: auto;
	padding: 56px 40px;
	position: relative;
}
@media screen and (max-width:767px){
	.footer {
		padding: 46px 20px;
	}
}

/* deco */
.footer:after {
    content: "";
    position: absolute;
    width: 80px;
    height: 136px;
    background-image: url(../img/common/corner_r.svg);
	background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100%;
    bottom: 0;
    right: 0;
    overflow: hidden;
	z-index: 2;
}
@media screen and (max-width:767px){
	.footer:after {
		width: 40px;
		height: 70px;
	}
}

/* inner */
.footer__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
}
@media screen and (max-width:767px){
	.footer__inner {
		flex-direction: column;
	}
}

/**
 * shareLists
 */
.footer__shareWrap {
	display: flex;
	align-items: center;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
@media screen and (max-width:767px){
	.footer__shareWrap {
		margin-bottom: 40px;
		position: relative;
		top: auto;
		left: auto;
		transform: translateY(0);
	}
}

/* dt */
.footer__share__dt {
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.01em;
	margin-right: 12px;
}
@media screen and (max-width:767px){
	.footer__share__dt {
		font-size: 12px;
	}
}

/* dd */
.footer__share__dd {
	display: flex;
	align-items: center;
}

/**
 * footer__copyright
 */
.footer__copyright {
	color: #888888;
	font-size: 12px;
}
@media screen and (max-width:767px){
	.footer__copyright {
		font-size: 10px;
	}
}

/**
 * toTop
 */
#toTop{
	position: absolute;
	width: 80px;
	padding-top: 200px;
	right: 0;
	bottom: 40px;
	display: flex;
	justify-content: center;
	z-index: 3;
}
@media screen and (max-width:767px){
	#toTop{
		width: 40px;
		padding-top: 136px;
		bottom: 20px;
	}
}

#toTop_link{
	width: 100%;
	height: 100%;
	font-size: 12px;
	line-height: 1;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-decoration: none;
	position: absolute;
	font-weight: 700;
	display: flex;
	align-items: center;
	top: 0;
	right: 0;
}
@media screen and (max-width:767px){
	#toTop_link{
		color: #fff;
	}
}

.sclbarWrap {
	width: 2px;
	height: 160px;
	overflow: hidden;
	position: absolute;
	top: 80px;
}
@media screen and (max-width:767px){
	.sclbarWrap {
		height: 96px;
	}
}
.sclbarWrap:before {
	content: '';
	background-color: #808080;
	display: block;
	width: 2px;
	height: 100%;
	position: absolute;
	margin: auto;
	top: 0;
	right: 0;
	left: 0;
	z-index: 0;
}
#toTop_link .sclbarWrap{
	top: 40px;
}
.sclbar {
	background-color: #fff;
	width: 2px;
	height: 100%;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1;
}
.sclbar_u .sclbar {
	animation: scrollUp 2.4s ease-in-out infinite;
}
@keyframes scrollUp {
	0% { top: 100%; }
	70%, 100% { top: -100%; }
}


/*-----------------------------------------------
 * Parts
-------------------------------------------------*/
/**
 * sub loading
 */
#subLoading {
	background-color: #000;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10000;
}

/**
 * commonSection
 */
.commonSection {
	margin-bottom: var(--common-header-height);
	padding-top: var(--common-header-height);
	position: relative;
}
.commonSection:last-of-type{
	margin-bottom:0;
}
@media screen and (max-width:767px){
	.mainSub .commonSection {
		padding-top: 30px;
		padding-bottom: 120px;
	}
}

/**
 * commonSecTitleWrap
 */
.commonSecTitleWrap {
	display: flex;
}

/* commonSecTitle */
.commonSecTitle {
	display: flex;
	flex-direction: column;
}
.commonSecTitle.is-right {
	align-items: flex-end;
	margin-left: auto;
}

/* mintext */
.commonSecTitle:before {
	content: "The Eminence in shadow";
	color: #fff;
	display: block;
	font-family: 'Bellota Text', cursive;
	font-size: 10px;
	line-height: 1;
	margin-bottom: 30px;
	padding-left: 40px;
}
.commonSecTitle.is-right:before {
	padding-left: 0;
	padding-right: 40px;
}
@media screen and (max-width:767px){
	.commonSecTitle:before {
		margin-bottom: 16px;
		padding-left: 20px;
	}
	.commonSecTitle.is-right:before {
		padding-right: 20px;
	}
}

/* js */
.commonSecTitle--ja {
	color: rgb(var(--main-color-red));
	font-size: 20px;
	line-height: 1;
	margin-top: 30px;
	padding-left: 40px;
}
.commonSecTitle.is-right .commonSecTitle--ja {
	padding-left: 0;
	padding-right: 40px;
}
@media screen and (max-width:767px){
	.commonSecTitle--ja {
		font-size: 16px;
		margin-top: 16px;
		padding-left: 20px;
	}
	.commonSecTitle.is-right .commonSecTitle--ja {
		padding-right: 20px;
	}
}

/**
 * commonSecTitle--en
 */
.commonSecTitle--en {
	background-color: #000;
	display: block;
	height: 80px;
	padding-right: 40px;
}
.commonSecTitle.is-right .commonSecTitle--en {
	padding-right: 0;
	padding-left: 40px;
}
@media screen and (max-width:767px){
	.commonSecTitle--en {
		height: 48px;
		padding-right: 20px;
	}
	.commonSecTitle.is-right .commonSecTitle--en {
		padding-left: 20px;
	}
}

/* in */
.commonSecTitle--en__in {
	display: block;
	clip-path: polygon(48px 0, 100% 0, 100% 100%, 0% 100%);
	height: 100%;
	margin-left: 40px;
	padding-left: 40px;
	position: relative;
}
.commonSecTitle.is-right .commonSecTitle--en__in {
	clip-path: polygon(0 0, 100% 0, calc(100% - 48px) 100%, 0% 100%);
	margin-left: 0;
	padding-left: 0;
	margin-right: 40px;
	padding-right: 40px;
}
@media screen and (max-width:767px){
	.commonSecTitle--en__in {
		clip-path: polygon(28px 0, 100% 0, 100% 100%, 0% 100%);
		margin-left: 20px;
		padding-left: 20px;
	}
	.commonSecTitle.is-right .commonSecTitle--en__in {
		clip-path: polygon(0 0, 100% 0, calc(100% - 28px) 100%, 0% 100%);
		margin-right: 20px;
		padding-right: 20px;
	}
}

/* after */
.commonSecTitle--en__in:after {
	content: "";
	position: absolute;
	top: 0;
	left: 1px;
	width: 48px;
	height: 80px;
	background: url(../img/common/corner_min_l.svg) no-repeat 0 0 / 100%;
	overflow: hidden;
	z-index: 1;
}
.commonSecTitle.is-right .commonSecTitle--en__in:after {
	left: auto;
	right: 2px;
}
@media screen and (max-width:767px){
	.commonSecTitle--en__in:after {
		width: 28px;
		height: 48px;
	}
	.commonSecTitle.is-right .commonSecTitle--en__in:after {
		right: 1px;
	}
}

/* before */
.commonSecTitle--en__in: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: 100%;
	mask-size: 100%;
}

/**
 * commonSecSideTitle
 */
.commonSecSideTitle{
	background-color: rgb(var(--main-color-red));
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: 100%;
	mask-size: 100%;
	position: absolute;
	top: 318px;
	left: 0;
	mix-blend-mode: color-dodge;
	z-index: 0;
}
.commonSecSideTitle.is-right {
	right: 0;
	left: auto;
}
@media screen and (max-width:767px){
	.commonSecSideTitle{
		top: 110px;
	}
	.mainSub .commonSecSideTitle {
		width: 52px !important;
		height: 100vw !important;
		transform: rotate(-90deg);
		transform-origin: top left;
		top: auto;
		bottom: -100vw;
		-webkit-mask-position: unset;
		mask-position: unset;
	}
}

/**
 * title img
 */
/* news */
.commonSecTitle--en__in.is-news:before {
	-webkit-mask-image: url(../img/common/title_news.svg);
	mask-image: url(../img/common/title_news.svg);
	width: 142px;
	height: 81px;
}
.commonSecSideTitle.is-news {
	-webkit-mask-image: url(../img/common/title_news_side.svg);
	mask-image: url(../img/common/title_news_side.svg);
	width: 143px;
	height: 515px;
}
.commonSecSideTitle.is-news.is-left {
	-webkit-mask-image: url(../img/common/title_news_side_l.svg);
	mask-image: url(../img/common/title_news_side_l.svg);
	width: 143px;
	height: 515px;
}
@media screen and (max-width:767px){
	.commonSecTitle--en__in.is-news:before {
		width: 85px;
		height: 48px;
	}
	.commonSecSideTitle.is-news {
		width: 66px;
		height: 234px;
	}
}

/* twitter */
.commonSecTitle--en__in.is-twitter:before {
	-webkit-mask-image: url(../img/common/title_twitter.svg);
	mask-image: url(../img/common/title_twitter.svg);
	width: 218px;
	height: 81px;
}
.commonSecSideTitle.is-twitter {
	-webkit-mask-image: url(../img/common/title_twitter_side.svg);
	mask-image: url(../img/common/title_twitter_side.svg);
	width: 144px;
	height: 666px;
}
@media screen and (max-width:767px){
	.commonSecTitle--en__in.is-twitter:before {
		width: 130px;
		height: 48px;
	}
	.commonSecSideTitle.is-twitter {
		width: 66px;
		height: 308px;
	}
}

/* staffcast */
.commonSecTitle--en__in.is-staffcast:before {
	-webkit-mask-image: url(../img/common/title_staffcast.svg);
	mask-image: url(../img/common/title_staffcast.svg);
	width: 334px;
	height: 82px;
}
@media screen and (max-width:767px){
	.commonSecTitle--en__in.is-staffcast:before {
		width: 200px;
		height: 48px;
	}
}
.commonSecSideTitle.is-staffcast {
	-webkit-mask-image: url(../img/common/title_staffcast_side.svg);
	mask-image: url(../img/common/title_staffcast_side.svg);
	width: 158px;
	height: 945px;
}

/* onair */
.commonSecTitle--en__in.is-onair:before {
	-webkit-mask-image: url(../img/common/title_onair.svg);
	mask-image: url(../img/common/title_onair.svg);
	width: 167px;
	height: 82px;
}
@media screen and (max-width:767px){
	.commonSecTitle--en__in.is-onair:before {
		width: 98px;
		height: 48px;
	}
}
.commonSecSideTitle.is-onair {
	-webkit-mask-image: url(../img/common/title_onair_side.svg);
	mask-image: url(../img/common/title_onair_side.svg);
	width: 143px;
	height: 679px;
}

/* movie */
.commonSecTitle--en__in.is-movie:before {
	-webkit-mask-image: url(../img/common/title_movie.svg);
	mask-image: url(../img/common/title_movie.svg);
	width: 152px;
	height: 82px;
}
@media screen and (max-width:767px){
	.commonSecTitle--en__in.is-movie:before {
		width: 92px;
		height: 48px;
	}
}
.commonSecSideTitle.is-movie {
	-webkit-mask-image: url(../img/common/title_movie_side.svg);
	mask-image: url(../img/common/title_movie_side.svg);
	width: 143px;
	height: 568px;
}

/* special */
.commonSecTitle--en__in.is-special:before {
	-webkit-mask-image: url(../img/common/title_special.svg);
	mask-image: url(../img/common/title_special.svg);
	width: 207px;
	height: 82px;
}
@media screen and (max-width:767px){
	.commonSecTitle--en__in.is-special:before {
		width: 122px;
		height: 48px;
	}
}
.commonSecSideTitle.is-special {
	-webkit-mask-image: url(../img/common/title_special_side.svg);
	mask-image: url(../img/common/title_special_side.svg);
	width: 143px;
	height: 693px;
}

/* goods */
.commonSecTitle--en__in.is-goods:before {
	-webkit-mask-image: url(../img/common/title_goods.svg);
	mask-image: url(../img/common/title_goods.svg);
	width: 163px;
	height: 82px;
}
@media screen and (max-width:767px){
	.commonSecTitle--en__in.is-goods:before {
		width: 98px;
		height: 48px;
	}
}
.commonSecSideTitle.is-goods {
	-webkit-mask-image: url(../img/common/title_goods_side.svg);
	mask-image: url(../img/common/title_goods_side.svg);
	width: 143px;
	height: 634px;
}

/* character */
.commonSecTitle--en__in.is-character:before {
	-webkit-mask-image: url(../img/common/title_character.svg);
	mask-image: url(../img/common/title_character.svg);
	width: 295px;
	height: 82px;
}
@media screen and (max-width:767px){
	.commonSecTitle--en__in.is-character:before {
		width: 176px;
		height: 48px;
	}
}
.commonSecSideTitle.is-character {
	-webkit-mask-image: url(../img/common/title_character_side.svg);
	mask-image: url(../img/common/title_character_side.svg);
	width: 143px;
	height: 987px;
}

/* story */
.commonSecTitle--en__in.is-story:before {
	-webkit-mask-image: url(../img/common/title_story.svg);
	mask-image: url(../img/common/title_story.svg);
	width: 160px;
	height: 82px;
}
@media screen and (max-width:767px){
	.commonSecTitle--en__in.is-story:before {
		width: 98px;
		height: 48px;
	}
}
.commonSecSideTitle.is-story {
	-webkit-mask-image: url(../img/common/title_story_side.svg);
	mask-image: url(../img/common/title_story_side.svg);
	width: 144px;
	height: 527px;
}


/**
 * commonSecCont
 */
.commonSecCont {
	width: 60%;
	max-width: var(--common-min-width);
	margin: -85px auto 0;
	overflow: hidden;
	position: relative;
}
@media screen and (max-width:767px){
	.commonSecCont {
		width: calc(100% - 80px);
		margin: 30px auto 0;
	}
	.mainSub .commonSecCont {
		width: calc(100% - 40px);
	}
}

/* bg */
.commonSecCont:after {
	content: "";
	background: rgb(var(--main-color-red));
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	mix-blend-mode: color-dodge;
	z-index: 0;
}
@media screen and (max-width:767px){
	.commonSecCont.is-black:after {
		background: #000 !important;
	}
}

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


/**
 * shareLists
 */
.shareLists {
    display: flex;
}

/* item */
.shareLists__item {
    width: 30px;
	height: 30px;
	margin: 0 10px;
}

/* 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: #fff;
    display: block;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100%;
    mask-size: 100%;
}

/* 各SNSパーツ */
.shareLists__item.is-twitter .shareLists__link:before {
    width: 26px;
    height: 26px;
    -webkit-mask-image: url(../img/common/icon_tw.svg);
    mask-image: url(../img/common/icon_tw.svg);
}
.shareLists__item.is-facebook .shareLists__link:before {
    width: 26px;
    height: 26px;
    -webkit-mask-image: url(../img/common/icon_fb.svg);
    mask-image: url(../img/common/icon_fb.svg);
}
.shareLists__item.is-line .shareLists__link:before {
    width: 26px;
    height: 26px;
    -webkit-mask-image: url(../img/common/icon_line.svg);
    mask-image: url(../img/common/icon_line.svg);
}


@keyframes rumble {
    0%   { transform:translate(0, 0) rotate(0) }
    16%  { transform:translate(25px, -50px) rotate(-5deg) }
    33%  { transform:translate(50px, 15px) rotate(2deg) }
    49%  { transform:translate(7px, 5px) rotate(1deg) }
    66%  { transform:translate(-25px, -40px) rotate(7deg) }
    83%  { transform:translate(-50px, 25px) rotate(-3deg) }
    100% { transform:translate(5px, 7px) rotate(-8deg) }
}
.a_hv:hover{
	animation: .2s linear 0s flashAni;
}
@keyframes flashAni {
	0%,35%,50%,85%{
		opacity: 0;
	}
	20%,65%,100%{
		opacity: 1;
	}
}

/**
 * fullBg
 */
.fullBg {
	min-width: var(--common-min-width);
	min-height: var(--common-min-height);
	overflow: hidden;
	pointer-events: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.fullBg:before {
	content: "";
	background: url(../img/common/noise.png) center;
	width: 150%;
	height: 150%;
	animation: rumble .2s linear infinite;
	position: absolute;
	top: -25%;
	left: -25%;
	z-index: 2;
	opacity: .08;
}

/**
 * btnDesign1
 */
.btnDesign1 {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 64px;
	border: 1px solid #fff;
	color: #fff;
	position: relative;
	font-size: 20px;
	font-weight: 700;
	text-decoration: none;
	transition: color .2s ease,
				background-color .2s ease;
}
@media screen and (max-width:767px){
	.btnDesign1 {
		font-size: 14px;
		height: 42px;
	}
}
.btnDesign1:hover {
	background-color: #fff;
	color: rgb(var(--main-color-red));
	animation: .2s linear 0s flashAni;
}
@media screen and (max-width:767px){
	.btnDesign1:hover {
		animation: none;
	}
}

/* line */
.btnDesign1:after {
	content: '';
	position: absolute;
	height: 1px;
	width: 80px;
	top: calc(50% - 0.5px);
	right: -40px;
	background-color: rgba(255,255,255,.4);
	transition: background-color .2s ease,
				transform .2s ease;
}
.btnDesign1:hover:after {
	background-color: #000;
	transform: translateX(30px);
}
@media screen and (max-width:767px){
	.btnDesign1:after {
		width: 40px;
		right: -20px;
	}
	.btnDesign1:hover:after {
		background-color: transparent;
		transform: translateX(0);
	}
}

/* is-back */
.btnDesign1.is-back:after {
	right: auto;
	left: -40px;
}
.btnDesign1.is-back:hover:after {
	transform: translateX(-30px);
}
@media screen and (max-width:767px){
	.btnDesign1.is-back:after {
		left: -20px;
	}
	.btnDesign1.is-back:hover:after {
		background-color: transparent;
		transform: translateX(0);
	}
}

/**
 * btnDesign2
 */
.btnDesign2 {
	background-color: rgb(var(--main-color-red));
	color: #fff;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.01em;
	padding: 8px 24px;
	text-align: center;
	text-decoration: none;
	transition: background-color .2s ease;
}
.btnDesign2:hover {
	animation: .2s linear 0s flashAni;
}
@media screen and (max-width:767px){
	.btnDesign2 {
		font-size: 12px;
		padding: 6px 10px;
	}
	.btnDesign2:hover {
		animation: none;
	}
}


/**
 * scrBtn
 */
.scrBtn {
	width: 100%;
	height: 100%;
	position: absolute;
	display: flex;
	align-items: center;
	flex-direction: column;
	top: 0;
	right: 0;
	text-decoration: none;
}

/* text */
.scrBtn__text {
	color: #fff;
	font-size: 12px;
	line-height: 1;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	font-weight: 700;
}
@media screen and (max-width:767px){
	.scrBtn__text {
		font-size: 10px;
	}
	.scrBtn__text.is-sp {
		color: #fff !important;
	}
}

/* barWrap */
.scrBtnBarWrap {
	width: 2px;
	height: 160px;
	overflow: hidden;
	position: absolute;
	top: 80px;
}
@media screen and (max-width:767px){
	.scrBtnBarWrap {
		height: 96px;
		top: 54px;
	}
}

.scrBtnBarWrap:before {
	content: '';
	background-color: rgba(255,255,255,.2);
	display: block;
	width: 2px;
	height: 100%;
	position: absolute;
	margin: auto;
	top: 0;
	right: 0;
	left: 0;
	z-index: 0;
}

/* bar */
.scrBtnBar {
	animation: scrollDown 2.4s ease-in-out infinite;
	background-color: #fff;
	width: 2px;
	height: 100%;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1;
}

.mainSub {
	overflow: hidden;
	padding-top: var(--common-header-height);
	padding-bottom: 240px;
	position: relative;
	z-index: 1;
}
@media screen and (max-width:767px){
	.mainSub {
		padding-top: 0;
		padding-bottom: 0;
	}
}

/**
 * subHeadArea
 */
.subHeadArea {
	width: 100%;
	min-width: var(--common-min-width);
	height: 50vh;
	min-height: calc(var(--common-min-height) / 2);
	overflow: hidden;
	position: relative;
}
@media screen and (max-width:767px){
	.subHeadArea {
		height: 42vw;
		min-height: auto;
	}
}

/* corner deco */
.subHeadArea:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 80px;
	height: 136px;
	background: url(../img/common/corner_l.svg) no-repeat 0 0 / 100%;
	overflow: hidden;
	z-index: 1;
}
.subHeadArea:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 80px;
	height: 136px;
	background: url(../img/common/corner_r.svg) no-repeat 0 0 / 100%;
	overflow: hidden;
	z-index: 1;
}
@media screen and (max-width:767px){
	.subHeadArea:before,
	.subHeadArea:after {
		width: 40px;
    	height: 70px;
	}
}

/**
 * subHeadArea__logo
 */
.subHeadArea__logo {
	display: none;
}
@media screen and (max-width:767px){
	.subHeadArea__logo {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 50%;
		height: 100%;
		position: absolute;
		top: 0;
		z-index: 10;
	}
	.subHeadArea__logo a {
		background: url(../img/common/main_logo.svg) no-repeat 0 0 / 100%;
		display: block;
		width: 140px;
		height: 28px;
	}
}

/**
 * subHeadArea__en
 */
 .subHeadArea__en {
	width: 100%;
	height: 136px;
	overflow: hidden;
	pointer-events: none;
	position: absolute;
	left: 0;
	z-index: 9;
}
@media screen and (max-width:767px){
	.subHeadArea__en {
		height: 70px;
	}
}
.subHeadArea__en.is-top {top: 0;}
.subHeadArea__en.is-bottom { bottom: 0;}

/* mask */
.subHeadArea__en.is-top {
	clip-path: polygon(80px 0, 100% 0, 100% 100%, 0% 100%);
}
.subHeadArea__en.is-bottom {
	clip-path: polygon(0 0, 100% 0, calc(100% - 80px) 100%, 0% 100%);
}
@media screen and (max-width:767px){
	.subHeadArea__en.is-top {
		clip-path: polygon(40px 0, 100% 0, 100% 100%, 0% 100%);
	}
	.subHeadArea__en.is-bottom {
		clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 100%, 0% 100%);
	}
}

/* img */
.subHeadArea__en:after {
	content: '';
	background-image: url(../img/common/ttl_eng.svg);
	background-repeat: repeat-x;
	background-position: 0 0;
	background-size: cover;
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
}
.subHeadArea__en.is-top:after {
	top: -76px;
	animation: Topslideeng 160s linear infinite;
}
.subHeadArea__en.is-bottom:after {
	bottom: -44px;
	animation: Bottomslideeng 160s linear infinite;
}
@media screen and (max-width:767px){
	.subHeadArea__en.is-top:after {
		top: -38px;
	}
	.subHeadArea__en.is-bottom:after {
		bottom: -22px;
	}
}

/**
 * subHeadArea__enText
 */
.subHeadArea__enText {
	font-size: 10px;
	line-height: 2;
	opacity: 0.08;
	color: #fff;
	font-weight: 700;
	pointer-events: none;
	position: absolute;
	bottom: 40px;
	left: 40px;
	z-index: 8;
}
@media screen and (max-width:767px){
	.subHeadArea__enText {
		line-height: 1.8;
		width: 100%;
		padding: 0;
		top: 50%;
		bottom: auto;
		left: 10px;
		transform: translateY(-50%) scale(.8);
		transform-origin: left;
	}
}

/**
 * subHeadArea__imgWrap
 */
.subHeadArea__imgWrap {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 0;
}

.subHeadArea__img {
	background-image: url(../img/common/visual_b.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	width: 100%;
	padding-top: 141.33333%;
	position: absolute;
	top: -10vw;
}

/**
 * pagerWrap
 */
.pagerWrap {
	margin-top: 80px;
	font-family: 'Bellota Text', cursive;
}
@media screen and (max-width:767px){
	.pagerWrap {
		margin-top: 40px;
		margin-bottom: 20px;
	}
}

/* wp-pagenavi */
.pagerWrap .wp-pagenavi {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

/* a, span */
.pagerWrap a,
.pagerWrap span {
	background-color: #000;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	width: 40px;
	height: 40px;
	margin: 0 6px;
	text-decoration: none;
	transition: all .3s ease;
}
@media screen and (max-width:767px){
	.pagerWrap a,
	.pagerWrap span {
		font-size: 12px;
		width: 24px;
		height: 24px;
		margin: 0 2px;
	}
}

/* hover, current */
.pagerWrap a:hover,
.pagerWrap .current {
	background-color: #fff;
	color: #000;
}

/**
 * next prev
 */
/* a */
.pagerWrap a.nextpostslink,
.pagerWrap a.previouspostslink {
	display: flex;
	align-items: center;
	font-size: 16px;
	text-decoration: none;
	background-color: transparent;
	width: 80px;
	height: 40px;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
}
@media screen and (max-width:767px){
	.pagerWrap a.nextpostslink,
	.pagerWrap a.previouspostslink {
		width: 40px;
		height: 40px;
	}
}
.pagerWrap a.nextpostslink {
	right: 0;
}
.pagerWrap a.previouspostslink {
	left: 0;
}

/* arrow */
.pagerWrap a.nextpostslink:before,
.pagerWrap a.previouspostslink:before {
	content: "";
	background-color: #fff;
	display: block;
	width: 80px;
	height: 40px;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: 100%;
	mask-size: 100%;
	margin: auto;
	-webkit-mask-image: url(../img/common/arrow_right.svg);
    mask-image: url(../img/common/arrow_right.svg);
}
.pagerWrap a.previouspostslink:before {
	transform: rotate(180deg);
}
.pagerWrap a.nextpostslink:hover:before,
.pagerWrap a.previouspostslink:hover:before {
    animation: flashAni .2s linear;
}

/* span */
.pagerWrap a.nextpostslink > span,
.pagerWrap a.previouspostslink > span {
	display: none;
}

/**
 * margin
 * PCのサイズを基準
 */
 .mt-20 {
	margin-top: 20px;
}
.mb-20 {
	margin-bottom: 20px;
}
@media screen and (max-width:767px){
	.mt-20 {
		margin-top: 10px;
	}
	.mb-20 {
		margin-bottom: 10px;
	}
}

/* 30px */
.mt-30 {
	margin-top: 30px;
}
.mb-30 {
	margin-bottom: 30px;
}
@media screen and (max-width:767px){
	.mt-30 {
		margin-top: 20px;
	}
	.mb-30 {
		margin-bottom: 20px;
	}
}

/* 40px */
.mt-40 {
	margin-top: 40px;
}
.mb-40 {
	margin-bottom: 40px;
}
@media screen and (max-width:767px){
	.mt-40 {
		margin-top: 30px;
	}
	.mb-40 {
		margin-bottom: 30px;
	}
}

/* 50px */
.mt-50 {
	margin-top: 50px;
}
.mb-50 {
	margin-bottom: 50px;
}
@media screen and (max-width:767px){
	.mt-50 {
		margin-top: 40px;
	}
	.mb-50 {
		margin-bottom: 40px;
	}
}

/* 60px */
.mt-60 {
	margin-top: 60px;
}
.mb-60 {
	margin-bottom: 60px;
}
@media screen and (max-width:767px){
	.mt-60 {
		margin-top: 50px;
	}
	.mb-60 {
		margin-bottom: 50px;
	}
}


/**
 * color
 * 黒白ver.に対応したいもの
 */
.font-color-black { color: #000; }
.font-color-white { color: #fff; }
.font-color-red { color: rgb(var(--main-color-red)); }

.bg-color-black { background-color: #000; }
.bg-color-white { background-color: #fff; }
.bg-color-red { background-color: rgb(var(--main-color-red)); }


/*-----------------------------------------------
 * White ver. style
 * .bodyに「is-change」クラスを付与
-------------------------------------------------*/
/* body */
body.body {
	transition: background-color var(--change-transition),
				color var(--change-transition);
}
body.body.is-change {
	background-color: #fff;
	color: #000;
}

/* sub loading */
body.body.is-change #subLoading {
	background-color: #fff;
}

/* headerNavLists__textWrap:before */
body.body.is-change .headerNavLists__textWrap:before {
	background-color: rgb(var(--main-color-lightblue));
}

/* fvTltle */
.fvTltle {
	transition: background-image var(--change-transition);
}
body.body.is-change .fvTltle {
	background-image: url(../img/common/logo_b.svg);
}

/* fvTltle__start */
.fvTltle__start {
	transition: background-color var(--change-transition);
}
body.body.is-change .fvTltle__start {
	background-color: #000;
}

/* fvTltleArea__corner */
.fvTltleArea__corner:before, .fvTltleArea__corner:after {
	transition: background-image var(--change-transition);
}
body.body.is-change .fvTltleArea__corner:before {
	background-image: url(../img/common/corner_l_b.svg);
}
body.body.is-change .fvTltleArea__corner:after {
	background-image: url(../img/common/corner_r_b.svg);
}

/* fvTltleArea__en:after */
.fvTltleArea__en:after {
	transition: background-image var(--change-transition);
}
body.body.is-change .fvTltleArea__en:after {
	background-image: url(../img/common/ttl_eng_b.svg);
}

/* fvTltleArea__enText */
.fvTltleArea__enText {
	transition: color var(--change-transition);
}
body.body.is-change .fvTltleArea__enText {
	color: #000;
}

/* scrBtn__text */
.scrBtn__text {
	transition: color var(--change-transition);
}
body.body.is-change .scrBtn__text {
	color: #000;
}

/* .scrBtnBarWrap:before */
.scrBtnBarWrap:before,
.scrBtnBar {
	transition: background-color var(--change-transition);
}
body.body.is-change .scrBtnBarWrap:before {
	background-color: rgba(0,0,0,.2);
}
body.body.is-change .scrBtnBar {
	background-color: #000;
}

/* commonSecSideTitle */
.commonSecSideTitle {
	transition: background-color var(--change-transition);
}
body.body.is-change .commonSecSideTitle {
	background-color: rgb(var(--main-color-lightblue));
}

/* .commonSecCont:after */
.commonSecCont:after {
	transition: background-color var(--change-transition);
}
body.body.is-change .commonSecCont:after {
	background-color: rgb(var(--main-color-lightblue));
}

/* .newsLists__link */
.newsLists__link {
	transition: background-color var(--change-transition);
}
body.body.is-change .newsLists__link {
	background-color: rgba(255,255,255,.6);
}
body.body.is-change .newsLists__link:hover {
	background-color: rgba(255,255,255,1);
}

/* .newsLists__date */
.newsLists__date {
	transition: color var(--change-transition);
}
body.body.is-change .newsLists__date {
	color: rgb(var(--main-color-lightblue));
}

/* .newsLists__title */
.newsLists__title {
	transition: color var(--change-transition);
}
body.body.is-change .newsLists__title {
	color: #000;
}

/* .commonSecTitle:before */
.commonSecTitle:before {
	transition: color var(--change-transition);
}
body.body.is-change .commonSecTitle:before {
	color: #000;
}

/* .commonSecTitle--ja */
.commonSecTitle--ja {
	transition: color var(--change-transition);
}
body.body.is-change .commonSecTitle--ja {
	color: rgb(var(--main-color-lightblue));
}

/* .commonSecTitle--en */
.commonSecTitle--en {
	transition: background-color var(--change-transition);
}
body.body.is-change .commonSecTitle--en {
	background-color: #fff;
}

/* .commonSecTitle--en__in:before */
.commonSecTitle--en__in:before {
	transition: background-color var(--change-transition);
}
body.body.is-change .commonSecTitle--en__in:before {
	background-color: #000;
}

/* .commonSecTitle--en__in:after */
.commonSecTitle--en__in:after {
	transition: background-image var(--change-transition);
}
body.body.is-change .commonSecTitle--en__in:after {
	background-image: url(../img/common/corner_min_l_b.svg);
}

/* .sclbar */
body.body.is-change .sclbar {
	background-color: rgb(var(--main-color-lightblue));
}

/* font */
.font-color-black,.font-color-white,.font-color-red {
	transition: color var(--change-transition);
}
body.body.is-change .font-color-black {
	color: #fff;
}
body.body.is-change .font-color-white {
	color: #000;
}
body.body.is-change .font-color-red {
	color: rgb(var(--main-color-lightblue));
}

/* bg */
.bg-color-black,.bg-color-white,.bg-color-red {
	transition: background-color var(--change-transition);
}
body.body.is-change .bg-color-black {
	background-color: #fff;
}
body.body.is-change .bg-color-white {
	background-color: #000;
}
body.body.is-change .bg-color-red {
	background-color: rgb(var(--main-color-lightblue));
}

/* btnDesign1 */
body.body.is-change .btnDesign1:hover {
	color: rgb(var(--main-color-lightblue));
}
/* body.body.is-change .btnDesign1:hover:after {
	background-color: rgb(var(--main-color-lightblue));
} */

/* btnDesign2 */
body.body.is-change .btnDesign2 {
	background-color: rgb(var(--main-color-lightblue));
}

/**
 * 下層ページ
 */
/* corner deco */
.subHeadArea:before,
.subHeadArea:after {
	transition: background-image var(--change-transition);
}
body.body.is-change .subHeadArea:before {
	background-image: url(../img/common/corner_l_b.svg);
}
body.body.is-change .subHeadArea:after {
	background-image: url(../img/common/corner_r_b.svg);
}

/* subHeadArea__en:after */
.subHeadArea__en:after {
	transition: background-image var(--change-transition);
}
body.body.is-change .subHeadArea__en:after {
	background-image: url(../img/common/ttl_eng_b.svg);
}

/* subHeadArea__logo */
body.body.is-change .subHeadArea__logo a {
	background-image: url(../img/common/logo_b.svg);
}

/* subHeadArea__enText */
.subHeadArea__enText {
	transition: color var(--change-transition);
}
body.body.is-change .subHeadArea__enText {
	color: #000;
}

/* subHeadArea__img */
.subHeadArea__img {
	transition: background-image var(--change-transition);
}
body.body.is-change .subHeadArea__img {
	background-image: url(../img/common/visual_w.jpg);
}
