@charset "utf-8";
/*-----------------------------------------------
 * common.css
 * レスポンシブは基本スタイルを引き継ぐ（PCファースト）
 * @media screen and (max-width:767px)
-------------------------------------------------*/
/*-----------------------------------------------
 * Reset, root
 * Bace
 * Modal
 * Header
 * Footer
 * Parts
-------------------------------------------------*/
/*-----------------------------------------------
 * Reset, root
-------------------------------------------------*/
body,div,dl,dt,dd,ul,ol,li,p,h1,h2,h3,h4,h5,h6,th,td,pre,code,blockquote,form,fieldset,legend,input,textarea,figcaption,figure{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,th,var{font-style:normal;font-weight:normal}li{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit}input,textarea,select{*font-size:100%}legend{color:#FFF}hr{display:none}img{vertical-align:bottom}select,input,button,textarea{font-size:99%}table{font-size:inherit;font:100%;border-collapse:collapse;border-spacing:0}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:100%}.hd{display:block;width:0;height:0;overflow:hidden}.cf:before,.cf:after{content:"";display:table}.cf:after{clear:both}.cf{*zoom:1}article,aside,details,figcaption,figure,footer,header,hgroup,hr,menu,nav,section,main{display:block}*{margin:0;padding:0;box-sizing:border-box;max-height:999999px;outline:none;}*:focus{outline: none;}button{background-color:transparent;border:none;cursor:pointer;outline:none;padding:0;}

:root {
	--common-min-width: 1200px;
	--common-min-height: 640px;

	/* COLOR */
	--color-red: #c90a34;
	--color-orange: #ff8400;
	--color-main: #59c2df;

	/* FONT */
	--font-ja: "Noto Sans JP", sans-serif;
	--font-en: "Oswald", sans-serif;

	/* size */
	--vw-min: 1200;
	--min-width :1200px;
	
	/* easing */
	--easing-outquart: cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 767px){
	:root{
		/* size */
		--vw-min: 750;
		--min-width :100%;
	}
}

/*-----------------------------------------------
 * Bace
-------------------------------------------------*/
body{
	-webkit-text-size-adjust: 100%;
	background-color: #FFF;
	color:#000;
	font-family: var(--font-ja);
	font-feature-settings: "palt";
	font-size: min(calc(16 / var(--vw-min) * 100vw),16px);
	font-weight: 400;
	letter-spacing: 0.07em;
	line-height: 1.8;
	word-wrap: break-word;
}
.pc{ display: block; }
.sp{ display: none; }
a{ color: #000; }
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:767px){ 
	html{ 
		font-size: 62.5%;
	}
	body{
		font-size: 10px; 
		font-size: 1rem;
		min-width: 320px;
		font-size: calc(24 / var(--vw-min) * 100vw);
	}
	.sp{ display: block; }
	.pc{ display: none; }
	.ah:hover { opacity: 1; }
}
#fullWrap{
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
@media screen and (max-width:767px){
	#fullWrap{
		min-width: unset;
	}
}
#fullWrapIn{
	position: relative;
	width: 100%;
	display: flex;
    flex-direction: column;
}

/* ScrollBar Setting */
::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}
::-webkit-scrollbar-track {
  border-radius: 4px;
  background: rgb(255, 255, 255);
}
::-webkit-scrollbar-thumb {
	background: var(--color-main);
	border-radius: 2px;
	margin: 2px;
	box-shadow: none;
}
/* firefox Only Scrollbar */
@-moz-document url-prefix() {
	html{
		scrollbar-color: var(--color-main) rgb(230, 230, 230);
		scrollbar-width: thin;
	}
}

.font-en{
	display: inline-block;
    transform: scale(1, 1.1);
    font-family: var(--font-en);
}

/*-----------------------------------------------
 * Modal
-------------------------------------------------*/
/**
 * modalBox
 * 基盤のモーダル
 */
.modalBox{
	-webkit-overflow-scrolling: touch;
	background: rgba(0,0,0,.85);
	display: none;
	width: 100%;
	height: 100%;
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}
.oneModal{
	display: none;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}
.oneModal.is-show {
	display: block;
}

/* oneModalIn */
.oneModalIn{
	display: flex;
	justify-content: center;
	align-items: center;
	height: auto;
	width: 100%;
	min-height: 100%;
	margin: 0 auto;
	position: relative;
}
.oneModalIn__cont{
	padding: 50px 0;
}
@media screen and (max-width:767px){
	.oneModalIn{
		min-width: 100%;
	}
	.oneModalIn__cont{
		width: 100%;
	}
}

/**
 * closeBtn
 */
.closeBtn{
	width: 80px;
	height: 80px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
}
@media screen and (max-width:767px){
	.closeBtn{
		width:50px;
		height:50px;
	}
}

.closeBtn a {
	background-color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

/* img */
.closeBtn a:before {
	content: "";
	background: url(../img/common/icon/icon_close.png) no-repeat 0 0 / 100%;
	width: 100%;
	height: 100%;
}

/**
 * iframe
 */
/* common */
.commonIframe{
	width: 100%;
	height: 100%;
	display: block;
}

/* youtube */
.youtubeIframeWrap {
	width: 70%;
	max-width: 159.993vh;
	position: relative;
}
@media screen and (max-width: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;
}


/*-----------------------------------------------
 * Header
-------------------------------------------------*/
.header {
	width: 100%;
	position: sticky;
	top: 0;
	z-index: 999;
}
.header::after{
	content: "";
	height: 10px;
	background: linear-gradient(90deg,rgba(141, 7, 36, 1) 0%, rgba(255, 119, 35, 1) 100%);
	width: 100%;
	position: absolute;
	bottom: -10px;
	z-index: 999;
}
@media screen and (max-width:767px){
	.header::after{
		display: none;
	}
}
/* inner */
.header__inner {
	background-color: #000;
	height:  min(calc(130 / var(--vw-min) * 100vw),130px);
}
@media screen and (max-width:767px){
	.header__inner {
		background-color: rgba(0,0,0,1);
		-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%;
}
.headerNav__cont{
	padding: 0  min(calc(20 / var(--vw-min) * 100vw),20px);
	display: flex;
	flex-direction: row;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width:767px){
	.headerNav {
		height: calc(100% + 1px);
		position: relative;
	}
	.headerNav__inner {
		display: flex;
		align-items: center;
        justify-content: flex-start;
		height: auto;
		min-height: 100%;
		margin: 0 auto;
		position: relative;
		padding: calc(230 / var(--vw-min) * 100vw) calc(110 / var(--vw-min) * 100vw) calc(110 / var(--vw-min) * 100vw);
	}
	.headerNav__cont {
		height: auto;
		margin: 0;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		width: auto;
	}
}

/**
 * headerNavLists
 */
.headerNavLists {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.headerNavLists__item {
	height: 100%;
	margin: 0 min(calc(20 / var(--vw-min) * 100vw),20px);
}

@media screen and (max-width:767px){
	.headerNavLists {
		display: block;
	}
	.headerNavLists__item {
		height: auto;
		margin: 0;
        line-height: 1;
	}
	.headerNavLists__item:not(:first-child) {
		margin-top: calc(60 / var(--vw-min) * 100vw);
	}
}

/* a */
.headerNavLists__item > a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-size:  min(calc(20 / var(--vw-min) * 100vw),20px);
	font-weight: 400;
	position: relative;
	color: #fff;
	text-decoration: none;
	transition: color .4s ease;
}
@media screen and (max-width:767px){
	.headerNavLists__item > a {
		display: block;
		color: #fff;
		height: auto;
		font-size: calc(80 / var(--vw-min) * 100vw);
	}
}

.headerNavLists__item.is-active a{
	color: var(--color-main);
}
@media screen and (hover:hover) and (pointer: fine){
	.headerNavLists__item:hover a{
		color: var(--color-main);
	}
}

/**
 * navBtn
 */
@media screen and (max-width:767px){
	.header__navBtnWrap {
		background-color:#000;
		width: 100%;
		height: min(calc(120 / var(--vw-min) * 100vw),120px);
		position: absolute;
		top: 0;
		right: 0;	
		z-index: 2
		;
	}
	.header__navBtnWrap::after{
		content: "";
		height: calc(10 / var(--vw-min) * 100vw);
		background: linear-gradient(90deg,rgba(141, 7, 36, 1) 0%, rgba(255, 119, 35, 1) 100%);
		width: 100%;
		position: absolute;
		bottom: calc(-10 / var(--vw-min) * 100vw);
		z-index: 999;
	}
	.header.is-active .header__navBtnWrap{
		position: fixed;
		top: 0;
		right: 0;
		z-index: 2;
	}
	.header__navBtn {
		position: absolute;
		right: min(calc(30 / var(--vw-min) * 100vw), 30px);
		top: 0;
		bottom: 0;
		margin: auto;
		display: block;
		width: min(calc(87 / var(--vw-min) * 100vw), 87px);
        height: min(calc(21 / var(--vw-min) * 100vw), 21px);
	}
	.header__navBtn__lineWrap {
		width:  min(calc(87 / var(--vw-min) * 100vw),87px);
		height:  min(calc(21 / var(--vw-min) * 100vw),21px);
		position: relative;
	}
	.header__navBtn--line {
		background-color: var(--color-orange);
		display: block;
		width: 100%;
		height: min(calc(1 / var(--vw-min) * 100vw),1px);
		margin: auto;
		position: absolute;
	}
	.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;
	}
}

/**
 * active
 */
@media screen and (max-width:767px){
	.header__inner {
		transform: translateY(-100%);
		transition: transform .5s var(--easing-outquart);
	}
	.header.is-active .header__inner {
		transform: translateY(0);
	}
	.header__navBtn--line {
		transition: transform .3s ease,
					opacity .3s ease;
	}
	.header__navBtn.is-active .header__navBtn--line:nth-child(1) {
		transform: rotate(15deg);
		top: min(calc(10 / var(--vw-min) * 100vw), 10px);
	}
	.header__navBtn.is-active .header__navBtn--line:nth-child(3) {
		transform: rotate(-15deg);
		bottom: min(calc(10 / var(--vw-min) * 100vw), 10px);
	}
	.header__navBtn.is-active .header__navBtn--line:nth-child(2) {
		transform: translateX(20%);
		opacity: 0;
	}
}

.header__logo{
	position: absolute;
	left: min(calc(30 / var(--vw-min) * 100vw),30px);
	top: 0;
	bottom: 0;
	margin: auto;
	width: min(calc(99 / var(--vw-min) * 100vw),99px);
	height: min(calc(67 / var(--vw-min) * 100vw),67px);
	background: url(../img/common/logo/logo_wh.svg) no-repeat center center / contain;
	transition: all .4s ease;
}
.header__logo a{
	display: block;
	width: 100%;
	height: 100%;
}
@media screen and (max-width:767px){
	.header__logo{
		position: absolute;
		top: calc(25 / var(--vw-min) * 100vw);
		left: 0;
		right: 0;
		bottom: unset;
		z-index: 3;
	}
	.header.is-active .header__logo{
		position: fixed;
	}
}
@media screen and (hover:hover) and (pointer: fine){
	.header__logo:hover{
		transform: scale(1.06);
	}
}
/*.officialSnsLinks */
.officialSnsLinks{
	position: absolute;
	right: min(calc(30 / var(--vw-min) * 100vw),30px);
	top: 0;
	bottom: 0;
	margin: auto;
	display: flex;
    align-items: center;
}
.officialSnsLinks .snsItem.ic_xWrap{
	width: min(calc(26 / var(--vw-min)* 100vw), 26px);
	height: min(calc(26 / var(--vw-min)* 100vw), 26px);
}
@media screen and (max-width:767px){
	.officialSnsLinks{
		margin: unset;
		margin-top: calc(60 / var(--vw-min) * 100vw);
		position: relative;
		top: unset;
		bottom: unset;
		left: unset;
		right: unset;
	}
	.officialSnsLinks .snsItem.ic_xWrap{
		width:calc(78 / var(--vw-min) * 100vw);
		height:calc(78 / var(--vw-min) * 100vw);
	}
}
.snsItem__link .ic{
	transition: all.4s ease;
}
@media screen and (hover:hover) and (pointer: fine){
	.snsItem__link:hover .ic{
		background-color: var(--color-main);
	}
}
/*-----------------------------------------------
 * 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: var(--color-main);
}

/* 各SNSパーツ */
.shareLists__item.is-x .shareLists__link:before {
	width: min(calc(26 / var(--vw-min)* 100vw), 26px);
	height: min(calc(26 / var(--vw-min)* 100vw), 26px);
	-webkit-mask-image: url(../img/common/sns/icon_x.svg);
	mask-image: url(../img/common/sns/icon_x.svg);
}
.shareLists__item.is-facebook .shareLists__link:before {
	width: min(calc(26 / var(--vw-min)* 100vw), 26px);
	height: min(calc(26 / var(--vw-min)* 100vw), 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:min(calc(26 / var(--vw-min)* 100vw), 26px);
	height:min(calc(26 / var(--vw-min)* 100vw), 26px);
	-webkit-mask-image: url(../img/common/sns/icon_line.svg);
	mask-image: url(../img/common/sns/icon_line.svg);
}

/* ic */
.ic{
	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%;
	transition: background-color .4s ease;
}
.ic_x{
	width: 100%;
	height: 100%;
	-webkit-mask-image: url(../img/common/sns/icon_x.svg);
	mask-image: url(../img/common/sns/icon_x.svg);
	background-color: #FFF;
}



/*------------------------------------------
CONTENTS
-------------------------------------------*/
@media screen and (max-width:767px){
	.main{
		padding-top: calc(120 / var(--vw-min)* 100vw);
	}
}
/*---------------------
footer
----------------------*/
.footer{
    position: relative;
    display: flex;
    height: min(calc(620 / var(--vw-min) * 100vw), 620px);
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: min(calc(24 / var(--vw-min) * 100vw), 24px);
}
@media screen and (max-width:767px){
	.footer{
		height: calc(1142 / var(--vw-min) * 100vw);
	}
}

/* logo */
.logoMv{
	width: 100%;
	height: 100%;
	max-width: 1200px;
	display: flex;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	justify-content: center;
    align-items: center;
	overflow: hidden;
	z-index: -1;
	pointer-events: none;
}
.logoMv video{
	width: 80%;
	height: auto;
	z-index: -1;
	pointer-events: none;
}
@media screen and (max-width:767px){
	.logoMv{
		position: relative;
		height:calc(900 / var(--vw-min) * 100vw);
		top: unset;
		bottom: unset;
		z-index: unset;
		pointer-events: unset;
	}
	.logoMv video{
		width: 120%;
		height: auto;
	}
}
/* to top */
@media screen and (max-width:767px){
	.toTop{
		width: calc(70 / var(--vw-min) * 100vw);
		height: calc(70 / var(--vw-min) * 100vw);
		background: url(../img/common/to_top.png) no-repeat center center / contain;
		position: absolute;
		bottom: calc(55 / var(--vw-min) * 100vw);
		left: 0;
		right: 0;
		margin: auto;
	}
}
/* bnr */
.bnrItemLists{
    display: flex;
    justify-content: center;
    margin-bottom: min(calc(30 / var(--vw-min) * 100vw), 30px);
}  
.bnrItem:not(:last-child){
    margin-right: min(calc(10 / var(--vw-min) * 100vw), 10px);
}
.bnrItem{
	width: min(calc(150 / var(--vw-min) * 100vw), 150px);
	height: min(calc(45 / var(--vw-min) * 100vw), 45px);
}
.bnrItem__link{
	display: block;
	width: 100%;
	height: 100%;
	transition: all .4s ease;
}
.bnrItem img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media screen and (max-width:767px){
	.bnrItemLists{
		flex-direction: row;
		flex-wrap: wrap;
		margin-bottom: calc(30 / var(--vw-min) * 100vw);
		padding: 0 calc(30 / var(--vw-min) * 100vw);
	}  
	.bnrItem{
		width: calc(242 / var(--vw-min) * 100vw);
		height: calc(72 / var(--vw-min) * 100vw);
		margin-bottom: min(calc(10 / var(--vw-min) * 100vw), 10px);
	}
	.bnrItem:not(:last-child){
		margin-right: min(calc(10 / var(--vw-min) * 100vw), 10px);
	}
}
@media screen and (hover:hover) and (pointer: fine){
	.bnrItem__link:hover{
		transform: scale(1.06);

	}
}

/* copyright */
.copyright{
	font-size:  min(calc(12 / var(--vw-min) * 100vw), 12px);
	line-height: 1;
	margin: min(calc(28 / var(--vw-min) * 100vw), 28px) auto;
	text-align: center;
}

/* link */
.siteLinkWrap{
    display: flex;
    justify-content: center;
}
.siteLink{
    margin-right: min(calc(10 / var(--vw-min) * 100vw), 10px);
    padding-right: min(calc(10 / var(--vw-min) * 100vw), 10px);
    line-height: 1;
    position: relative;
}
.siteLink::after{
    content: "";
    width: 1px;
    height: min(calc(12 / var(--vw-min) * 100vw), 12px);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #000;
}
.siteLink:last-child::after{
   display: none;
}

.siteLink a{
    text-decoration: none;
    display: inline-block;
    position: relative;
    font-size: min(calc(12 / var(--vw-min) * 100vw), 12px);
    padding-bottom: min(calc(5 / var(--vw-min) * 100vw), 5px);
    transition: all .4s ease;
}
.siteLink a::after{
    content: "";
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #000;
}

@media screen and (max-width:767px){
	.siteLink a{
		font-size:calc(16 / var(--vw-min) * 100vw);
	}
}
@media screen and (hover:hover) and (pointer: fine){
    .siteLink a:hover{
       color: var(--color-red);
    }
    .siteLink a:hover::after{
        border-bottom: 1px solid var(--color-red);
    }
}
/*------------------------
SUB COMMON
------------------------*/
.sub .contentsArea__inner{
	opacity: 0;
	transition: opacity .6s ease;
}
.sub.-loaded .contentsArea__inner{
	opacity: 1;
}

.sub .section__ttl{
    font-size: min(calc(80 / var(--vw-min) * 100vw),80px);
    line-height: 1;
}

.detailArea .ytifWrap{
    display: block;
    position: relative;
	width: 100%;
	width: min(calc(810 / var(--vw-min) * 100vw),810px);
	height: min(calc(456 / var(--vw-min) * 100vw),456px);
	margin: 0 auto;
}
.detailArea iframe[src*="youtube"]{
    border: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (max-width:767px){
	.detailArea .ytifWrap{
		width: 100%;
		height: unset;
		padding-top: 56.25%;
	}
	.detailArea iframe[src*="youtube"]{
		width: 100%;
		height: 100%;
	}
}

