@charset "UTF-8";

/* ヘッダー全体 */
.header-custom {
    display: flex !important;
    width: 100% !important;
    max-width: 1400px;
    gap: 0 20px;
    margin: 0 auto;
    padding: 20px 40px;
    box-sizing: border-box;
    align-items: center !important;
    justify-content: space-between !important;
    flex-direction: row !important;
}

@media screen and (min-width: 600px) and (max-width: 959px) {
    .header-custom {
        padding: 20px 20px;
    }
}

/* ロゴ＋テキスト */
.logo-area-custom {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-shrink: 0;
    gap: 10px;
    white-space: nowrap;
}

@media screen and (min-width: 960px) and (max-width: 1199px) {
    .logo-area-custom {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center;
        align-items: center !important;
        flex-shrink: 0;
        gap: 0px;
        white-space: nowrap;
    }
}

@media screen and (min-width: 600px) and (max-width: 959px) {
    .logo-area-custom {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center;
        align-items: center !important;
        flex-shrink: 0;
        gap: 0px;
        white-space: nowrap;
    }
}

.logo-area-custom img {
    width: 200px;
    height: auto;
    display: block;
}

.logo-text-custom {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1f272f;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* 電話番号 */
.tel-custom {
    display: block !important;
    width: auto !important;
    flex: 0 0 auto !important;

    background: #f2f3f5;
    border-radius: 15px;
    padding: 10px 25px;
    box-sizing: border-box;

    text-align: center;
    white-space: nowrap;
    margin-left: auto;
    /* margin-right: 20px; */
    margin-right: 0;
}

@media screen and (min-width: 960px) and (max-width: 1099px) {
    .tel-custom {
        display: none !important;
    }
}

@media screen and (min-width: 600px) and (max-width: 959px) {
    .tel-custom {
        display: none !important;
    }
}

.tel-main-custom {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tel-title-custom {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
    margin-right: 10px;
}

div.tel-number-area-custom {
    display: flex;
    align-items: center;
}

.tel-icon-custom {
    display: block;
    width: 24px;
    height: 24px;
    margin-right: 4px;
}

.tel-custom strong {
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 1px;
}

.tel-custom small {
    display: block;
    font-size: 11px;
    margin-top: 3px;
}

/* 会員登録・ログイン・カート */
div.links-custom {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex: 0 0 auto !important;
    gap: 25px;
}

.links-custom a {
    display: block !important;
    min-width: 55px;
    text-align: center;
    text-decoration: none;
    color: #1f272f !important;
    font-size: 14px;
    white-space: nowrap;
    position: relative;
}

.cart-count {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 14px;
    height: 14px;
    color: #ffffff;
    background-color: #2eb27c;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 400;
    text-align: center;
    position: absolute;
    top: 0;
    right: 5px;
    z-index: 5;
}

/* アイコン */
.header-icon-custom {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto 7px;
}

/* =========================================
   ヘッダーメニュー
   ========================================= */

.gnav-pc-custom {
    width: 100%;
    background-color: #fff;
}

/* メニュー全体 */
.menu-custom {
    width: 100%;
}

.menu-custom ul {
    display: flex !important;
    justify-content: space-around;
    align-items: center;

    width: 100%;
    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
}

/* 各メニュー */
.menu-custom li {
    flex: 1;
    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
    text-align: center;
}

/* メニューの文字 */
.menu-custom li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    color: #052275 !important;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: min(2.6vw, 20px);
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    box-sizing: border-box;
}

/* マウスを乗せたとき */
.menu-custom li a:hover {
    background-color: #f2f3f5;
    color: #052275 !important;
}

/* =========================================
   スマホヘッダー
   599px以下
   ========================================= */

.header-sp-custom {
    display: none !important;
}

/* 599px以下 */
@media screen and (max-width: 599px) {
    .header-custom {
        display: none !important;
    }

    .header-sp-custom {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 0 10px;
        width: 100%;
        max-width: 100vw;
        height: 65px;
        padding: 10px 20px;
        box-sizing: border-box;
        background-color: #fff;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 100;
    }

    .header-sp-custom a {
        text-decoration: none !important;
    }

    .wrapper {
        position: relative;
        top: 65px;
    }

    .footer {
        position: relative;
        top: 65px;
    }

    /* =========================
       スマホロゴ
       ========================= */

    .logo-sp-custom {
        flex: 1;
        min-width: 0;
        text-decoration: none !important;
    }

    .logo-sp-custom img {
        display: block;
        width: 150px;
        max-width: 100%;
        height: auto;
    }

    .logo-sp-custom p {
        margin: 4px 0 0;
        padding: 0;

        color: #1f272f;
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        white-space: nowrap;
    }

    @media screen and (max-width: 599px) {
        .logo-sp-custom p {
            font-size: 10px;
        }
    }

    /* =========================
       スマホカート
       ========================= */

    .cart-sp-custom {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;

        width: 50px;
        height: 60px;
        margin: 0;

        color: #1f272f;
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 13px;
        text-decoration: none;
    }

    .cart-icon-wrap-sp-custom {
        width: 36px;
        height: 36px;
        margin-bottom: 4px;
    }

    .cart-icon-wrap-sp-custom img {
        display: block;
        width: 36px;
        height: 36px;
        margin: 0;
    }

    /* =========================
       MENUボタン
       ========================= */

    .menu-button-sp-custom {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 0;
        width: 50px;
        height: 60px;
        margin: 0;
        padding: 0;
        border: none;
        background: none;
        cursor: pointer;
    }

    .menu-text-sp-custom {
        color: #1f272f;
        font-size: 13px;
        font-family: 'Noto Sans JP', sans-serif;
        line-height: 1.5;
    }

    /* ハンバーガーアイコン */
    .menu-icon-sp-custom {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 36px;
        height: 36px;
        padding: 8px 3px;
    }

    .menu-icon-sp-custom span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #1f272f;
        transition: 0.3s all;
    }
}

/* MENUを開いたとき → × に変更 */
.menu-icon-sp-custom.is-close {
    height: 28px;
    position: relative;
    transition: 0.3s all;
}

.menu-icon-sp-custom.is-close span {
    position: absolute;
    top: 50%;
    left: 0;
    transition: 0.3s all;
}

.menu-icon-sp-custom.is-close span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-icon-sp-custom.is-close span:nth-child(2) {
    display: none;
}

.menu-icon-sp-custom.is-close span:nth-child(3) {
    transform: rotate(-45deg);
}

/* =========================================
   スマホメニュー
   ========================================= */

.sp-menu-custom {
    position: fixed;
    top: 65px;
    right: 0;
    width: 100%;
    max-width: 500px;
    height: calc(100vh - 65px);
    background: #fff;
    box-sizing: border-box;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 100;
}

@media screen and (min-width: 600px) {
    .sp-menu-custom {
        display: none !important;
    }
}

/* MENUを押して開いた状態 */
.sp-menu-custom.is-open {
    transform: translateX(0);
}

/* 閉じるボタン */
.sp-menu-close-custom {
    display: block;

    width: 50px;
    height: 50px;

    margin: 10px 15px 10px auto;

    padding: 0;

    border: none;
    background: none;

    color: #1f272f;

    font-size: 40px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;
}

/* =========================
   検索
   ========================= */

.sp-menu-search-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 335px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.sp-menu-search-custom input {
    flex: 1;
    width: calc(100% - 60px - 10px);
    height: 40px;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px #ddd;
    border-radius: 0.3em;
    box-sizing: border-box;
    font-size: 14px;
}

.sp-menu-search-custom button {
    width: 60px;
    height: 40px;
    border: none;
    border-radius: 0.3em;
    background: #ddd;
    font-size: 14px;
}

/* =========================
   会員登録・ログイン
   ========================= */

.sp-menu-member-custom {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 0 25px 25px;
}

.sp-menu-member-custom a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 50%;
    height: 40px;
    background: #f2f3f5;
    border-radius: 40px;
    color: #1f272f;
    text-decoration: none;
    font-size: 15px;
}

.sp-menu-member-custom img {
    width: 26px;
    height: 26px;
}

/* =========================
   ご利用ガイド
   ========================= */

.sp-menu-guide-custom {
    text-align: center;

    padding: 10px 25px 40px;

    font-size: 20px;
    color: #1f272f;
}

.sp-menu-guide-custom span {
    font-size: 15px;
    text-align: center;
}

.sp-menu-guide-custom a {
    display: block;
    max-width: 550px;
    margin: 20px auto 0;
    padding: 18px 20px;
    border-radius: 40px;
    background: #052275;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-sizing: border-box;
}

/* =========================
   メニュー一覧
   ========================= */

.sp-menu-list-custom {
    padding-bottom: 30px;
}

.sp-menu-list-head {
    display: block;
    height: 50px;
    margin: 0 !important;
    padding: 10px 20px;
    background-color: var(--color-base);
    font-size: 18px;
    font-weight: 500;
    text-align: left;
}

.sp-menu-list-ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style-type: none !important;
}

.sp-menu-list-li {
    display: block;
    width: 100%;
    height: 55px;
}

.sp-menu-list-li:not(:last-child) {
    border-bottom: 1px solid #ddd;
}

.sp-menu-list-custom a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    color: #1f272f;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
}

.sp-menu-list-custom a::after {
    display: block;
    content: '';
    width: 7px;
    height: 7px;
    border-top: 2px solid #ccc;
    border-right: 2px solid #ccc;
    transform: rotate(45deg);
    position: absolute;
    right: 20px;
}

.tel-custom-sp-wrap {
    padding: 0 20px 30px 20px;
    text-align: center;
}

.tel-custom__sp {
    max-width: 360px;
    padding: 10px;
    margin: 0 auto;
}

.tel-title-custom__sp {
    font-size: min(3.25vw, 14px);
}

.tel-number-area-custom__sp strong {
    font-size: min(5.8vw, 25px);
}

.tel-custom__sp small {
    font-size: clamp(10px, 2.5vw, 11px);
}

/* 一般向け */
.ctob-link-wrap {
    display: block;
    margin: 0;
}

@media screen and (min-width: 600px) and (max-width: 1099px) {
    .ctob-link-wrap {
        margin: 0 0 0 auto;
    }
}

.ctob-link-sp-wrap {
    margin-bottom: 20px;
    padding: 0 20px;
}

.ctob-link {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0 !important;
    width: 200px !important;
    height: 50px !important;
    background-color: #ffffff;
    border: 1px solid var(--color-main);
    border-radius: 10px;
    box-shadow: 2px 2px 4px 0 rgba(5, 34, 117, 0.2);
    text-decoration: none !important;
}

@media screen and (min-width: 600px) and (max-width: 767px) {
    .ctob-link {
        display: none !important;
    }
}

.ctob-link__sp {
    width: 100%;
    max-width: 360px;
    height: 50px;
    margin: 0 auto;
}

.ctob-link-subText {
    display: inline-block;
    color: var(--color-font);
    font-size: 12px;
    font-weight: 400;
    text-align: center;
}

.ctob-link-mainText {
    display: inline-block;
    color: var(--color-main);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}
