@charset "utf-8";
*{
    margin: 0px;
    padding: 0px;
    list-style: none;

}

a{
    text-decoration: none;
}

.no-scroll{
    overflow: hidden;
}

/* 下から出てくるアニメーション */

.offs{
    opacity: 0;
    transform: translate(0, 100px);
    -webkit-transform: translate(0, 100px);
  }

  .ons{
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition: all 2s ease;
    transition: all 2s ease；;
  }

/* フェードイン */

.fadeIn{
    animation-name:fadeInAnime;
    animation-duration: 2s;
    animation-fill-mode:forwards;
    opacity:0;
    animation-delay: 0.5s;
    }
    
    @keyframes fadeInAnime{
      from {
        opacity: 0;
      }
    
      to {
        opacity: 1;
      }
    }

.delay{
  animation-delay: 1.5s;
}

.hide-top{
    transform: translateY(-100%);
}

.hide-under{
    opacity: 0;
}

body{
    background-color: #f7f7f7;
}

.loaded{
    opacity: 0;
    visibility: hidden;
}

.loading-display{
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background-color: #000;
    color: #fff;
    z-index: 99999;
    position: fixed;
    top: 0;
    left: 0;
    transition: all 1s;
}

.ring{
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    animation: ring 2s linear infinite;
}

@keyframes ring{
    0%{
        transform: rotate(0deg);
        box-shadow: 1px 5px 2px #fff;
    }
    50%{
        transform: rotate(180deg);
        box-shadow: 1px 5px 2px #fff;
    }
    100%{
        transform: rotate(360deg);
        box-shadow: 1px 5px 2px #e65c00;
    }
}

.ring:before{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(255,255,255,0.3);
}

span{
    color: #737373;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 200px;
    animation: text 3s ease-in-out infinite;
}
@keyframes text{
    50%{
        color: black;
    }
}


.header{
    height: 100px;
    width: 100%;
    position: fixed;
    z-index: 10000;
    transition: 0.5s;
    /* 背景透過*/
    background:rgba(0,0,0,0);
    /*opacity: 0.9;
    border-bottom: 1px solid;*/
}

.header_container{
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.header_wrapper{
    width: 100%;
    height: 100%;
     display: flex;
     justify-content: space-between;
}

.header_logo{
    width: 20%;
    height: 100%;
    text-align: center;
}

.header_logo img{
    height: 100%;
    filter: invert(100%);
}

.header_inner{
    height: 100px;
}

.header_snsList{
    width: 350px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
}

.header_link{
    color: #fff;
    font-size: 40px;
    transition: 0.3s;
}

.header_link:hover{
    color: rgb(0, 127, 177);
}

.note_logo{
    width: 100px;
}

.note_logo:hover{
    opacity: 0.6;
    transform: scale(1.1,1.1);
}

.header_nav{
    width: 550px;
    font-family: 'Anton', sans-serif;
    letter-spacing: 1.5px;
}

.nav_main{
    height: 100%;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_nav_item{
    width: 25%;
    height: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
}

.header_nav_item a{
    width: 100%;
    padding-top: 40px;
    color: #fff;
    transition: 0.3s;
}

.header_nav_item a:hover{
    color:rgb(63, 198, 252);
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.267);
}

#nav_PlayCollection{
    padding-top: 30px;
}

#mobile_menu_btn{
    display: none;
}

/* bg透明化 */

.op0{
    opacity: 0;
    }
    
.op1{
    opacity: 1;
    }

#fix_bg{
    width: 100vw;
    transition: 0.5s;
    position: fixed;
    z-index: -100;
    filter: brightness(0.3);
    overflow: hidden;
}

#fix_bg img{
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: 0 -50px;
}

#fix_bg2{
    width: 100vw;
    transition: 0.5s;
    position: fixed;
    z-index: -101;
    filter: brightness(0.5);
    overflow: hidden;
}

#fix_bg2 img{
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: top;
}

/*　main */

main{
    position: relative;
}

/* main-visual */
/*
.main-visual-container{
    background-image: url(../image/fukiproject_logo.jpg);
    background-size: cover;
    background-position-y: -300px;
    background-color: rgba(0,0,0,0.3);
    background-blend-mode: darken;
*/

.main-visual-container{
    position: relative;
}

#bg-video{
    width: 100%;
    height: 100%;
    position: absolute;
    background: url(../image/bg-logo.png) no-repeat center/cover;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
  }
  
#bg-video::after{
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0, .3);
    display: block;
    position: absolute;
    left: 0;
    top: 0;
  }
  
#bg-video video{
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }

.main-visual-wrapper{
    width: 80%;
    margin: 0 auto;
    padding-top: 100px;
    position: relative;
}

.main-visual-images{
    position: relative;
    height: max(48vw,600px);/*　　*/
}

.main-visual-image{
    position: absolute;
    bottom: 0px;
    right: 4vw;
    width: 37vw;
    min-width: 450px;
}

.mvi-1{
    z-index: 3;
}

.mvi-2{
    right: 7vw;
    z-index: 2;
    opacity: 0.6;
}

.mvi-3{
    right: 10vw;
    z-index: 1;
    opacity: 0.2;
}

.main-visual-name{
    font-size: max(9vw,50px);
    letter-spacing: 7px;
    font-family: 'Anton', sans-serif;
    z-index: 100;
    /*立体エフェクト*/
    position: absolute;
    top: 55%; 
    right: 50%;
    transform: translate(50%,-50%) scale(1,0.9);
    font-weight: 700;
    color: #f5f5f5;
    text-shadow: 0px 20px 8px rgba(0, 0, 0, 0.4),
                    3px 3px 3px #000, -3px -3px 3px #000,
                    -3px 3px 3px #000,  3px -3px 3px #000,
                    3px 0px 3px #000, -3px -0px 3px #000,
                    0px 3px 3px #000,  0px -3px 3px #000;

    /*
    text-shadow: 1px 1px 1px #919191,
        1px 2px 1px #919191,
        1px 3px 1px #919191,
        1px 4px 1px #919191,
        1px 5px 1px #919191,
        1px 6px 1px #919191,
        1px 7px 1px #919191,
        1px 8px 1px #919191,
        1px 9px 1px #919191,
        1px 10px 1px #919191,
    1px 18px 6px rgba(16, 16, 16, 0.4),
    1px 22px 10px rgba(16,16,16,0.2),
    1px 25px 35px rgba(16,16,16,0.2),
    1px 30px 60px rgba(16,16,16,0.4);*/

}

.main-visual-firstname{
    transform: rotate(-3deg);
}

.main-visual-lastname{
    transform: rotate(-3deg);
    padding-left: 10px; 
}

.name-title{
    text-align: right;
    font-size: max(2vw, 20px);
    transform: rotate(-3deg);
    text-shadow: 0px 10px 8px rgba(0, 0, 0, 0.4),
    1px 1px 3px #000, -1px -1px 3px #000,
    -1px 1px 3px #000,  1px -1px 3px #000,
    1px 0px 3px #000, -1px -0px 3px #000,
    0px 1px 3px #000,  0px -1px 3px #000;;
}

/* ABOUT */

.section-header{
    text-align: center;
    padding-top: 80px;
    font-size: min(30px,max(25px,2vw));
    font-family: sans-serif;
    color: #fff;
}

#about{
    font-family: sans-serif;
    padding-bottom: 200px;
    
}

.about-header{
    color: #fff;
}

.about-header::after{
    width: 80%;
}

/*
.about_bg{
    padding-bottom: 200px;
    background-image: url(../image/16.jpg);
    background-size: cover;
    background-position-y: -300px;
    background-color: rgba(0,0,0,0.3);
    background-blend-mode: darken;
}
*/

.about-wrapper{
    width: 100%;
    margin: 0 auto;
    padding-top: 80px;
    display: flex;
    justify-content: center;
    column-gap: 4vw;
    flex-wrap: wrap;
    transform: translateY(30px);
}



/*
.about-image img{
    width: 28vw;
    min-width: 350px;
    margin: 0;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgb(0, 2, 133);
}
*/

.about-text{
    width: 450px;
    margin-bottom: 100px;
    color: #fff;
    font-family: sans-serif;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 2em;
}

.about-text p{
    margin-bottom: 20px;
}

.about-contents{
    width: 450px;
    color:  #fff;
    text-align: center;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-contents h5{
    font-size: clamp(1rem,3vw,1.5rem);
    margin-top: min(20vw,20px);
}

.profile,.career{
    width: 100%;
}

.profile{
    padding-bottom: min(20vw,100px);
}

.career h4{
    font-size: clamp(1.5rem,3vw,2rem);
    margin-bottom: 30px;
}
/*
.about-contents dt{
    color: #fff;
    font-size: 1.5rem;
    padding-bottom: 5px;
    font-weight: bold;
}

.li-row{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.about-dl{
    width: 50%;
    margin-bottom: 20px;
}

.student-career > dt{
   text-align: center;
    padding-bottom: min(10vw,75px);
}

.student-career dd{
    display: flex;
    justify-content: space-between;
}

.student-career-content-left{
    width: 33%;
    text-align: left;
}

.student-career-content-right{
    width: 60%;
    text-align: left;
}

.student-career-content > li{
    padding-bottom: 20px;
}

.junior-high-school{
    margin-top: 10px;
    margin-bottom: 25px;
}

.high-school{
    margin-bottom: 15px;
}
*/

/* PlayCollection */

#PlayCollection{
    padding-bottom: 100px;
}

.PC-wrapper{
    padding-top: 3vw;
}

.PC-contents{
    padding-top: min(10vw,75px);
    padding-bottom: min(10vw,75px);
    margin: 0 auto;
    margin-bottom: min(10vw,75px);
    position: relative;
    width: 60%;
    display: block;
    overflow: hidden;
}

.box__line {
    position: absolute;
}
  
  .box__line:nth-child(1),
  .box__line:nth-child(3) {
    width: 100%;
    height: 2px;
}
  
  .box__line:nth-child(2),
  .box__line:nth-child(4) {
    width: 2px;
    height: 100%;
}
  
  .box__line:nth-child(1) {
    top: 0;
    left: 0;
    background: linear-gradient(to right, transparent, white);
    animation: animate1 2s linear infinite;
  
}
  
  
  
  .box__line:nth-child(2) {
    top: 0;
    right: 0;
    animation: animate2 2s linear infinite;
    animation-delay: 1s;
    background: linear-gradient(to bottom, transparent, white);
}
  
  
  .box__line:nth-child(3) {
    bottom: 0;
    left: 0;
    background: linear-gradient(to left, transparent, white);
    animation: animate3 2s linear infinite;
}
  
  
  .box__line:nth-child(4) {
    top: 0;
    left: 0;
    background: linear-gradient(to top, transparent, white);
    animation: animate4 2s linear infinite;
    animation-delay: 1s;
}
  
  
  @keyframes animate1 {
  
    0% {
      transform: translateX(-100%);
    }
  
    100% {
      transform: translateX(100%);
    }
}
  
  @keyframes animate2 {
  
    0% {
      transform: translateY(-100%);
    }
  
    100% {
      transform: translateY(100%);
    }
  
}
  
  @keyframes animate3 {
  
  
    0% {
      transform: translateX(100%);
    }
  
    100% {
      transform: translateX(-100%);
    }
  
}
  
  @keyframes animate4 {
  
  
    0% {
      transform: translateY(100%);
    }
  
  
    100% {
      transform: translateY(-100%);
    }
  
}

.PC-title{
    width: 100%;
    text-align: center;
}

.PC-title h2{
    font-size: clamp(1.25rem,2.5vw,30px);
    font-weight: bold;
    color: #fff;
}
.PC-movie{
    width: 90%;
    max-width: 720px;
    aspect-ratio: 16/9;
    margin: 0 auto;
    padding-top: 15px;
}

.PC-movie .twitter-tweet{
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding-bottom: 10em;
}

/* PROJECT */

#project{
    padding-bottom: 150px;
    position: relative;
    background-color: #e5e5e5;
    background: url(../image/28.JPG) no-repeat center/cover;
    background-position-y: -300px;
    background-attachment: fixed;
}

#project::before{
    content: '';
    pointer-events: none;
    background-color: rgba(229,229,229,.8);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}


.project-header{
    position: relative;
    color: #000;
}

.project-wrapper{
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding-top: 80px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 3vw;
    row-gap: 50px;
}




.project-content{
    text-align: center;
    overflow: hidden;
    /* ３列
    width: 360px;
    height: 262px;
    */

    width: 400px;
    height: 266px;
    border-radius: 10px;
    border: 1px solid rgb(0, 127, 177);
    transition: 0.5s;
    box-shadow: 1px 1px 20px rgba(0,127,177,0.2);
}

.project-content:hover{
    opacity: 0.7;
    transform: scale(1.1,1.1);
}

.comingsoon{
    pointer-events: none;
}

.project-content-image{
    margin: 0 -50%;
    height: 100%;
}

.awc-image{
    width: 100%;
}

.clinic-image{
    margin: 0;
    height: 150%;
}

.personal-lecture-image{
    margin: -20% 0 0 0;
    height: 250%;
}


.project-item{
    text-align: center;
    padding-top: 20px;
}

.project-item > a{
    color: rgb(0, 127, 177);
    transition: 0.2s;
    font-family: sans-serif;
    text-decoration: underline;
}

.project-item > a:hover{
    color: rgb(63, 198, 252);
    text-decoration: none;
}


/* SPONCOR */

#sponsor{
    padding-bottom: 100px;
    background-color: #000;
}

.sponsor-header{
    color: #f7f7f7;
}

.sponsor-wrapper{
    width: 95%;
    margin: 0 auto;
    margin-bottom: 10rem;
    padding-top: 100px;
    text-align: center;
}

.sponsors-sub-header{
    text-align: center;
    font-size: min(30px,max(25px,2vw));
    padding-bottom: 3.5rem;
    font-family: sans-serif;
    color: #fff;
}

.corporate .sponsor-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.sponsor-logo{
    text-align: center;
    min-width: 320px;
    margin-bottom: 3rem;
}

.four-project{
    width: 33.3%;
}

.morishika{
    width: 20%;
}

.sponsor-logo img{
    width: 100%;
    object-fit: cover;
    vertical-align: middle;
}

.corporate-name{
    padding-top: 2rem;
}

.personal-name-wrapper{
    text-align: center;
}

.corporate-name a,.personal-name{
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
}

/* CONTACT */

.contact-header{
    color: #fff;
    width: 80%;
    margin: 0 auto;
}

.contact-header h1{
    padding-bottom: 15px;
}

.contact-header p{
    font-size: 14px;
    font-weight: 300;
}

.contact-form{
    width: 70%;
    padding-top: 100px;
    margin: 0 auto;
    padding-bottom: 100px;
}

form{
    max-width: 525px;
    margin: 0 auto;
}

.form-item{
    color: #fff;
    margin-left: 5px;
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
}

.required::after {
    content: "必須";
    background-color: #f04e4e;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    min-width: 10px;
    padding: 3px 7px;
    margin: 0px 5px;
    line-height: 1;
    vertical-align: middle;
    white-space: nowrap;
    text-align: center;
    border-radius: 10px;
    display: inline-block;
  }

input,textarea{
    border-radius: 5px;
    padding: 15px 10px 15px 10px;
    border: 1px solid #cecece;
    background: #ffffff;
    color: #333;
    width: 100%;
    max-width: 100%;
    font-size: 15px;
}

input,textarea,button{
    margin-top: 5px;
    margin-bottom: 24px;
}

textarea{
    padding-bottom: 50px;
}

button{
    background-color: rgb(0, 127, 177);
    padding: 15px 0;
    margin-left: 27%;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid rgb(0, 127, 177);
    -webkit-transition: .5s;
    transition: 0.5s;
    display: inline-block;
    cursor: pointer;
    width: 50%;
    color: #fff;
    font-size: 17px;
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

button:hover{
    background-color: rgb(0, 162, 226);
    border-color: rgb(0, 162, 226);
    transform: scale(1.1,1.1);
}

.header_inner_under{
    display: none;
    transition: 0.5s
}


footer{
    background-color: #000;
    color: #fff;
    height: 100px;
    position: relative;
}

.footer-wrapper{
    font-family: sans-serif;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translate(0,-50%);
}


/* タブレット以下 */

@media screen and (max-width: 959px){

    .header_container{
        width: 85%;
    }

    .header_inner{
        margin-right: 30vw;
    }

    .header_nav{
        position: fixed;
        width: 300px;
        top: -15px;
        right: -300px;
        background-color: #fafafa;
        height: 100vh;
        padding: 60px 0 0 0;
        list-style: none;
        z-index: 50;
        font-family: 'Anton', sans-serif;
        letter-spacing: 1.5px;
    }

    #mobile_menu_btn{
        position: absolute;
        width: 45px;
        height: 50px;
        right: 18%;
        cursor: pointer;
        margin-top: 30px;
        display: inline-block;
    }
    
    .bar,.bar::before,.bar::after{
        background-color: #fff;
        display: block;
        width: 35px;
        height: 3px;
        position: absolute;
        top: 0px;
        left: 0px;
        bottom: 0px;
        right: 0px;
        margin: auto;
        border-radius: 5px;
    }
    
    .bar::before,.bar::after{
        content:"";
    }
    
    .bar::before{
        top: -15px;
    }
    
    .bar::after{
        bottom: -15px;
    }

    .nav_main{
        position: fixed;
        display: block;
        width: 300px;
        top: -15px;
        right: -300px;
        background-color: #1a1a1a;
        height: 100vh;
        padding: 60px 0 0 0;
        list-style: none;
        z-index: 50;
    }

    .header_logo{
        margin-right: 5vw;
    }

    .header_snsList{
        width: 35vw;
        min-width: 250px;
    }

    .header_link{
        font-size: max(30px,3vw);
    }

    .header_nav_item{
        width: 100%;
        height: 10%;
        text-align: left;
    }

    .header_nav_item:hover{
        background-color: rgb(58, 58, 58);
    }

    .header_nav_item a{
        color: #fafafa;
        padding: 30px 0px 6px 30px;
        display: block;
    }

    #nav_PlayCollection{
        padding: 20px 0px 16px 30px;
    }

    #menu_slide_overlay{
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: 49;
        transition: 0s;
        display: none;
    }

    /* ABOUT */

    .about_bg{
        background-position-y: 0;
    }
    
    .student-career{
        padding-top: 50px;
    }

    /* PROJECT */

    #project{
        background-position-y: 0;
    }

    /* PLAYCOLLECTION*/

    .PC-contents{
        width: 90%;
    }

      .box__line:nth-child(2) {
        animation-delay: 0.95s;
    }
      
}

/* スマホ */



@media screen and (max-width: 600px){

    .about-text{
        font-size: 18px;
        margin-top: 0;
    }

    .header_logo img{
        height: 70px;
        padding-top: 18px;
    }

    .header_inner{
        display: none;
    }

    .header_inner_under{
        display: inline-block;
        bottom: 0;
        width: 100%;
        height: 70px;
        z-index: 1000;
    }

    .header_snsList{
        width: 80%;
        margin: 0 auto;
        margin-top: 15px;
    }

    .header_link{
        font-size: 30px;
    }

    .header_nav_item a{
        padding: 18px 0px 18px 30px;
    }

    #nav_PlayCollection{
        padding: 5px 0px 0px 30px;
    }

    /* fix_bg */

    #fix_bg img{
        object-position: -10vw 0px;
    }

    #fix_bg2 img{
        object-position: right;
    }

    /* main-visual */

    .main-visual-images{
        height: 450px;
    }

    .main-visual-image{
        right: -10vw;
        width: 60vw;
        min-width: 300px;
    }

    .mv1-1{
        z-index: 3;
    }

    .mvi-2{
        right: -7vw;
        z-index: 2;
        opacity: 0.6;
    }
    
    .mvi-3{
        right: -4vw;
        z-index: 1;
        opacity: 0.2;
    }

    .main-visual-name{
        font-size: max(10vw, 20px);
        top: 60%;
    }

    .name-title{
        font-size: max(2vw,18px);
    }

    /* ABOUT */

    .about-text,.about-contents{
        width: 80%;
    }

    .student-career{
        width: 100%;
    }

    .student-career > dt{
        width: 100%;
    }

    /* PROJECT */

    .project-content{
        width: min(80vw,360px);
        height: min(53.3vw,262px);
    }

    /* PLAYCOLLECTION */

    .PC-contents{
        width: 100%;
    }

    .box__line:nth-child(2) {
        animation-delay: 0.9s;
    }

    /* FORM */
    button{
        width: 90%;
        margin-left: 6%;
    }

}