﻿@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;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    z-index: 1000;
    padding: 12px 16px;
}
@media screen and (min-width: 1080px) {
    .header {
        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;
}
.header__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.header__text {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.15px;
}
@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: clamp(1rem, -0.1429rem + 2.381vw, 2rem);
        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;
    font-size: clamp(0.6875rem, 0.125rem + 0.8333vw, 0.875rem);
    white-space: nowrap;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.56px;
    color: #333;
    transition: color 0.2s;
}
@media screen and (max-width: 1080px) {
    .header-nav__link {
        transform: scale(0.8);
    }
}
.header-nav__link:hover,
.header-nav__link:focus {
    color: #d80b24;
    text-decoration: underline;
}
.header-nav__buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}
@media screen and (max-width: 1080px) {
    .header-nav__buttons {
        transform: scale(0.8);
    }
}
.header-nav__button-item {
    position: relative;
    overflow: hidden;
    text-align: center;
}
.header-nav__button {
    display: block;
    min-height: 58px;
    max-height: 58px;
    transition: all 0.3s ease;
}
.header-nav__button--tel {
    background-color: white;
    width: 199px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.header-nav__button--tel .header-nav__button-label {
    text-align: center;
    font-size: 20.1px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.804px;
    color: #ff0000;
}
.header-nav__button--tel .header-nav__button-time {
    text-align: center;
    font-size: 10px;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.126px;
}
.header-nav__button--line {
    background: #00b300;
    border-radius: 7.527px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 134px;
}
@media screen and (min-width: 1080px) {
    .header-nav__button--line:hover {
        background-color: #fff;
        border: #00b300 1px solid;
        box-shadow: 0px -10px 8px 0px #ffffff inset, 0px 6px 1px 0px #e1dcd3;
        color: #00b300;
    }
    .header-nav__button--line:hover .header-nav__button-icon {
        background-image: url("/used/kimono-kaitori/images/cta_messages_green.svg");
    }
}
.header-nav__button--line .header-nav__button-icon {
    width: 20px;
}
@media screen and (min-width: 1080px) {
    .header-nav__button--line .header-nav__button-icon {
        background-image: url("/used/kimono-kaitori/images/cta_messages.svg");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
}
.header-nav__button--form {
    background: white;
    border: 1px solid #4979f5;
    border-radius: 7.527px;
    color: #4979f5;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 149px;
}
@media screen and (min-width: 1080px) {
    .header-nav__button--form:hover {
        background-color: #4979f5;
        color: white;
        box-shadow: 0px -10px 8px 0px #4979f5 inset, 0px 6px 1px 0px #e1dcd3;
        border: 1px solid white;
    }
    .header-nav__button--form:hover .header-nav__button-icon {
        background-image: url("/used/kimono-kaitori/images/cta_form_white.svg");
    }
}
.header-nav__button--form .header-nav__button-icon {
    width: 16px;
}
@media screen and (min-width: 1080px) {
    .header-nav__button--form .header-nav__button-icon {
        background-image: url("/used/kimono-kaitori/images/cta_form.svg");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
}
.header-nav__button-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
}
.header-nav__button-icon img {
    width: 100%;
    object-fit: contain;
}
.header-nav__button-content {
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    align-items: center;
    gap: 5px;
}
.header-nav__button-label {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 0.6px;
}
.header-nav__button-time {
    display: block;
}

.header-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: calc(100% - 64px);
    max-width: 256px;
    z-index: 1000;
    background: white;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding-bottom: 16px;
}
.header-menu.is-open {
    transform: translateX(0);
}
.header-menu__content {
    width: 100%;
    height: 100%;
    overflow-y: auto;
}
.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%;
    padding: 0 20px;
}
.header-menu__list {
    width: 100%;
    padding-bottom: 16px;
    border-bottom: 1px solid #efe1d1;
}
.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/kimono-kaitori/images/icon_menu_arrow.svg") no-repeat center center/contain;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.header-menu__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 10px;
    justify-content: left;
    width: 100%;
    padding: 0 20px;
    padding-top: 16px;
}
.header-menu__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 103px;
    min-height: 54px;
    padding: 0 5px;
    margin: 0 auto;
    border-radius: 5px;
    color: white;
}
.header-menu__button--tel {
    background: #f00;
    box-shadow: 0px -10px 8px 0px #e20202 inset, 0px 6px 1px 0px #e1dcd3;
}
.header-menu__button--tel .header-menu__button-label {
    display: block;
    font-size: 12.036px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.481px;
}
.header-menu__button--tel .header-menu__button-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    aspect-ratio: 16/16;
}
.header-menu__button--line {
    background: #00b300;
    box-shadow: 0px -10px 8px 0px #039f03 inset, 0px 6px 1px 0px #e1dcd3;
}
.header-menu__button--line .header-menu__button-label {
    display: block;
    font-size: 13.373px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.535px;
}
.header-menu__button--line .header-menu__button-label span {
    font-size: 12.036px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.481px;
}
.header-menu__button--line .header-menu__button-icon {
    width: 18px;
    height: 14px;
    flex-shrink: 0;
    aspect-ratio: 18/14;
}
.header-menu__button--form {
    background: white;
    box-shadow: 0px -10px 8px 0px #e8f1fe inset, 0px 6px 1px 0px #e1dcd3;
    color: #4979f5;
    border: 1px solid #4979f5;
}
.header-menu__button--form .header-menu__button-label {
    display: block;
    font-size: 10.663px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.427px;
}
.header-menu__button--form .header-menu__button-sub {
    display: block;
    font-size: 9.694px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
}
.header-menu__button--form .header-menu__button-icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    aspect-ratio: 15/15;
}
.header-menu__button-sub {
    display: block;
    font-size: 9.361px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.374px;
    white-space: nowrap;
}
.header-menu__button-time {
    display: block;
    font-size: 6.686px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.267px;
}
.header-menu__button-icon {
    vertical-align: baseline;
    margin-right: 6px;
}
.header-menu__button-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.header-menu__button-content {
    width: 100%;
    text-align: left;
}

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: 16px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    border-radius: 4px;
}
@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 {
    background-color: #13a493;
    position: relative;
}
.top-cta::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 54px;
    background-image: url(/used/kimono-kaitori/images/bg_pattern_asanoha.png);
    background-size: contain;
    background-position: top;
    background-repeat: repeat;
    z-index: 0;
    pointer-events: none;
}
@media screen and (min-width: 768px) {
    .top-cta::before {
        background-image: url(/used/kimono-kaitori/images/bg_pattern_asanoha_pc.png);
        height: 50px;
        background-size: auto;
        background-position: top;
    }
}
.top-cta__inner {
    width: 100%;
    max-width: 863px;
    margin: 0 auto;
    padding: 24px 12px;
}
@media screen and (min-width: 768px) {
    .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: 768px) {
    .top-cta__heading {
        font-size: 22px;
        letter-spacing: 0.96px;
        transform: translateX(-8px);
    }
}
.top-cta__container {
    background: white;
    border-radius: 8px;
    margin: 0 auto;
    margin-top: 22px;
    padding: 16px;
    position: relative;
    width: 93.3vw;
    min-width: 350px;
    max-width: 560px;
}
@media screen and (min-width: 768px) {
    .top-cta__container {
        max-width: 864px;
        padding: 16px 32px;
        margin-top: 8px;
    }
}
.top-cta__buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}
@media screen and (min-width: 768px) {
    .top-cta__buttons {
        gap: clamp(1rem, -0.1429rem + 2.381vw, 2rem);
    }
}
.top-cta__button {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 9px;
    padding: 8px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 256px;
}
@media screen and (min-width: 768px) {
    .top-cta__button {
        margin: 0 auto;
        margin-top: 12px;
        width: 28vw;
        max-width: 245px;
        justify-content: center;
    }
}
.top-cta__button--tel {
    border-radius: 7.527px;
    background: #f00;
    box-shadow: 0px -10px 8px 0px #e20202 inset, 0px 6px 1px 0px #e1dcd3;
    color: white;
}
@media screen and (min-width: 768px) {
    .top-cta__button--tel {
        background-color: transparent;
        box-shadow: none;
    }
}
.top-cta__button--tel .top-cta__button-icon {
    width: 22.58px;
    height: 22.58px;
    flex-shrink: 0;
    aspect-ratio: 22.58/22.58;
}
@media screen and (min-width: 768px) {
    .top-cta__button--tel .top-cta__button-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        aspect-ratio: 24/24;
        display: inline-block;
        vertical-align: middle;
    }
}
.top-cta__button--tel .top-cta__button-icon img {
    width: 100%;
    height: 100%;
    min-height: 24px;
    object-fit: contain;
}
@media screen and (min-width: 768px) {
    .top-cta__button--tel .top-cta__button-time {
        color: #333;
    }
}
.top-cta__button--line {
    border-radius: 7.527px;
    background: #00b300;
    border: #00b300 1px solid;
    box-shadow: 0px -10px 8px 0px #039f03 inset, 0px 6px 1px 0px #e1dcd3;
    color: white;
}
@media screen and (min-width: 768px) {
    .top-cta__button--line:hover {
        background-color: #fff;
        border: #00b300 1px solid;
        box-shadow: 0px -10px 8px 0px #ffffff inset, 0px 6px 1px 0px #e1dcd3;
        color: #00b300;
    }
    .top-cta__button--line:hover .top-cta__button-icon {
        background-image: url("/used/kimono-kaitori/images/cta_messages_green.svg");
    }
    .top-cta__button--line .top-cta__button-label {
        text-align: center;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: 0.72px;
        font-weight: 700;
    }
    .top-cta__button--line .top-cta__button-label--sm {
        font-size: 12.827px;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 0.513px;
        padding-left: 0.5em;
    }
}
.top-cta__button--line .top-cta__button-icon {
    width: 25.402px;
    height: 20.322px;
    flex-shrink: 0;
    aspect-ratio: 25.4/20.32;
}
@media screen and (min-width: 768px) {
    .top-cta__button--line .top-cta__button-icon {
        background-image: url("/used/kimono-kaitori/images/cta_messages.svg");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
}
.top-cta__button--form {
    border-radius: 7.527px;
    background: white;
    box-shadow: 0px -10px 8px 0px #e8f1fe inset, 0px 6px 1px 0px #e1dcd3;
    color: #4979f5;
    border: 1px solid #4979f5;
}
@media screen and (min-width: 768px) {
    .top-cta__button--form:hover {
        background-color: #4979f5;
        color: white;
        box-shadow: 0px -10px 8px 0px #4979f5 inset, 0px 6px 1px 0px #e1dcd3;
        border: 1px solid white;
    }
    .top-cta__button--form:hover .top-cta__button-icon {
        background-image: url("/used/kimono-kaitori/images/cta_form_white.svg");
    }
}
.top-cta__button--form .top-cta__button-label {
    font-size: 15px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.617px;
}
.top-cta__button--form .top-cta__button-sub {
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 150%;
}
.top-cta__button--form .top-cta__button-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    aspect-ratio: 22/22;
}
@media screen and (min-width: 768px) {
    .top-cta__button--form .top-cta__button-icon {
        background-image: url("/used/kimono-kaitori/images/cta_form.svg");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
}
.top-cta__button-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.8px;
    text-align: center;
}
.top-cta__button-desc {
    font-size: clamp(0.75rem, 0.6071rem + 0.2976vw, 0.875rem);
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.175px;
    text-align: center;
    white-space: nowrap;
}
.top-cta__button-tel {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
    color: #f00;
    border-top: 2px solid #f00;
    width: 100%;
}
.top-cta__button-time {
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: 0.175px;
    display: block;
}
.top-cta__button-icon {
    vertical-align: baseline;
}
.top-cta__button-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.top-cta__button-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}
@media screen and (min-width: 768px) {
    .top-cta__button-content {
        align-items: center;
    }
}
.top-cta__button-label {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.72px;
    font-weight: 700;
    line-height: 150%;
}
.top-cta__button-sub {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.175px;
    font-weight: 700;
    line-height: 150%;
}
.top-cta__button-time {
    font-size: 10px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.4px;
}

.cta {
    width: 100%;
    position: relative;
    padding: 60px 0;
}
.cta__inner {
    background-color: #13a493;
    padding: 16px 16px 34px 16px;
    position: relative;
}
@media screen and (min-width: 768px) {
    .cta__inner {
        padding: 16px 16px 29px 16px;
    }
}
.cta__inner::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 54px;
    background-image: url(/used/kimono-kaitori/images/bg_pattern_asanoha.png);
    background-size: contain;
    background-position: top;
    background-repeat: repeat;
    z-index: 0;
    pointer-events: none;
}
@media screen and (min-width: 768px) {
    .cta__inner::before {
        background-image: url(/used/kimono-kaitori/images/bg_pattern_asanoha_pc.png);
        height: 48px;
        background-position: top;
        background-size: auto;
    }
}
.cta__heading {
    color: white;
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.8px;
    text-align: center;
    transform: translateX(-48px);
}
@media screen and (min-width: 768px) {
    .cta__heading {
        font-size: 24px;
        letter-spacing: 0.96px;
        transform: translateX(-8px);
    }
}
.cta__heading span {
    color: #ffc8b8;
    font-size: 28px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 1.12px;
}
.cta__image {
    position: absolute;
    width: 200px;
    height: auto;
    transform: translateY(-100%);
    top: 0px;
    z-index: 1;
    right: -12px;
    overflow: hidden;
}
.cta__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: translateY(12px);
}
@media screen and (min-width: 768px) {
    .cta__image img {
        transform: translateY(8px);
    }
}
@media screen and (min-width: 768px) {
    .cta__image {
        right: 88px;
    }
}
.cta__container {
    width: 100%;
    padding: 22px;
    background-color: white;
    margin: 0 auto;
    margin-top: 16px;
    border-radius: 8px;
    position: relative;
    z-index: 2;
    max-width: 864px;
}
@media screen and (min-width: 768px) {
    .cta__container {
        padding: 24px 32px;
    }
}
.cta__buttons {
    display: flex;
    flex-direction: column;
    gap: 22px;
    justify-content: center;
}
@media screen and (min-width: 768px) {
    .cta__buttons {
        flex-direction: row;
        gap: 32px;
    }
}
.cta__button {
    display: flex;
    align-items: center;
    justify-content: left;
    width: 215px;
    min-height: 70px;
    margin: 0 auto;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding-left: 10px;
    flex: 1;
}
@media screen and (min-width: 768px) {
    .cta__button {
        margin: 0 auto;
        margin-top: 16px;
        width: 28vw;
        max-width: 245px;
    }
}
.cta__button--tel {
    border-radius: 7.527px;
    background: #f00;
    box-shadow: 0px -10px 8px 0px #e20202 inset, 0px 6px 1px 0px #e1dcd3;
    color: white;
}
@media screen and (min-width: 768px) {
    .cta__button--tel {
        background-color: transparent;
        box-shadow: none;
    }
}
@media screen and (min-width: 768px) {
    .cta__button--tel .cta__button-time {
        color: #333;
    }
}
.cta__button--tel .cta__button-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    aspect-ratio: 20/20;
}
@media screen and (min-width: 768px) {
    .cta__button--tel .cta__button-icon {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        aspect-ratio: 24/24;
        display: inline-block;
        vertical-align: middle;
    }
}
.cta__button--tel .cta__button-icon img {
    width: 100%;
    height: 100%;
    min-height: 24px;
    object-fit: contain;
}
.cta__button--line {
    border-radius: 7.527px;
    background: #00b300;
    box-shadow: 0px -10px 8px 0px #039f03 inset, 0px 6px 1px 0px #e1dcd3;
    color: white;
}
@media screen and (min-width: 768px) {
    .cta__button--line:hover {
        background-color: #fff;
        border: #00b300 1px solid;
        box-shadow: 0px -10px 8px 0px #ffffff inset, 0px 6px 1px 0px #e1dcd3;
        color: #00b300;
    }
    .cta__button--line:hover .cta__button-icon {
        background-image: url("/used/kimono-kaitori/images/cta_messages_green.svg");
    }
}
.cta__button--line .cta__button-icon {
    width: 24px;
    height: 19px;
    flex-shrink: 0;
    aspect-ratio: 24/19;
}
@media screen and (min-width: 768px) {
    .cta__button--line .cta__button-icon {
        background-image: url("/used/kimono-kaitori/images/cta_messages.svg");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
}
.cta__button--form {
    border-radius: 7.527px;
    background: white;
    box-shadow: 0px -10px 8px 0px #e8f1fe inset, 0px 6px 1px 0px #e1dcd3;
    color: #4979f5;
    border: 1px solid #4979f5;
}
@media screen and (min-width: 768px) {
    .cta__button--form:hover {
        background-color: #4979f5;
        color: white;
        box-shadow: 0px -10px 8px 0px #4979f5 inset, 0px 6px 1px 0px #e1dcd3;
        border: 1px solid white;
    }
    .cta__button--form:hover .cta__button-icon {
        background-image: url("/used/kimono-kaitori/images/cta_form_white.svg");
    }
}
.cta__button--form .cta__button-label {
    font-size: 15px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.617px;
}
.cta__button--form .cta__button-sub {
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 150%;
}
.cta__button--form .cta__button-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    aspect-ratio: 22/22;
}
@media screen and (min-width: 768px) {
    .cta__button--form .cta__button-icon {
        background-image: url("/used/kimono-kaitori/images/cta_form.svg");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
}
.cta__button-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.8px;
    text-align: center;
}
.cta__button-desc {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.175px;
    text-align: center;
}
.cta__button-tel {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
    color: #f00;
    border-top: 2px solid #f00;
    width: 100%;
}
.cta__button-time {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.175px;
    text-align: center;
    font-weight: 400;
}
.cta__button-icon {
    vertical-align: baseline;
    margin-right: 6px;
}
.cta__button-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.cta__button-content {
    width: 100%;
    text-align: center;
}
.cta__button-label {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.72px;
    display: inline-block;
    font-weight: 700;
    line-height: 150%;
}
.cta__button-sub {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.513px;
}
.cta__button-time {
    font-size: 12px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.48px;
    display: block;
}
/* 訴求の次に設置する用 */
section.cta.first {
    padding: 60px 0 0;
}


.footer {
    padding-top: 32px;
    padding-bottom: 0px;
    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/kimono-kaitori/images/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: #f8f5f0;
    overflow-x: hidden;
}

.sp-only {
    display: block;
}

.pc-only {
    display: none !important;
}

@media screen and (min-width: 768px) {
    .sp-only {
        display: none !important;
    }
    .pc-only {
        display: block !important;
    }
}
.section__inner {
    padding: 0 16px;
    max-width: 1424px;
    margin: 0 auto;
}
@media screen and (min-width: 768px) {
    .section__inner {
        padding: 0;
    }
}

.section__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 1.12px;
    text-align: center;
    position: relative;
    z-index: 10;
}
@media screen and (min-width: 768px) {
    .section__title {
        font-size: 32px;
        padding-bottom: 30px;
    }
}
.section__title--sm {
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.96px;
    text-align: center;
    position: relative;
    z-index: 10;
}
@media screen and (min-width: 768px) {
    .section__title--sm {
        font-size: 28px;
        padding-bottom: 30px;
    }
}
.section__title span {
    font-size: 16px;
    letter-spacing: 0.64px;
}

.section__title,
section {
    scroll-margin-top: 80px;
}

.slick-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
    padding: 0;
    list-style: none;
}

.slick-dots li {
    margin: 0;
}

.slick-dots button {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #e7d8b9;
    border: none;
    padding: 0;
    opacity: 1;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 0;
}

.slick-dots .slick-active button {
    background: #b65200;
}

.mv {
    width: 100%;
    position: relative;
}
.mv__image {
    width: 100%;
}
.mv__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
.mv__campaign-banner {
    position: absolute;
    z-index: 1001;
    top: 0;
    right: 0;
    width: clamp(285px, 76vw, 400px);
    height: auto;
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@media screen and (min-width: 768px) {
    .mv__campaign-banner {
        top: initial;
        bottom: 40px;
        width: clamp(96px, 12.5vw, 220px);
        height: auto;
    }
}
.mv__campaign-banner-container {
    width: 100%;
    height: 100%;
}
.mv__campaign-banner-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}

.common-note {
    padding: 16px 0;
    background-color: transparent;
    margin: 0 auto;
    position: relative;
    z-index: 100;
}
.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: 768px) {
    .common-note__list {
        width: 95%;
        max-width: 856px;
    }
}
.common-note__item {
    display: flex;
    align-items: flex-start;
    gap: 3px;
}
.common-note__label,
.common-note__text {
    font-size: 12px;
    font-size: clamp(0.625rem, 0.5585rem + 0.2128vw, 0.75rem);
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.125px;
}

.campaign-banner {
    padding: 24px 0;
    background: #f8f5f0;
}
@media screen and (min-width: 768px) {
    .campaign-banner {
        padding: 56px 0;
    }
}
.campaign-banner__text {
    text-align: center;
    color: #a41121;
    font-size: 16px;
    font-size: clamp(16px, 4.26vw, 30px);
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 1.224px;
}
@media screen and (min-width: 768px) {
    .campaign-banner__text {
        font-size: 30px;
    }
}
@supports (-webkit-touch-callout: none) {
    .campaign-banner__text {
        text-align: center;
        color: #a41121;
        font-size: 16px;
        font-size: clamp(16px, 4.26vw, 30px);
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 1.224px;
    }
    @media screen and (min-width: 768px) {
        .campaign-banner__text {
            font-size: 30px;
        }
    }
}
.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%;
    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: 1002;
}
.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: 4px;
    right: 4px;
    z-index: 150;
}
@media screen and (min-width: 768px) {
    .campaign-modal__close {
        width: 40px;
        height: 40px;
    }
} */
.campaign-modal__close {
    position: absolute;
    width: 24px;
    height: 24px;
    cursor: pointer;
    top: 8px;
    right: 8px;
    z-index: 150;
}
@media screen and (min-width: 768px) {
    .campaign-modal__close {
        width: 32px;
        height: 32px;
    }
}
.campaign-modal__close img {
    width: 100%;
    height: 100%;
    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;
    max-width: 500px;
}
.campaign-modal__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.campaign-modal__campaign {
    width: 100%;
}
.campaign-modal__body {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    padding-top: 8px;
}
@media screen and (min-width: 768px) {
    .campaign-modal__body {
        padding-top: 16px;
    }
}
.campaign-modal__body-heading {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.64px;
}
@media screen and (min-width: 768px) {
    .campaign-modal__body-heading {
        font-size: 16px;
    }
}
.campaign-modal__body-heading--mt12 {
    margin-top: 8px;
  }
  @media screen and (min-width: 768px) {
    .campaign-modal__body-heading--mt12 {
      margin-top: 12px;
    }
  }
.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;
    }
  }
.campaign-modal__body-note {
    font-size: 10px;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.125px;
    margin-top: 8px;
    color: #333;
}
@media screen and (min-width: 768px) {
    .campaign-modal__body-note {
        font-size: 12px;
        margin-top: 16px;
    }
}
.campaign-modal__heading {
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.8px;
    text-align: center;
    margin-top: 16px;
}
.campaign-modal__text {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.15px;
    margin-top: 8px;
}
@media screen and (min-width: 768px) {
    .campaign-modal__text {
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 170%;
        letter-spacing: 0.64px;
    }
}
.campaign-modal__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__note {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 170%;
        letter-spacing: 0.175px;
    }
}
.campaign-modal__buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
    padding-top: 16px;
}
.campaign-modal__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 37.3vw;
    /* ボタン2つの場合 max-width: 248px; */
    /* max-width: 248px; */
    /* ボタン1つの場合 max-width: 320px; */
    max-width: 320px;
    min-height: 74px;
    padding: 0 5px;
    margin: 0 auto;
    border-radius: 5px;
    color: white;
    transition: all 0.3s ease;
}
.campaign-modal__button--tel {
    background: #f00;
    box-shadow: 0px -10px 8px 0px #e20202 inset, 0px 6px 1px 0px #e1dcd3;
}
@media screen and (min-width: 768px) {
    .campaign-modal__button--tel {
        background-color: #fff;
        border: #f00 2px solid;
        box-shadow: initial;
        color: #f00;
        pointer-events: none;
        flex-direction: column;
        border-inline: none;
        border-radius: 0px;
        gap: 0;
    }
    .campaign-modal__button--tel:hover .campaign-modal__button-icon {
        background-image: url("/used/kimono-kaitori/images/cta_tel_red.svg");
    }
}
.campaign-modal__button--tel .campaign-modal__button-label {
    display: block;
    font-size: 15.71px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.628px;
}
.campaign-modal__button--tel .campaign-modal__button-sub {
    display: block;
    font-size: 12.219px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.489px;
}
@media screen and (min-width: 768px) {
    .campaign-modal__button-sub {
        display: inline;
    }
}
.campaign-modal__button--tel .campaign-modal__button-icon {
    width: 21px;
    height: 21px;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
}
@media screen and (min-width: 768px) {
    .campaign-modal__button--tel .campaign-modal__button-icon {
        background-image: url("/used/kimono-kaitori/images/cta_tel_red.svg");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        display: inline-block;
        width: 24px;
        height: 24px;
    }
}
@media screen and (min-width: 768px) {
    .campaign-modal__button--tel .campaign-modal__button-time {
            display: block;
            color: #333;
            font-size: 12px;
            font-style: normal;
            font-weight: 500;
            line-height: 170%; 
            letter-spacing: 0.15px;
    }
}
@media screen and (min-width: 768px) {
    .campaign-modal__button--tel .campaign-modal__button-tel {
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%; 
        letter-spacing: 0.96px;
    }
}

.campaign-modal__button--line {
    background: #00b300;
    box-shadow: 0px -10px 8px 0px #039f03 inset, 0px 6px 1px 0px #e1dcd3;
}
@media screen and (min-width: 768px) {
    .campaign-modal__button--line:hover {
        background-color: #fff;
        border: #00b300 1px solid;
        box-shadow: 0px -10px 8px 0px #ffffff inset, 0px 6px 1px 0px #e1dcd3;
        color: #00b300;
    }
    .campaign-modal__button--line:hover .campaign-modal__button-icon {
        background-image: url("/used/kimono-kaitori/images/cta_messages_green.svg");
    }
}
.campaign-modal__button--line .campaign-modal__button-label {
    display: block;
    font-size: 17.456px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.698px;
}
.campaign-modal__button--line .campaign-modal__button-label span {
    font-size: 12.036px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.481px;
}
.campaign-modal__button--line .campaign-modal__button-sub {
    display: block;
    font-size: 12.219px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.489px;
}
.campaign-modal__button--line .campaign-modal__button-icon {
    width: 24px;
    height: 18px;
    flex-shrink: 0;
    aspect-ratio: 24/18;
}
@media screen and (min-width: 768px) {
    .campaign-modal__button--line .campaign-modal__button-icon {
        background-image: url("/used/kimono-kaitori/images/cta_messages.svg");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
}
.campaign-modal__button-time {
    display: block;
    font-size: 8.728px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.349px;
}
@media screen and (min-width: 768px) {
    .campaign-modal__button-time {
        text-align: center;
    }
}
.campaign-modal__button-icon {
    vertical-align: baseline;
    margin-right: 6px;
}
.campaign-modal__button-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.campaign-modal[aria-hidden="false"] {
    display: block;
    opacity: 1;
    visibility: visible;
}

.trustpoint { padding:40px 16px 0 16px;}
.trustpoint__img {
    width: revert-layer;
    height: auto;
    margin: 1rem auto;
    display: block;
}
.trustpoint__title {
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0.8px;
    color: #333;
    margin-top: 8px;
    text-align: center;
}
.trustpoint__text{
    font-size: 16px;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.64px;
    color: #333;
    text-align: left;
    margin-top: 16px;
}

.concerns {
    width: 100%;
    position: relative;
    background-color: #efe1d1;
    /* margin-top: 15vw; */
}
@media screen and (min-width: 768px) {
    .concerns {
        /* margin-top: 56px; */
        padding-top: 56px;
    }
}
/* .concerns::before {
    content: "";
    width: 100%;
    height: 17.33vw;
    position: absolute;
    z-index: 10;
    top: 1px;
    transform: translateY(-100%);
    background-image: url("/used/kimono-kaitori/images/bg_bottom_triangle.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
}
@media screen and (min-width: 768px) {
    .concerns::before {
        background-image: url("/used/kimono-kaitori/images/bg_bottom_triangle_pc.svg");
        height: 80px;
        top: 2px;
    }
}
@media screen and (min-width: 1920px) {
    .concerns::before {
        background-size: cover;
        height: 120px;
    }
} */
.concerns__container {
    width: 100%;
}
.concerns__heading {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 1.12px;
    padding: 16px 0;
}
.concerns__heading span {
    font-size: 32px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 1.28px;
    color: #13a493;
}
.concerns__image {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}
@media screen and (min-width: 768px) {
    .concerns__image {
        max-width: 660px;
    }
}

.solution {
    background-color: #efe1d1;
    padding-top: 2px;
    width: 100%;
    position: relative;
}
@media screen and (min-width: 768px) {
    .solution {
        background-color: #fff;
        padding-top: 200px;
        background-image: url("/used/kimono-kaitori/images/bg_omakase_left.png"), url("/used/kimono-kaitori/images/bg_omakase_right.png");
        background-position: left center, right center;
        background-repeat: no-repeat, no-repeat;
        background-size: contain, contain;
    }
    .solution::before {
        content: "";
        width: 100%;
        height: 100px;
        position: absolute;
        z-index: 10;
        top: -2px;
        background-image: url("/used/kimono-kaitori/images/split_triangle_pc.svg");
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: top;
    }
}
@media screen and (min-width: 768px) and (min-width: 1920px) {
    .solution::before {
        background-size: cover;
        height: 140px;
    }
}
.solution__image {
    width: 100%;
    max-width: 891px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}
@media screen and (min-width: 768px) {
    .solution__image {
        width: 95%;
    }
}
.solution__container {
    position: relative;
    z-index: 1;
}

.anchor-nav {
    width: 100%;
    position: relative;
    background-color: #fff;
    padding-bottom: 21.33vw;
    z-index: 10;
}
@media screen and (min-width: 768px) {
    .anchor-nav {
        padding-bottom: max(12.5vw, 120px);
    }
}
.anchor-nav__nav {
    width: 100%;
    margin: 0 auto;
}
@media screen and (min-width: 768px) {
    .anchor-nav__nav {
        width: 95%;
    }
}
.anchor-nav__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media (min-width: 768px) {
    .anchor-nav__list {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
}
.anchor-nav__item {
    flex: 1;
    position: relative;
    display: inline-block;
}
@media screen and (min-width: 768px) {
    .anchor-nav__item {
        max-width: 304px;
    }
}
.anchor-nav__link {
    margin: 0 auto;
    position: relative;
    background: #13a493;
    padding: 16px 16px 20px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    text-align: left;
    width: 100%;
    transition: all 0.3s ease;
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.8px;
    display: flex;
    align-items: first baseline;
    justify-content: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    max-width: 560px;
}
.anchor-nav__link--01::before {
    content: "※1";
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    position: absolute;
    left: 280px;
    top: 8px;
    color: #fff;
}
@media screen and (min-width: 768px) {
    .anchor-nav__link--01::before {
        right: 24px;
        left: initial;
        top: 8px;
    }
}
.anchor-nav__link--03::before {
    content: "※2";
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    position: absolute;
    left: 300px;
    top: 8px;
    color: #fff;
}
@media screen and (min-width: 768px) {
    .anchor-nav__link--03::before {
        right: 24px;
        left: initial;
        top: 8px;
    }
}
@media screen and (min-width: 768px) {
    .anchor-nav__link {
        font-size: clamp(0.75rem, 0.4643rem + 0.5952vw, 1rem);
        justify-content: center;
        max-width: 304px;
    }
}
.anchor-nav__link::after {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    z-index: 10;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    background-image: url("/used/kimono-kaitori/images/arrow_down.svg");
    background-size: contain;
    background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
    .anchor-nav__link::after {
        width: 16px;
        height: 16px;
        right: 8px;
    }
}
.anchor-nav__link--strong-sm {
    font-weight: 700;
    font-size: 24px;
}
@media screen and (min-width: 768px) {
    .anchor-nav__link--strong-sm {
        font-size: clamp(0.875rem, 0.4464rem + 0.8929vw, 1.25rem);
    }
}
.anchor-nav__link--strong-md {
    font-weight: 700;
    font-size: 28px;
}
@media screen and (min-width: 768px) {
    .anchor-nav__link--strong-md {
        font-size: clamp(1rem, 0.4286rem + 1.1905vw, 1.5rem);
    }
}
.anchor-nav__link--strong-lg {
    font-weight: 700;
    font-size: 32px;
}
@media screen and (min-width: 768px) {
    .anchor-nav__link--strong-lg {
        font-size: clamp(1.25rem, 0.6786rem + 1.1905vw, 1.75rem);
    }
}
.anchor-nav__link:hover {
    background: #13a493;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.anchor-nav__link:active {
    transform: translateY(0);
}

.point01,
.point02,
.point03 {
    width: 100%;
    position: relative;
    padding: 56px 0;
    background: #efe1d1;
    color: #333;
}
@media screen and (min-width: 769px) {
    .point01,
    .point02,
    .point03 {
        padding: 72px 0;
    }
}
.point01::before,
.point02::before,
.point03::before {
    content: "";
    width: 100%;
    height: 17.33vw;
    position: absolute;
    z-index: 10;
    top: 1px;
    transform: translateY(-100%);
    background-image: url("/used/kimono-kaitori/images/bg_top_triangle_sp.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    pointer-events: none;
}
@media screen and (min-width: 768px) {
    .point01::before,
    .point02::before,
    .point03::before {
        background-image: url("/used/kimono-kaitori/images/bg_top_triangle_pc.png");
        top: 2.8vw;
        height: 27.34vw;
        max-height: 400px;
        background-size: contain;
        background-position: center bottom;
    }
}

.point__container {
    margin: 0 auto;
    margin-top: 32px;
}

.point__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}
@media screen and (min-width: 769px) {
    .point__content {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 72px;
        width: 95%;
        max-width: 100%;
    }
}

.point__image {
    min-width: 343px;
    max-width: 468px;
    width: 100%;
    margin: 0 auto;
    aspect-ratio: 343/228;
}
.point__image img {
    width: 100%;
    height: auto;
    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.15px;
}
.point__image-note span {
    margin-right: 10px;
}

.point__text-area {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media screen and (min-width: 769px) {
    .point__text-area {
        max-width: 486px;
        margin-top: 0;
    }
}

.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.72px;
}
.point__description span {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.15px;
}

.point__heading {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.8px;
}

.point__heading-check {
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-right: 4px;
    background-image: url(/used/kimono-kaitori/images/icon_check.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.market-price {
    padding: 64px 0 56px 0;
}
@media screen and (min-width: 768px) {
    .trustpoint{
        padding: 56px 0 0;
    }
    .market-price {
        padding: 72px 0;
    }
}
.market-price__slider {
    width: 100%;
    margin-top: 28px;
    overflow-x: auto;
}
.market-price__slide {
    background-color: white;
    padding: 16px;
    padding-bottom: 24px;
    border-radius: 12px;
    margin-inline: 8px;
    max-width: 560px !important;
    width: auto;
}
.market-price__slide:last-child {
    margin-right: 0;
}
@media screen and (min-width: 1080px) {
    .market-price__slide {
        padding: 24px;
        padding-bottom: 32px;
        margin-inline: 12px;
        min-width: 320px !important;
        max-width: 320px !important;
    }
}
.market-price__image {
    width: 100%;
    margin: 0 auto;
}
.market-price__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}
.market-price__text {
    width: 100%;
    margin: 0 auto;
    margin-top: 16px;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.72px;
    line-height: 170%;
    min-height: 62px;
}
@media screen and (min-width: 768px) {
    .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 {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.15px;
    width: 83%;
    max-width: 864px;
    margin: 0 auto;
    margin-top: 20px;
}
@media screen and (min-width: 768px) {
    .market-price__note {
        text-align: center;
    }
}

.consult {
    padding: 40px 0 0 0;
    background-color: white;
    padding-bottom: 32vw;
}
@media screen and (min-width: 768px) {
    .consult {
        padding: 72px 0;
        padding-bottom: max(12.5vw, 200px);
    }
}
.consult__container {
    margin: 0 auto;
    margin-top: 24px;
}
@media screen and (min-width: 768px) {
    .consult__container {
        max-width: 1100px;
        width: 95%;
    }
}
.consult__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 30px;
}
@media screen and (min-width: 768px) {
    .consult__list {
        grid-template-columns: repeat(3, 1fr);
    }
}
.consult__item {
    min-width: 156px;
    width: 100%;
    margin: 0 auto;
}
.consult__item img {
    border-radius: 8px;
    width: 100%;
    height: auto;
    object-fit: contain;
}
.consult__name {
    margin-top: 8px;
    display: block;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.64px;
    line-height: 150%;
    font-weight: 500;
}
.consult__note {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.15px;
    width: 83%;
    min-width: 311px;
    margin: 0 auto;
    margin-top: 20px;
}

.other-items {
    padding: 40px 0 0 0;
    background-color: white;
    padding-bottom: 29.8vw;
}
@media screen and (min-width: 768px) {
    .other-items {
        padding: 72px 0;
        padding-bottom: max(12.5vw, 200px);
    }
}
.other-items__container {
    margin: 0 auto;
    margin-top: 24px;
}
.other-items__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    justify-items: center;
}
@media (min-width: 768px) {
    .other-items__list {
        grid-template-columns: repeat(5, 1fr);
        width: 95%;
        margin: 0 auto;
    }
}
@media (min-width: 1024px) {
    .other-items__list {
        grid-template-columns: repeat(10, 1fr);
        gap: 24px;
    }
}
.other-items__item {
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.other-items__image {
    width: 80px;
    height: 80px;
    object-fit: contain;
}
.other-items__name {
    margin-top: 8px;
    font-size: 12px;
    text-align: center;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.479px;
}
.other-items__note {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.15px;
    width: 83%;
    min-width: 311px;
    margin: 0 auto;
    margin-top: 16px;
}

.testimonial {
    width: 100%;
    position: relative;
    padding: 40px 0 0 0;
    padding-bottom: 32vw;
    background-color: #f8f5f0;
    z-index: 10;
}
@media screen and (min-width: 768px) {
    .testimonial {
        padding: 72px 0 0 0;
        padding-bottom: max(18.75vw, 240px);
    }
}
.testimonial__slider {
    width: 100%;
    margin-top: 24px;
}
@media screen and (min-width: 768px) {
    .testimonial__slider {
        margin-top: 0px;
    }
}
.testimonial__slide {
    margin-right: 16px;
}
.testimonial__slide:last-child {
    margin-right: 0;
}
.testimonial__slide img {
    margin: 0 auto;
}
.testimonial__item {
    margin: 0 auto;
    background-color: white;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 16px;
    width: 100%;
    min-height: 264px;
    border: 2px solid #e7d8b9;
    border-radius: 12px;
}
@media screen and (min-width: 768px) {
    .testimonial__item {
        width: 100%;
        padding: 24px;
        min-height: 300px;
    }
}
.testimonial__profile {
    width: 100%;
}
.testimonial__profile svg {
    min-width: 64px;
    max-width: 64px;
    min-height: 64px;
    max-height: 64px;
    object-fit: contain;
}
.testimonial__content {
    width: 100%;
    margin-top: 16px;
    padding-bottom: 8px;
}
.testimonial__text {
    text-align: left;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.72px;
    line-height: 1.7;
}

.flow {
    width: 100%;
    position: relative;
    padding: 56px 0;
    background-color: #efe1d1;
}
@media screen and (min-width: 768px) {
    .flow {
        padding: 72px 0;
    }
}
.flow::before {
    content: "";
    width: 100%;
    height: 17.33vw;
    position: absolute;
    z-index: 10;
    top: 1px;
    transform: translateY(-100%);
    background-image: url("/used/kimono-kaitori/images/bg_top_triangle_sp.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    pointer-events: none;
}
@media screen and (min-width: 768px) {
    .flow::before {
        background-image: url("/used/kimono-kaitori/images/bg_top_triangle_pc.png");
        top: 2.8vw;
        height: 27.34vw;
        max-height: 400px;
        background-size: contain;
        background-position: center bottom;
    }
}
.flow__container {
    width: 95%;
    max-width: 400px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    display: grid;
    gap: 24px;
    margin: 0 auto;
    margin-top: 24px;
}
@media screen and (min-width: 768px) {
    .flow__container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, auto);
        max-width: initial;
    }
}
@media screen and (min-width: 1200px) {
    .flow__container {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, auto);
    }
}
.flow__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: white;
    padding: 16px;
    border-radius: 12px;
}
@media screen and (min-width: 768px) {
    .flow__item {
        padding: 24px;
    }
}
.flow__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #13a493;
    color: white;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    font-family: "Noto Sans";
}
.flow__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.8px;
    color: #333;
    margin-top: 8px;
}
.flow__image {
    width: 100%;
    min-width: 309px;
    margin-top: 8px;
}
.flow__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}
.flow__text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: 0.64px;
    color: #333;
    text-align: left;
    margin-top: 16px;
}
.flow__note {
    margin-top: 2em;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.15px;
    text-align: left;
    width: 100%;
}

.area {
    width: 100%;
    position: relative;
    padding: 32px 0 56px 0;
    background-color: #f8f5f0;
    text-align: center;
    overflow: hidden;
}
@media screen and (min-width: 768px) {
    .area {
        padding-bottom: 72px;
    }
}
.area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/used/kimono-kaitori/images/area_map.png);
    background-position: center top;
    background-size: 240px 240px;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 0;
}
.area__text {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.72px;
    line-height: 170%;
    margin-top: 40px;
}
@media screen and (min-width: 769px) {
    .area__text {
        margin-top: 0;
    }
}
.area__container {
    width: 100%;
    padding: 0 12px;
    max-width: 1100px;
    margin: 0 auto;
    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;
    margin-top: 40px;
}
@media screen and (min-width: 769px) {
    .area__table {
        margin-top: 56px;
    }
}
.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;
    text-align: left;
}
@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.15px;
    text-align: left;
    min-width: 309px;
    max-width: 320px;
    white-space: nowrap;
    width: 82%;
    margin: 0 auto;
    margin-top: 16px;
}

.faq {
    width: 100%;
    position: relative;
    padding: 56px 0;
    background-color: white;
}
@media screen and (min-width: 768px) {
    .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: 768px) {
    .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;
}

.faq__question {
    background-color: #efe1d1;
    border-radius: 8px;
}

.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-content,
.faq__answer-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.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.72px;
    color: #333;
    margin: 0;
}

.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.15px;
    color: #333;
    margin: 16px 0 0 0;
    font-weight: 400;
}

.message {
    width: 100%;
    position: relative;
    padding: 82px 0;
    background-color: #efe1d1;
    background-image: url(/used/kimono-kaitori/images/bg_massage_sp.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
    .message {
        padding: 56px 0;
        background-image: url(/used/kimono-kaitori/images/bg_massage_pc.jpg);
        background-position: top;
    }
}
.message__container {
    width: 84%;
    min-width: 314px;
    padding: 28px 0;
    margin: 0 auto;
    background-color: rgba(242, 238, 230, 0.5);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2em;
}
@media screen and (min-width: 768px) {
    .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.64px;
}

.form {
    width: 100%;
    position: relative;
    padding: 56px 0 0 0;
    background-color: #f8f5f0;
}
.form__container {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    margin-top: 16px;
}
.form__container iframe {
    width: 100%;
}

.fixed-bottom-buttons {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: flex;
    gap: 16px;
    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-buttons__button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 0;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border: none;
    transition: background 0.2s;
    max-height: 83px;
}
.fixed-bottom-buttons__button--tel {
    border-radius: 7.527px;
    background: #f00;
    box-shadow: 0px -10px 8px 0px #e20202 inset, 0px 6px 1px 0px #e1dcd3;
}
.fixed-bottom-buttons__button--line {
    border-radius: 7.527px;
    background: #00b300;
    box-shadow: 0px -10px 8px 0px #039f03 inset, 0px 6px 1px 0px #e1dcd3;
    color: white;
}
.fixed-bottom-buttons__button-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
}
.fixed-bottom-buttons__button-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.fixed-bottom-buttons__button-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.fixed-bottom-buttons__button-label {
    font-size: 19.557px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.782px;
}
.fixed-bottom-buttons__button-sub {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.56px;
}
.fixed-bottom-buttons__button-time {
    font-size: 15.043px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.602px;
} /*# sourceMappingURL=style.css.map */
