@import url('https://fonts.googleapis.com/css2?family=DotGothic16&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Dots&display=swap');

html,body,a,p,ul,li,h1,h2,h3,h4,h5,h6,figure,dl,dt,dd{margin:0;padding:0;}

*{
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
}


@font-face {
	font-family: 'nationalyze';
	src: url(../font/nationalyze.ttf);
    
}


html{
     overflow-x: clip;
}
body{
     overflow-x: clip;
    -webkit-touch-callout:none;
    color: #fff;
   font-family: YakuHanJP,"sicuniversallinedsp-d", sans-serif;
font-weight: 600;
font-style: normal;
    letter-spacing: 0.02em;
     font-size: 13.6px;
    word-break: break-all;
    
}

body:after{
    content: "";
    display: block;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
     background: -webkit-linear-gradient(-45deg, #10164a,#1c2c79,#20499e 45%,#20499e 55%, #1c2c79, #10164a);
    z-index: -2;
}
.glitch{
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100lvh;
    mix-blend-mode: screen;
    z-index: -1;
    
}
.glitch video{
    opacity: 0.1;
}
.glitch:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#111 30%, transparent 31%), radial-gradient(#111 30%, transparent 31%);
    background-size: 4px 4px;
    background-position: 0 0, 2px 2px;
}
.grid-back{
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100lvh;
    z-index: -1;
    background-image: linear-gradient(0deg, transparent 61px, rgba(255,255,255,.1) 62px), linear-gradient(90deg,  transparent 61px, rgba(255,255,255,.1) 62px);
background-size: 62px 62px;
    
}
video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
img{
    width: 100%;
    height: auto;
    pointer-events: none;
    user-select: none;
    display: block;
    font-size: 0;
    
}

a{
    color: inherit;
    text-decoration: none;
}


li{
    list-style-type: none;
}


.youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;

}

.youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}


.sp{
    display: none;
    
}


@media screen and (max-width: 896px){
    .pc{
        display: none;
    }
    
    .sp{
        display: block;
    }
}

.nav-btn{
    display: none;
}
nav{
    position: fixed;
    top: 40px;
    right: 28px;
    z-index: 999;
   font-weight: 800;
    color: #fff;
    font-weight: normal;
    font-size: 16px;
    text-align: right;
    letter-spacing: 0.1em;
    font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  font-style: normal;
    font-style: italic;
  mix-blend-mode: difference;
    opacity: 0;
    transition-duration: 1s;
    pointer-events: none;
}


.wrap.active nav{
    opacity: 1;
    pointer-events: auto;
}


nav li{
    margin-bottom: 20px;
}

nav::-webkit-scrollbar{
  display:none;
}

nav a{
    padding: 0.2em;
    display: inline-block;
}
nav a small{
    font-size: 12px;
    margin-left: 2px;
}
.scroll-area{
    width: 100vw;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transition-duration: 0.5s;
    
}
.scroll-down{
    position: absolute;
    top: 50%;
    left: 50%;
    mix-blend-mode: difference;
    transform: translate(-50%,-50%);
    width: 300px;
   
}
.scroll-down span:nth-child(1){
     animation:30s linear infinite rotation1;
    display: block;
}
@keyframes rotation1{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}
.scroll-down span:nth-child(2){
    width: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    animation: floating-y 1s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
  0% {
    transform: translate(-50%,-70%);
  }
  100% {
   transform: translate(-50%,-30%);
  }
}
.scroll-area:not(.active){
    opacity: 0;
    pointer-events: none;
}
.scroll-area img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wrap{
    width: 100vw;
    
    
   
}
.wrap:not(.active){
   height: 100dvh;
    overflow: hidden;
}
.hero{
    width: 100%;
    position: relative;
    background: #fff;
    overflow: hidden;
   
}

.hero .hero-logo{
    position: absolute;
    top: 3vw;
    left: 50%;
    transform: translateX(-50%);
    width: 45vw;
    z-index: 2;
   
}
.hero.active .hero-logo{
    animation: logo-fadein 1s forwards ease;
}

@keyframes logo-fadein {
  0% {
    opacity: 1;
      transform: translateX(-50%) scale(2);
      filter:blur(15px) brightness(5);
  }

  100% {
   opacity: 1;
      transform: translateX(-50%) scale(1);
     filter:blur(0px) brightness(1);
  }
}
.hero.active .mv{
    animation: mv-fadein 0.8s forwards ease;
    
}


@keyframes mv-fadein {
  0% {
    opacity: 0;
      filter:blur(5px) brightness(2);
  }

  100% {
   opacity: 1;
     filter:blur(0px) brightness(1);
  }
}
section{
    padding: 120px 0 0;
}
h2{
    font-family: 'nationalyze';
    color: #fff;
    font-size: 56px;
    text-align: center;
    font-style: italic;
    color: transparent;
	-webkit-text-stroke: 1px #fff;
    margin-bottom: 40px;
    font-weight: normal;
}


.inner{
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.profile-img{
    display: flex;
    gap:40px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.profile-img img{
    border: double 3px #fff;
}
#profile p{
    line-height: 2.2;
    text-align: justify;
   
}
#profile p span{
    display: block;
    text-align: center;
}
.news-list{
    border-top:  double 3px rgba(255,255,255,.5);
}
.news-list li{
  padding: 32px 0;
    border-bottom: double 3px rgba(255,255,255,.5);
   
}
.news-list a{
    display: flex;
    align-items: center;
    transition-duration: 0.2s;
    line-height: 1.4;
}
 .news-list a.no-link{
        pointer-events: none;
    }
.news-list a.hover{
    opacity: 0.5;
}
.news-list a .date{
    border-right: solid 1px #fff;
    margin-right: 20px;
    padding-right: 20px;
    font-size: 10px;
    font-family: "Zen Dots", sans-serif;
  font-weight: 400;
    font-style: italic;
    flex-shrink: 0;
}


.news-bottom-link{
    text-align: center;
    margin-top: 40px;
}

.news-bottom-link a{
    font-family: "Zen Dots", sans-serif;
  font-weight: 400;
    font-size: 18px;
    font-style: italic;
}
.no-swiper .swiper-slide{
    width: 90% !important;
    max-width: 1000px;
   margin: 0 auto;
}
.swiper-slide{
    width: 800px !important;
    margin: 0 20px;
}
.swiper-slide a{
    overflow: hidden;
    background: #000;
    display: block;
}
.swiper-slide a img{
    transition-duration: 0.2s;
}
.swiper-slide a.hover img{
    transform: scale(1.05);
    opacity: 0.5;
}

.common-btn{
    width: 320px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    border-radius: 100px;
    border: solid 2px #fff;
      font-family: "Zen Dots", sans-serif;
  font-weight: 400;
    font-style: italic;
    font-size: 18px;
}
footer{
    margin-top: 60px;
    text-align: center;
    padding-bottom: 40px;
}
.sns{
    display: flex;
    justify-content: center;
    font-size: 20px;
    gap:20px;
    margin-bottom: 16px;
}

.news-detail h3{
    font-size: 18px;
    border-bottom: double 3px rgba(255,255,255,.5);
    margin-bottom: 24px;
    padding-bottom: 24px;
    line-height: 1.4;
    
}

.news-detail-txt{
    line-height: 1.8;
}
.news-detail-txt a{
    text-decoration: underline;
}

.news-detail-txt img{
    width: auto;
    contain-intrinsic-width:auto !important;
    contain-intrinsic-width:auto !important;
    
}
.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.alignright {
  float: right;
  margin-bottom: 20px;
  margin-left: 20px;
}
.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
.wp-caption,
[class*='wp-image'] {
  display: block;
  max-width: 100% !important;
  margin-top: 1.5em;
  text-align: center;
}
.wp-caption-text {
  margin-top: 0;
}


@media screen and (max-width: 896px){
    
    body{
        font-size: 12px;
    }
    
    
.scroll-down{
    width: 200px;
   
}

    
    .nav-btn{
   display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 24px;
        right: 5%;
        z-index: 9999;
        mix-blend-mode: difference;
         font-family: "Zen Dots", sans-serif;
  font-weight: 400;
    font-style: italic;
        font-size: 14px;
        opacity: 0;
        transition-duration: 1s;
}
    .wrap.active .nav-btn{
    opacity: 1;
    pointer-events: auto;
}

    
    .nav-btn:not(.close) span:nth-child(2){
        display: none;
    }
    
    .nav-btn.close{
        mix-blend-mode: normal;
    }
     .nav-btn.close span:nth-child(1){
        display: none;
    }
    nav{
        display: none;
        top: 0;
        right: 0;
        height: 100dvh;
        width: 100%;
        text-align: center;
        background: rgba(0,0,0,.7);
        mix-blend-mode: normal;
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
    }
    nav.open{
    display: block;
}
        .nav-inner {
        width: 100%;
        min-height: 100dvh;
        display: flex;
        flex-flow: column;
        justify-content: center;
    }
    
    .hero .hero-logo{
        width: 80vw;
        top: 20vw;
        max-width: 600px;
    }
    section{
    padding: 80px 0 0;
}
h2{
    font-size: 36px;
    margin-bottom: 28px;
}



.profile-img{
    gap:12px;
    margin: 0 auto 28px;
}

.profile-img img{
    border: double 3px #fff;
}
#profile p{
    line-height: 2.4;
    text-align: justify;
   
}
#profile p span{
    display: block;
    text-align: center;
}
.news-list{
    border-top:  double 3px rgba(255,255,255,.5);
}
.news-list li{
  padding: 32px 0;
    border-bottom: double 3px rgba(255,255,255,.5);
   
}
.news-list a{
    display: block;
    align-items: center;
    transition-duration: 0.2s;
}
    
   
.news-list a.hover{
    opacity: 0.5;
}
.news-list a .date{
    border-right: none;
    margin-right: 0px;
    padding-right: 0px;
    margin-bottom: 10px;
    display: block;
}


.news-bottom-link{
    margin-top: 28px;
}

.news-bottom-link a{
    font-size: 16px;
}
    
.swiper-slide{
    width: 70vw !important;
    max-width: 800px;
    margin: 0 8px;
}
.swiper-slide a{
    overflow: hidden;
    background: #000;
    display: block;
}
.swiper-slide a img{
    transition-duration: 0.2s;
}
.swiper-slide a.hover img{
    transform: scale(1.05);
    opacity: 0.5;
}

.common-btn{
    width: 280px;
    height: 48px;
    font-size: 14px;
}
footer{
    margin-top: 40px;
    padding-bottom: 40px;
    font-size: 10px;
}
.sns{
    font-size: 20px;
    margin-bottom: 16px;
}
    
 .news-detail h3{
    font-size: 16px;
   
    
}   
    
}