@charset "UTF-8";

.list_download {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.list_download .list_item {
    width: calc(100% / 2 - 10px);
    margin-bottom: 30px;
    border: 1px solid #efefef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.list_download .slides{
    width: 100%;
}


@media screen and (max-width: 540px) {

    .list_download .list_item {
        width: 100%;
    }
}



.list_download .list_item figure {
    width: 35%;
    position: relative;
    background-color: #efefef;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list_download .list_item figure img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: contain;
/*     position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
 */}
.list_download .list_item > section{
    width: 60%;
    padding-bottom: 20px;
}
.list_download .list_item h5, .list_download .list_item p, .list_download .list_item .c_btn {
    width: 84%;
    margin-left: auto;
    margin-right: auto;
}

.list_download .list_item h5 span {
    font-size: 15px;
    display: block;
}

.list_download .list_item p {
    font-size: 14px;
}

.list_download .list_item .c_btn {
    max-width: 100%;
}


    /* コンテナ */
    .video_container {
        display: flex;
        flex-wrap: wrap; /* 狭い画面で折り返し可能に */
        width: 100%;
        margin-top: 50px;
      }
  
      /* 動画エリア */
      .video-area {
        order: 1;
        flex: 1; /* 残りのスペースを使う */
        min-width: 0; /* Flexboxで縮小時に動画が切れにくくする */
        position: relative;
      }
  
      /* アスペクト比(16:9)を維持したまま幅100%で表示する仕組み */
      .video-wrapper {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%; /* 16:9 = 9 / 16 = 0.5625 => 56.25% */
      }
      #player {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      }
  
      /* チャプターリストのデザイン */
      .chapter-list {
        width: 200px; /* 固定幅（任意で調整） */
        padding: 0 20px 0 0;
        overflow-y: auto;
      }
      .chapter-list h4 {
        margin-top: 0;
      }
      .chapter-item {
        margin-bottom: 1rem;
        cursor: pointer;
      }
      .chapter-item span{
        display: block;
        font-size: 83%;
      }
      .chapter-item:hover {
        text-decoration: underline;
      }
  
      /* 画面が極端に狭い時はリストを上に回すなどの対応も可（任意のメディアクエリ） */
      @media screen and (max-width: 767px) {
        .video_container {
          display: block;
          flex-wrap: wrap; /* 狭い画面で折り返し可能に */
          width: 100%;
        }
          .chapter-list {
          width: 100%;
          margin-top: 25px;
        }
        .chapter-item span{
          display: inline;
        }
  
        .chapter-item {
          margin: 0 10px 10px 0;
        }
      }


      .art--comingsoon{
        background-color: rgba(0, 0, 0, .3);
        margin-top: 20px;
        position: relative;
        width: 100%;
        box-sizing: border-box;
      }

      .art--comingsoon::before {
        content: "";
        display: block;
        padding-top: calc(((9 / 16) * 100%));
      }
      .art--comingsoon div{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
      }
      .art--comingsoon div p{
        text-align: center;
        color: #fff;
        font-size: 1.4vw;
        font-weight: 900;
      }

      .art--comingsoon div p.text--coming{
        font-size: 4vw;
      }

      .art--comingsoon div p.text--day{
        margin-top: 1em;
        font-size: 2vw;
      }



/* experience ========= */
.experience {
    padding: 30px 0px 30px;
    overflow: hidden;
    position: relative;
    background-color: #f5f6f5;
  }
  
  .experience h3 {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    padding-bottom: 0em;
    border-bottom: none;
  }
  .experience h3::after {
    display: none;
  }
  
  .experience .txt-center {
    padding-top: 0.5em;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 115%;
  }
  
  .experience_slide .slick-track {
    display: flex;
  }
  
  .experience_slide .slick-slide {
    height: auto !important;
  }
  
  .experience_slide .item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #000;
    margin-left: 1.5%;
    margin-right: 1.5%;
    text-decoration: none;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    transition: all 400ms ease;
    cursor: pointer;
  }
  
  .experience_slide .item a figure {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .experience_slide .item a figure::after {
    content: "";
    display: block;
    padding-bottom: 56.25%;
  }
  
  .experience_slide .item a figure img {
    width: auto;
    max-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  .experience_slide .item a .description {
    margin-bottom: auto;
    font-weight: 700;
    margin: 10px 20px;
  }
  
  .experience_slide .item a .linktext {
    margin: 10px 20px 20px;
    margin-top: auto;
    font-size: 12px;
    text-decoration: underline;
    font-weight: 700;
    color: var(--ceatecblue);
  }
  
  @media screen and (min-width: 541px) {}
  