@charset "utf-8";

/*========================
common
========================*/
:root {
    --primary_white: #FFFFFF;
    --primary-ligthgreen: #D1DFCC;
    --primary-green: #709F85;
    --primary-brown: #4E3B31;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 
        'Noto Sans JP',
        'Montserrat',
        'Roboto Slab';
    font-style: normal;
    color: var(--primary-brown);
    background-color: var(--primary_white);
    line-height: 1.8;
}

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

.topic {
    color: var(--primary-green);
    font-family: Montserrat;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1.5px;
}

/* common pc */
@media screen and (min-width: 769px) {
    .topic {
        font-size: 4.8rem;
        letter-spacing: 2.4px;
    }
}/* pc 769px */

/*========================
header
========================*/
.header__content {
    display: flex;
    padding: 30px 20px 10px 20px;
    height: 61px;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255,);
}

.header__topic,
.nav__topic {
    color: #000;
    text-align: center;
    font-family: "Roboto Slab";
    font-size: 1.6rem;
    font-weight: 400;
    line-height: normal;
}

.mainVisual {
    width: 100%;
}

.mainvisual__slider__sp {
    height: 600px;
    margin-inline: auto;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.mainvisual__slider__sp li {
    position: absolute !important;
    top: 0 !important;
    display: inline !important;
    left: 0 !important;
    width: 100%;
    height: 100%;
}

.mainVisual__sp img {
    width: 100%;
}

@keyframes zoomUp {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

.mainvisual__slider__pc {
    display: none;
}

/* .nav初期表示　*/
.nav {
    background: rgba(209, 223, 204, 0.8);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav__header {
    display: flex;
    height: 61px;
    padding: 30px 20px 10px 20px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.nav__topic {
    text-shadow: none;
}

.nav__list {
    display: flex;
    padding: 80px 50px;
    flex-direction: column;
    align-items: flex-start;
}

.nav__item {
    font-family: Montserrat;
    font-size: 3.2rem;
    font-weight: 400;
    line-height: normal;
    margin-top: 50px;
}

.nav__item:first-of-type {
    margin-top: 0;
}

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

.header__btn {
    display: block;
    width: 25px;
    height: 10px;
}

/* header pc */
@media screen and (min-width: 769px) {
    .header__content {
        height: 113px;
        margin: 0 auto;
        padding: 50px 50px 10px 50px;
    }

    .header__topic {
        font-size: 4rem;
    }

    .nav__header {
        display: none;
    }

    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translateX(0);
    }

    .nav__list {
        flex-direction: row;
        padding: 0;
        display: flex;
        align-items: center;
    }

    .nav__item {
        margin: 0 0 0 50px;
        text-align: center;
        font-size: 2.4rem;
        line-height: normal;
    }

    .nav__item:last-of-type {
        display: none;
    }

    .header__btn {
        display: none;
    }

    .mainvisual__slider__sp {
        display: none;
    }

    .mainvisual__slider__pc {
        display: block;
        height: 780px;
        margin-inline: auto;
        overflow: hidden;
        width: 100%;
        position: relative;
    }
    
    .mainvisual__slider__pc li {
        position: absolute !important;
        top: 0 !important;
        display: inline !important;
        left: 0 !important;
        width: 100%;
        height: 100%;
    }
    
    .mainvisual__pc img {
        width: 100%;
        height: 100%;
    }

    @keyframes zoomUp {
    0% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
    }
    .add-animation {
    animation: zoomUp 10s linear 0s normal both;
    }
}/* pc 769px */

/*========================
about
========================*/
.section--about {
    padding: 80px 30px 60px;
    max-width: 1440px;
}

.mainCaption__txt {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 1.6px;
    margin-top: 30px;
}

.mainCaptionImg01 {
    width: 100vw;
    height: 57vw;
    margin-top: 30px;
    object-fit: cover;
}

.btn__about {
    display: block;
    width: 115px;
    padding: 9px 29px;
    border-radius: 50px;
    border: 1px solid;
    margin-top: 30px;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1.2px;
    position: relative;
}

.btn__about::after {
    display: block;
    content: '';
    width: 12px;
    height: 11px;
    background-image: url(../images/more_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 20px;
    transform: translateY(-90%);
}

.btn__about:hover {
    background-color: var(--primary-ligthgreen);
    transition: all 0.3s ease;
}

/* about pc */
@media screen and (min-width: 769px) {
    .section--about {
        padding: 100px 180px 60px;
        max-width: 1440px;
        margin: 0 auto;
    }

    .mainCaption {
        display: flex;
        justify-content: space-between;
        margin-top: 60px;
        align-items: center;
    }

    .mainCaption__txt {
        font-size: 2rem;
        max-width: 500px;
        margin-top: 0;
    }

    .mainCaptionImg01 {
        width: 35vw;
        max-width: 500px;
        height: 30vw;
        max-height: 400px;
        object-fit: cover;
        margin-top: 0;
    }

    .btn__about {
        width: 200px;
        font-size: 2rem;
        padding: 18px 67px;
        margin-top: 60px;
    }

    .btn__about::after {
        width: 25px;
        height: 23px;
        top: 25px;
        transform: translateY(-25%);
    }
}/* pc 769px */

/*========================
products
========================*/
.section--products {
    padding: 60px 30px;
}

.pcBr {
    display: none;
}

.content__txt {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.75px;
    margin-top: 30px;
    text-align: left;
}

.products__item {
    display: flex;
    margin-top: 60px;
    justify-content: center;
}

.productImg {
    width: 100vw;
    height: auto;
    object-fit: cover;
}

.products__item .productImg img {
    width: 100%;
}

.products__txt {
    margin-top: 30px;
}

.products__name,
.products__maney {
    color: var(--primary-green);
    font-family: Montserrat;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
}

.products__subname {
    color: var(--primary-brown);
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.7px;
    margin-top: 10px;
}

.products__maney {
    margin-top: 20px;
} 

/* products pc */
@media screen and (min-width: 769px) {
    .section--products {
        padding: 60px 180px 180px 180px;
        max-width: 1440px;
        margin: 0 auto;
    }

    .pcBr {
        display: block;
    }

    .section--products .content__txt {
        margin-top: 60px;
        font-size: 2rem;
        font-weight: 400;
        line-height: 1.8;
        letter-spacing: 1.2px;
    }

    .products {
        max-width: 1440px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        row-gap: 60px;
        margin-top: 60px;
    }

    .products__item {
        display: block;
        width: 28vw;
        margin: 0 auto;
    }

    .productImg {
        width:  100%;
    }

    .products__name,
    .products__maney {
        font-size: 3.2rem;
        letter-spacing: 1.6px;
    }

    .products__subname {
        font-size: 2rem;
        letter-spacing: 1px;
    }
}/* pc 769px */

@media screen and (min-width:1300px) {
    .products__item {
        width: 35vw;
        max-width: 450px;
        margin: 0;
    }

    .products__item .products__txt {
        width: 35vw;
        max-width: 450px;
    }
}/* pc 1300px */

/*========================
footer
========================*/
.footer {
    padding: 60px 40px;
    background-color: var(--primary-ligthgreen);
}

.footer__group {
    display: flex;
    justify-content: space-between;
}

.footer__topic {
    color: #000;
    text-align: center;
    font-family: "Roboto Slab";
    font-size: 2.4rem;
    font-weight: 400;
    line-height: normal;
}

.footerNav__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footerNav__item {
    color: var(--primary-brown);
    text-align: center;
    font-family: Montserrat;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: normal;
    margin-top: 20px;
}

.footerNav__item:first-of-type {
    margin-top: 0;
}

.footer__info {
    display: flex;
    gap: 30px;
}

.privacyPolicy,
.legal-notice {
    color: var(--primary-brown);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1rem;
    font-weight: 400;
    line-height: normal;
    margin-top: 40px;
}

.copy {
    color: var(--primary-brown);
    font-family: "Noto Sans JP";
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.6px;
    margin-top: 20px;
}

/* footer pc */
@media screen and (min-width: 769px) {
    .footer {
        padding: 60px 180px;
    }

    .footer__topic {
        font-size: 4rem;
    }

    .footerNav__item {
        font-size: 3.2rem;
        margin-top: 50px;
    }

    .footer__txt {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row-reverse;
        margin-top: 60px;
    }

    .privacyPolicy,
    .legal-notice {
        font-size: 1.5rem;
    }

    .copy {
        font-size: 1.5rem;
        letter-spacing: 0.75px;
    }
}/* pc 769px */

/*==========================
fadeIn
==========================*/
.fadeIn {
    transform: translate(0, 50px);
    opacity: 0;
    transition: 0.8s;
}

.fadeIn.animated {
    transform: translate(0, 0);
    opacity: 1;
}