html { scroll-behavior: smooth;}

body{
    font-feature-settings: "palt";
    font-family: 'Noto Sans JP', sans-serif;
}

img{
    max-width: 100%;
    max-height: 100%;
}
a{
    text-decoration: none;
    transition: .5s cubic-bezier(0.45, 0, 0.55, 1);
}
h1, h2, h3, h4, h5 {
    margin: 0;
}
ul{
    list-style: none;
    padding: 0;
}

header{
    position: fixed;
    height: 60px;
    width: 100%;
    background-color: #fff;
    z-index: 100;
    display: flex;
    justify-content:space-between;
    top: 0;
}
header .logo{
    width: auto;
    height: 60px;
}
.menu{

}
.menu ul{
    display: flex;
}
.menu ul li{
    list-style: none;
    margin: 0 1vw;
}
.menu ul li a{
    font-size: 15px;
    font-weight: 600;
}
.sns{

}
.sns ul{
    display: flex;
    align-items: center;
}
.sns ul li{
    list-style: none;
    margin: 0 0.5vw;
}
.sns ul li a{
    width: 32px;
    display: block;
}
.sns ul li.no9{
    width: 80px;
}
.main{
    margin-top: 65px;
}
.wrapper{
    width: 960px;
    margin: 0 auto;
}
.flex{
    display: flex;
}
.flextime{
    display: flex;
}



/* 背景色が流れてくる */
.bg .bg-wrap {
    position: relative;
    display: inline-block;
    margin-top: 5px;
  }
  .bg.is-animated .bg-wrap::before {
    animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    background: linear-gradient(to right, #1F59FF 0%,#FF60FF 100%);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: left center;
  }
  .bg .bg-wrap .inn {
    color: #fff;
    display: inline-block;
    font-size: 36px;
    font-weight: bold;
    padding: 2px 2px;
    position: relative;
    z-index: 1;
  }
  
  @keyframes bg {
    0% {
      opacity: 0;
      transform: scaleX(0) translateX(-5%);
    }
    30% {
      transform: scaleX(1) translateX(0);
    }
    100% {
      transform: scaleX(1) translateX(0);
    }
    30%, 100% {
      opacity: 1;
    }
  }



  #gaiyo{}
  #gaiyo .wrapper{}
  #gaiyo .left{}
  #gaiyo .right{}


  #gaiyo{
    padding: 60px 0;
  }
  #gaiyo .wrapper{}
  #gaiyo .left{
    width: 300px;
    flex-shrink: 0;
  }
  #gaiyo .left .mov{
    cursor: pointer;
    overflow: hidden;
    border-radius: 20px;
    transition: .5s cubic-bezier(0.45, 0, 0.55, 1);

  }
  #gaiyo .left .mov:hover{
    opacity: 0.6;
    box-shadow: 0 0 36px #c0c2e9;
  }
  #gaiyo .right{
    flex: 1;
    margin-left: 50px;
  }
  #gaiyo .right h1{
    font-size: 24px;
  }
  #gaiyo .right h2{
    font-size: 40px;
  }
  #gaiyo .right h2 span.hdt{
    font-size: 24px;
    display: block;
    margin-bottom: 12px;
  }
  #gaiyo .right h2 .col{
    background: linear-gradient(90deg, #0073FF 0%, #FF0C7D 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }
  #gaiyo .right p.h7{
    font-size: 16px;
    letter-spacing: 0.15rem;
    line-height: 1.6;
    margin-bottom: 40px;
  }
  #gaiyo .right p.bold{
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1.3px;
    line-height: 1.7;
  }

  .video{
    width: 400px;
    height: auto;
    line-height:100%;
  }
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0,0,0,50%);
    padding: 40px 20px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-sizing: border-box;
    z-index: 1000;
  }
  /*モーダル本体の擬似要素の指定*/
  .modal-container:before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }
  /*モーダル本体に「active」クラス付与した時のスタイル*/
  .modal-container.active{
    opacity: 1;
    visibility: visible;
  }
  /*モーダル枠の指定*/
  .modal-body{
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 400px;
    width: 90%;
  }
  /*モーダルを閉じるボタンの指定*/
  .modal-close{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -40px;
    right: -40px;
    width: 40px;
    height: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
  }
  /*モーダル内のコンテンツの指定*/
  .modal-content{
    background: #fff;
    text-align: left;
    padding: 0px;
    display:flex;
    align-items: end;
  }





  #time{
    padding: 70px 0;
  }
  #time .wrapper{}
  #time .left{
    width: 69px;
  }
  #time .right{
    flex: 1;
    margin-left: 50px;
  }
  #time .right .flextime{
    display: flex;
    margin-bottom: 15px;
  }
  #time .right .timeline{
    width: 120px;
    position: relative;
  }
  #time .right .timeline .lne{
    width: 2px;
    background: #DEDEDE;
    height: 100%;
    position: absolute;
    top: 0;
    left: 5px;
  }
  #time .right .times{
    font-family: "Oswald", serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 2px;
    background-color: #fff;
    position: sticky;
  top: 80px;
  z-index: 10;
  }

  #time .right .min{
    font-family: "Oswald", serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: #000;
    width: 62px;
    padding: 3px 5px;
    border-radius: 4px;
    text-align: center;
    margin-left: 13px;
    position: sticky;
  top: 125px;
  }
  #time .right .conts{
    flex: 1;
    padding-bottom: 30px;
  }
  #time .right .conts h5{
    font-family: "Oswald", serif;
    font-size: 22px;
    letter-spacing: 2px;
    font-weight: 500;

  }
  #time .right .conts .tit{}
  #time .right .conts .bodytext{
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    font-weight: 600;
  }
  #time .right .conts .pipo .bg-wrap .inn{}
  #time .right .conts .pipo .porson{
    width: 25%;
    padding: 10px 10px 0 0;
    float: left;
  }
  #time .right .conts .pipo .imgs{
    border-radius: 5px;
    overflow: hidden;
  }
  #time .right .conts .pipo .tits{
    margin: 0px 0 0px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #FF295F;
    width: 48px;
    line-height: 1;
  }
  #time .right .conts .pipo .name{
    margin: 8px 0 2px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
  }
  #time .right .conts .pipo .head{
    margin: 0px 0 4px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
  }
  #time .right .conts .pipo .modal__trigger{
    font-family: "Oswald", serif;
    cursor: pointer;
    font-size: 13px;
    color: #B23AB4;
    font-weight: 600;
    margin: 0;
  }
  #time .right .conts .pipo.pipo2{
    margin-top: 30px;

  }
  #time .right .conts .pipo.pipo2 .porson{
    width: 100%;
    padding: 10px 0px 0 0;
    float: none;
    display: flex;
    align-items: center;
  }
  #time .right .conts .pipo.pipo2 .imgs{
    width: 80px;
    border-radius: 50px;
    overflow: hidden;
  }
  #time .right .conts .pipo.pipo2 .name{
    margin: 0px 0 0px;
    font-size: 15px;
  }
  #time .right .conts .pipo.pipo2 .head{
    margin: 0px 0 0px;
    font-size: 11px;
  }
  #time .right .conts .pipo.pipo2 .txt{
    margin-left: 15px;
  }
  #time .right .conts .pipo .modal{}
  #time .right .conts .pipo .md01{}
  #time .right .conts .pipo .md01 .name{}
  #time .right .conts .pipo .md01 .head{}
  #time .right .conts .pipo .md01 .txt{}


/* モーダル本体 */
.modal__wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
  }
  
  .modal__layer {
    height: 100%;
    background: rgba(50, 50, 50, .85);
    cursor: pointer;
  }
  
  .modal__container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: auto;
    padding: 20px;
    background: #fff;
  }
  
  .modal__inner {
    position: relative;
    overflow-y: auto;
    height: 100%;
    padding: 20px 20px 20px;
  }
  .modal__inner .name{
    margin: 8px 0 2px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
  }
  .modal__inner .head{
    margin: 0px 0 8px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
  }
  
  /* モーダルを閉じるボタン */
  .modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(50, 50, 50, 1);
    cursor: pointer;
    transition: opacity .6s;
  }
  
  .modal__close:hover {
    opacity: .6;
  }
  
  .modal__close:before,
  .modal__close:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 1px;
    background: #fff;
    content: '';
  }
  
  .modal__close:before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  
  .modal__close:after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  
  /* モーダル内のコンテンツ */
  .modal__content {
  }
  
  .modal__text {
    margin-top: 30px;
    line-height: 2.875;
  }



  #his{padding: 60px 0;}
  #his .wrapper{}
  #his .left{
    width: 69px;
    margin-right: 30px;
  }
  #his .right{
    flex: 1;
  }
  #his .right ul{}
  #his .right ul li{
    padding: 16px 0;
  }
  #his .right ul li.is-hidden {
    opacity: 0;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
  #his .right ul li a{
    display: flex;
  }
  #his .right ul li a:hover{
    opacity: 1;
  }
  #his .right ul li a .thumb{
    width: 30%;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    margin-right: 24px;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
  }
  #his .right ul li a:hover .thumb{
    box-shadow: 0px 10px 36px #ddd;
  }
  #his .right ul li a .txt{
    flex: 1;
  }
  #his .right ul li a:hover .txt{
opacity: 0.7;
  }
  #his .right ul li a .txt h3{
    font-size: 16px;
    margin-top: 8px;
  }
  #his .right ul li a .txt p{
    font-size: 12px;
    line-height: 1.7;
    letter-spacing: 1px;
  }
  .more {
    text-align: center;
    margin-top: 20px;
}
button {
    background-color: #dfe5ea;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    height: 32px;
    line-height: 32px;
    width: 120px;
    border-radius: 16px;
    font-size: 14px;
    color: #666;
}


  #sponsor{
    padding: 60px 0;
    position: relative;
    margin-top: 80px;
  }
  #sponsor .grad{
    position: absolute;
    height: 200px;
    width: 98%;
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 25%, rgba(238, 243, 251, 1));
    z-index: -1;
    margin: 0 auto;
    left: 1%;
    top: 0;
    border-radius: 16px;
 }
  #sponsor .wrapper{}
  #sponsor h2{
    font-family: "Oswald", serif;
    font-size: 35px;
    font-weight: 400;
    text-align: center;
    letter-spacing: 3px;
  }
  #sponsor ul{
    width: 680px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
  }
  #sponsor ul li{
    width: 50%;
    padding: 5%;
  }
  #sponsor ul.sm{
    width: 680px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
  }
  #sponsor ul li{
    width: 50%;
    padding: 5%;
  }
  #sponsor ul.sm li{
    width: 33%;
    padding: 5%;
  }
  #sponsor .logo{}
  #sponsor .name{
    font-size: 13px;
    font-weight: 600;
    text-align: center;
  }

  #sns{
    padding: 80px 0 60px;
  }
  #sns .wrapper{}
  #sns .left{
    width: 230px;
    margin-right: 80px;
  }
  #sns .crnter{
    width: 460px;
    margin-right: 30px;
  }
  #sns .right{
    flex: 1;
  }
  #sns .right a{
    display: block;
    margin-bottom: 14px;
    border-radius: 12px;
  }
  #sns .right a:hover{
    box-shadow: 0px 10px 36px #ddd;
  }

.footer{
    display: flex;
    align-items: center;
    height: 70px;
    font-size: 14px;
    font-weight: 600;
    padding: 0 30px;
}
.footer a{font-size: 14px;margin-right: 15px;}
.footer p{font-family: "Oswald", serif;margin-left: auto;font-weight: 500;}




  .matrix .bg-wrap,
.matrix .bg-wrap .inn {
  display: block;
}
 
.matrix .bg-wrap {
  overflow: hidden;
  opacity: 0;
}
 
.matrix .bg-wrap + .bg-wrap {
  margin-top: 10px;
}
 
.matrix .bg-wrap .inn.large {
  font-size: 36px;
  font-weight: bold;
}
.matrix .bg-wrap .inn.small {
  font-size: 15px;
}
 
.matrix .bg-wrap .inn {
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
 
.matrix.is-animated .bg-wrap {
  opacity: 1;
}
 
.matrix.is-animated .bg-wrap .inn {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}

.swiper-slide{
    border-radius: 10px;
    overflow: hidden;
}


.kaijyo {
    position: fixed;
    bottom: 40px;
    right: 20px;
    width: 260px;
    z-index: 2000;
}
.kaijyo a{
    display: block;
    width: 260px;
    margin: 0 auto;
    box-shadow: 0 0 20px #8aa6fc;
    border-radius: 17px;
    overflow: hidden;
}
.kaijyo a:hover{
    box-shadow: 0 0 30px #e777fd;
}

.pc{}
.sp{display: none!important;}
@media screen and (max-width: 979px) {
    .pc{display: none;}
    .sp{display: inline-block!important;}

    header .logo {
        width: auto;
        height: 50px;
        margin-top: 5px;
    }

    .kaijyo {
        position: fixed;
        bottom: 10px;
        right: auto;
        left: auto;
        margin: 0 auto;
        width: 100%;
    }
    .kaijyo img{
        width: 260px;
        display: block;

    }
    .footer{
        padding-bottom: 90px;
    }
/* ハンバーガーボタンのデザイン */
.drawer__button {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
  }
  /* ハンバーガーボタン内の線 */
  .drawer__button > span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2rem;
    height: 2px;
    background-color: black;
    transform: translateX(-50%);
  }
  .drawer__button > span:first-child {
    transform: translate(-50%, calc(-50% - 0.5rem));
    transition: transform 0.3s ease;
  }
  .drawer__button > span:nth-child(2) {
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
  }
  .drawer__button > span:last-child {
    transform: translate(-50%, calc(-50% + 0.5rem));
    transition: transform 0.3s ease;
  }
  /* 展開時のデザイン */
  .drawer__button.active > span:first-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .drawer__button.active > span:nth-child(2) {
    opacity: 0;
  }
  .drawer__button.active > span:last-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  /* メニューのデザイン */
  .drawer__nav {
    position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
  }
  .drawer__nav.active {
    opacity: 1;
    visibility: visible;
  }
  .drawer__nav__inner {
    position: relative;
    width: 80%;
    height: 100%;
    background-color: white;
    padding: 4rem 1.5rem 1rem;
    margin: 0 0 0 auto;
    overflow: scroll;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .drawer__nav.active .drawer__nav__inner {
    transform: translateX(0);
  }
  .drawer__nav__menu {
    list-style: none;
    padding-left: 0;
  }
  .drawer__nav__link {
    display: block;
    color: black;
    text-decoration: none;
    padding: 1rem 1rem;
    border-bottom: solid 1px lightgray;
  }
  
  /* ハンバーガーメニュー展開時、背景を固定 */
  body.active {
    height: 100%;
    overflow: hidden;
  }
  
  .sns ul li a {
    width: 60px;
    display: block;
    padding: 10px;
}



    .swiper-slide{
        border-radius: 0px;
        overflow: hidden;
    }

    .twitter-timeline{display: none!important;}

    .main{
        margin-top: 60px;
    }
    .wrapper{
        width: 84%;
        margin: 0 auto;
    }
    .flex{
        display: block;
    }

    #gaiyo {
        padding: 20px 0;
    }

    .flextime{
        display: flex;
    }
    #sponsor .wrapper {
      width: 94%;
    }
    #sponsor ul {
        width: 100%;
        padding: 0;
    }
    #sponsor ul.sm {
        width: 100%;
        padding: 0;
    }
    #sponsor ul.sm li {
      width: 33%;
      padding: 3%;
      font-size: 10px;
      font-weight: 400;
  }
    #sponsor .name {
        font-size: 10px;
        font-weight: 400;
        text-align: center;
    }
    #sns h2 {
        font-family: "Oswald", serif;
        font-size: 35px;
        font-weight: 400;
        text-align: center;
        letter-spacing: 3px;
        width: 100%;
    }
    #sns .crnter {
        width: 90%;
        margin: 15px auto 0px;
    }
    #sns .left {
        width: 90%;
        margin: 0 auto 15px;
    }
    #sns .right {
        width: 92%;
        margin: 15px auto 30px;
        display: flex;
    }
    #sns .right a {
        display: block;
        padding: 5px;
    }

    #gaiyo .left {
        width: 100%;
        margin-bottom: 20px;
    }
    #gaiyo .right {
        margin-left: 0px;
    }
    #gaiyo .right h2 span.hdt {
        font-size: 20px;
    }
    #gaiyo .right h2 {
        font-size: 7vw;
    }
    #gaiyo .right p.bold {
        font-size: 3.4vw;
        line-height: 1.6;
    }
    #gaiyo .right h1 {
        font-size: 20px;
    }
    #gaiyo .right p.h7 {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 30px;
        letter-spacing: 0.1rem;
    }
    .video {
        width: 100%;
    }
    #time {
        padding: 70px 0 0;
    }
    #time .wrapper {
        width: 90%;
        margin: 0 auto;
    }
    #time .left {
        width: 100%;
        margin-bottom: 30px;
    }
    #time .left img{
        width: 300px;
    }
    #time .right {
        flex: 1;
        margin-left: 0px;
    }
    #time .right .times {
        font-size: 20px;
    }
    #time .right .min {
        font-size: 13px;
        font-weight: 400;
        width: 41px;
    }
    #time .right .timeline {
        width: 65px;
        position: relative;
    }
    .bg .bg-wrap .inn {
        font-size: 5.5vw;
    }
    #time .right .conts h5 {
        font-size: 17px;
        letter-spacing: 1px;
        margin-top: 4px;
    }
    #time .right .conts .bodytext {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 10px;
    }
    #time .right .conts .pipo .porson {
        width: 100%;
        padding: 10px 0px 5px 0;
        float: none;
    }
    #time .right .conts .pipo .imgs {
        border-radius: 5px;
        overflow: hidden;
        width: 30%;
        float: left;
        margin-right: 12px;
    }
    #time .right .conts .pipo.pipo2 {
        margin-top: 0px;
    }
    #time .right .conts .pipo.pipo2 .imgs {
        width: 30%;
        border-radius: 50px;
        overflow: hidden;
        border: 1px solid #ddd;
    }
    #time .right .conts .pipo.pipo2 .txt {
        margin-left: 5px;
    }
    .modal__container {
        width: 100%;
    }
    #his {
        padding: 30px 0;
    }
    #his .left {
        width: 100%;
        margin-bottom: 30px;
    }
    #his .left img{
        width: 240px;
    }
    #his .right ul {
        margin: 0;
        padding: 0;
    }
    #his .right ul li {
        padding: 8px 0;
    }
    #his .right ul li a .txt p {
        display: none;
    }
    #his .right ul li a .thumb {
        width: 35%;
        margin-right: 13px;
    }
    #his .right ul li a .txt h3 {
        font-size: 14px;
        margin-top: 0;
        line-height: 1.4;
        text-wrap: auto;
    }
    #sponsor .grad {
        position: absolute;
        height: 100px;
        width: 92%;
        left: 4%;
        top: 0;
        border-radius: 16px;
    }

}