@charset "UTF-8";
.inner{
    padding: 60px 20px;
}
#about{
    color: #fff;
}
.about-fv{
    background: url(../images/about/about-fv-back.png) no-repeat center;
    background-size: cover;
    display: flex;
    justify-content: center;
}
.about-fv > img{
    width: 30%;
    max-width: 400px;
}
.about-fv h2{
    max-width: 720px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* cont_about-info */
.cont_about-info .inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 80px;
}
.about-info_box{
    width: 300px;
    text-align: center;
}
.about-info_box p{
    font-size: 40px;
    text-align: center;
    margin-top: 32px;
    font-weight: bold;
    line-height: 1;
}
.about-info_box span{
    font-size: 20px;
}
.about-info_image{
    width: 100%;
    max-width: 600px;
}

/* cont_spirit */
.cont_spirit{
    background: #fff;
    padding: 80px 0;
}
.cont_spirit .inner{
    padding: 80px 20px;
}
.cont_spirit .cont_title{
    color: #000;
    font-size: 32px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
}
.cont_spirit .cont_title img{
    width: 80px;
}
.advice_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px 40px;
}
.advice_box li{
    max-width: 460px;
    opacity: 0;
}
.advice_box li.effect.is-active{
    animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.advice_box li:nth-child(2n).effect.is-active{
    animation: slideIn 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;

}
@keyframes slideIn {
    0% {
      transform: translateX(180px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
    }
    40%,100% {
      opacity: 1;
    }
}

.loop {
    display: flex;
    width: 100vw;
    height: 180px;
    overflow: hidden;
}
.loop img {
    width: auto;
    max-width: none;
    height: 100%;
}
.loop img:first-child {
    animation: loop 50s -25s linear infinite;
} 
.loop img:last-child {
    animation: loop2 50s linear infinite;
}
@keyframes loop {
    0% {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-100%);
    }
  }
  
  @keyframes loop2 {
    0% {
      transform: translateX(0);
    }
    to {
      transform: translateX(-200%);
    }
}

/* cont_culture */
.culture_thumbnail {
    background: #FFFAC5;
}
.thumbnail_box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 40px 24px;
}
.thumbnail_box .flex_box{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.culture_thumbnail .pc_img{
    display: block;
    width: 40%;
    max-width: 400px;
}
.culture_thumbnail .sp_img{
    display: none;
}
.thumbnail_box dl {
    background: #fff;
    color: #000;
    border: 2px solid #FF0000;
    border-radius: 16px;
    width: 170px;
    text-align: center;
    overflow: hidden;
}
.thumbnail_box dt{
    background: #FF0000;
    color: #fff;
    padding: 8px;
    font-size: 20px;
    font-weight: bold;
}
.thumbnail_box dd{
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
}
.cont_culture h2,
.cont_discovery h2{
    font-size: 24px;
    font-weight: bold;
    margin-top: 24px;
}
.cont_culture h2{
    line-height: 1.25;
    margin-bottom: 24px;
}
.cont_culture h2 span{
    font-size: 14px;
}
.comment{
    background: #AEAEAE;
    color: #000;
    padding: 32px;
    border-radius: 16px;
}
.comment p{
    margin-bottom: 24px;
    font-size: 16px;
}
.comment li{
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    opacity: 0;
    letter-spacing: 0;
}
.comment li.is-active{
    animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.comment li.is-active:nth-child(2){
    animation-duration: 1.5s;
}
.comment li.is-activee:nth-child(3){
    animation-duration: 3s;
}
.comment li.is-active:nth-child(4){
    animation-duration: 4.5s;
}
.comment li.is-active:last-of-type{
    margin-bottom: 0;
}
.comment li span{
    position: relative;
    display: inline-block;
    margin-left: 20px;
    padding: 16px;
    font-weight: bold;
    border: 2px solid #000000;
    border-radius: 16px;
    background-color: #d1d1d1;
    text-align: left;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    width: calc(100% - 112px);
}
.comment li span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    border-style: solid;
    border-width: 10px 20px 10px 0;
    border-color: transparent #000000 transparent transparent;
    translate: -100% -50%;
}
.comment li span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0.5px;
    border-style: solid;
    border-width: 7.8px 15.5px 7.8px 0;
    border-color: transparent #d1d1d1 transparent transparent;
    translate: -100% -50%;
}
@media screen and (min-width: 1440px) {
    .comment li{
        font-size: 16px;
    }
    .comment li span{
        font-size: 18px;
        width: auto;
    }
    
}
/* cont_discovery */
.discovery_thumbnail {
    background: url(../images/about/discovery-bk.png) no-repeat center;
    background-size: cover;
    position: relative;
    padding-top: 60px;
}
.discovery_thumbnail p{
    text-align: center;
    color: #000;
    font-size: 30px;
    font-weight: bold;
    position: relative;
    z-index: 10;
}
.discovery_thumbnail li{
    max-width: 320px;
    margin: 20px auto 0;
}
.discovery_thumbnail li[class^="product"]{
    position: absolute;
}
.discovery_thumbnail li.product-01 {
    width: 25%;
    max-width: 180px;
    left: 3%;
    top: 5%;
}
.discovery_thumbnail li.product-02{
    width: 25%;
    max-width: 190px;
    left: 3%;
    bottom: 18%;
}
.discovery_thumbnail li.product-03{
    width: 20%;
    max-width: 160px;
    left: 20%;
    bottom: 30%;
}
.discovery_thumbnail li.product-04{
    width: 30%;
    max-width: 240px;
    right: 3%;
    top: 20%;
}
.discovery_thumbnail li.product-05{
    width: 30%;
    max-width: 240px;
    right: 10%;
    bottom: 20%;
}

.shake-up {
    animation: shake-up 3s infinite ease-in-out;
}
.shake-up-low {
    animation: shake-up 2.5s infinite ease-in-out;
}
@keyframes shake-up {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(15px);
    }
}


@media screen and (max-width: 768px) {
    .about-fv{
        position: relative;
        align-items: flex-end;
        height: 420px;
        gap: 0;
    }
    .about-fv h2{
        position: absolute;
        width: 90%;
        max-width: 400px;
        top: 40px;
    }
    .about-fv > img {
        width: 50%;
        max-width: 320px;
    }
    /* cont_about-info */
    .about-info_box img {
        width: 240px;
        margin: auto;
    }
    /* cont_culture */
    .thumbnail_box{
        flex-wrap: wrap;
        align-items: flex-start;
    }
    .culture_thumbnail .pc_img{
        display: none;
    }
    .culture_thumbnail .sp_img {
        display: block;
        width: 80%;
        max-width: 560px;
        margin: 0 auto 40px;
    }
    .discovery_thumbnail{
        padding-top: 180px;
    }
    .discovery_thumbnail li.product-04{
        top: 10px;
    }
    .discovery_thumbnail li.product-02{
        bottom: 15%;
    }
    .discovery_thumbnail li.product-05 {
        right: 3%;
        bottom: 35%;
    }
    
}
@media screen and (max-width: 600px) {
    .discovery_thumbnail{
        padding-top: 160px;
    }
    .discovery_thumbnail li.product-01{
        top: 0;
    }
    .discovery_thumbnail li.product-03 {
        width: 22%;
        max-width: 180px;
        left: 12%;
        bottom: auto;
        top: 310px;
    }
    .discovery_thumbnail li.product-04{
        top: 4%;
    }
    .discovery_thumbnail li.product-05 {
        right: 5%;
        bottom: auto;
        top: 250px;
    }
}
@media screen and (max-width: 480px) {
    .about-fv {
        height: 80vw;
    }
    .about-fv h2 {
        top: 40px;
        left: 32px;
    }
    .cont_spirit .cont_title{
        flex-direction: column;
    }
    .thumbnail_box {
        gap: 20px;
        width: 100%;
    }
    .thumbnail_box .flex_box {
        display: flex;
        gap: 10px;
        align-items: stretch;
        flex-direction: row;
    }
    .thumbnail_box dl{
        width: 50%;
        max-width: 200px;
    }
    .thumbnail_box dt{
        font-size: 18px;
    }
    .thumbnail_box dd {
        padding: 8px;
        font-size: 14px;
        min-width: 124px;
    }
    .comment{
        padding: 32px 24px;
    }
    .comment li{
        gap: 10px;
    }
    .comment li span{
        width: calc(100% - 98px);
    }
    .discovery_thumbnail li.product-03 {
        left: 40%;
        top: 66px;
    }
    .discovery_thumbnail li.product-02{
        bottom: auto;
        top: 280px;
    }
    .discovery_thumbnail li {
        max-width: 260px;
        margin: 20px auto 0;
    }

}