@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;600&family=Roboto:wght@100;300;400;700&family=Taviraj:ital,wght@1,100;1,200;1,300&display=swap');

/* CSS Document */
/* ==================================================
    Reset
================================================== */
html { font-size: 90%;}
body {
    background-color:#0D0D0D;
	color: #fff;
    font-family:Helvetica, "sans-serif";
	font-size: 14px;
    font-weight: 300;
	font-feature-settings: "palt" 1;
	line-height: 190%;
	text-align: center;
	letter-spacing: 0.02em;
	-webkit-font-smoothing: antialiased; /* WebKitブラウザサポート */
	text-rendering: optimizeLegibility; /* Chrome、Safariサポート */
	-moz-osx-font-smoothing: grayscale; /* Firefoxサポート */
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%; /* iPhoneの文字サイズバグの回避 */
    overflow-x: hidden;
}
img {
    display: block;
    width: 100%;
}
.font_jp {
    font-family: 'Noto Sans JP', sans-serif;
}
h1,h2,h3,h4,h5 {
	color: #fff;
	font-weight: 600;
}
/* LINK */
a { 
    line-height: 1.25;
    color:#FFF;
    text-decoration:none;
    transition: .2s ease-in-out;
}
a:link {
    color:#FFF;
    text-decoration:none;
    transition: .2s ease-in-out;
    border-bottom: 0px solid #FFF;
}
a:visited {
    color:#FFF;
}
a:hover { 
    color:rgba(165,165,165,1.00);
    border-bottom: 1.2px solid rgba(165,165,165,1.00); 
}
a:active { 
    color:#FFF;
}
a img { 
    opacity:1.0;
    transition: .3s ease-in-out;
}
a img:hover { 
    opacity: .7 !important;
}
/* clearfix */
.clearfix::before,
.clearfix::after { display: table; content: ''; }
.clearfix::after { clear: both; }

/* ==================================================
    common
================================================== */
.sp_only { display:inherit }
.pc_only { display:none }
.common-w {
    width:92%;
    margin: 0 auto;
}
@media screen and (min-width:768px){
	.sp_only { display:none }
    .pc_only { display:block }
	.common-w {
        width:90%;
		max-width: 1088.8888px;
    }
}

/* ==================================================
   header
================================================== */
header {
    margin-bottom: 5em;
}
header .top-base {
	min-height: 100vh;
	position: relative;
	background-size: contain;
	background-repeat: repeat;
	background-position: center 25%;
	background-image: url( "../img/top_back-sp.jpg");
}
header .top-img {
	width: 100%;
	height: 100%;
	position: absolute;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center 25%;
	background-image: url( "../img/top-sp.jpg");
}
@media screen and (min-width:768px){
	header {
		margin-bottom: 15em;
		margin-bottom: clamp(115px, 15vw, 216px);
	}
	header .top-base {
		background-position: center;
		background-image: url( "../img/top_back-pc.jpg");
	}
	header .top-img {
		background-position: center;
		background-image: url( "../img/top-pc.jpg");
	}
}

/* ==================================================
   section / gallery
================================================== */
section.gallery li.img-wrap div {
	margin:0 auto 10em;
}
section.gallery li.img-wrap .image-30 {
	width:60%;
}
section.gallery li.img-wrap .image-40 {
	width: 85%;
}
section.gallery li.img-flex {
	display: flex;
	justify-content: space-between;
}
section.gallery li.img-flex div {
	width: 49%;
}
section.gallery li.video-wrap {
	padding-top: 5em;
}
section.gallery li.video-wrap .video {
	margin-bottom: 5em;
    width: 100%;
	padding:75% 0 0 0;
	position:relative;
}
section.gallery li.video-wrap div iframe {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
@media screen and (min-width:768px) {
	section.gallery li.img-wrap {
		width: 100%;
		max-width: 768px;
		margin-left: auto;
		margin-right: auto;
		
		display:flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
	}
	section.gallery li.img-wrap div {
		margin:0 auto 15em;
		margin: 0 auto clamp(144px, 15vw, 216px);
	}
	section.gallery li.img-wrap .image-30 {
		width:65%;
	}
	section.gallery li.img-wrap .image-40 {
		width: 80%;
	}
    section.gallery li.img-wrap .image-50 {
		width: 100%;
	}
	section.gallery li.img-flex {
		max-width: 1440px;
	}
	section.gallery li.img-flex div {
		margin: 0 0 clamp(144px, 11vw, 200px);
		width: 49.5%;
	}
	section.gallery li.video-wrap {
		max-width: 980px;
		margin-left: auto;
		margin-right: auto;
	}
	section.gallery li.video-wrap .video {
        margin-bottom: clamp(72px, 8vw, 144px);
    }
}

/* ==================================================
   section / staff-credit
================================================== */
section.staff-credit {
	margin-bottom:5em;
}
section.staff-credit h2 {
    font-size: 1.2em;
    line-height: 2.2;
    font-weight: 600;
    margin-bottom:2em;
}
section.staff-credit p {
    font-size: 0.85em;
    line-height: 2.2;
    font-weight: 600;
}
@media screen and (min-width: 768px) {
    section.staff-credit {
        margin-bottom: clamp(72px, 10vw, 172px);
    }
    section.staff-credit h2 {
        margin-bottom: clamp(28px, 4vw, 57px);
    }
}

/* ==================================================
   section / share-button
================================================== */
section.share-button ul {
    display: flex;
    justify-content:center;
    margin-bottom: 5em;
}
section.share-button ul li,
section.share-button ul li a,
section.share-button ul li a i {
    color:#FFF;
    transition: 0.3s;
}
section.share-button ul li a {
    margin: 0 0.25em;
    display: flex;
    align-items:center;
    justify-content: center;
    border-radius: 50%;
    border:#FFF 1px solid;
    line-height:1;
    width: 2.25em;
    height: 2.25em;
    background-color: transparent!important;
    text-decoration: none;
    transition: 0.3s;
}
section.share-button ul li a i.fab,
section.share-button ul li a i.fa {
    text-align: center;
    font-size: 1.1em;
}
section.share-button ul li a:hover {
    border:#fff 1px solid;
}
section.share-button ul li a:hover i {
    color: #fff;
}
@media screen and (min-width:768px){
	section.share-button ul {
		margin-bottom: clamp(72px, 10vw, 172px);
	}
	section.share-button ul li a {
        font-size:17px !important;
        width: 2.5em;
        height: 2.5em;
    }
}

/* ==================================================
   footer / store
================================================== */
footer {}
/*store*/
footer .store div {
	border-top:1px solid #333; 
	border-bottom:1px solid #333; 
    padding: 5em 0;
}
footer .store h4 {
    font-size: 1.35em;
    margin-bottom: 0.5em;
}
footer .store p {
    font-size:0.85em;
}
footer .store .store-list {
    margin: 3em 0 1em;
}
footer .store .store-list li {
    margin-bottom:1.5em;
}
footer .store .store-list li:last-child {
    margin-bottom:0;
}
footer .store .store-list a {
    margin-left: .75em;
}
footer .store .store-list a { 
    color:#FFF;
    text-decoration:none;
    transition: .2s ease-in-out;
}
footer .store .store-list a:link {
    color:#FFF;
    text-decoration:none;
    transition: .2s ease-in-out;
    border-bottom: 0px solid #FFF;
}
footer .store .store-list a:visited {
    color:#FFF;
}
footer .store .store-list a:hover { 
    color:#8F8E8E;
    border-bottom: 1px solid #8F8E8E; 
}
footer .store .store-list a:active { 
    color:#FFF;
}
/* copyright */
footer .copyright {}
footer .copyright h6 {    
    line-height: 1;
    font-family:helvetica;
    font-size: 12px;
    padding: 2.5em 0 5em;
}

/* ==================================================
    SCROLL UP
================================================== */
.scroll-up {
    width: 3em;
    height: 3em;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    background-color: rgba(0,0,0,0.1);
    transition: 0.3s;
    overflow: hidden;
    position: fixed;
    z-index:100;
	right: 1.25em; 
	top:  1.25em;
    opacity: 0;
    }
.scroll-up:hover {
    border: 1px solid rgba(255,255,255,0.3);
    background-color:rgba(255,255,255,0.3);
    opacity: 0.5;
}
.scroll-up a {
    width:100%;
    height: 100%;
	background-color:rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    }
.scroll-up a:after {
    content:"";
    display:block;
    transform: rotate(45deg);
    width: 1em;
    height: 1em;
    margin-top: .5em;
    border-top: 1px solid #FFFFFF;
    border-left: 1px solid #FFFFFF;
}

