@charset "utf-8";

/* ============
common
============ */
:root {
    /* frequently usage */
    --primary-white: #ffffff;
    --text-black: #292929;
    --gray-low: #d9d9d9;
    --gray-high: #777;
    /* width/padding */
    --contentWidth: 89.3%;
    /* 335px/375px */
    --contentPadding: 5.3%;
    /* 20px/375px */
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        "Zen Kaku Gothic New", "Noto Sans", sans-serif;
    font-style: normal;
    color: var(--text-black, #292929);
    font-size: 1.6rem;
    line-height: 2;
}

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

.section__title {
    color: var(--text-black, #292929);
    font-family: "Montserrat";
    font-size: 2.8rem;
    line-height: 1;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(var(--contentWidth) - var(--contentPadding));
    height: 50px;
    padding: 10px 15px;
    text-align: center;
    font-size: 2rem;
    line-height: normal;
    transition: filter 0.2s ease;
    font-family: "Montserrat", Poppins, sans-serif;
}

/* --- COMMON PC 769px --- */
@media screen and (min-width:769px) {
    body {
        font-size: clamp(16px, 1.25vw, 18px);
        line-height: 2;
    }

    .section__title {
        font-size: 4.8rem;
        line-height: 1.4;
    }

    .btn {
        width: 400px;
        height: 52px;
        font-size: 2.2rem;
    }
}

/* --- COMMON PC 769px --- */

/* ============
HEADER
============ */
.header {
    display: block;
    text-align: center;
    padding: 1em 0;
}

.header__logo {
    display: block;
    width: 100%;
    margin-bottom: 1em;
}

.header__logo img {
    display: inline-block;
    height: 74px;
    width: auto;
    object-fit: contain;
}

/* ボタン類やナビゲーションをロゴの下に */
.header__btns {
    display: block;
    margin: 0 auto;
    text-align: center;
}

.nav__content {
    /* 開いたナビが上書きされないように調整 */
    text-align: left;
    font-weight: 500;
}

/* sp navigation window: top */
.header__btns {
    display: none;
}

/* ナビゲーションの基本スタイル */
.nav__content {
    position: fixed;
    top: 0;
    right: -100%;
    /* 初期状態では画面外に隠す */
    width: 90%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    padding: 20px;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

/* メニューが開いている時 */
.nav__content.active {
    right: 0;
    /* 表示 */
}

/* オーバーレイ */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.nav-overlay.active {
    display: block;
}

/* === open/close nav: btn === */
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.nav__header {
    position: relative;
    display: flex;
    justify-content: end;
}

/* モバイル版の nav__logo の表示調整 */
.nav__logo {
    height: 70px;
    width: 140px;
    margin: 0 auto;
}

.btn-store-navPc {
    display: none;
}

.nav__logo img {
    display: block;
    width: 100%;
}

.openbtn {
    position: relative;
    /*ボタン内側の基点となるためrelativeを指定*/
    cursor: pointer;
    width: 70px;
    height: 64px;
    border-radius: 5px;
    position: fixed;
    top: 12px;
    right: 4px;
    z-index: 9999;
    font-weight: 400;
}

/*ボタン内側*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    /*アニメーションの設定*/
    position: absolute;
    left: 24px;
    height: 1px;
    border-radius: 5px;
    background: var(--gray-high);
    width: 45%;
}


.openbtn span:nth-of-type(1) {
    top: 13px;
}

.openbtn span:nth-of-type(2) {
    top: 19px;
}

.openbtn span:nth-of-type(3) {
    top: 25px;
}

.openbtn.active span:nth-of-type(1) {
    top: 14px;
    left: 18px;
    transform: translateY(6px) rotate(-20deg);
    width: 50%;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(20deg);
    width: 50%;
}

@media (min-width: 1024px) {
    .header__pcWrap {
        display: flex;
        justify-content: space-between;
        margin: 8px 5%;
    }

    .header__logo {
        width: fit-content;
    }

    .header__logo img {
        height: 96px;
    }

    .header__btns {
        display: flex;
        margin: 24px 10% 0 0;
        gap: 40px;
    }

    .btn-store-navPc {
        display: flex;
        border: solid 1px #292929;
        margin: 22px auto 0 0;
        width: fit-content;
        padding: 32px 80px;
    }

    .btn-store-navPc:hover,
    .btn-store-navPc:active {
        background: var(--text-black);
        color: var(--primary-white);
    }

    .btn {
        font-size: 1.8rem;
        height: 36px;
    }

    .btn-online-store-pc {
        border: solid 1px #292929;
        margin: 0 auto;
        width: fit-content;
        padding: 10px 32px;
    }

    .btn-contact-pc {
        background-color: var(--gray-high);
        color: var(--primary-white);
        margin: 0;
        width: fit-content;
        padding: 10px 32px;
    }

    .btn-contact-pc {
        margin: 0;
    }

    .openbtn {
        top: 6%;
        right: 0;
        width: 100px;
    }

    .openbtn span {
        left: 0;
    }

    .openbtn.active span:nth-of-type(1) {
        left: 0;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        left: 0;
    }
}


/* === nav menu - accordion style === */
.nav__menu {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    max-width: 400px;
}

.menu__item {
    border-bottom: 1px solid #eee;
    position: relative;
}

.menu__toggle-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    left: -9999px;
}

.menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
    position: relative;
    font-family: "Montserrat", Poppins, sans-serif;
}

.menu__title {
    flex: 1;
    padding: 15px 20px;
    text-decoration: none;
    font-size: 1.7rem;
    transition: background-color 0.3s ease;
}

.menu__title:hover {
    background: #e8e8e8;
}

.menu__toggle {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    cursor: pointer;
    user-select: none;
    width: 16px;
    height: 16px;
}

/* アイコン用のスタイル */
.toggle-icon {
    display: block;
    width: 16px;
    height: 16px;
    position: relative;
}

/* + アイコン */
.plus::before,
.plus::after {
    content: '';
    position: absolute;
    background: #a8a8a8;
    transition: transform 0.3s ease;
}

.plus::before {
    width: 16px;
    height: 2px;
    top: 7px;
    left: 0;
}

.plus::after {
    width: 2px;
    height: 16px;
    top: 0;
    left: 7px;
}

/* × アイコン */
.cross::before,
.cross::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 2px;
    background: #a8a8a8;
    top: 7px;
    left: 0;
}

.cross::before {
    transform: rotate(45deg);
}

.cross::after {
    transform: rotate(-45deg);
}

/* デフォルトでは+を表示、×を非表示 */
.menu__open {
    display: block;
}

.menu__close {
    display: none;
}

.sub__menu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--primary-white);
}

.sub__menu li {
    border-top: 1px solid #f0f0f0;
}

.sub__menu a {
    display: block;
    padding: 12px 20px 12px 40px;
    font-size: 1.5rem;
    transition: background-color 0.2s ease;
}

.sub__menu a:hover {
    background: #f5f5f5;
}

.menu__item-pc {
    display: none;
}

/* メニューが開いている時は+を非表示、×を表示 */
.menu__toggle-checkbox:checked~.menu__header .menu__open {
    display: none;
}

.menu__toggle-checkbox:checked~.menu__header .menu__close {
    display: block;
}

/* チェックボックスがチェックされた時の状態 */
.menu__toggle-checkbox:checked~.sub__menu {
    max-height: 300px;
}

/* === nav menu - accordion style END== = */

.button-area {
    margin: 40px auto 0;
}

.btn-online-store {
    border: solid 1px #292929;
    margin: 0 auto;
}

.btn-contact {
    background-color: var(--gray-high);
    color: var(--primary-white);
    width: 75%;
    margin: 20px auto 0;
}

.sns-area {
    width: 30px;
    height: 30px;
    margin: 20px auto 0;
    cursor: pointer;
}

.sns-link {
    display: block;
    width: 100%;
    height: auto;
}

.btn-ig {
    display: none;
}

@media (min-width: 1024px) {
    .nav__content {
        max-width: 100vw;
        width: 100%;
    }

    .nav__menu {
        margin-top: 100px;
        max-width: none;
    }

    .menu__item {
        display: flex;
    }

    .menu__title {
        font-size: 1.7rem;
        font-weight: 600;
    }

    .menu__toggle {
        display: none;
        /* +/×ボタンを非表示 */
    }

    .sub__menu {
        max-height: none;
        overflow: visible;
        display: flex;
    }

    .sub__menu a {
        width: fit-content;
        font-size: 1.6rem;
    }

    .menu__item-sp {
        display: none;
    }

    /* .btn, .btn-contact {
        width:  300px;
        padding: 24px 32px;
        margin-top: 40px;
    }
    .btn-contact {
        margin-top: 32px;
        margin-bottom: 32px;
    } */
}

@media (min-width: 1440px) {
    .nav__content {
        max-width: 100vw;
        width: 100%;
    }

    .nav__logo {
        margin-left: inherit;
        height: 96px;
        width: 170px;
    }

    .nav__logo img {
        margin: 10px 20px;
    }

    .nav__menu {
        margin: 100px auto 0;
        width: 92%;
    }

    .menu__title {
        font-size: 1.8rem;
        font-weight: 600;
    }

    .menu__item {
        display: flex;
        justify-content: flex-start;
        border-bottom: 2px solid #eee;
    }

    .menu__toggle {
        display: none;
        /* +/×ボタンを非表示 */
    }

    .menu__header {
        width: 24%;
        background: none;
        border-bottom: 0px;
    }

    .sub__menu {
        width: 78%;
        max-height: none;
        overflow: visible;
        display: flex;
        justify-content: flex-start;
        gap: 40px;
    }

    .sub__menu li {
        border-top: 0;
        margin: auto 0;
    }

    .sub__menu a {
        width: 100%;
        font-size: 1.7rem;
        padding: 0;
    }

    .menu__item-pc {
        display: flex;
    }
    .menu__item-sp {
        display: none;
    }

    .button-area {
        display: none;
    }

    .sns-area {
        margin-right: inherit;
        padding-right: 24.5%;
    }

    .sns-link {
        display: none;
    }

    .btn-ig {
        display: flex;
        align-items: center;
        justify-content: center;
        border: solid 1px #292929;
        width: 300px;
        padding: 24px 32px;
        margin: 60px auto 0;
    }

    .btn-ig:hover,
    .btn-ig:active {
        background: var(--text-black);
        color: var(--primary-white);
    }

    .btn-ig span {
        display: inline;
        font-family: "Zen Kaku Gothic New", "Noto Sans", sans-serif;
    }

    /* .btn, .btn-contact {
        margin-top: 0;
    }
    .btn-contact {
        margin-top: 0;
        margin-bottom: 0;
    } */
}


/* ===nav menu END === */



/* ============
FOOTER
============ */
.footer {
    margin: 80px auto 0;
    background-color: var(--gray-low);
    padding: 24px var(--contentPadding);
    font-family: "Montserrat", Poppins, sans-serif;
}


/* ブランドセクション */
.footer__brand {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    margin-bottom: 30px;
}

.footer__brand-left,
.footer__brand-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__logo {
    width: auto;
    height: 74px;
}

.footer__store-btn {
    display: inline-block;
    padding: 8px 32px;
    margin-top: 16px;
    border: 1px solid #292929;
    color: var(--text-black);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer__store-btn:hover {
    background-color: var(--text-black);
    color: var(--primary-white);
}

/* コンテンツエリア */
.footer__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 20px;
}

/* 会社情報 */
.footer__company {
    order: 2;
    /* SPでは下に配置 */
    max-width: 450px;
    margin: 0 auto;
}

.footer__company-info {
    list-style: none;
}

.company-item {
    margin-bottom: 8px;
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--text-black);
}

.footer__company-item--title {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 4px;
}

.footer__company-item--address {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 16px;
}

.footer__company-item--title:nth-of-type(2),
.footer__company-item--address:nth-of-type(2) {
    font-family: "Zen Kaku Gothic New", "Noto Sans", sans-serif;
}

/* ナビゲーション */
.footer__nav {
    order: 1;
    /* SPでは上に配置 */
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* ← ここを変更！ */
    gap: 15px 0px;
    /* ← 横のgapを0に */
    margin: 20px auto;
    max-width: 500px;
}

.footer__nav-list:first-child {
    text-align: left;
}

.footer__nav-list:last-child {
    text-align: right;
}

.footer__nav-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 10px;
}

.footer__nav-item {
    margin-bottom: 12px;
    line-height: normal;
}

.footer__nav-link {
    color: #333;
    text-decoration: none;
    font-size: 1.7rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer__nav-link:hover {
    color: var(--primary-white);
}

/* ボトムセクション */
.footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.footer__sdgs {
    width: 180px;
    height: auto;
    order: 1;
    margin: 0 auto;
}

.footer__copyright {
    font-size: 1.2rem;
    color: var(--gray-high);
    font-weight: 400;
    order: 2;
}

/* ==== 769px以上 ====  */
@media (min-width: 769px) {
    .footer {
        padding: 40px 12%;
        margin-top: 80px;
        font: 1.8rem;
    }

    .footer__brand {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        text-align: left;
        margin-bottom: 40px;
    }

    .footer__brand-left {
        justify-content: flex-start;
    }

    .footer__brand-right {
        justify-content: flex-start;
    }

    .footer__logo {
        height: 90px;
    }

    .footer__store-btn {
        font-size: 1.8rem;
    }

    .footer__content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 30px;
    }

    .footer__company {
        order: 1;
        /* PCでは左に配置 */
        margin: 0;
    }

    .footer__nav {
        order: 2;
        /* PCでは右に配置 */
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin: 0;
    }

    .footer__nav-list:first-child,
    .footer__nav-list:last-child {
        text-align: left;
    }

    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer__sdgs {
        width: 200px;
        order: 1;
        margin: 0;
    }

    .footer__copyright {
        order: 2;
        font-size: 1.4rem;
        text-align: bottom;
    }
}