@charset "UTF-8";

:root {
    --color-font: #1f272f;
    --color-base: #f2f3f5;
    --color-main: #052275;
    --color-accent: #f08922;
    --font-sans: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', '游ゴシック', sans-serif;
    --font-serif: 'Zen Old Mincho', 'ヒラギノ明朝 ProN', '游明朝', serif;
}

.main {
    color: var(--color-font);
    font-size: 16px;
    font-family: var(--font-sans);
    font-weight: 400;
}

.main * {
    margin: 0;
    padding: 0;
}

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

.main ul,
.main ol {
    list-style-type: none;
}

.__alert-top {
    display: none !important;
}

/* layout */
.ly_section {
    padding-bottom: 60px;
}

.ly_container {
    width: 100%;
    margin: 0 auto;
}

@media screen and (max-width: 959px) {
    .__heading {
        padding: 0 20px;
    }

    .__h1.c-h1 {
        padding: 0 !important;
        font-size: 1.5em;
    }

    .__information {
        padding: 0 20px;
    }

    #contact-form {
        padding: 0 20px;
    }

    .__shipping-wrap {
        padding: 0 20px;
    }

    .main.main--cart section.__shipping-wrap .__shipping {
        padding: 20px 0;
    }
}

/* element */
.c-button,
.c-button-submit {
    padding: 0.6em 1em;
}

.el_heading_wrap {
    margin-bottom: 40px;
}

.el_heading_wrap__mb20 {
    margin-bottom: 20px !important;
}

@media screen and (max-width: 599px) {
    .el_heading_wrap {
        margin-bottom: 20px;
    }
}

.el_headingLv2 {
    color: var(--color-main);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
}

.el_headingLv2 strong {
    color: var(--color-accent);
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.el_headingMain {
    margin-bottom: 40px;
    padding-bottom: 5px;
    color: var(--color-main);
    border-bottom: 1px solid var(--color-main);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: left;
}

.el_headingLv3 {
    color: var(--color-main);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-align: left;
}

@media screen and (max-width: 599px) {
    .el_headingLv3 {
        text-align: center;
    }
}

.el_lead {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 26px;
}

.el_text {
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 26px;
}

@media screen and (max-width: 959px) {
    .el_headingLv2 {
        font-size: 24px;
    }

    .el_headingLv2 strong {
        font-size: 30px;
    }

    .el_lead {
        font-size: 16px;
    }

    .el_text {
        font-size: 15px;
        line-height: 24px;
    }
}

.el_btn_wrap {
    margin-top: 40px;
    text-align: center;
}

.el_btn {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0 10px;
    width: auto;
    max-width: 100%;
    height: auto;
    min-height: 40px;
    margin: 0 auto;
    padding: 10px 20px;
    color: #ffffff;
    background-color: var(--color-main);
    border-radius: 80px;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.el_btn::after {
    display: inline-block;
    content: '';
    width: 20px;
    height: 7px;
    background-image: url('https://files.bcart.jp/tsuda-suisan-b/uploads/image/arrow-white.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.el_btn:hover {
    opacity: 0.8;
    text-decoration: none !important;
}
.el_guideLink {
    margin-bottom: 40px;
}

.el_guideLink_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media screen and (min-width: 960px) and (max-width: 1279px) {
    .el_guideLink_list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (min-width: 600px) and (max-width: 959px) {
    .el_guideLink_list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (min-width: 426px) and (max-width: 599px) {
    .el_guideLink_list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 425px) {
    .el_guideLink_list {
        grid-template-columns: repeat(1, 1fr);
    }
}

.el_guideLink_item {
    width: 100%;
}

.el_guideLink_btn {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 45px;
    padding: 5px 10px;
    color: var(--color-main);
    background-color: var(--color-base);
    border-radius: 6px;
    box-shadow: 0 5px 6px rgba(0, 0, 0, 0.15);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none !important;
    position: relative;
}

@media screen and (max-width: 1279px) {
    .el_guideLink_btn {
        font-size: 16px;
    }
}

.el_guideLink_btn::after {
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color-main);
    border-bottom: 2px solid var(--color-main);
    transform: rotate(45deg);
}

.el_faq_wrap {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}

@media screen and (min-width: 600px) and (max-width: 959px) {
    .el_faq_wrap {
        padding: 0;
    }
}

@media screen and (max-width: 599px) {
    .el_faq_wrap {
        padding: 0;
    }
}

.el_faq {
    display: block;
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid #d9d9d9;
}

.el_faq_q-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0 0.5em;
    position: relative;
}

.el_faq_q-inner::before {
    display: inline-block;
    justify-content: center;
    align-items: center;
    content: 'Q';
    width: 32px;
    height: 32px;
    color: #ffffff;
    background-color: var(--color-main);
    border-radius: 50%;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.el_faq_q-inner::after {
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid #7f7f7f;
    border-bottom: 2px solid #7f7f7f;
    position: relative;
    right: 3px;
}

.el_faq_q-text {
    display: block;
    width: calc(100% - 0.5em - 32px - 20px);
    font-size: 18px;
    font-weight: 500;
}

@media screen and (max-width: 599px) {
    .el_faq_q-text {
        font-size: 16px;
    }
}

.el_faq_a-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0 0.5em;
    padding-top: 20px;
    position: relative;
}

.el_faq_a-inner::before {
    display: inline-block;
    justify-content: center;
    align-items: center;
    content: 'A';
    width: 32px;
    height: 32px;
    color: #ffffff;
    background-color: #78b4de;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.el_faq_a-text {
    display: block;
    width: calc(100% - 0.5em - 32px);
    font-size: 16px;
    font-weight: 400;
}

@media screen and (max-width: 599px) {
    .el_faq_a-text {
        font-size: 15px;
    }
}

.el_faq_a-text a {
    display: inline;
    color: #489cf0;
    text-decoration: underline;
}

.el_list {
    margin-left: 1em;
}

.el_list__ul {
    list-style-type: '・' !important;
}

/* Program */
.js_faq_q {
    cursor: pointer;
}

.js_faq_q .el_faq_q-inner::after {
    transform: rotate(45deg);
    transition: 0.5s all;
}

.js_faq_q.is_open .el_faq_q-inner::after {
    transform: rotate(-135deg);
    transition: 0.5s all;
}

.js_faq_a {
    display: none;
}

/* helper */
.hp_color__main {
    color: var(--color-main) !important;
}

.hp_bg__base {
    background-color: var(--color-base) !important;
}

.hp_align__left {
    text-align: left !important;
}

.hp_align__center {
    text-align: center !important;
}

@media screen and (max-width: 599px) {
    .hp_br__pcOnly {
        display: none;
    }
}

@media screen and (min-width: 600px) {
    .hp_br__spOnly {
        display: none;
    }
}

/* 「トップページに戻る」の非表示 */
.__to-home {
    display: none !important;
}

/* 「すべてのおすすめ商品を見る」の非表示 */
.__more.c-more {
    display: none !important;
}

/* Bcartバナー非表示 */
.__block--b-credit {
    display: none !important;
}
