﻿@charset "UTF-8";
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
    background-color: transparent;
}

a:hover,
a:focus {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    border-style: none;
    vertical-align: top;
}

button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    outline: none;
}

/* KIT/推奨見出しサイズ/【推奨】見出しS */
/* KIT/推奨見出しサイズ/【推奨】見出しXS */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    z-index: 1000;
    height: 110px;
}
@media screen and (min-width: 1080px) {
    .header {
        height: 80px;
        background: transparent;
        transition: background 0.3s;
        padding: 12px clamp(1rem, -0.7143rem + 3.5714vw, 2.5rem);
    }
}
.header__container {
    display: flex;
    align-items: center;
    gap: 13px;
    width: 100%;
}
.header__logo {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 12px;
    left: 16px;
}
@media screen and (min-width: 1080px) {
    .header__logo {
        position: static;
    }
}
.header__logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.header__text {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.0125em;
    color: #333;
}
@media screen and (min-width: 1080px) {
    .header.is-scrolled {
        background: rgba(255, 255, 255, 0.7);
    }
}

.header-nav {
    display: none;
}
@media (min-width: 1080px) {
    .header-nav {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 48px;
        width: 100%;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
        padding-left: clamp(1rem, -0.1429rem + 2.381vw, 2rem);
    }
}
.header-nav.is-visible {
    opacity: 1;
    pointer-events: auto;
}
.header-nav__list {
    display: flex;
    align-items: center;
    gap: clamp(1rem, -0.1429rem + 2.381vw, 2rem);
}
.header-nav__link {
    font-size: 14px;
    white-space: nowrap;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.56px;
    color: #333;
    transition: color 0.2s;
}
.header-nav__link:hover,
.header-nav__link:focus {
    color: #cf331d;
    text-decoration: underline;
}
.header-nav__button-list {
    display: flex;
    gap: 16px;
}
.header-nav__button-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.header-nav__button-text {
    font-size: 10px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.4px;
    text-align: center;
}

.header-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 288px;
    max-height: 543px;
    height: 100%;
    z-index: 1000;
    background: white;
    transform: translateX(104%);
    transition: transform 0.3s ease;
    box-shadow: -2px 0 6px 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 1080px) {
    .header-menu {
        display: none;
    }
}
.header-menu.is-open {
    transform: translateX(0);
}
.header-menu__content {
    width: 100%;
    padding: 0 16px;
    height: 100%;
    overflow-y: auto;
    background: var(--KIT-White, #fff);
    box-shadow: -2px 0 6px 0 rgba(0, 0, 0, 0.1);
}
.header-menu__header {
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px dashed #efe1d1;
    min-height: 40px;
    max-height: 40px;
}
.header-menu__close {
    background: none;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}
.header-menu__close-text {
    color: #333;
    font-size: 12px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.48px;
}
.header-menu__nav {
    width: 100%;
}
.header-menu__list {
    width: 100%;
    border-bottom: 1px solid #efe1d1;
    padding: 0 16px;
    padding-bottom: 8px;
}
.header-menu__link {
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.64px;
    padding: 10px 0;
    display: block;
    color: #333;
    position: relative;
}
.header-menu__link::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("/used/images/kaitori/icon_menu_arrow.svg") no-repeat center center/contain;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.header-menu__button-list {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}
.header-menu__button-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.header-menu__button-text {
    font-size: 10px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.4px;
    text-align: center;
    color: #626262;
}
.header-menu .cta-other__button-list {
    display: flex;
    flex-direction: row;
}
.header-menu .cta-other__button-list .cta-other__button {
    flex: 1;
    font-size: 10px;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.134px;
    padding-right: 16px;
}
.header-menu .cta-other__button-list .cta-other__button span {
    font-size: 12px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.157px;
}

body.no-scroll {
    overflow: hidden;
}

.header-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 50px;
    background: #d80b24;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 12px;
    right: 3rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border-radius: 4px;
}
@media (max-width: 500px) {
    .header-hamburger {
      right: 1rem;
    }
  }
@media (min-width: 1080px) {
    .header-hamburger {
        display: none;
    }
}
.header-hamburger__line {
    display: block;
    width: 26px;
    height: 3px;
    background: white;
    margin: 2px 0;
    border-radius: 10px;
}
.header-hamburger__text {
    color: white;
    text-align: center;
    font-family: Inter;
    font-size: 9px;
    font-weight: 400;
    line-height: normal;
    margin-top: 2px;
    white-space: nowrap;
}

.top-cta {
    position: relative;
    background-color: #b91329;
}
.top-cta__inner {
    width: 100%;
    margin: 0 auto;
    padding: 24px 12px;
    overflow: hidden;
}
@media screen and (min-width: 769px) {
    .top-cta__inner {
        padding: 16px 0 36px 0;
    }
}
.top-cta__heading {
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.8px;
    text-align: center;
    color: #fff;
}
@media screen and (min-width: 769px) {
    .top-cta__heading {
        font-size: 24px;
        letter-spacing: 0.96px;
    }
}
.top-cta__container {
    background: white;
    border-radius: 10px;
    margin: 0 auto;
    margin-top: 8px;
    padding: 16px;
    position: relative;
    width: 93.3vw;
    min-width: 352px;
    max-width: 560px;
    display: flex !important;
    justify-content: space-between;
    gap: 16px;
}
@media screen and (min-width: 769px) {
    .top-cta__container {
        max-width: 720px;
        padding: 16px;
        margin-top: 22px;
        gap: 24px;
    }
}
.top-cta__search {
    text-align: center;
    flex: 1;
}
@media screen and (min-width: 769px) {
    .top-cta__search {
        max-width: 215px;
        flex: 1;
    }
}
.top-cta__label {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.0125em;
    color: #333;
}
@media screen and (min-width: 769px) {
    .top-cta__label {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 170%;
        letter-spacing: 0.0125em;
        color: #333;
    }
}
.top-cta__text {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.0125em;
    color: #333;
    margin-bottom: 4px;
}
@media screen and (min-width: 769px) {
    .top-cta__text {
        flex: 2;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 170%;
        letter-spacing: 0.0125em;
        color: #333;
        font-weight: 500;
        min-height: 23.8px;
    }
}
.top-cta__tel {
    text-align: center;
    flex: 1;
}
@media screen and (min-width: 769px) {
    .top-cta__tel {
        flex: 2;
        background-color: transparent;
    }
}
@media screen and (min-width: 769px) {
    .top-cta__button,
    .top-cta__button-list {
        display: flex;
        flex-direction: column;
        margin-top: 16px;
    }
}
.top-cta__button {
    margin-top: 4px;
}
@media screen and (min-width: 769px) {
    .top-cta__button {
        max-width: 215px;
        margin-top: 16px;
    }
}
.top-cta__button-list {
    text-align: center;
}
@media screen and (min-width: 769px) {
    .top-cta__button-list {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
}
.top-cta .button-cta {
    width: 100%;
    margin: 0 auto;
}
@media screen and (min-width: 769px) {
    .top-cta .button-cta {
        max-width: 215px;
        width: 215px;
    }
}

.cta {
    position: relative;
    background-color: #b91329;
    padding: 56px 0;
}
.cta__inner {
    width: 100%;
    margin: 0 auto;
}
.cta__heading {
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.8px;
    text-align: center;
    color: #fff;
}
@media screen and (min-width: 769px) {
    .cta__heading {
        font-size: 24px;
        letter-spacing: 0.96px;
    }
}
.cta__container {
    background: white;
    border-radius: 10px;
    margin: 0 auto;
    margin-top: 16px;
    padding: 24px;
    position: relative;
    width: 93.3vw;
    min-width: 343px;
    max-width: 560px;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 24px;
}
@media screen and (min-width: 769px) {
    .cta__container {
        max-width: 720px;
        padding: 16px;
        margin-top: 32px;
        flex-direction: row;
    }
}
.cta__search {
    text-align: center;
    flex: 1;
}
@media screen and (min-width: 769px) {
    .cta__search {
        flex: 1;
        background-color: transparent;
        max-width: 215px;
    }
}
.cta__label {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.02em;
    color: #333;
    font-weight: 400;
}
.cta__text {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.0125em;
    color: #333;
    margin-bottom: 4px;
}
@media screen and (min-width: 769px) {
    .cta__text {
        flex: 2;
        background-color: transparent;
        font-weight: 500;
        min-height: 20.4px;
    }
}
.cta__tel {
    text-align: center;
    flex: 1;
}
@media screen and (min-width: 769px) {
    .cta__tel {
        flex: 2;
        background-color: transparent;
    }
}
.cta__button,
.cta__button-list {
    margin-top: 8px;
}
@media screen and (min-width: 769px) {
    .cta__button,
    .cta__button-list {
        display: flex;
        flex-direction: column;
        margin-top: 16px;
    }
}
@media screen and (min-width: 769px) {
    .cta__button {
        max-width: 215px;
    }
}
.cta__button-list {
    text-align: center;
}
@media screen and (min-width: 769px) {
    .cta__button-list {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
}

.cta-other {
    margin-top: 24px;
    text-align: center;
    /* 出張買取ボタンのスタイル */
    /* 宅配買取ボタンのスタイル */
}
.cta-other__button-list {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.cta-other__button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 152px;
    height: 40px;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 8px;
    background-color: #fff;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15px;
    box-shadow: 0 4px 1px 0 rgba(225, 220, 211, 0.5);
}
@media screen and (min-width: 769px) {
    .cta-other__button {
        width: 215px;
    }
}
.cta-other__button span {
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.175px;
}
@media screen and (min-width: 769px) {
    .cta-other__button span {
        font-size: 16px;
    }
}
.cta-other__button--syuttyou::after,
.cta-other__button--takuhai::after {
    content: "";
    position: absolute;
    right: 8px;
    width: 12px;
    height: 12px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("/used/images/kaitori/icon_cta_link_blue.svg");
}
@media screen and (min-width: 1025px) {
    .cta-other__button--syuttyou:hover::after,
    .cta-other__button--takuhai:hover::after {
        background-image: url("/used/images/kaitori/icon_cta_link_white.svg");
    }
}
.cta-other__button--syuttyou {
    border-color: #007fba;
    color: #007fba;
}
@media screen and (min-width: 1025px) {
    .cta-other__button--syuttyou:hover {
        background-color: #007fba;
        border-color: #007fba;
        color: #fff;
    }
}
.cta-other__button--takuhai {
    border-color: #048650;
    color: #048650;
}
.cta-other__button--takuhai::after {
    background-image: url("/used/images/kaitori/icon_cta_link_green.svg");
}
@media screen and (min-width: 1025px) {
    .cta-other__button--takuhai:hover {
        background-color: #048650;
        border-color: #048650;
        color: #fff;
    }
}

.button-cta {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 63px;
    width: 152px;
    padding: 14.5px 8px 13.5px 8px;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}
@media screen and (min-width: 1025px) {
    .button-cta:hover .button-cta__icon-image--default {
        display: none;
    }
    .button-cta:hover .button-cta__icon-image--hover {
        display: block;
    }
}
.button-cta__icon {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.button-cta__icon--w24 {
    width: 24px;
}
.button-cta__icon--w19 {
    width: 19px;
}
.button-cta__icon--w15 {
    width: 15px;
}
.button-cta__icon-image {
    display: block;
}
.button-cta__icon-image--default {
    display: block;
}
.button-cta__icon-image--hover {
    display: none;
}
.button-cta__arrow {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.button-cta__arrow img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
}
.button-cta__text {
    display: block;
    font-size: 16px;
    line-height: 120%;
    color: #333;
    letter-spacing: 0.4px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0;
    padding-left: 12px;
    white-space: nowrap;
}
.button-cta__subtext {
    display: block;
    font-size: 10px;
    line-height: 150%;
    font-weight: 500;
    color: #333;
    letter-spacing: 0.4px;
    color: #fff;
    white-space: nowrap;
}
.button-cta--search {
    border: 1px solid rgba(44, 95, 138, 0.2);
    background: #2c5f8a;
    box-shadow: 0 -9.408px 8px #234b6b inset, 0 4.704px 0.941px 0 #e1dcd3;
}
@media screen and (min-width: 1025px) {
    .button-cta--search:hover {
        background: #fff;
        border-color: #2c5f8a;
        box-shadow: 0 -8px 8px 0 #e9e9e9 inset, 0 4.704px 0.941px 0 #e1dcd3;
    }
    .button-cta--search:hover .button-cta__text,
    .button-cta--search:hover .button-cta__subtext {
        color: #2c5f8a;
    }
}
.button-cta--tel {
    border: 1px solid #cf331d;
    background: #cf331d;
    box-shadow: 0 -9.408px 8px #ba2d1a inset, 0 4.704px 0.941px 0 #e1dcd3;
}
@media screen and (min-width: 1025px) {
    .button-cta--tel:hover {
        background: #fff;
        border-color: #cf331d;
        box-shadow: 0 -8px 8px 0 #e9e9e9 inset, 0 4.704px 0.941px 0 #e1dcd3;
    }
    .button-cta--tel:hover .button-cta__text,
    .button-cta--tel:hover .button-cta__subtext {
        color: #cf331d;
    }
}
.button-cta--tel-alt {
    border: 1px solid #cf331d;
    background-color: #fff;
    padding: 14.5px 8px 18.5px 8px;
    pointer-events: all;
}
@media screen and (min-width: 769px) {
    .button-cta--tel-alt {
        pointer-events: none;
    }
}
.button-cta--tel-alt .button-cta__text {
    font-size: 20px;
    font-size: clamp(1rem, 0.7143rem + 0.5952vw, 1.25rem);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.04em;
    color: #333;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #cf331d;
}
.button-cta--tel-alt .button-cta__subtext {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.02em;
    color: #333;
    color: #333;
    line-height: 120%;
}
.button-cta--line {
    border-radius: 8px;
    border: 1px solid #00b300;
    background: #00b300;
    box-shadow: 0 -9.408px 8px #008f00 inset, 0 4.704px 0.941px 0 #e1dcd3;
}
@media screen and (min-width: 1025px) {
    .button-cta--line:hover {
        background: #fff;
        color: #00b300;
        border-color: #00b300;
        box-shadow: 0 -8px 8px 0 #e9e9e9 inset, 0 4.704px 0.941px 0 #e1dcd3;
    }
    .button-cta--line:hover .button-cta__text,
    .button-cta--line:hover .button-cta__subtext {
        color: #00b300;
    }
}
.button-cta--kit {
    border: 1px solid #333;
    box-shadow: 0 -6px 8px 0 #e9e9e9 inset;
    background: #fff;
    box-shadow: 0 3.733px 0.747px 0 #e1dcd3;
}
@media screen and (min-width: 1025px) {
    .button-cta--kit:hover {
        background: #d8d8d8;
    }
}
.button-cta--kit .button-cta__text,
.button-cta--kit .button-cta__subtext {
    color: #3d3333;
}

.button-cta--w215 {
    width: 215px;
}
.button-cta--w215 .button-cta__icon {
    left: 10px;
}
@media (min-width: 769px) {
    .button-cta--w215 {
        width: 215px;
    }
}

.button-cta--w138 {
    width: 138px;
    height: 40px;
    box-shadow: 0 -8px 8px 0 #e9e9e9 inset, 0 4.704px 0.941px 0 #e1dcd3;
    pointer-events: all;
}
@media (min-width: 769px) {
    .button-cta--w138 {
        height: 58px;
        width: 215px;
        pointer-events: none;
    }
}
.button-cta--w138 .button-cta__icon {
    width: 14px;
}
.button-cta--w138 .button-cta__arrow {
    width: 8px;
}
.button-cta--w138 .button-cta__text {
    font-size: 12.896px;
    color: #cf331d;
    padding-left: 7px;
}
.button-cta--w138 .button-cta__subtext {
    font-size: 7.583px;
    color: #cf331d;
}

.button-cta--w125 {
    width: 125px;
    height: 50px;
}
.button-cta--w125 .button-cta__icon {
    width: 14px;
}
.button-cta--w125 .button-cta__arrow {
    width: 8px;
}
.button-cta--w125 .button-cta__text {
    font-size: 12.896px;
}
.button-cta--w125 .button-cta__subtext {
    font-size: 7.583px;
}
@media (min-width: 769px) {
    .button-cta--w125 {
        width: 125px;
    }
}

.button-cta--w120 {
    width: 120px;
    height: 50px;
}
.button-cta--w120 .button-cta__icon {
    width: 14px;
}
.button-cta--w120 .button-cta__arrow {
    width: 8px;
}
@media (min-width: 769px) {
    .button-cta--w120 .button-cta__arrow {
        width: 10px;
    }
}
.button-cta--w120 .button-cta__text {
    font-size: 12.896px;
}
.button-cta--w120 .button-cta__subtext {
    font-size: 7.583px;
}
@media (min-width: 769px) {
    .button-cta--w120 {
        width: 120px;
    }
}

.button-other {
    display: flex;
    width: 152px;
    height: 40px;
    padding: 12.698px 9.375px 12.063px 13px;
    justify-content: center;
    align-items: flex-start;
    gap: 1.625px;
    flex-shrink: 0;
}
@media (min-width: 769px) {
    .button-other {
        width: 215px;
        height: 40px;
        padding: 12.698px 9.375px 12.063px 45px;
        justify-content: flex-end;
        gap: 32.625px;
    }
}
.button-other--home {
    background-color: #3498db;
    color: #fff;
}
.button-other--delivery {
    background-color: #2ecc71;
    color: #fff;
}

.market-price {
    padding: 56px 0;
    background: #f7f0ed;
}
@media screen and (min-width: 769px) {
    .market-price {
        padding: 72px 0;
    }
}
.market-price .slick-list {
    min-height: 496px;
}
.market-price .slick-prev,
.market-price .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    opacity: 0.6;
}
.market-price .slick-prev img,
.market-price .slick-next img {
    width: 32px;
    height: 32px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}
.market-price .slick-prev {
    left: 20px;
}
@media screen and (min-width: 1440px) {
    .market-price .slick-prev {
        left: 13vw;
    }
}
.market-price .slick-next {
    right: 20px;
}
@media screen and (min-width: 1440px) {
    .market-price .slick-next {
        right: 13vw;
    }
}
.market-price__slider {
    width: 100%;
    margin-top: 28px;
    overflow-x: auto;
}
@media screen and (min-width: 769px) {
    .market-price__slider {
        margin-top: 20px;
    }
}
.market-price__slide {
    background-color: white;
    padding: 16px;
    padding-bottom: 24px;
    border-radius: 12px;
    margin-inline: 8px;
    min-width: 260px !important;
    width: auto;
}
@media screen and (min-width: 1080px) {
    .market-price__slide {
        padding: 24px;
        padding-bottom: 32px;
        margin-inline: 12px;
    }
}
@media screen and (min-width: 1280px) {
    .market-price__slide {
        max-width: 320px !important;
        min-width: 320px !important;
    }
}
.market-price__image {
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
}
.market-price__image img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: 12px;
}
.market-price__text {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.04em;
    color: #333;
    width: 100%;
    margin: 0 auto;
    line-height: 170%;
    min-height: 124px;
    display: grid;
    place-items: center;
}
@media screen and (min-width: 769px) {
    .market-price__text {
        display: flex;
    }
}
.market-price__comparison {
    width: 100%;
    margin: 0 auto;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #333;
}
.market-price__row {
    border-bottom: 2px solid #e7d8b9;
    padding-bottom: 16px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.market-price__row--ours {
    border-bottom: 2px solid #d80b24;
}
.market-price__company {
    font-size: 12px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.48px;
}
.market-price__company--ours {
    color: #d80b24;
}
.market-price__price {
    font-size: 14px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.56px;
}
.market-price__price span {
    font-size: 20px;
    letter-spacing: 0.8px;
}
.market-price__price--ours {
    color: #d80b24;
}
.market-price__price--ours span {
    font-size: 28px;
    letter-spacing: 1.12px;
}
.market-price__note {
    margin: 0 auto;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 343px;
    width: 83%;
    padding-left: 1em;
    text-indent: -1em;
}
@media screen and (min-width: 769px) {
    .market-price__note {
        max-width: 713px;
    }
}
.market-price__note-text {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.0125em;
    color: #333;
}
@media screen and (min-width: 769px) {
    .market-price__note-text {
        text-align: left;
    }
}

.market-price__tabs-container {
    position: relative;
    background-color: #f7f0ed;
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
    margin-top: 40px;
    display: flex;
    --left-gradient-opacity: 0;
    --right-gradient-opacity: 1;
}
@media screen and (min-width: 769px) {
    .market-price__tabs-container {
        justify-content: center;
        margin-top: 24px;
    }
}
.market-price__tabs-container::before,
.market-price__tabs-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 40px;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}
@media screen and (min-width: 769px) {
    .market-price__tabs-container::before,
    .market-price__tabs-container::after {
        display: none;
    }
}
.market-price__tabs-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(247, 240, 237, var(--left-gradient-opacity)), rgba(247, 240, 237, 0));
    transition: background 0.3s ease;
}
.market-price__tabs-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(247, 240, 237, var(--right-gradient-opacity)), rgba(247, 240, 237, 0));
    transition: background 0.3s ease;
}

.market-price__tabs-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.market-price__tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.market-price__tabs {
    display: inline-flex;
    gap: 5px;
    min-width: -moz-max-content;
    min-width: max-content;
    padding-right: 40px;
    padding-bottom: 2px;
}

.market-price__tab {
    padding: 8px 16px;
    cursor: pointer;
    border: 1px solid #333;
    background-color: transparent;
    border-radius: 40px;
    font-weight: 500;
    scroll-snap-align: start;
}
.market-price__tab--active {
    color: #e94e77;
    border-color: #e94e77;
    background-color: #fff;
}

.market-price__tab-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border: none;
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 4;
}
.market-price__tab-arrow--left {
    left: 0;
    background-image: url("/used/images/kaitori/icon_arrow_market-price_left.svg");
}
.market-price__tab-arrow--right {
    right: 0;
    background-image: url("/used/images/kaitori/icon_arrow_market-price_right.svg");
}
@media screen and (min-width: 769px) {
    .market-price__tab-arrow {
        display: none;
    }
}

.market-price__tab--active {
    color: #d80b24;
    border-color: #d80b24;
    background-color: #fff;
}

.market-price__slider-container {
    display: none;
}

.market-price__slider-container--active {
    display: block;
}

.purchase {
    width: 100%;
    position: relative;
    padding: 56px 0;
    background-color: #e7ddda;
    color: #333;
}
@media screen and (min-width: 769px) {
    .purchase {
        padding: 72px 0 112px 0;
    }
}
.purchase .section__title {
    padding-bottom: 0;
}
.purchase .section__title--sm {
    font-size: 28px;
    font-size: clamp(1.5rem, 1.35rem + 0.4444vw, 1.75rem);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.04em;
    color: #333;
    font-weight: 700;
}
.purchase__container {
    margin: 0 auto;
    padding: 32px 16px;
}
@media screen and (min-width: 769px) {
    .purchase__container {
        padding: 40px 20px;
    }
}
.purchase__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    margin-top: 32px;
}
@media screen and (min-width: 769px) {
    .purchase__content {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 32px;
        max-width: initial;
    }
}
.purchase__image-area {
    max-width: 468px;
    height: clamp(168px, 44.8vw, 320px);
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}
@media screen and (min-width: 769px) {
    .purchase__image-area {
        max-width: 400px;
        height: 311px;
        padding: 24px 16px;
        flex: 5;
    }
}
.purchase__image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    -o-object-position: center;
    object-position: center;
}
.purchase__text-area {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    flex: 1;
}
@media screen and (min-width: 769px) {
    .purchase__text-area {
        padding: 0 16px;
        margin-top: 0;
        flex: 7;
    }
}
.purchase__heading {
    text-align: center;
    font-size: 20px;
    border-bottom: 1px solid #d80b24;
    padding-bottom: 8px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.96px;
}
@media screen and (min-width: 769px) {
    .purchase__heading {
        font-size: 24px;
    }
}
.purchase__heading--blue {
    border-bottom: 1px solid #007fba;
}
.purchase__heading--green {
    border-bottom: 1px solid #048650;
}
.purchase__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.purchase__item {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 24px */
    letter-spacing: 0.64px;
    white-space: nowrap;
}
@media screen and (min-width: 769px) {
    .purchase__item {
        font-size: 20px;
        letter-spacing: 0.8px;
    }
}
.purchase__item--sm {
    display: inline;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.02em;
    color: #333;
}
.purchase__item--lg {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 30px */
    letter-spacing: 0.8px;
}
@media screen and (min-width: 769px) {
    .purchase__item--lg {
        font-size: 24px;
        letter-spacing: 0.96px;
    }
}
.purchase__item-check {
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-right: 4px;
    background-image: url(/used/images/kaitori/icon_check.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.purchase__note-container {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.purchase__note {
    display: flex;
    gap: 3px;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.125px;
}
@media screen and (min-width: 769px) {
    .purchase__note {
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.15px;
        gap: 8px;
    }
}
.purchase__note span {
    display: block;
}

.purchase-items {
    margin-top: 32px;
    background-color: #fff;
}
@media screen and (min-width: 769px) {
    .purchase-items {
        margin-top: 8px;
    }
}
.purchase-items__content {
    width: 100%;
    display: flex;
    flex-direction: column;
}
@media screen and (min-width: 769px) {
    .purchase-items__content {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        gap: 24px;
        padding: 0 24px;
    }
}
.purchase-items__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* SP時4カラム */
    gap: 8px 4px;
    margin: 0 auto;
    margin-top: 8px;
    max-width: 560px;
}
@media (min-width: 480px) {
    .purchase-items__list {
        grid-template-columns: repeat(6, 1fr); /* PC時7カラム */
    }
}
@media (min-width: 769px) {
    .purchase-items__list {
        grid-template-columns: repeat(7, 1fr); /* PC時7カラム */
        margin-top: 16px;
        max-width: initial;
    }
    .purchase-items__list--repeat4 {
        grid-template-columns: repeat(4, 1fr); /* PC時7カラム */
    }
}
.purchase-items__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
@media (min-width: 769px) {
    .purchase-items__item {
        max-width: 91px;
    }
}
.purchase-items__image {
    width: 50px;
    height: 50px;
    -o-object-fit: contain;
    object-fit: contain;
}
@media (min-width: 769px) {
    .purchase-items__image {
        width: 61px;
        height: 61px;
    }
}
.purchase-items__name {
    font-size: 12px;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.15px;
    color: #333;
    text-align: center;
}
@media (min-width: 769px) {
    .purchase-items__name {
        font-size: 14.811px;
        letter-spacing: 0.185px;
    }
}
.purchase-items__text {
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.64px;
    text-align: center;
    margin-top: 24px;
    color: #d80b24;
}
@media screen and (min-width: 769px) {
    .purchase-items__text {
        font-size: 20px;
    }
}
.purchase-items__note {
    color: #000;
    margin-top: 24px;
    font-size: 12px;
    font-weight: 500;
    line-height: 170%; /* 20.4px */
    letter-spacing: 0.15px;
}
@media screen and (min-width: 769px) {
    .purchase-items__note {
        font-size: 14px;
        letter-spacing: 0.175px;
    }
}

.items {
    width: 100%;
    position: relative;
    padding: 56px 0;
    background-color: #e7ddda;
    color: #333;
}
@media screen and (min-width: 769px) {
    .items {
        padding: 72px 0;
    }
}
.items .section__title {
    padding-bottom: 0;
}
.items .common-koyashiya {
    margin-top: 32px;
}
@media screen and (min-width: 769px) {
    .items .common-koyashiya {
        max-width: 400px;
        width: 80%;
    }
}
.items__container {
    margin: 0 auto;
    padding: 32px 16px;
}
@media screen and (min-width: 769px) {
    .items__container {
        padding: 40px 20px;
    }
}
.items__grid-wrapper {
    position: relative;
}
.items__grid-container {
    display: grid;
    position: relative;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
    align-items: start;
    margin: 0 auto;
    margin-top: 32px;
    margin-bottom: 32px;
    max-height: 300px;
    max-width: 343px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
@media screen and (min-width: 480px) {
    .items__grid-container {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        max-width: initial;
    }
}
@media screen and (min-width: 769px) {
    .items__grid-container {
        max-height: initial;
    }
}
@media screen and (min-width: 1024px) {
    .items__grid-container {
        grid-template-columns: repeat(5, 1fr);
        max-width: initial;
    }
}
.items__fade {
    position: absolute;
    bottom: 66px;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 100%);
    pointer-events: none;
}
@media screen and (min-width: 769px) {
    .items__fade {
        display: none;
    }
}
.items__grid-container--expanded + .items__fade {
    opacity: 0;
}
.items__grid-container--expanded {
    max-height: none;
}
.items__toggle-button {
    display: block;
    position: relative;
    z-index: 100;
    margin: 0 auto;
    padding: 8px 0;
    width: 152px;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.52px;
    color: #fff;
    border-radius: 8px;
    border: 0.665px solid #949494;
    color: #757575;
    background: #fff;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}
@media screen and (min-width: 769px) {
    .items__toggle-button {
        display: none;
    }
}
.items__item {
    text-align: center;
    width: 140px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
@media screen and (min-width: 1024px) {
    .items__item {
        width: 180px;
    }
}
.items__name {
    width: 100%;
    min-height: 48px;
    max-height: 48px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.01em;
    color: #333;
}
.items__image {
    width: 100%;
    min-height: 98px;
    max-height: 98px;
    border-radius: 8px;
    -o-object-fit: contain;
    object-fit: contain;
    border: 1px solid #d8d8d8;
}
.items__text {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.01em;
    color: #333;
    text-align: left;
    display: block;
    width: 100%;
}
@media screen and (min-width: 769px) {
    .items__text {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        letter-spacing: 0.01em;
        color: #333;
    }
}
.items__note {
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.02em;
    color: #333;
    text-align: left;
    display: block;
    width: 100%;
}
@media screen and (min-width: 769px) {
    .items__note {
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 170%;
        letter-spacing: 0.02em;
        color: #333;
    }
}
.items__info-note {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.02em;
    color: #333;
    margin-top: 32px;
}
@media screen and (min-width: 1024px) {
    .items__info-note {
        text-align: center;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 170%;
        letter-spacing: 0.02em;
        color: #333;
    }
}

.flow {
    width: 100%;
    position: relative;
    padding: 56px 0;
    background-color: #e7ddda;
    color: #333;
}
.flow .section__title--sm {
    font-size: 28px;
    font-size: clamp(1.5rem, 1.35rem + 0.4444vw, 1.75rem);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.04em;
    color: #333;
    font-weight: 700;
}
.flow .section__title {
    padding-bottom: 0;
}
.flow__container {
    margin: 0 auto;
    padding: 24px 16px;
}
.flow__note {
    display: flex;
    gap: 3px;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.125px;
}
@media screen and (min-width: 769px) {
    .flow__note {
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.15px;
        gap: 8px;
    }
}
.flow__note span {
    display: block;
}

.flow-steps {
    display: grid;
    grid-template-columns: 1fr 13px 1fr;
    gap: 40px 16px;
    align-items: flex-start;
    max-width: 400px;
    margin: 0 auto;
}
@media screen and (min-width: 769px) {
    .flow-steps {
        grid-template-columns: 1fr 24px 1fr 24px 1fr 24px 1fr 24px 1fr;
        gap: 0;
        max-width: initial;
    }
    .flow-steps--4col {
        grid-template-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
        max-width: 880px;
        width: 80%;
        margin: 0 auto;
    }
}

.flow-step {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.flow-step__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.8px;
    font-weight: bold;
    margin-bottom: 8px;
    position: relative;
    color: #d80b24;
}
.flow-step__title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    border-radius: 12px;
    background-color: #d80b24;
}

.flow-step__image {
    width: 135px;
    height: 150px;
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
    margin: 0 auto;
}
@media screen and (min-width: 769px) {
    .flow-step__image {
        width: min(135px, 9.3vw);
    }
}

.flow-step__text {
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.32px;
}
@media screen and (min-width: 769px) {
    .flow-step__text {
        font-size: clamp(16px, 1.3vw, 20px);
        letter-spacing: 0.4px;
    }
}
.flow-step__text--sm {
    font-size: 10px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.4px;
    margin-top: 4px;
    text-align: left;
}
@media screen and (min-width: 769px) {
    .flow-step__text--sm {
        text-align: center;
    }
}

.flow-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 13px;
}

.flow-arrow__image {
    width: 100%;
    height: auto;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: contain;
    object-fit: contain;
}

.flow-note {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    margin-top: 16px;
    padding: 0 8px;
    max-width: 500px;
    min-width: 311px;
    width: 83vw;
}
@media screen and (min-width: 769px) {
    .flow-note {
        margin-top: 24px;
    }
}

.flow-note__text {
    font-size: 12px;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.15px;
    color: #333;
}

.purchase-tabs,
.items-tabs,
.flow-tabs {
    width: 100%;
    position: relative;
    /* Store (赤) */
    /* Visiting (青) */
    /* Shipping (緑) */
}
.purchase-tabs__nav,
.items-tabs__nav,
.flow-tabs__nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}
.purchase-tabs__button,
.items-tabs__button,
.flow-tabs__button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 0 8px 0;
    background: #fff;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 8px 8px 0 0;
    min-width: auto;
    color: #757575;
    transition: color 0.3s ease, background-color 0.3s ease;
    width: 100px;
    gap: 4px;
    border-top: 1px solid #757575;
    border-right: 1px solid #757575;
    border-left: 1px solid #757575;
}
.purchase-tabs__button--active,
.items-tabs__button--active,
.flow-tabs__button--active {
    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
    border-left: 1px solid transparent;
}
@media screen and (min-width: 769px) {
    .purchase-tabs__button,
    .items-tabs__button,
    .flow-tabs__button {
        max-width: clamp(180px, 25vw, 261px);
        flex: 1;
    }
}
.purchase-tabs__icon,
.items-tabs__icon,
.flow-tabs__icon {
    display: block;
    width: 28px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    -o-object-position: center;
    object-position: center;
    transition: background-color 0.3s ease;
}
.purchase-tabs__icon--visiting,
.items-tabs__icon--visiting,
.flow-tabs__icon--visiting {
    width: 20px;
    height: 26px;
}
.purchase-tabs__button--store,
.items-tabs__button--store,
.flow-tabs__button--store {
    color: #757575;
}
.purchase-tabs__button--store.purchase-tabs__button--active,
.purchase-tabs__button--store.items-tabs__button--active,
.purchase-tabs__button--store.flow-tabs__button--active,
.items-tabs__button--store.purchase-tabs__button--active,
.items-tabs__button--store.items-tabs__button--active,
.items-tabs__button--store.flow-tabs__button--active,
.flow-tabs__button--store.purchase-tabs__button--active,
.flow-tabs__button--store.items-tabs__button--active,
.flow-tabs__button--store.flow-tabs__button--active {
    background: #d80b24;
    color: #fff;
}
.purchase-tabs__button--store.purchase-tabs__button--active .purchase-tabs__icon--store,
.purchase-tabs__button--store.purchase-tabs__button--active .items-tabs__icon--store,
.purchase-tabs__button--store.purchase-tabs__button--active .flow-tabs__icon--store,
.purchase-tabs__button--store.items-tabs__button--active .purchase-tabs__icon--store,
.purchase-tabs__button--store.items-tabs__button--active .items-tabs__icon--store,
.purchase-tabs__button--store.items-tabs__button--active .flow-tabs__icon--store,
.purchase-tabs__button--store.flow-tabs__button--active .purchase-tabs__icon--store,
.purchase-tabs__button--store.flow-tabs__button--active .items-tabs__icon--store,
.purchase-tabs__button--store.flow-tabs__button--active .flow-tabs__icon--store,
.items-tabs__button--store.purchase-tabs__button--active .purchase-tabs__icon--store,
.items-tabs__button--store.purchase-tabs__button--active .items-tabs__icon--store,
.items-tabs__button--store.purchase-tabs__button--active .flow-tabs__icon--store,
.items-tabs__button--store.items-tabs__button--active .purchase-tabs__icon--store,
.items-tabs__button--store.items-tabs__button--active .items-tabs__icon--store,
.items-tabs__button--store.items-tabs__button--active .flow-tabs__icon--store,
.items-tabs__button--store.flow-tabs__button--active .purchase-tabs__icon--store,
.items-tabs__button--store.flow-tabs__button--active .items-tabs__icon--store,
.items-tabs__button--store.flow-tabs__button--active .flow-tabs__icon--store,
.flow-tabs__button--store.purchase-tabs__button--active .purchase-tabs__icon--store,
.flow-tabs__button--store.purchase-tabs__button--active .items-tabs__icon--store,
.flow-tabs__button--store.purchase-tabs__button--active .flow-tabs__icon--store,
.flow-tabs__button--store.items-tabs__button--active .purchase-tabs__icon--store,
.flow-tabs__button--store.items-tabs__button--active .items-tabs__icon--store,
.flow-tabs__button--store.items-tabs__button--active .flow-tabs__icon--store,
.flow-tabs__button--store.flow-tabs__button--active .purchase-tabs__icon--store,
.flow-tabs__button--store.flow-tabs__button--active .items-tabs__icon--store,
.flow-tabs__button--store.flow-tabs__button--active .flow-tabs__icon--store {
    background-image: url("/used/images/kaitori/icon_store_active.svg");
}
.purchase-tabs__button--store .purchase-tabs__icon--store,
.purchase-tabs__button--store .items-tabs__icon--store,
.purchase-tabs__button--store .flow-tabs__icon--store,
.items-tabs__button--store .purchase-tabs__icon--store,
.items-tabs__button--store .items-tabs__icon--store,
.items-tabs__button--store .flow-tabs__icon--store,
.flow-tabs__button--store .purchase-tabs__icon--store,
.flow-tabs__button--store .items-tabs__icon--store,
.flow-tabs__button--store .flow-tabs__icon--store {
    background-image: url("/used/images/kaitori/icon_store_default.svg");
}
.purchase-tabs__button--visiting,
.items-tabs__button--visiting,
.flow-tabs__button--visiting {
    color: #757575;
}
.purchase-tabs__button--visiting.purchase-tabs__button--active,
.purchase-tabs__button--visiting.items-tabs__button--active,
.purchase-tabs__button--visiting.flow-tabs__button--active,
.items-tabs__button--visiting.purchase-tabs__button--active,
.items-tabs__button--visiting.items-tabs__button--active,
.items-tabs__button--visiting.flow-tabs__button--active,
.flow-tabs__button--visiting.purchase-tabs__button--active,
.flow-tabs__button--visiting.items-tabs__button--active,
.flow-tabs__button--visiting.flow-tabs__button--active {
    background: #007fba;
    color: #fff;
}
.purchase-tabs__button--visiting.purchase-tabs__button--active .purchase-tabs__icon--visiting,
.purchase-tabs__button--visiting.purchase-tabs__button--active .items-tabs__icon--visiting,
.purchase-tabs__button--visiting.purchase-tabs__button--active .flow-tabs__icon--visiting,
.purchase-tabs__button--visiting.items-tabs__button--active .purchase-tabs__icon--visiting,
.purchase-tabs__button--visiting.items-tabs__button--active .items-tabs__icon--visiting,
.purchase-tabs__button--visiting.items-tabs__button--active .flow-tabs__icon--visiting,
.purchase-tabs__button--visiting.flow-tabs__button--active .purchase-tabs__icon--visiting,
.purchase-tabs__button--visiting.flow-tabs__button--active .items-tabs__icon--visiting,
.purchase-tabs__button--visiting.flow-tabs__button--active .flow-tabs__icon--visiting,
.items-tabs__button--visiting.purchase-tabs__button--active .purchase-tabs__icon--visiting,
.items-tabs__button--visiting.purchase-tabs__button--active .items-tabs__icon--visiting,
.items-tabs__button--visiting.purchase-tabs__button--active .flow-tabs__icon--visiting,
.items-tabs__button--visiting.items-tabs__button--active .purchase-tabs__icon--visiting,
.items-tabs__button--visiting.items-tabs__button--active .items-tabs__icon--visiting,
.items-tabs__button--visiting.items-tabs__button--active .flow-tabs__icon--visiting,
.items-tabs__button--visiting.flow-tabs__button--active .purchase-tabs__icon--visiting,
.items-tabs__button--visiting.flow-tabs__button--active .items-tabs__icon--visiting,
.items-tabs__button--visiting.flow-tabs__button--active .flow-tabs__icon--visiting,
.flow-tabs__button--visiting.purchase-tabs__button--active .purchase-tabs__icon--visiting,
.flow-tabs__button--visiting.purchase-tabs__button--active .items-tabs__icon--visiting,
.flow-tabs__button--visiting.purchase-tabs__button--active .flow-tabs__icon--visiting,
.flow-tabs__button--visiting.items-tabs__button--active .purchase-tabs__icon--visiting,
.flow-tabs__button--visiting.items-tabs__button--active .items-tabs__icon--visiting,
.flow-tabs__button--visiting.items-tabs__button--active .flow-tabs__icon--visiting,
.flow-tabs__button--visiting.flow-tabs__button--active .purchase-tabs__icon--visiting,
.flow-tabs__button--visiting.flow-tabs__button--active .items-tabs__icon--visiting,
.flow-tabs__button--visiting.flow-tabs__button--active .flow-tabs__icon--visiting {
    background-image: url("/used/images/kaitori/icon_visiting_active.svg");
}
.purchase-tabs__button--visiting .purchase-tabs__icon--visiting,
.purchase-tabs__button--visiting .items-tabs__icon--visiting,
.purchase-tabs__button--visiting .flow-tabs__icon--visiting,
.items-tabs__button--visiting .purchase-tabs__icon--visiting,
.items-tabs__button--visiting .items-tabs__icon--visiting,
.items-tabs__button--visiting .flow-tabs__icon--visiting,
.flow-tabs__button--visiting .purchase-tabs__icon--visiting,
.flow-tabs__button--visiting .items-tabs__icon--visiting,
.flow-tabs__button--visiting .flow-tabs__icon--visiting {
    background-image: url("/used/images/kaitori/icon_visiting_default.svg");
}
.purchase-tabs__button--shipping,
.items-tabs__button--shipping,
.flow-tabs__button--shipping {
    color: #757575;
}
.purchase-tabs__button--shipping.purchase-tabs__button--active,
.purchase-tabs__button--shipping.items-tabs__button--active,
.purchase-tabs__button--shipping.flow-tabs__button--active,
.items-tabs__button--shipping.purchase-tabs__button--active,
.items-tabs__button--shipping.items-tabs__button--active,
.items-tabs__button--shipping.flow-tabs__button--active,
.flow-tabs__button--shipping.purchase-tabs__button--active,
.flow-tabs__button--shipping.items-tabs__button--active,
.flow-tabs__button--shipping.flow-tabs__button--active {
    background: #048650;
    color: #fff;
}
.purchase-tabs__button--shipping.purchase-tabs__button--active .purchase-tabs__icon--shipping,
.purchase-tabs__button--shipping.purchase-tabs__button--active .items-tabs__icon--shipping,
.purchase-tabs__button--shipping.purchase-tabs__button--active .flow-tabs__icon--shipping,
.purchase-tabs__button--shipping.items-tabs__button--active .purchase-tabs__icon--shipping,
.purchase-tabs__button--shipping.items-tabs__button--active .items-tabs__icon--shipping,
.purchase-tabs__button--shipping.items-tabs__button--active .flow-tabs__icon--shipping,
.purchase-tabs__button--shipping.flow-tabs__button--active .purchase-tabs__icon--shipping,
.purchase-tabs__button--shipping.flow-tabs__button--active .items-tabs__icon--shipping,
.purchase-tabs__button--shipping.flow-tabs__button--active .flow-tabs__icon--shipping,
.items-tabs__button--shipping.purchase-tabs__button--active .purchase-tabs__icon--shipping,
.items-tabs__button--shipping.purchase-tabs__button--active .items-tabs__icon--shipping,
.items-tabs__button--shipping.purchase-tabs__button--active .flow-tabs__icon--shipping,
.items-tabs__button--shipping.items-tabs__button--active .purchase-tabs__icon--shipping,
.items-tabs__button--shipping.items-tabs__button--active .items-tabs__icon--shipping,
.items-tabs__button--shipping.items-tabs__button--active .flow-tabs__icon--shipping,
.items-tabs__button--shipping.flow-tabs__button--active .purchase-tabs__icon--shipping,
.items-tabs__button--shipping.flow-tabs__button--active .items-tabs__icon--shipping,
.items-tabs__button--shipping.flow-tabs__button--active .flow-tabs__icon--shipping,
.flow-tabs__button--shipping.purchase-tabs__button--active .purchase-tabs__icon--shipping,
.flow-tabs__button--shipping.purchase-tabs__button--active .items-tabs__icon--shipping,
.flow-tabs__button--shipping.purchase-tabs__button--active .flow-tabs__icon--shipping,
.flow-tabs__button--shipping.items-tabs__button--active .purchase-tabs__icon--shipping,
.flow-tabs__button--shipping.items-tabs__button--active .items-tabs__icon--shipping,
.flow-tabs__button--shipping.items-tabs__button--active .flow-tabs__icon--shipping,
.flow-tabs__button--shipping.flow-tabs__button--active .purchase-tabs__icon--shipping,
.flow-tabs__button--shipping.flow-tabs__button--active .items-tabs__icon--shipping,
.flow-tabs__button--shipping.flow-tabs__button--active .flow-tabs__icon--shipping {
    background-image: url("/used/images/kaitori/icon_shipping_active.svg");
}
.purchase-tabs__button--shipping .purchase-tabs__icon--shipping,
.purchase-tabs__button--shipping .items-tabs__icon--shipping,
.purchase-tabs__button--shipping .flow-tabs__icon--shipping,
.items-tabs__button--shipping .purchase-tabs__icon--shipping,
.items-tabs__button--shipping .items-tabs__icon--shipping,
.items-tabs__button--shipping .flow-tabs__icon--shipping,
.flow-tabs__button--shipping .purchase-tabs__icon--shipping,
.flow-tabs__button--shipping .items-tabs__icon--shipping,
.flow-tabs__button--shipping .flow-tabs__icon--shipping {
    background-image: url("/used/images/kaitori/icon_shipping_default.svg");
}
.purchase-tabs__content,
.items-tabs__content,
.flow-tabs__content {
    width: 90%;
    min-width: 343px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}
.purchase-tabs__panel,
.items-tabs__panel,
.flow-tabs__panel {
    background-color: #fff;
    display: none;
    border: 2px solid transparent;
    border-radius: 8px;
}
.purchase-tabs__panel[data-panel="purchase-store"],
.purchase-tabs__panel[data-panel="items-store"],
.purchase-tabs__panel[data-panel="flow-store"],
.items-tabs__panel[data-panel="purchase-store"],
.items-tabs__panel[data-panel="items-store"],
.items-tabs__panel[data-panel="flow-store"],
.flow-tabs__panel[data-panel="purchase-store"],
.flow-tabs__panel[data-panel="items-store"],
.flow-tabs__panel[data-panel="flow-store"] {
    border-color: #d80b24;
}
.purchase-tabs__panel[data-panel="purchase-visiting"],
.purchase-tabs__panel[data-panel="items-visiting"],
.purchase-tabs__panel[data-panel="flow-visiting"],
.items-tabs__panel[data-panel="purchase-visiting"],
.items-tabs__panel[data-panel="items-visiting"],
.items-tabs__panel[data-panel="flow-visiting"],
.flow-tabs__panel[data-panel="purchase-visiting"],
.flow-tabs__panel[data-panel="items-visiting"],
.flow-tabs__panel[data-panel="flow-visiting"] {
    border-color: #007fba;
}
.purchase-tabs__panel[data-panel="purchase-shipping"],
.purchase-tabs__panel[data-panel="items-shipping"],
.purchase-tabs__panel[data-panel="flow-shipping"],
.items-tabs__panel[data-panel="purchase-shipping"],
.items-tabs__panel[data-panel="items-shipping"],
.items-tabs__panel[data-panel="flow-shipping"],
.flow-tabs__panel[data-panel="purchase-shipping"],
.flow-tabs__panel[data-panel="items-shipping"],
.flow-tabs__panel[data-panel="flow-shipping"] {
    border-color: #048650;
}
.purchase-tabs__panel--active,
.items-tabs__panel--active,
.flow-tabs__panel--active {
    display: block;
}

.common-tab-cta {
    width: 100%;
    max-width: 528px;
    margin: 0 auto;
    position: relative;
    border-radius: 10px;
    margin-top: 32px;
    padding: 16px;
    background: #e47c84;
}
.common-tab-cta--blue {
    background: #cbe7fa;
}
.common-tab-cta--green {
    background: #d4e9d7;
}
.common-tab-cta__heading {
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.64px;
    text-align: center;
    color: #fff;
    white-space: nowrap;
}
.common-tab-cta__heading span {
    font-size: 14px;
}
.common-tab-cta__heading--black {
    color: #333;
}
.common-tab-cta__container {
    background-color: #fff;
    margin-top: 16px;
    padding: 16px 8px 14px 8px;
    border-radius: 8px;
}
.common-tab-cta__label {
    font-size: 14px;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.175px;
    color: #333;
    text-align: center;
}
.common-tab-cta__button-list {
    margin-top: 8px;
    display: flex;
    justify-content: center;
    gap: 16px;
}
@media screen and (min-width: 769px) {
    .common-tab-cta__button-list {
        gap: 24px;
        justify-content: center;
    }
}
.common-tab-cta .button-cta--w120 {
    max-width: 225px;
    flex: 1;
}
@media screen and (min-width: 769px) {
    .common-tab-cta .button-cta--w120 {
        min-height: 63px;
    }
}
.common-tab-cta .button-cta--tel {
    pointer-events: all;
}
@media screen and (min-width: 769px) {
    .common-tab-cta .button-cta--tel {
        pointer-events: none;
    }
}
@media screen and (min-width: 769px) {
    .common-tab-cta .button-cta__text {
        font-size: 16px;
        font-weight: 700;
    }
    .common-tab-cta .button-cta__text--lg {
        font-size: 20px;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 0.8px;
    }
}
@media screen and (min-width: 769px) {
    .common-tab-cta .button-cta__subtext {
        font-size: 12px;
        font-weight: 500;
    }
}
.common-tab-cta .button-cta__icon--lg {
    width: 18px;
}
.common-tab-cta .button-cta__icon {
    left: 4px;
}
@media screen and (min-width: 769px) {
    .common-tab-cta .button-cta__icon {
        left: 10px;
    }
}
.common-tab-cta .button-cta__arrow {
    right: 4px;
}

.voice {
    width: 100%;
    position: relative;
    padding: 56px 0;
    background: #f7f0ed;
    z-index: 10;
}
@media screen and (min-width: 769px) {
    .voice {
        padding: 72px 0;
    }
}
.voice .slick-prev,
.voice .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    opacity: 0.6;
}
.voice .slick-prev img,
.voice .slick-next img {
    width: 32px;
    height: 32px;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}
.voice .slick-prev {
    left: 20px;
}
@media screen and (min-width: 1440px) {
    .voice .slick-prev {
        left: 13vw;
    }
}
.voice .slick-next {
    right: 20px;
}
@media screen and (min-width: 1440px) {
    .voice .slick-next {
        right: 13vw;
    }
}
.voice__slider {
    width: 100%;
    margin-top: 24px;
}
.voice__slide {
    margin: 0 8px;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    min-width: 311px;
    max-width: 311px;
    border: 1px solid #d8d8d8;
}
.voice__slide img {
    margin: 0 auto;
}
@media screen and (min-width: 769px) {
    .voice__slide {
        padding: 24px;
    }
}
.voice__inner {
    margin: 0 auto;
    background-color: white;
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    min-height: 472px;
}
.voice__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.voice__profile {
    width: 74px;
    flex-shrink: 0;
}
.voice__profile img {
    min-width: 50px;
    max-width: 50px;
    min-height: 50px;
    max-height: 50px;
    -o-object-fit: contain;
    object-fit: contain;
}
.voice__profile-text {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.02em;
    color: #333;
}
.voice__heading {
    flex: 1;
    min-width: 0;
}
.voice__heading-text {
    text-align: left;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.04em;
    color: #333;
    font-weight: 700;
}
.voice__content {
    width: 100%;
    margin-top: 16px;
}
.voice__text {
    text-align: left;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.04em;
    color: #333;
    font-weight: 500;
}

.footer {
    padding-top: 32px;
    padding-bottom: 83px;
    background-color: #e7ddda;
}
@media (min-width: 1080px) {
    .footer {
        padding-bottom: 0;
    }
}
.footer__container {
    width: 100%;
    margin: 0 auto;
    padding: 24px 16px;
}
@media (min-width: 1080px) {
    .footer__container {
        max-width: 1080px;
        margin: 0 auto;
    }
}
.footer__logo {
    width: 100%;
    text-align: center;
}

.footer-navi {
    width: 100%;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-navi__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}
@media (min-width: 1080px) {
    .footer-navi__list {
        flex-direction: row;
        justify-content: center;
        gap: 56px;
    }
}
.footer-navi__item {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.04em;
    color: #333;
}
.footer-navi__circle {
    width: 8px;
    height: 8px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    background-color: #3d3333;
    border-radius: 100%;
    margin-right: 4px;
}
@media (min-width: 1080px) {
    .footer-navi__circle {
        display: none;
    }
}
.footer-navi__link {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.04em;
    color: #333;
    color: #333;
    border-bottom: 1px;
    transition: color 0.2s;
    text-decoration-line: underline;
    text-decoration-style: solid;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
.footer-navi__link:hover,
.footer-navi__link:focus {
    color: #7e4241;
    text-decoration: underline;
}

.footer-navi__item:first-child .footer-navi__link::after,
.footer-navi__item:nth-child(2) .footer-navi__link::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 4px;
    vertical-align: middle;
    background: url("/used/images/kaitori/icon_outbound.svg") no-repeat center center/contain;
}
@media (min-width: 1080px) {
    .footer-navi__item:first-child .footer-navi__link::after,
    .footer-navi__item:nth-child(2) .footer-navi__link::after {
        width: 16px;
        height: 16px;
        margin-left: 6px;
    }
}

.footer__legal {
    margin-top: 24px;
}
@media (min-width: 1080px) {
    .footer__legal {
        width: 232px;
        margin: 0 auto;
        margin-top: 24px;
    }
}
.footer__legal .footer__license-title,
.footer__legal .footer__license-number {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.04em;
    color: #333;
    color: #333;
    margin: 0;
}

.footer-copyright {
    width: 100%;
    background-color: #333;
    padding: 16px 0 4px 0;
}
@media (min-width: 1080px) {
    .footer-copyright {
        padding: 16px 0;
    }
}
.footer-copyright__text {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.0125em;
    color: #333;
    color: #fff;
    text-align: center;
}

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

body {
    font-size: 16px;
    color: #333;
    min-width: 375px;
    font-family: "Noto Sans JP", sans-serif;
    background: #fff;
    overflow-x: hidden;
}

.sp-only {
    display: block !important;
}

.sp-only--flex {
    display: flex !important;
}

.pc-only,
.pc-only--flex {
    display: none !important;
}

@media screen and (min-width: 769px) {
    .sp-only,
    .sp-only--flex {
        display: none !important;
    }
    .pc-only {
        display: block !important;
    }
    .pc-only--flex {
        display: flex !important;
    }
}
.section__inner {
    padding: 0 16px;
    max-width: 1424px;
    margin: 0 auto;
}
@media screen and (min-width: 769px) {
    .section__inner {
        padding: 0;
    }
}

.section__title-container {
    text-align: center;
    position: relative;
    z-index: 10;
}

.section__title {
    font-size: 32px;
    font-size: clamp(1.75rem, 1.4643rem + 0.5952vw, 2rem);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.04em;
    color: #333;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 10;
    color: #7e4241;
}
@media screen and (min-width: 769px) {
    .section__title {
        padding-bottom: 24px;
    }
}
.section__title--sm {
    font-size: 28px;
    font-size: clamp(1.5rem, 1.35rem + 0.4444vw, 1.75rem);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.04em;
    color: #333;
    font-weight: 700;
    text-align: center;
}
@media screen and (min-width: 769px) {
    .section__title--sm {
        font-size: 32px;
        font-size: clamp(1.75rem, 1.4643rem + 0.5952vw, 2rem);
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: 0.04em;
        color: #333;
        font-weight: 700;
        padding-bottom: 24px;
    }
}
.section__title--xs {
    padding-bottom: 30px;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.64px;
    text-align: center;
}
.section__title--xs-color-accent {
    color: #7e4241;
}
@media screen and (min-width: 769px) {
    .section__title--xs {
        padding-bottom: 30px;
        font-size: 20px;
        letter-spacing: 0.04em;
    }
}
.section__title--marker-white span {
    display: inline-block;
    background: linear-gradient(to bottom, transparent 60%, #ffffff 40%);
    padding: 0 4px;
}
.section__title--marker span {
    display: inline-block;
    background: linear-gradient(to bottom, transparent 60%, #f7f0ed 40%);
    padding: 0 4px;
}
.section__title span {
    font-size: 20px;
    font-size: clamp(1rem, 0.7143rem + 0.5952vw, 1.25rem);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.04em;
    color: #333;
}

.section__title,
section {
    scroll-margin-top: 40px;
}
@media screen and (min-width: 1080px) {
    .section__title,
    section {
        scroll-margin-top: 80px;
    }
}

.common-koyashiya {
    padding: 24px 0;
    width: 100%;
    max-width: 343px;
    margin: 0 auto;
}
@media (min-width: 769px) {
    .common-koyashiya {
        max-width: 276px;
        padding: 0 16px 24px 16px;
        margin-top: 16px;
    }
}
.common-koyashiya--lg {
    max-width: 375px;
    padding-inline: 16px;
}
@media (min-width: 769px) {
    .common-koyashiya--lg {
        max-width: 400px;
        width: 80%;
    }
}
.common-koyashiya img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    max-width: 368px;
}

.mv {
    width: 100%;
    position: relative;
}
.mv__image {
    width: 100%;
}
.mv__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}

.common-note {
    padding: 16px 0 0 0;
    background-color: transparent;
    margin: 0 auto;
}
.common-note--padding-inline {
    padding-inline: 16px;
}
.common-note__list {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
@media screen and (min-width: 769px) {
    .common-note__list {
        width: 95%;
        max-width: 713px;
    }
}
.common-note__item {
    display: flex;
    align-items: flex-start;
    gap: 4px;
}
.common-note__label,
.common-note__text {
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.02em;
    color: #333;
}
@media screen and (min-width: 768px) {
    .common-note__label,
    .common-note__text {
        font-size: 12px;
    }
}
.common-note__label--lg,
.common-note__text--lg {
    font-size: 14px;
    font-size: clamp(0.875rem, 0.8085rem + 0.2128vw, 1rem);
    font-weight: 400;
    line-height: 153.1%;
}

.call-modal {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    position: fixed;
    display: flex;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.call-modal__content {
    border-radius: 12px;
    text-align: center;
    width: 78%;
    margin: 0 auto;
    min-width: 295px;
    max-width: 560px;
    position: relative;
    padding: 32px 40px 24px 40px;
    border: 1px solid #d8d8db;
    background-color: #f7f0ed;
}
.call-modal__content .button-cta__text {
    color: #cf331d;
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.8px;
}
.call-modal__content .button-cta__subtext {
    color: #cf331d;
    font-size: 12px;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.15px;
}
.call-modal__content .button-cta__icon {
    left: 9px;
}

.call-modal--active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.call-modal__close {
    position: absolute;
    width: 24px;
    height: 24px;
    cursor: pointer;
    top: 8px;
    right: 8px;
    z-index: 150;
}
@media screen and (min-width: 768px) {
    .call-modal__close {
        width: 32px;
        height: 32px;
    }
}
.call-modal__close img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    border: none;
    background-color: transparent;
}

.call-modal__button-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.call-modal__button-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.campaign-banner {
    padding: 24px 0;
}
@media screen and (min-width: 768px) {
    .campaign-banner {
        padding: 48px 0;
    }
}
.campaign-banner__text {
    text-align: center;
    color: #a41121;
    font-size: 16px;
    letter-spacing: 0.64px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 1.224px;
}
@media screen and (min-width: 768px) {
    .campaign-banner__text {
        letter-spacing: 0.64px;
        font-size: 30px;
        font-size: clamp(1rem, 0rem + 2.0833vw, 1.875rem);
        letter-spacing: 1.224px;
    }
}
.campaign-banner__container {
    width: 100%;
    max-width: 700px;
    min-width: 343px;
    min-height: 108px;
    height: 28.8vw;
    max-height: 224px;
    margin: 0 auto;
    margin-top: 10px;
}
.campaign-banner__container img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.campaign-banner__container:hover {
    cursor: pointer;
}

.campaign-modal {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    position: fixed;
    inset: 0;
    z-index: 1000;
}
.campaign-modal__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
}
.campaign-modal__close {
    position: absolute;
    width: 24px;
    height: 24px;
    cursor: pointer;
    top: 8px;
    right: 16px;
    z-index: 150;
}
@media screen and (min-width: 768px) {
    .campaign-modal__close {
        width: 32px;
        height: 32px;
    }
}
.campaign-modal__close img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    border: none;
    background-color: transparent;
}
.campaign-modal__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 12px;
    height: 100%;
    z-index: 200;
    border-radius: 12px;
    border: 1px solid #d8d8db;
    color: #1a1a1c;
    max-width: 560px;
    min-width: 327px;
    height: 90%;
    max-height: 680px;
    width: 90%;
}
.campaign-modal__content-inner {
    overflow-y: auto;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 16px;
}
.campaign-modal__content-inner::-webkit-scrollbar {
    width: 8px;
    background: transparent;
}
.campaign-modal__content-inner::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 12px;
}
.campaign-modal__content-inner::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 12px;
}
@media screen and (min-width: 768px) {
    .campaign-modal__content-inner {
        padding: 24px;
    }
}
.campaign-modal__image {
    width: 100%;
    margin: 0 auto;
}
.campaign-modal__image img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}
.campaign-modal__campaign {
    width: 100%;
}
.campaign-modal__heading {
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.8px;
    text-align: center;
    margin-top: 16px;
}
.campaign-modal__body {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    padding-top: 8px;
}
.campaign-modal__body-text {
    font-size: 12px;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.15px;
    margin-top: 4px;
}
@media screen and (min-width: 768px) {
    .campaign-modal__body-text {
        font-size: 14px;
        margin-top: 16px;
    }
}
.campaign-modal__body-note {
    font-size: 10px;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.125px;
    margin-top: 8px;
}
@media screen and (min-width: 768px) {
    .campaign-modal__body-note {
        font-size: 12px;
        margin-top: 16px;
    }
}
.campaign-modal__button-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 16px;
}
.campaign-modal__button-box--2col {
    flex-direction: row;
    gap: 10px;
    justify-content: center;
}
.campaign-modal__button-text {
    font-size: 12px;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.15px;
    margin-bottom: 8px;
    white-space: nowrap;
    color: #626262;
}
@media screen and (min-width: 768px) {
    .campaign-modal__button-text {
        font-size: 14px;
    }
}
.campaign-modal .button-cta--w215 {
    flex: 1;
}
.campaign-modal .button-cta__icon {
    width: 18px;
}
.campaign-modal .button-cta--w138 {
    box-shadow: none;
}
.campaign-modal .button-cta--w138 .button-cta__icon {
    width: 12px;
    left: 6px;
}
@media (min-width: 769px) {
    .campaign-modal .button-cta--w138 .button-cta__icon {
        width: 20px;
    }
}
.campaign-modal .button-cta--w138 .button-cta__arrow {
    right: 6px;
}
.campaign-modal .button-cta__text {
    font-size: 13px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.525px;
}
@media (min-width: 769px) {
    .campaign-modal .button-cta__text {
        font-size: 16px;
    }
}
.campaign-modal .button-cta__subtext {
    font-size: 8px;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.098px;
}
@media (min-width: 769px) {
    .campaign-modal .button-cta__subtext {
        font-size: 10px;
    }
}
.campaign-modal .button-cta--search .button-cta__text {
    font-size: 16px;
    font-weight: 700;
    line-height: 120%;
}
.campaign-modal .button-cta--search .button-cta__subtext {
    font-size: 10px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.4px;
}

.campaign-modal[aria-hidden="false"] {
    display: block;
    opacity: 1;
    visibility: visible;
}

.anchor-nav {
    width: 100%;
    padding: 56px 0 72px 0;
    background-color: #f7f0ed;
    margin-top: 0;
}
@media screen and (min-width: 769px) {
    .anchor-nav {
        padding: 56px 0 88px 0;
        margin-top: 80px;
    }
}

.anchor-nav__container {
    max-width: 343px;
    min-width: 343px;
    width: 90%;
    margin: 0 auto;
    margin-top: 40px;
}
@media screen and (min-width: 481px) {
    .anchor-nav__container {
        max-width: 800px;
    }
}
@media screen and (min-width: 769px) {
    .anchor-nav__container {
        margin-top: 0px;
    }
}

.anchor-nav__list {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 16px;
}
@media screen and (min-width: 769px) {
    .anchor-nav__list {
        gap: 48px;
    }
}

.anchor-nav__item {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.anchor-nav__item::after {
    content: "";
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 33px;
    height: 19px;
    background-image: url("/used/images/kaitori/anchor_down.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
@media screen and (min-width: 769px) {
    .anchor-nav__item::after {
        width: 43px;
        height: 25px;
        bottom: -32px;
    }
}

.anchor-nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 156px;
    max-width: 320px;
    flex: 1;
    max-height: 156px;
    border: 4px solid #7e4241;
    background-color: #7e4241;
    border-radius: 16px;
    transition: transform 0.3s ease;
    overflow: hidden;
}
@media screen and (min-width: 769px) {
    .anchor-nav__link {
        max-width: 380px;
        max-height: 228px;
    }
}

.anchor-nav__image-container {
    width: 100%;
    height: 182px;
    background-color: #fff;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.anchor-nav__image {
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
}

.anchor-nav__image--purchase {
    width: 88px;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}
@media screen and (min-width: 769px) {
    .anchor-nav__image--purchase {
        width: 168px;
    }
}

.anchor-nav__text {
    text-align: center;
    width: 100%;
    display: block;
    font-size: 20px;
    font-size: clamp(1rem, 0.7143rem + 0.5952vw, 1.25rem);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.04em;
    color: #333;
    color: #fff;
    white-space: nowrap;
    padding: 8px 0;
}

.point {
    width: 100%;
    position: relative;
    padding: 56px 0;
    background: #e7ddda;
    color: #333;
}
@media screen and (min-width: 769px) {
    .point {
        padding: 72px 0;
    }
}
.point .common-note {
    padding-top: 0px;
}
.point .common-note__text {
    font-weight: 500;
}

.point__title--sm {
    font-size: 20px;
    font-size: clamp(1rem, 0.7143rem + 0.5952vw, 1.25rem);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.04em;
    color: #333;
    color: #7e4241 !important;
}

.point__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    margin-top: 32px;
}
@media screen and (min-width: 769px) {
    .point__content {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: min(72px, 5vw);
        width: 95%;
        max-width: 1100px;
        margin-top: 48px;
    }
}

.point__image-area {
    flex: 5;
}

.point__image {
    min-width: 343px;
    max-width: 468px;
    width: 100%;
    margin: 0 auto;
}
@media screen and (min-width: 769px) {
    .point__image {
        min-width: initial;
    }
}
.point__image img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.point__image-note {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.0125em;
    color: #333;
}
.point__image-note span {
    margin-right: 10px;
}

.point__text-area {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 7;
    width: 100%;
}
@media screen and (min-width: 769px) {
    .point__text-area {
        margin-top: 0;
        width: auto;
    }
}

.point__heading-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.point__description {
    text-align: left;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.04em;
    color: #333;
}
@media screen and (min-width: 769px) {
    .point__description {
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 170%;
        letter-spacing: 0.04em;
        color: #333;
    }
}
.point__description span {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.0125em;
    color: #333;
}

.point__heading {
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.8px;
    padding-left: 1.5em;
    text-indent: -1.5em;
}
.point__heading--sm {
    display: inline;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.02em;
    color: #333;
}

.point__heading-check {
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-right: 4px;
    background-image: url(/used/images/kaitori/icon_check.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.accept {
    padding: 73px 0 0 0;
    padding-bottom: 0;
    background-color: #f7f0ed;
}
.accept__container {
    margin: 0 auto;
    margin-top: 24px;
}
@media screen and (min-width: 769px) {
    .accept__container {
        max-width: 1100px;
        width: 95%;
        margin-top: 24px;
    }
}
.accept__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 30px;
}
@media screen and (min-width: 769px) {
    .accept__list {
        grid-template-columns: repeat(4, 1fr);
    }
}
.accept__item {
    min-width: 156px;
    width: 100%;
    margin: 0 auto;
}
.accept__item img {
    border-radius: 8px;
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}
.accept__name {
    margin-top: 8px;
    display: block;
    font-size: 16px;
    line-height: 120%;
    color: #333;
    letter-spacing: 0.4px;
    line-height: 150%;
    font-weight: 500;
    text-align: center;
}
@media screen and (min-width: 769px) {
    .accept__name {
        font-size: 18px;
        line-height: 120%;
        color: #333;
        letter-spacing: 0.4px;
    }
}
.accept__note {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.0125em;
    color: #333;
    width: 83%;
    min-width: 311px;
    margin: 0 auto;
    margin-top: 20px;
}

.otheritems {
    padding: 56px 0;
    background-color: #f7f0ed;
}
@media screen and (min-width: 769px) {
    .otheritems {
        padding: 72px 0;
    }
}
.otheritems .section__title--xs {
    padding-bottom: 0;
}
.otheritems__container {
    margin: 0 auto;
    margin-top: 24px;
    max-width: 1100px;
}
.otheritems__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 8px;
    width: 100%;
    justify-items: center;
}
@media (min-width: 769px) {
    .otheritems__list {
        grid-template-columns: repeat(3, 1fr);
        width: 95%;
        margin: 0 auto;
    }
}
@media (min-width: 1200px) {
    .otheritems__list {
        grid-template-columns: repeat(4, 1fr);
        gap: 0 24px;
    }
}
.otheritems__link {
    min-width: 164px;
    width: 43vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    padding: 14.5px 0;
}
@media (min-width: 769px) {
    .otheritems__link {
        width: 245px;
    }
}
.otheritems__link:hover .otheritems__name {
    color: #d80b24;
}
.otheritems__image {
    width: 50px;
    height: 50px;
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: 8px;
    padding: 5px;
    background-color: #fff;
    flex-shrink: 0;
}
.otheritems__name {
    font-size: 16px;
    line-height: 120%;
    color: #333;
    letter-spacing: 0.4px;
    font-size: 15px;
    text-align: left;
    flex: 1;
    flex-shrink: 1;
    transition: all 0.3s ease;
}
@media (min-width: 540px) {
    .otheritems__name {
        font-size: 16px;
    }
}
.otheritems__icon {
    display: flex;
    align-items: center;
}
.otheritems__note {
    width: 343px;
    min-width: 343px;
    margin: 0 auto;
    margin-top: 16px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    justify-content: center;
}
@media screen and (min-width: 769px) {
    .otheritems__note {
        margin-top: 32px;
    }
}
.otheritems__note-label,
.otheritems__note-text {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.0125em;
    color: #333;
}

.rellable {
    padding: 56px 0;
    position: relative;
    color: #333;
    background-color: #f7f0ed;
    width: 100%;
}
@media screen and (min-width: 769px) {
    .rellable {
        padding: 72px 0;
    }
}
.rellable__content {
    align-items: flex-start;
}
@media screen and (min-width: 769px) {
    .rellable__content {
        align-items: center;
    }
}
.rellable__image-area {
    min-width: 343px;
    max-width: 468px;
    width: 100%;
    margin: 0 auto;
    aspect-ratio: 343/176;
}
.rellable__image-area img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}
.rellable__text-area {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media screen and (min-width: 769px) {
    .rellable__text-area {
        max-width: 486px;
        margin-top: 0;
    }
}
.rellable__heading-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.rellable__description {
    text-align: left;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.04em;
    color: #333;
}
.rellable__description span {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.0125em;
    color: #333;
}
.rellable__heading {
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.8px;
    padding-left: 1.5em;
    text-indent: -1.5em;
}
.rellable__heading--sm {
    display: inline;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.02em;
    color: #333;
}
.rellable__heading-check {
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-right: 4px;
    background-image: url(/used/images/kaitori/icon_check.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.area {
    width: 100%;
    position: relative;
    padding: 72px 0;
    background: #fff;
}
.area::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(/used/images/kaitori/area_map.png);
    background-position: center 32px;
    background-size: 114px;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 1;
}
@media screen and (min-width: 769px) {
    .area::before {
        background-size: 144px;
    }
}
.area .common-note__list {
    max-width: 1100px;
}
.area__container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 40px;
    position: relative;
    z-index: 10;
}
@media screen and (min-width: 769px) {
    .area__container {
        width: 95%;
    }
}
.area__table {
    background-color: #ffffff;
    border: 1px solid #949494;
    border-radius: 8px;
    overflow: hidden;
}
.area__row {
    display: flex;
    border-bottom: 1px solid #949494;
}
.area__row:last-child {
    border-bottom: none;
}
.area__region {
    background-color: #f1f1f1;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.64px;
    border-right: 1px solid #949494;
    min-width: 80px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    text-align: center;
    justify-content: center;
    min-width: 100px;
}
@media screen and (min-width: 769px) {
    .area__region {
        padding: 12px 16px;
        min-width: 134px;
    }
}
.area__prefectures {
    background-color: #ffffff;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.64px;
    flex: 1;
}
@media screen and (min-width: 769px) {
    .area__prefectures {
        padding: 12px 16px;
    }
}
.area__prefectures span {
    font-size: 12px;
}
.area__note {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.0125em;
    color: #333;
    text-align: left;
    min-width: 309px;
    max-width: 560px;
    width: 82%;
    margin: 0 auto;
    margin-top: 16px;
}

.faq {
    width: 100%;
    position: relative;
    padding: 56px 0;
    background: #f7f0ed;
}
@media screen and (min-width: 769px) {
    .faq {
        padding: 72px 0;
    }
}

.faq__item-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 24px;
    margin: 0 auto;
    margin-top: 24px;
}
@media screen and (min-width: 769px) {
    .faq__item-list {
        max-width: 1100px;
        width: 95%;
    }
}

.faq__item {
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.faq__question,
.faq__answer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px;
}
@media screen and (min-width: 769px) {
    .faq__question,
    .faq__answer {
        padding-left: 16px;
        gap: 16px;
    }
}

.faq__question {
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: flex-start;
}

.faq__question-label,
.faq__answer-label {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    min-width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.faq__question-label {
    position: relative;
}

.faq__question-arrow {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 32px;
    height: 32px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: transform 0.3s ease;
    background-image: url(/used/images/kaitori/icon_faq_arrow.svg);
}
@media screen and (min-width: 769px) {
    .faq__question-arrow {
        right: 16px;
    }
}

.faq__item.is-open .faq__question-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.faq__answer-label {
    color: #d80b24;
}

.faq__question-content,
.faq__answer-content {
    display: flex;
    flex-direction: column;
    overflow-wrap: break-word;
    word-break: break-word;
}

.faq__question-content {
    min-width: 265px;
    width: 75%;
}
@media screen and (min-width: 769px) {
    .faq__question-content {
        width: 90%;
    }
}

.faq__question-text {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.faq__answer-text {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.04em;
    color: #333;
    color: #333;
    margin: 0;
}
.faq__answer-text a {
    text-decoration: none;
    color: #7e4241;
}
.faq__answer-text a:hover {
    opacity: 0.8;
    text-decoration: underline; /* ホバー時に下線を追加 */
}

.faq__answer-text--mt-1em {
    margin-top: 1em;
}

.faq__answer-note {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.0125em;
    color: #333;
    color: #333;
    margin: 16px 0 0 0;
    font-weight: 400;
}

.message {
    width: 100%;
    position: relative;
    padding: 56px 0;
    background-color: #fff;
    background-image: url(/used/images/kaitori/bg_massage_sp.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
}
@media screen and (min-width: 769px) {
    .message {
        background-image: url(/used/images/kaitori/bg_massage_pc.jpg);
        background-position: top;
    }
}
@media screen and (min-width: 1600px) {
    .message {
        background-position: center 40%;
        padding: 80px 0;
    }
}
.message__container {
    width: 84%;
    min-width: 314px;
    padding: 28px 0;
    margin: 0 auto;
    background: rgba(247, 240, 237, 0.6);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2em;
}
@media screen and (min-width: 769px) {
    .message__container {
        padding: 32px 16px;
        max-width: 1000px;
    }
}
.message__text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.04em;
    color: #333;
}
@media screen and (min-width: 769px) {
    .message__text {
        font-size: 18px;
    }
}

.fixed-bottom-button-list {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: flex;
    gap: 16px;
    justify-content: center;
    padding: 8px;
    padding-bottom: 12px;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
}
.fixed-bottom-button-list .button-cta {
    max-width: 215px;
    flex: 1;
}

.syuttyou-kaitori-campaign-banner {
    padding: 24px 0;
    width: 100%;
    max-width: 343px;
    margin: 0 auto;
}
@media screen and (min-width: 769px) {
    .syuttyou-kaitori-campaign-banner {
        max-width: 276px;
        padding: 0 16px;
        margin-top: 24px;
    }
}
.syuttyou-kaitori-campaign-banner img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    max-width: 368px;
}

.syuttyou-kaitori-campaign-modal {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    position: fixed;
    inset: 0;
    z-index: 1000;
}
.syuttyou-kaitori-campaign-modal__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
}
.syuttyou-kaitori-campaign-modal__close {
    position: absolute;
    width: 24px;
    height: 24px;
    cursor: pointer;
    top: 8px;
    right: 16px;
    z-index: 150;
}
@media screen and (min-width: 768px) {
    .syuttyou-kaitori-campaign-modal__close {
        width: 32px;
        height: 32px;
    }
}
.syuttyou-kaitori-campaign-modal__close img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    border: none;
    background-color: transparent;
}
.syuttyou-kaitori-campaign-modal__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 12px;
    height: 100%;
    z-index: 200;
    border-radius: 12px;
    border: 1px solid #d8d8db;
    color: #1a1a1c;
    max-width: 560px;
    min-width: 327px;
    height: 90%;
    max-height: 680px;
    width: 90%;
}
.syuttyou-kaitori-campaign-modal__content-inner {
    overflow-y: auto;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 16px;
}
.syuttyou-kaitori-campaign-modal__content-inner::-webkit-scrollbar {
    width: 8px;
    background: transparent;
}
.syuttyou-kaitori-campaign-modal__content-inner::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 12px;
}
.syuttyou-kaitori-campaign-modal__content-inner::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 12px;
}
@media screen and (min-width: 768px) {
    .syuttyou-kaitori-campaign-modal__content-inner {
        padding: 24px;
    }
}
.syuttyou-kaitori-campaign-modal__image {
    width: 100%;
    margin: 0 auto;
}
.syuttyou-kaitori-campaign-modal__image img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}
.syuttyou-kaitori-campaign-modal__campaign {
    width: 100%;
}
.syuttyou-kaitori-campaign-modal__heading {
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.8px;
    text-align: center;
    margin-top: 16px;
}
.syuttyou-kaitori-campaign-modal__body {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    padding-top: 8px;
}
.syuttyou-kaitori-campaign-modal__body-heading {
    font-size: 14px;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: 0.15px;
    margin-top: 4px;
}
@media screen and (min-width: 768px) {
    .syuttyou-kaitori-campaign-modal__body-heading {
        font-size: 16px;
        margin-top: 16px;
    }
}
.syuttyou-kaitori-campaign-modal__body-heading--mt12 {
    margin-top: 8px;
}
@media screen and (min-width: 768px) {
    .syuttyou-kaitori-campaign-modal__body-heading--mt12 {
        margin-top: 12px;
    }
}
.syuttyou-kaitori-campaign-modal__body-text {
    font-size: 12px;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.15px;
    margin-top: 4px;
}
@media screen and (min-width: 768px) {
    .syuttyou-kaitori-campaign-modal__body-text {
        font-size: 14px;
    }
}
.syuttyou-kaitori-campaign-modal__body-note {
    font-size: 10px;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.125px;
    margin-top: 8px;
}
@media screen and (min-width: 768px) {
    .syuttyou-kaitori-campaign-modal__body-note {
        font-size: 12px;
        margin-top: 16px;
    }
}

.syuttyou-kaitori-campaign-modal[aria-hidden="false"] {
    display: block;
    opacity: 1;
    visibility: visible;
} /*# sourceMappingURL=style.css.map */
