@charset "utf-8";
/*==========================
Article header
==========================*/
.movie__btn button {
    font-size: 1rem;
    letter-spacing: 4.5px;
    padding: 0.5em 1em;
    border-radius: 50px;
    box-shadow: initial;
    display: inline-block;
    appearance: none;
    background-color: rgba(12, 12, 12, .8);
    cursor: pointer;
    width: 100px;
    height: 100px;
}

.movie__btn { 
    position: fixed;
    bottom: 5px;
    right: -25px;
    padding: 6px 40px;
    margin-top: 1em;
    text-align: center;
    z-index: 100;
    /*アニメーション*/
    animation: fuwafuwa 2s linear infinite;
    scale: 1;
}

.js-video-button {
    color: aliceblue;
}

@keyframes fuwafuwa{
   0%{transform:translateY(0)}
   50%{transform:translateY(-10px)}
   100%{transform:translateY(0)}
}

.movie {
    width: 100%;
    height: auto;
}

.movie__pc {
    display: none;
}

.article__header {
    width: auto;
    height: auto;
}

/* Article header pc */
@media screen and (min-width:769px) {
    .movie {
        display: none;
    }

    .movie__pc {
        display: block;
        width: 100%;
    }

    .movie__btn button {
        letter-spacing: 2.5px;
        width: 100px;
        height: 100px;
    }

    .movie__btn { 
        position: fixed;
        bottom: 10px;
        right: 10px;
        padding: 6px 40px;
        margin-top: 1em;
        text-align: center;
        z-index: 100;
        /*アニメーション*/
        animation: fuwafuwa 2s linear infinite;
        scale: 1;
    }
}/* PC 769px */


/*==========================
Illustrator
==========================*/
/* slider */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
  
main .slide-wrapper {
    width: 100%;
    overflow: hidden;
}
  
main .slide-wrapper .slider {
    padding: 0 0 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: 100%;
    -webkit-animation-name: loop;
            animation-name: loop;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-duration: 20s;
            animation-duration: 20s;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
}
  
main .slide-wrapper .slider img {
    padding: 0 5px;
    width: 39%;
    aspect-ratio: 16/10;
    -o-object-fit: cover;
       object-fit: cover;
}
  
/* animation-settings */
@-webkit-keyframes loop {
    0% {
      -webkit-transform: translateX(0%);
              transform: translateX(0%);
    }
    100% {
      -webkit-transform: translateX(-100%);
              transform: translateX(-100%);
    }
  }
  @keyframes loop {
    0% {
      -webkit-transform: translateX(0%);
              transform: translateX(0%);
    }
    100% {
      -webkit-transform: translateX(-100%);
              transform: translateX(-100%);
    }
}

/* Illustrator pc */
@media screen and (min-width:769px) {
    main .slide-wrapper .slider {
        padding: 0 0 51px 0;
    }

    main .slide-wrapper .slider img {
        padding: 0 5px;
        width: 30%;
        aspect-ratio: 16 / 10;
        -o-object-fit: cover;
        object-fit: cover;
    }
}/* PC 769px */

/*==========================
movie
==========================*/
#movie {
    scroll-margin-top: 51px;
}

.section_section--movie {
    margin: 38px 0;
}

.video {
    padding: 0 20px 20px;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0 auto 0;
}

.btn__arrowright {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding: 29px 20px 0;
}

/*----- 三角の矢印 */
.arrow{
    line-height: 1;
    position: relative;
    background: #000;
}
.arrow::before {
    content: "";
    width: 10px;
    height: 10px;
    border: 1px solid #000;
    position: absolute;
    box-sizing: border-box;
}
/* 右向き */
.arrow.-right{
    width: 20px;
    height: 1px;
}
.arrow.-right::before {
    border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg);
    transform-origin: top right;
    top: 50%;
    right: -1px;
}

/* movie pc */
@media screen and (min-width:769px) {
    #movie {
        scroll-margin-top: 151px;
    }

    .video {
        max-width: 1160px;
        margin: 0 auto 0;
        padding: 0 72px 51px;
    }

    .section_section--movie {
        margin: 150px 0;
    }

    .btn__arrowright {
        padding: 29px 72px 0;
    }
    
}/* PC 769px */

/*==========================
note
==========================*/
#note {
    scroll-margin-top: 51px;
}

.section_section--note {
    margin-top:-52px;
    margin: 0 0 38px;
}

.note__title {
    font-family: "Kosugi";
    font-size: 1.4rem;
    font-weight: 400;
    padding: 3px 0;
    letter-spacing: 0.05rem;
}

.note__txt {
    font-family: "Kosugi";
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.05rem;
}

.note__list {
    padding: 0 20px 20px;
}

.note__item {
    margin-top: 24px;
}

.note__item1 time {
    font-size: 1.2rem;
    font-weight: 600;
}

.none__listtxt {
    padding: 10px 0 0;
}

/* note pc */
@media screen and (min-width:769px) {
    #note {
        scroll-margin-top: 151px;
    }

    .note__list {
        display: flex;
        flex-direction: row;
        padding: 0 72px 0;
        gap: 40px;
    }

    .note__title {
        font-size: 1.5rem;
    }

    .note__txt {
        line-height: 2;
    }
    .section_section--note {
        margin: 0 0 150px;
    }
}/* PC 769px */

/*==========================
Profile
==========================*/
.title {
    padding-top: 52px;
    margin-top:-52px;
    color: var(--primary-black);
    text-align: center;
    font-size: 1.9rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.profile_txt_title {
    color: var(--primary-black);
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 0 0 24px;
    text-align: center;
}

.profile_txt {
    color: var(--primary-black);
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    padding: 0 0 20px;
    letter-spacing: 0.05rem;
}

.profile_txt__jp {
    font-family: "Kosugi";
    color: var(--primary-black);
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    padding: 0 0 20px;
    letter-spacing: 0.05rem;
}

.profile {
    margin: 24px 59px 0;
}

.profile_txt_title span {
    color: var(--primary-black);
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 0 0 24px;
    text-align: center;
    font-family: "Kosugi jp";
    letter-spacing: 0.05rem;
}

/* Profile pc */
@media screen and (min-width:769px) {
    #profile {
        scroll-margin-top: 151px;
    }

    .profilename__pc {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }

    .profiletxt__pc {
        display: flex;
        gap: 15px;
    }

    .profile_txt {
        font-size: 1.5rem;
        font-weight: 400;
        padding: 0 0 48px;
    }

    .profile__pc {
        text-align: center;
    }

}/* PC 769px */