@charset "utf-8";
/* =======================
common
======================= */
html {
    font-size: 62.5%;
}

body {
    font-family:
     "Sawarabi Gothic", 
     "Hiragino Kaku Gothic ProN", 
     "メイリオ", 
     "Yu Gothic", 
     -apple-system, 
     BlinkMacSystemFont, 
     "Helvetica Neue", 
     "Poppins", 
     sans-serif;
    font-style: normal;
    color: #202020;
    background-color: #fff;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

.section__topic {
    font-family: Poppins;
    font-weight: 700;
    font-size: 6rem;
    line-height: 1.3;
}

/* common pc */
@media screen and (min-width: 769px) {
    .section__topic {
        font-family: Poppins;
        font-size: 10rem;
        font-weight: 700;
        line-height: 1;
    }    
    .section__description {
        font-family: 
        -apple-system, 
        BlinkMacSystemFont, 
        "Sawarabi Gothic", 
        "Poppins",
        "Helvetica Neue", 
        "Hiragino Kaku Gothic ProN",
        "メイリオ", sans-serif;
        margin-top: 20px;
    }
}

/* =======================
header
======================= */
.header {
    padding: 18px 4.8% 5px;
}

.header__topic {
    ç
}

.nav {
    /* background: #0C1BBE;
    border-radius: 0px 187.5px 0px 0px; */
    background-color: #fff;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav.active::before {
    content: '';
    background-color: #0C1BBE;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0px 187.5px 0px 0px;
}


.nav__header {
    padding: 25px 4.2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav__list {
    margin-top: 112px;
    position: relative;
}

.nav__item {
    color: #fff;
    font-family: Poppins;
    font-size: 2.4rem;
    line-height: 1;
    margin-top: 48px;
    display: flex;
    align-items: center;
}

.nav__item::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 2px;
    background-color: #fff;
    margin-right: 16px;
}

/* .nav.active表示 */
.nav.active {
    transform: translateX(0);
}

.header__btn {
    display: block;
    width: 50px;
    position: absolute;
    top: 37px;
    right: 4.2%;
}
/* .header pc */
@media screen and (min-width:769px) {
    .header {
        display: flex;
        align-items: center;
        max-width: 1220px;
        width: 100%;
        height: 80px;
        /* margin: 0 auto; */
        padding: 25px 50px;
        position: fixed;
        top: 30px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
        border: 1px solid #0C1BBE;
        border-radius: 50px;
        background-color: #fff;
    }

    .nav__header {
        display: none;
    }

    .nav {
        background-color: transparent;
        height: auto;
        margin: 0 auto;
        position: static;
        transform: translateX(0);
        
    }
    .nav.active::before {
        content: '';
        background-color: transparent;
        display: block;
        width: auto;
        height: auto;
        position: static;
    }

    .nav__list {
        margin-top: 0;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    .nav__item {
        margin: 0 0 0 32px;
        color: #0C1BBE;
        font-family: "Noto Sans JP",sans-serif;
        font-size: 1.7rem;
        font-weight: 700;
        line-height: 1;
        text-align: center;
    }
    .nav__item::before {
        display: none;
    }
    .header__btn {
        display: none;
    }
}

/* =======================
main
======================= */
.article {
    overflow: hidden;
}

.mainVisual .mainVisual__pc {
    display: none;
}

.mainVisual .mainVisual__sp {
    margin: 143px auto 0;
    display: block;
}
.mainCopy {
    margin-top: 18px;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.6;
}

/* .main pc */
@media screen and (min-width:769px) {
    .article__header {
        display: flex;
        justify-content: center;
        gap: 100px;
        align-items: center;
        padding-top: 300px;
       }
    .mainVisual .mainVisual__sp {
        display: none;
    }
    .mainVisual .mainVisual__pc {
        display: block;
    }
    .mainCopy {
        text-align: left;
        font-family: "Noto Sans JP", sans-serif;
        font-size: 5rem;
        font-weight: 700;
        line-height: 1.6;
        margin-top: 0;
    }
}

/* =======================
goaisatsu
======================= */
.mainMessage1__copy-pc {
    display: none;
}
.section--goaisatsu {
    margin: 116px 4.2% ;
}

.mainMessage1__copy-sp {
    margin: 106px auto 0;
    display: block;
}
.mainCaption1__txt {
    margin: 45px auto 120px;
    font-family: "Sawarabi Gothic";
    line-height: 2;
    letter-spacing: 0.8px;
    font-size: 1.6rem;
    position: relative;
    max-width: 390px;
}

.mainCaption1__txt::before {
    content: "";
    background-color: #f7f7f7;
    display: block;
    height: 130%;
    aspect-ratio: 1 / 1;
    position: absolute;
    z-index: -1;
    border-radius: 100%;
    transform: translateY(-10%) translateX(-50%);
    left: 50%;
}

@media screen and (min-width:769px) {
    .mainMessage1 {
        display: flex;
        justify-content: center;
        gap: 50px;
        align-items: center;
        background-color: #f7f7f7;
        padding: 120px 0 120px;
        border-radius: 400px 0 0 0;
        margin-top: 200px;
        max-width: 1300px;
        margin: 0 auto;     
    }
    .mainMessage1__copy-sp {
        display: none;
    }
    .mainMessage1__copy-pc {
        display: block;
       }
    .mainCaption1__txt {
        margin: 0;
        font-size: 1.8rem;
        line-height: 3;
        max-width: 500px;
    }
    .mainCaption1__txt::before {
        display: none;
    }
}
/* message1 pcおわり */

.mainMessage2::after {
    content: '';
    display: block;
    background-color: #bbbcbe;
    height: 1px;
    width: 80%;
    margin: 60px auto 0;
}

.mainCopy2 {
    writing-mode: vertical-rl; 
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 3.2px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.mainCopy2 span:first-child:first-letter {
    color: #0C1BBE;
    font-size: 6rem;
}

.mainCopy2 span:last-child {
    /* color: red; */
    padding-top: 50px;
}

.mainCaption2__txt {
    margin: 34px auto 0;
    color: var(--anybase, #2F2F2F);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.8px;
}

@media screen and (min-width:769px) {
    .mainMessage2 {
        display: flex;
        justify-content: center;
        align-items: stretch;
        flex-direction: row-reverse;
        gap: 60px;
        padding: 100px 70px 0;
        max-width: 1300px;
        margin: 0 auto;
        }
    .mainCopy2 {
        font-size: 5rem;
        font-style: normal;
        font-weight: 800;
        line-height: normal;
    }
    .mainMessage2::after {
        display: none;
    }
    .mainCaption2 {
        position: relative;
        display: flex;
        align-items: center;
    }

    .mainCaption2__txt {
        font-family: "Sawarabi Gothic";
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 2.6;
        margin: 0;
    }
    .mainCaption2__txt::before {
        content: '';
        display: block;
        background-color: #bbbcbe;
        height: 1px;
        width: 50%;
        position: absolute;
        top: 50px;
        left: 0;
    }

}

.section--news {
    margin: 100px 4.2%;
}

.section__description {
    font-family: -apple-system, 
    BlinkMacSystemFont, 
    "Sawarabi Gothic", 
    "Poppins",
    "Helvetica Neue", 
    "Hiragino Kaku Gothic ProN",
    "メイリオ",
    sans-serif;
    margin: 10px 0 38px;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
}

.section__year {
    color: #202020;
    font-family: poppins;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}

.news__schedule {
    margin-top: 5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    }

.news__date {
    width: 20.6%;
    height: 108px;
    font-size: 1.4rem;
    margin-right: 1px;
    background-color: #F5F4F3;
    border-radius: 20px 0 0 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news__prefecture {
    width: 16.2%;
    height: 108px;
    font-size: 1.6rem;
    margin-right: 1px;
    background-color: #F5F4F3;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news__place {
    width: 41.7%;
    height: 108px;
    font-size: 1.6rem;
    margin-right: 1px;
    background-color: #F5F4F3;
    padding-left: 10px;
    padding-right:10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news__products {
    width: 20.6%;
    height: 108px;
    margin-right: 1px;
    flex-wrap: wrap;
    /* 何だったか思い出せない */
    gap: 2px;
    padding-left: 5px;
    padding-right: 5px;
    background-color: #F5F4F3;
    border-radius: 0 20px 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news__products--sign {
    width: 28px;
    height: 28px;
}

.news__mention {
    color: #202020;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1;
    text-align: right;
}


@media screen and (min-width:769px) {
    .section--news {
        max-width: 1300px;
        margin: 0 auto;
    }
    
    .section__year {
        font-family: poppins;
        font-size: 2.5rem;
        font-weight: 700;
    }
    .news__schedule,
    .news__date,
    .news__prefecture,
    .news__place {
        font-family: "Sawarabi Gothic", sans-serif;
        font-size: 1.8rem;
        font-weight: 400;
    }
    .news__mention {
        font-size: 1.2rem;
        font-weight: 500;
    }
}

/* ==================
Products 
================== */
.section--products--white {
    margin: 115px 4.2% 38px;
}
.section__description {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6;
}

.section--products--glay {
    background-color: #F5F4F3;
    padding: 60px 0 80px;
}

.products {
    margin: 0 4.2% 0;
}

.products__item::after {
    content: '';
    display: block;
    background-color: #bbbcbe;
    height: 1px;
    margin: 60px auto;
    width: 80%;
}

.products__item:last-child::after {
    display: none;
}
 
.products__imgPc {
    display: none;
}

.products__copy {
    font-family: "Noto Sans JP",sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 2.34px;
}

.pcBr {
    display: none;
}

.products__name {
    color: #0C1BBE;
    font-family: Futura;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.2;
}

.products__subCopy {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 1.1px;
    margin-top: 10px;
}

.products__txt {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 1.5px;
    margin-top: 36px;
}

.products__imgSp {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 33px;
}

.btn {
    display: block;
    max-width: 338px;
    margin: 0 auto;
    padding: 15px 0 16px;
    background-color: #0C1BBE;
    border-radius: 50px;
    color: #FFF;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: left;
    line-height: 1.4;
    margin-top: 30px;
    transition: 0.4s;
    position: relative;
    padding-left: 25px;
}

.btn::after {
    display: block;
    content: '';
    width: 12px;
    height: 12px;
    background-image: url(../images/button_whiteround.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    right: 23px;
    transform: translateY(-50%);
}

.btn:hover {
    opacity: 0.5;
}

/* ==============
Pruducts for PC
============== */
@media screen and (min-width:769px) {
    .section--products--white {
        max-width: 1300px;
        margin: 150px auto 0;
    }
    .section--products--glay {
        padding: 130px 7%;
    }
    .section--products {
        margin: 0 auto;
    }
    .products {
        max-width: 1250px;
        margin: 0 auto;
    }
    .products__item--all {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 7%;
    }
    .products__imgSp {
        display: none;
    }
    .products__imgPc {
        display: block;
        width: 43%;
    }
    .products__contents {
        width: 50%;
    }

    .products__copy {
        font-family: "Noto Sans JP", sans-serif;
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1.5;
        letter-spacing: 2.86px;
    }
    .products__name {
        color: #0C1BBE;
        font-family: Poppins;
        font-size: 8rem;
        font-weight: 700;
        margin-bottom: 15%;
    }
    .products__subCopy {
        font-family: "Noto Sans JP", sans-serif;
        font-size: 2rem;
        font-weight: 700;
        line-height: 180%;
    }
    .products__txt {
        font-family: "Noto Sans JP", sans-serif;
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 160%;
        letter-spacing: 1.8px;
    }
    .pcBr {
        display: block;
    }
    .btn {
        width: 190px;
        margin-top: 50px;
        margin-left: 0;
    }
    .products__item::after {
        margin: 150px auto;
    }
}

/* ==============
gallery
============== */
.section--gallery {
    margin: 60px 4.2% 100px;
}

/* ======
slick
====== */
.slick-slider {
    /* overflow: hidden; */
    margin: 0 auto;
}

@media screen and (min-width:769px) {
    .section--gallery {
        max-width: 1300px;
        margin: 100px auto;
    }
    .section__description {
        font-family: "Noto Sans JP";
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 1.6;
    }

    .slick-slider {
        /* background-color: antiquewhite; */
        /* margin-left: 50px;
        margin-right: 50px; */
    }
    /* .gallery__contents {
        gap: 20px;
    }
    .gallery__img2 {
        display: block;
    }
    .gallery__img3 {
        display: block;
    } */
}

.slick-slide img {
    width: 100%;
}

.slick-slide.slider__item {
    padding-inline: 10px;
}


/* ===============
moving text
=============== */
@keyframes infinity-scroll-left {
    from {
      transform: translateX(0);
    }
      to {
      transform: translateX(-100%);
    }
    }


    .scroll-infinity__wrap {
      display: flex;
      overflow: hidden;
    }
    .scroll-infinity__list {
      display: flex;
      list-style: none;
      padding: 0
    }
    .scroll-infinity__list--left {
      animation: infinity-scroll-left 10s infinite linear 0.5s both;
    }
    .scroll-infinity__item {
      width: calc(100vw /0.8);
      padding-right: 20px;
      padding-bottom: 50px;
    }
    .scroll-infinity__item>img {
      width: 100%;
    }

@media screen and (min-width:769px) {
    .scroll-infinity__wrap {
        display: flex;
        overflow: hidden;
      }
      .scroll-infinity__list {
        display: flex;
        list-style: none;
        padding: 0
      }
      .scroll-infinity__list--left {
        animation: infinity-scroll-left 10s infinite linear 0.5s both;
      }
      .scroll-infinity__item {
        width: calc(100vw /2);
        padding-right: 20px;
        padding-bottom: 50px;
      }
      .scroll-infinity__item>img {
        width: 100%;
      }
      }


/* ============
Profile
============ */
.section--profile {
    border: solid 1px #0C1BBE;
    border-radius: 10px;
    margin: 60px 4.2% 100px;
    padding: 5% 4% 12%;
    /* display: flex; */
    /* flex-direction: column; */
}
.profile__img--img img {
    width: 70%; 
    height: auto;
    display: block;
    margin: 0 auto;
}

.section__title {
    font-family: "Noto Sans JP", sans-serif;
    color: #0C1BBE;
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 2.4px;
    margin: 10px auto 0;
    text-align: center;
}

.section__txt {
    color: #202020;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.8;
    margin: 20px auto 0;
}
@media screen and (min-width:769px) {
    .section--profile {
        max-width: 1000px;
        display: flex;
        flex-direction: row-reverse;
        gap: 50px;
        padding: 3.5% 5%;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    .profile__txt {
        width: 70%;
    }
    .section__title {
        text-align: left;
    }
    .profile__img--img{
        width: 30%;
    }
    .profile__img--img img{
        width: 110%;
    }
}
/* ===========
scroll top
============ */
.topBtn {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    display: inline-block;
    padding: 25px;
    border-radius: 50%;
    background-color: yellow;
    
    position: fixed;
    bottom: 1.4%;
    right: 1.4%;
}

/* ==================
footer
================== */
.footer {
    background-color: #0C1BBE;
    border-radius: 0 150px 0 0;
    margin: 120px 6.6% 0 0;
    padding-bottom: 20px;
}
.footer__contact {
    display: flex;
    padding-top: 10%;
    padding-left: 5%;
}
.footer__contactTitle {
    color: #FFF;
    font-family: Futura;
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 1.6px;
    margin-right: 15px;
}
.footer__contactIcon_pc {
    display: none;
}
.footer__contactText {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.11px;
    padding-top: 15px;
    padding-left: 5%;
}
.footer__companyLogo_sp {
    display: flex;
    margin: 100px auto 0;
}
.footer__companyLogo_pc {
    display: none;
}
.footer__sns {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 0;
    gap: 10px;
}
.footer__snsItemPc {
    display: none;
}
.footer__copy {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    padding-top: 20px;
    text-align: center;
}
@media screen and (min-width:769px) {
    .footer {
        background-color: #0C1BBE;
        border-radius: 0 450px 0 0;
        margin: 120px 6.6% 0 0;
        padding-bottom: 40px;
    }
    .footer__contact {
        display: flex;
        align-items: center;
        padding: 8% 5% 0;
    }
    .footer__contactTitle {
        color: #FFF;
        font-family: Futura;
        font-size: 7rem;
        font-weight: 700;
        letter-spacing: 3.5px;
    }
    .footer__contactIcon_sp {
        display: none;
    }
    .footer__contactIcon_pc {
        display: flex;
    }
     .footer__contactText {
        color: #FFF;
        font-family: "Noto Sans JP", sans-serif;
        font-size: 1.6rem;
        font-weight: 400;
        letter-spacing: 0.32px;
    }
    .footer__companyLogo_sp {
        display: none;
    }
    .footer__companyLogo_pc {
        display: block;
        margin: 17% auto 2%;
    }
    .footer__snsItemSp {
        display: none;
    }
    .footer__snsItemPc {
        display: flex;
    }
    .footer__copy {
        color: #FFF;
        font-family: "Noto Sans JP", sans-serif;
        font-size: 1.6rem;
        font-weight: 400;
    }
}