@charset "utf-8";
/* common
-----------------------------------------------*/
body {
    background:#000;
    font-weight: 400;
    font-style: normal;
    font-family: 'Bebas Neue', sans-serif;
	color: #fff;
	font-size:1rem;
	line-height:1.85;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%; 
	word-wrap: break-word;
}
.font {
    font-weight: normal;
    font-style: normal;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}
h1,h2,h3,h4,h5,h6 {
    font-weight: 400;
    font-style: normal;
    font-family: 'Bebas Neue', sans-serif;
	font-size:1rem;
}
h1 {
    font-size:1.5rem;
	text-align: center;
	text-transform: uppercase;
}
h2 {
	font-size:1.75rem;
	text-align: center;
	margin: 0 0 20px 0;
}
h3 {
	font-size:1em;
    font-weight: bold;
	text-align: left;
	margin: 0 0 .25em 0;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}
ul {
	list-style: none;
}
p,ul {
	margin-top:20px;	
}
a {
    color:#333;
}
small {
	display: block;
    font-size: 1em;
}
img {
	max-width: 100%;
	height: auto;
}
.pc_only {}
.sp_only {display:none;}
@media screen and (max-width:768px) {    
    .pc_only {display:none;}
    .sp_only {display:block;}
}

/*Loading
---------------------------------------------*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999;
	background:#000;
	text-align:center;
	color:#fff;
    display: none;
}
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#splash_logo svg {
	width:200px;
}
#splash_logo mask .st0 {
    fill:none;
    stroke:#fff;
    stroke-width:200;
    stroke-miterlimit:10;
    stroke-dasharray: 1500;
    stroke-dashoffset:1500;
}
/*container
---------------------------------------------*/
#container {
	opacity: 0;
    position: relative;
    min-height: 100vh;
}
body.appear #container {
	animation-name:PageAnimeAppear;
	animation-duration:2.0s;
	animation-delay: .5s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes PageAnimeAppear{
	0%    {opacity:0;}
    30%    {opacity:0;}
	100%  {opacity:1;}
}
body.appear2 #container {
	animation-name:PageAnimeAppear2;
	animation-duration:1.0s;
	animation-delay: 0s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes PageAnimeAppear2{
	0%    {opacity:0;}
	100%  {opacity:1;}
}
/*header
---------------------------------------------*/
#header {
	position: fixed;
    z-index: 900;
    width:100%;
}
#header.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 1;
	transform: translateY(0);
  }
  to {
    opacity: 0;
	transform: translateY(-100px);
  }
}
#header.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}
#header h1 {
    position:fixed;
    left:1.15em;
    top:1.15em;
    width:5.5em;
    z-index: 9999;
}
/*navigation*/
#g-nav {
    position: absolute;
    z-index: 2;
    top:0;
    right:1.75em;
}
.gnavi {
	display: flex;
	justify-content: center;
	list-style: none;
    text-transform: uppercase;
    font-size: 1.25rem;
}
.gnavi a, .gnavi p {
	display: block;
	padding:10px 20px 5px;	
    color:rgba(255,255,255,1.0);
    text-decoration: none;
    position: relative;
    margin-top: 0;
}
.gnavi p {
    color:rgba(255,255,255,0.5);
}
.gnavi li.current a,
.gnavi li.current p {
     color:rgba(255,255,255,1.0);
}
.gnavi li a:hover {
	color:rgba(255,255,255,0.6);
}
.gnavi li a::after,
.gnavi li.current a::after,
.gnavi li.current p::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background:rgba(255,255,255,0.6);
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: left bottom;
    margin-top: 0;
    }
.gnavi li p::after{
    background:rgba(255,255,255,0.6);
}
.gnavi li.current p::after,
.gnavi li.current a::after,
.gnavi li a:hover::after{
    transform: scale(1,1);
    }
.gnavi .instagram {
    padding: 0 20px 0;
}
.gnavi .instagram a {
    background-image:url("../img/instagram.svg");
    background-size: contain;
    background-position: center 55%;
    display: block;
    width: 1em;
    height: 100%;
    padding: 0;
}
@media screen and (max-width:768px) {
    .circle-bg {
        position: fixed;
        z-index:3;
        width: 100%;
        height:50px;
        border-radius:0;
        transform: scale(0);
        left:0;
        top:0;
        transition: all 0.4s;
        background-color:rgba(0,0,0,0.0)
    }
    .circle-bg.circleactive {
        transform: scale(50);
        background-color:rgba(0,0,0,0.9)
    }
    #g-nav.panelactive {
        position:fixed;
        z-index: 999;
        top: 0;
        right: inherit;
        width:100%;
        height: 100vh;
        background-color:rgba(0,0,0,0.9)
    }
    #g-nav-list {
        display: none;
        position: fixed;
        z-index: 999; 
        width: 100%;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }
    #g-nav.panelactive #g-nav-list {
         display: block;
    }
    #g-nav.panelactive ul.fadeDown {
        opacity:1;
        flex-wrap:wrap;
        animation-name:none;
    }
    #g-nav.panelactive li {
        text-align: center; 
        width: 100%;
    }
    #g-nav.panelactive li a,
    #g-nav.panelactive li p {
        padding:25px 0 0px;
        display: block;
    }
    .gnavi .instagram {
        text-align: center;
        padding:25px 0 0px;
    }
    .gnavi .instagram a {
        margin: 0 auto;
    }
    .gnavi {
        display: block;
        /*opacity: 0;*/
        position: absolute;
        z-index: 999;
        top:50%;
        left:50%;
        transform:translate(-50%,-65%);
    }
    .gnavi li:nth-of-type(1) {animation-delay:.05s;}
    .gnavi li:nth-of-type(2) {animation-delay:.1s;}
    .gnavi li:nth-of-type(3) {animation-delay:.15s;}
    .gnavi li:nth-of-type(4) {animation-delay:.2s;}
    .gnavi li:nth-of-type(5) {animation-delay:.25s;}
    .gnavi li:nth-of-type(6) {animation-delay:.3s;}
    .gnavi li:nth-of-type(7) {animation-delay:.35s;}
    .gnavi li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 80%;
        height: 2px;
        background:rgba(255,255,255,0.6);
        transition: all .3s;
        transform: scale(0, 1);
        transform-origin: center top;
        }
    .gnavi li.current a::after {
        transform: scale(1,1);
        }
    .gnavi li.current a:hover::after,
    .gnavi li a:hover::after {
        transform: scale(1,1);
    }
    .gnavi li.instagram a::after {
        content: none;
    }
 }
/*SP button*/
.openbtn {
    display: none;
}
@media screen and (max-width:768px) {
    .openbtn {
        position:fixed;
        display: block;
        top:20px;
        right: 20px;
        z-index: 9999;
        width: 50px;
        height:50px;
        border-radius:0;
    }
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 2px;
        border-radius: 0;
        background: #fff;
      }
    .openbtn span:nth-of-type(1) {
        top:15px;	
        width: 45%;
    }
    .openbtn span:nth-of-type(2) {
        top:23px;
        width: 45%;
    }
    .openbtn span:nth-of-type(3) {
        top:31px;
        width: 45%;
    }
    .openbtn.active {
            background:rgba(95,25,133,0.0);
    }
    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 12.5px;
        transform: translateY(6px) rotate(-135deg);
        width: 50%;
    }
    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }
    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 12.5px;
        transform: translateY(-6px) rotate(135deg);
        width: 50%;
    }
}
/*video*/
#video-area {
    position: fixed;
    z-index: -1;
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
}
#video {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}
.video-open {
    position:absolute;
    z-index: 2;
    left:50%;
    top:50%;
    transform: translate(-50%,-50%);
    border: 2px solid #fff;
    background:transparent;
	display:inline-block;
	width:70px;
	height:70px;
	border-radius: 50%;
    transition: all .3s;
    outline:none;
}
.video-open:hover{
	background:rgba(95,25,133,0.5);
    border-color: transparent;
}
.video-open::after {
    content: '';
    position: absolute;
    left: -25%;
    top: -25%;
    width: 150%;
    height: 150%;
    border-radius: 50%;
    opacity: 1;
}
.video-open span::after {
    content: '';
    position: absolute;
    top: 35.5%;
    left: 43%;
    border: 14px solid transparent;
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-color: #fff;
}
/* modaal
-----------------------------------------------*/
.hide-area {
	display: none;
}
.modaal-close {
    position: fixed;
    right: 20px;
    top: 20px;
    color: #fff;
    cursor: pointer;
    opacity: 1;
    width: 50px;
    height: 50px;
    background: rgba(95,25,133,0.6);
    border-radius: 0%;
    -webkit-transition: all .2s ease-in-out;
    transition:all .2s ease-in-out
}
.modaal-close:focus, .modaal-close:hover {
    outline: 0;
    background:rgba(0,0,0,0.7);
}
.modaal-close:after, .modaal-close:before {
    display: block;
    content: " ";
    position: absolute;
    top: 12.5px;
    left: 50%;
    width: 2px;
    height:25px;
    border-radius: none;
    background: #fff;
    -webkit-transition: background .2s ease-in-out;
    transition:background .2s ease-in-out
}
.modaal-close:focus:after, .modaal-close:focus:before,
.modaal-close:hover:after, .modaal-close:hover:before {
    background:rgba(95,25,133,1.00);
}
.modaal-image .modaal-container {
    /*max-width: 80%;*/
}

@media only screen and (max-width: 1140px) {
    .modaal-image .modaal-inner-wrapper {
        padding-left: 25px;
        padding-right:25px
    }
    .modaal-inner-wrapper {
        padding: 80px 1.5em;
    }
    .modaal-video-wrap {
        margin: 0
    }
}


/* modaal window
-----------------------------------------------*/
.modaal-wrap {
    color: #000;
}
.modaal-wrap h3 {
    text-align: center;
    margin-bottom: 0.75em;
}
.modaal-wrap div {
    margin-bottom: 1.25em;
    font-size:0.8em;
}
.modaal-wrap a.link {
    text-align:center;
    margin-top: 1.25em;
}
.news-wrap div {
    margin-bottom: 1.25em;
    text-align: center;    
}
.profile-wrap div {
    margin-bottom: 1.25em;
}
.contact-wrap div {
    text-align: center;
    margin-bottom: 3em;
}
/* fadeDown
-----------------------------------------------*/
.fadeDown {
    animation-name: fadeDownAnime;
    animation-duration:0.8s;
    animation-fill-mode:forwards;
    opacity:0;
}
@keyframes fadeDownAnime {
  from {
    opacity: 0;
	transform: translateY(-100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}
.fadeDownTrigger {
    opacity: 0;
}
/* fadeIn
-----------------------------------------------*/
.fadeIn {
    animation-name: fadeInAnime;
    animation-duration:0.8s;
    animation-fill-mode:forwards;
    opacity:0;
}
@keyframes fadeInAnime {
    0%    {opacity:0;}
    30%    {opacity:0;}
	100%  {opacity:1;}
}
.fadeInTrigger {
    opacity: 0;
}
/*footer
---------------------------------------------*/
footer {
    position:fixed;
    left:0;
    bottom:1.25em;
    width:100%;
    text-align: center;
}
/* scroll up
---------------------------------*/    
#scroll-up {
    position: fixed;
    z-index:100;
	bottom: 4vw;
    right: 3.8vw;
    opacity: 0;
    transition: all 0.4s ease-in-out 0s;
    }
#scroll-up a {
    width:42px;
	padding:10px 10px 6px;
	line-height: 1;
	display: inline-block;
	color:#fff;
	background-color:rgba(45,24,55,1.00);
	-webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;     
    }
#scroll-up a:hover{
	background-color:rgba(0,0,0,0.5);
    }

@media screen and (max-width:768px) {
    body {
        font-size:0.8rem;
        }
    h1 {
        left:10px;
    }  
}


/*SUB PAGE COMMON
---------------------------------------------*/
.sub-page #loading-wrap {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999;
	background:#000;
	text-align:center;
	color:#fff;
}
.sub-page .common-width {
    margin: 0 auto;
    width: 94%;
    max-width: 1440px;
}
.sub-page .top-img {
    margin-bottom:4.5em;
    min-height: 700px;
    height: 40vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.sub-page .top-img_02 {
    margin-bottom:4.5em;
    min-height: 00px;
    height: 10vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.sub-page .fadeDown {
    animation-name:fadeInAnime;
    }
.sub-page #container {
    min-height: inherit;
    }
.sub-page #g-nav {
    position: fixed;
    }
.sub-page footer {
    margin-top: 5em;
    margin-bottom: 3em;
    position:inherit;
    left:inherit;
    bottom:inherit;
    }
/*profile*/
#profile .top-img {
    background-position: center top;
    background-image: url("../img/top-profile.jpg");
}
#profile .profile-text {
    line-height: 2.2;
}
#profile .text {
    margin: 0 auto;
    margin-bottom: 2em;
    text-align: center;
}
#profile footer {
    width: 100%;
    text-align: center;
    margin: 0;
    padding-top: 3em;
    padding-bottom: 2em;
    }

@media screen and (max-width:768px) {
    .sub-page .fadeDown {
        animation-name: fadeDownAnime;
    }
    .sub-page .common-width {
        width: 100%;
    }
    .sub-page .top-img {
        width: 100%;
        height: 42vh;
        min-height: 380px;
        margin-bottom: 2.75em;
    }
    .sub-page footer {
        margin-top:3em;
    }
    #profile footer {
        padding-top:2em;
        position: fixed;
        z-index: 100;
        left:0;
        bottom:0;
        background-color: rgba(0,0,0,1.00);
    }
    #profile .text {
        width: 80%;
        text-align: left;
    }
}