@charset "UTF-8";
@media screen and (max-width: 970px) {

  .sp{ display: block !important; }
  .pc{ display: none !important; }
  


/* ここまでリセットcss */

    

.smartphone{
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    overflow: auto;
    background-color: #ffffff;
}

    
body {
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}    


/*==================================================
                メニューのcssここから
===================================================*/

.wrapper {
    height: 100%;
    /* overflow-x: hidden; */
    /* position: relative; */
  }
  .overlay {
    content: "";
    display: block;
    width: 0;
    height: 0;
    /* background-color: rgba(0, 0, 0, 0.8); */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    transition: opacity .5s;
  }
    
    
  .overlay3 {
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: #FFF;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    transition: opacity .5s;
  }    
    
  .overlay.open {
    width: 100%;
    height: 100vh;
    opacity: 1;
  }
  /* main.open {
    transform: translateX(-250px);
  } */
  .menu-trigger {
    display: inline-block;
    width: 8vw;
    height: 8vw;
    vertical-align: middle;
    cursor: pointer;
    position: fixed;
    top: 5vw;
    right: 4vw;
    z-index: 100;
    background-image: url(../images/menu_1.png);
    background-repeat: no-repeat;
    background-size: contain;
    transition: background-image 0.5s;

  /*   transform: translateX(0);
    transition: transform .5s;
   */}

   .menu-trigger.active {
    background-image: url(../images/menu_2.png);
    }
    
    .menu-trigger__ {
    display: block;
    width: auto;
    height: auto;
    vertical-align: middle;
    cursor: pointer;
    position: static;
    top: 7vw;
    right: 8vw;
    z-index: 100;
  /*   transform: translateX(0);
    transition: transform .5s;
   */}

   .menu-trigger_2 {
    display: inline-block;
    width: 3.911vw;
    height: 2.608vw;
    vertical-align: middle;
    cursor: pointer;
    position: fixed;
    top: 6.519vw;
    right: 3.911vw;
    z-index: 100;
    }

  /* .menu-trigger.active {
    transform: translateX(-250px);
  }
   */.menu-trigger span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: all .5s;
  }

  .menu-trigger_2 span {
    background-color: #000;
  }
  .menu-trigger.active span {
    background-color: #000;
  }
  
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(12px) rotate(-45deg);
  }
  .menu-trigger span:nth-of-type(2) {
    top: 7.5px;
  }
  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger span:nth-of-type(3) {
    width: 100%;
    bottom: 0;
  }
  .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-12px) rotate(45deg);
    width: 100%;
    bottom: -8px;
  }
  
  nav {
    width: 100%;
    height: 100%;
    background-color:#FFF;
    position: fixed;
    top: 20vw;
    right: 0;
    z-index: 20;
    transform: translate(100%);
    transition: all .5s;
    overflow: scroll;
  }
  nav.open {
    transform: translateZ(0);
  }

  nav.open::-webkit-scrollbar {  
    display: none; /*Google Chrome、Safari、Microsoft Edge対応のスクロールバー非表示コード*/
  }

  nav li {
    text-align: left;
    padding: 5% 0;
    font-size: 7vw;
  }

    .menu_{
    display: block;
    margin-top: 0;
    justify-content: center!important;
    align-items: center!important;
    }

    .menu_1{
        background-color: #984FFF;
        position: relative;
        height: 100vh;
        padding: 5vw 0;
    }

    .btn_sp{
        width: 90%;
        margin:  15% 5%;
    }


    /*==================================================
                メニューのcssここまで
    ===================================================*/



    /* ナビゲーション */

    .gnavi__list {
        width: 190px;
        height: 60px;
        position: relative;
        transition: all .3s;
    }
    .gnavi__list:hover {
    }

    .gnavi__list:not(:first-child)::before {
        content: "";
        width: 1px;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transition: all .3s;
    }
    .gnavi__list:hover::before {
        background-color: #0071BB;
    }
    .gnavi__list a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        text-decoration: none;
        font-size: 15px;
        letter-spacing: 0.05em;
        font-weight: 600;
        transition: all .3s;
    }
    .gnavi__list:hover a {

    }

    .dropdown__lists {
        display: none;/*デフォルトでは非表示の状態にしておく*/
        width: 200px;
        height: 120px;
        position: absolute;
        top: 60px;
        left: 0px;
        box-shadow: 0 2px 4px rgb(0 0 0 / 30%);
        z-index: 5;
        background-color: #FFF;
    }
    .gnavi__list:hover .dropdown__lists {
        display: block;/*Gナビメニューにホバーしたら表示*/
    }
    .dropdown__list {
        width: 190px;
        height: 50px;
        transition: all .3s;
        position: relative;
        margin-left: 0;
        padding-top: 25px;
    }
    .dropdown__list:not(:first-child)::before{
        content: "";
        width: 100%;
        height: 1px;
        position: absolute;
        top: 0;
        left: 0;
    }
    .dropdown__list:hover {
    }
    .dropdown__list a {
        display: flex;
        justify-content: left;
        align-items: left;
        text-decoration: none;
        position: relative;
        padding: 15px;
    }


    /* ハンバーガーメニュー */

    .menu_hum{
        margin: 0 auto;
        padding: 5% 0;
    }

    .menu_hum_no{
      margin-right: 5vw;
    }

    .header-check{
        display: none;
    }
    .header-label{
        position: relative;
        display: block;
        margin-bottom: 1px;
        text-align: left;
        font-size: 7vw;
        margin: 0;
    }

    .header-label:after{
        box-sizing: border-box;
        content: '';
        background-image: url(../images/plus.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 5vw;
        height: 5vw;
        display: block;
        font-family: "Font Awesome 5 Free";
        margin: 1.5% 0;
        position: absolute;
        right: 50vw;
        top: 0px;
    }
    .header-content{
        font-size: 3rem;
        display: block;
        height: 0;
        opacity: 0;
        padding: 0 5%;
        transition: .5s;
        visibility: hidden;
    }
    .header-check:checked + .header-label:after{
        background-image: url(../images/minus.png);
    }
    .header-check:checked + .header-label + .header-content{
        opacity: 1;
        padding: 7% 1% 95% 5%;
        visibility: visible;
    }

    .header-content p{
        margin-bottom: 5%;
    }
     
    

    .logo {
        position: relative;
        width: 45vw;
        top: 4vw;
        left: 5vw;
        z-index: 10;
    }






    header{
      position: fixed;
      width: 100vw;
      height: 20vw;
      top: 0vw;
      left: 0vw;
      z-index: 100;
      background-color: unset;
      overflow: hidden;
    }


    h1{
      margin: 0 0 18.519vw;
      text-align: center;
    }

    .about_h1{
        margin: 0 0 10vw;
    }
    
    h2{
        font-size: 9.63vw;
        text-align: center;
        margin-bottom: 9.259vw;
    }
  
  
    .smartphone{
      padding-top: 0!important;
  }
  .sec01{
      position: relative;
      color: #FFF;
  }
  
  .sec01_01{
      position: absolute;
      top: 0;
      width: 100%;
      height: auto;
      z-index: -1;
  }
  .sec01_copy{
      padding: 103vw 5vw 3vw;
  }
  .sec01_con{
      margin: 0 2.062vw;
      position: relative;
  }
  .sec01_con h2{
      margin: 0 0 75vw;
      line-height: 1.3;
  }
  .sec01_con img{
      position: absolute;
      top: 19vw;
      left: 0;
      right: 0;
      margin: 0;
      z-index: -1;
  }
  .sec01_con{
      margin-bottom: 50vw;
  }
  
  
  .sec02{
      background: linear-gradient(to bottom, #0AB3CB, #E847EB);
  }
  .sec02_con{
      padding: 0 0 25vw;
  }
  .sec02_con_{
    padding: 0 5vw;
}
  .sec02 .sec02_01{
      width: 92vw;
      margin: 14vw 1vw 8vw;
  }
  .sec02 .sec02_02{
      margin: 0 0 08vw;
  }
  .sec02 p{
      margin: 0 0 20vw;
  }
  .sec02 .sec02_03{
      width: 80vw;
      margin: 0 auto;
      padding-bottom: 10vw;
      display: block;
  }
  .sec02_con .slick-slide{
    padding: 0 3vw;
}
.sec02_con .slick-dots li:before {
    content: "";
    display: inline-block;
    width: 4vw;
    height: 4vw;
    background-image: url("../images/sec02_con_btn01.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    margin-left: 1.852vw;
    border: solid 0 #000!important;
    background-color: transparent;
}

.sec02_con .slick-dots .slick-active:before {
    content: "";
    display: inline-block;
    width: 4vw;
    height: 4vw;
    background-image: url("../images/sec02_con_btn02.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    margin-left: 1.852vw;
    border: solid 0 #000!important;
    background-color: transparent;
}

.sec02_con .slick-list{
  height: 55vw!important;
}

  .sec03{
      position: relative;
  }
  .sec03_01{
      position: absolute;
      top: 0;
      z-index: -1;
  }
  .sec03_02{
      width: 50vw;
      display: block;
      margin: 12vw auto 5vw;
  }
  .sec03_con{
      padding: 17vw 5vw 10vw;
      color: #FFF;
  }
  .sec03_con h2{
    font-size: 5vw;
    margin-bottom: 75vw;
  }
  .sec03_con ul li{
      margin-bottom: 12vw;
  }
  .sec03_con ul li:last-child{
      margin-bottom: 8.247vw;
  }
  .sec03 .slick-initialized .slick-slide{
      padding: 0 2.577vw;
  }
  .sec03 .slick-dots{
      display: none!important;
  }
  .sec03 .slider{
    margin-bottom: 10vw !important;
  }
  
  .sec04{
      position: relative;
      background: linear-gradient(to bottom, #8ABBE3, #E847EB);
  }
  .sec04_title{
    position: absolute;
    width: 65vw;
    top: -6vw;
    right: 16vw;
    margin: 0;
    z-index: 5;
  }
  .sec04 h2{
    padding: 8vw 0 0;
    margin-bottom: 5vw;
  }
  .sec04_copy{
    font-size: 5vw;
    font-weight: 600;
    margin-bottom: 15vw;
  }
  .sec4_con{
      margin: 0 2vw 0 6vw;
      padding-bottom: 5.155vw;
      display: flex;
      justify-content: space-between;
  }
  .sec4_con img{
      width: 42vw;
      border-radius: 2.062vw;
      margin-bottom: 3.093vw;
      margin-right: 2vw;
      box-shadow: 3px 3px 20px rgba(0, 152, 165, 0.5);
  
  }
  .sec4_con div:nth-child(2){
      margin-top: 10vw;
  }
  
  .main {
      background-image: url("../images/main_img.jpg");
      background-size: cover; /* 縦横比を維持しつつ、長い方にフィット */
      background-position: center; /* 中央に配置 */
      background-repeat: no-repeat; /* 繰り返しなし */
      width: 100vw; /* 横幅を画面いっぱい */
      height: 100vh; /* 高さを画面いっぱい */
    }
    
  .pc_copy{
      color: #FFF;
  }
  .pc_img{
      width: 25vw;
      max-width: 90.206vw;
  }
  .pc_copylight{
      color: #FFF;
  }
  .pc_menu_li a{
      color: #FFF;
  }
  .gnavi__list a{
      color: #FFF;
  }
  .arrow:after{
      background-image: url(../images/arrow.png);
  }
  .gnavi__list a{
      color: #000;
  }
  .gnavi__list .arrow{
      color: #FFF;
  }
  .gnavi__list a:hover {
      color: #984FFF;
  }

  nav{
    top: 0 !important;
  }
  .ft_btn{
    position: fixed;
    bottom: 3vw;
    right: 3vw;
    width: 20vw;
  }


}