@charset "UTF-8";
/* =======================
main
======================== */
.mainImg .mainImg__pc {
    display: none;
}

/* main pc */
@media screen and (min-width:769px){
    .mainImg .mainImg__sp {
        display: none;
    }
    .mainImg .mainImg__pc {
        display: block;
    }
}
/* pc 769px */

/* =======================
.About
======================== */
.section--About {
    padding: 48px 4.0%;
    background-color: #F7F7F7;
}
h3 {
    font-size: 2.0rem;
    font-weight: 700;
}
.lead {
    font-size: 1.2rem;
    font-weight: 400;
}
.about_subttl {
    display: flex;
    gap: 24px;
    padding-top: 15px;
    flex-direction: column;
}

.about_box_sp {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    gap: 24px;
}
.about_box_pc {
    display: none;
}

.aboutimg_sp {
    border-radius: 25px;
}
a img {
    cursor: pointer;
    transition: opacity 0.3s;
    border-radius: 16px;
}
a img:hover {
    opacity: 0.8;
}

/* about pc */
@media screen and (min-width:769px){
    .section--About {
        display: flex;
        padding: 208px 7%;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        flex-shrink: 0;
    }
    .about_ttl {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 23px;
        flex-shrink: 0;
    }

    h3 {
        margin: 0 auto;
        font-size: 3.0rem;
        letter-spacing: 3.2px;
    }

    .lead {
        margin: 0 auto;
        font-size: 3.0rem;
        font-weight: 400;
    }
    .about_subttl {
        display: flex;
        flex-direction: column;
        gap: 60px;
        margin-top: 30px;
      }
    
   
    
    .about_box_pc {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
    }
    
    .about_box_pc:nth-of-type(even) {
        flex-direction: row-reverse;
    }

    .about_text {
       gap: 25px;
    }
    /* gapが効いていない */

    h5 {
        display: block;
    }

    .number_txt {
        color: #F67CA6;
        font-family: Montserrat;
        font-size: 5.0rem;
        font-weight: 500;
        line-height: 30px;
    }
    .label {
        color: #FB7BA2;
        font-family: Montserrat;
        font-size: 5.0rem;
        font-weight: 700;
        line-height: 45px;
    }
    
    h6 {
        display: block;
        font-size: 3.6rem;
        font-weight: 700;
        line-height: 32px;
        letter-spacing: 3.6px;
        margin-top: 20px;
    }
    .aboutimg {
        display: block;
        width: 450px;
        height: auto;
        border-radius: 25px;
    }

    .aboutimg_sp {
        display: none;
    }
}
/* pc 769px */

/* =======================
.Story
======================== */
.section--Story {
    padding: 48px 4.0%;
    gap: 5px;
}
.slider {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, auto); 
    grid-template-rows: repeat(3, auto);
    gap: 10px;
    justify-content: center;
    align-items: center;
}
.slider .slick-slide {
    margin: 0 15px;
}

/* story pc */
@media screen and (min-width:769px){
    .section--Story {
        display: flex;
        padding: 208px 7%;
        flex-direction: column;
        align-items: center;
        gap: 23px;
    }

   h3 {
        margin: 0 auto;
        font-size: 3.0rem;
        letter-spacing: 3.2px;
        text-align: center;
    }

   /* .slider {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-top: 40px;
        max-width: 1000px;
    } */

    .slider img {
        width: 100%;    
        height: auto;   
        display: block; 
    }
}
/* pc 769px */

/* =======================
.Interviews
======================== */
.section--Interviews {
    padding: 48px 4.0%;
    gap: 5px;
    background-color:#F7F7F7;
}

.Interview__list {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 0 0 24px;
    list-style: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.Interview__list li {
    min-width: 260px;
    border-radius: 16px;
    padding: 16px;
    text-align: left;
    scroll-snap-align: start;
    flex-shrink: 0;
}

.Interview__img {
    width: 218px;
    height: 318px;
    border-radius: 12px;
    margin-bottom: 12px;
  }
.Interview__txt {
    width: 218px;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Interview */
@media screen and (min-width: 769px) {
.section--Interviews {
    padding: 208px 7%;
    gap: 23px;
}

.Interview__list {
    margin-top: 40px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        overflow: visible;
        max-width: 1000px;
        margin: 0 auto;
    }
  
    .Interview__item {
      min-width: auto;
      flex-shrink: 1;
    }
  
    .Interview__img {
      width: 100%;
      height: auto;
    }
  
    .Interview__txt {
        width: auto;
      font-size: 16px;
    }
}
/* pc 769px */

/* =======================
.Number
======================== */
.section--Number {
    padding: 48px 4.0%;
    gap: 5px;
}

/* Number */
@media screen and (min-width:769px){
    .section--Number {
        display: flex;
        padding: 208px 15%;
        flex-direction: column;
        align-items: center;
        gap: 23px;
    }
    .Number__img {
        max-width: 800px;
    }
}
/* pc 769px */

/* =======================
.Information
======================== */
.section--Information {
    padding: 48px 4.0%;
    gap: 5px;
    background-color: #F1F3FA;
}
.Information_item {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
} 

.Information_btns-pc {
    display: none;
}

.Information_btns-sp {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-radius: 16px;
}
/* Information pc */
@media screen and (min-width:769px){
    .section--Information {
        display: flex;
        padding: 208px 7%;
        flex-direction: column;
        align-items: center;
        gap: 23px;
    }

    .Information_btns-sp {
        display: none;
    }
    
    .Information_item {
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 32px;
    }
    .Information_btns-pc {
        margin-top: 30px;
        display: flex;
        justify-content: space-between;
        gap: 32px; 
        padding: 0 5%; 
    }
    .Information_btns-pc img {
        width: 100%;
        max-width: 100%;
        height: auto;
        flex: 1; 
}

}
/* pc 769px */

