@charset "UTF-8";

/*
 * LP 共通ベース CSS
 * 各 LP ページ（appointment / follow など）で共有するスタイル。
 * ページ固有の差分は css/{page}.css に記述し、本ファイルの後に読み込む。
 */

.appointment>section:nth-child(odd of :not(.appointment__fv):not(.appointment__plan)) {
    background-color: #ffffff;
}

.appointment>section:nth-child(even of :not(.appointment__fv):not(.appointment__plan)) {
    background-color: #F7F7FA;
}

.appointment>section.appointment__plan {
    background-color: #EAF3FF;
}

.section-inner {
    width: calc(100% - 160px);
    max-width: 1080px;
    margin: 0 auto;
    padding: 60px 0;
}

.section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.section-title .title-en {
    font-family: "urw-din", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.02em;
    color: #0076E5;
}

.section-title .title-ja {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.section-title .title-ja .ja-black {
    font-family: Hiragino Sans;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.3;
    letter-spacing: 0.02em;
    color: #383B42;
}

.section-title .title-ja .ja-blue {
    font-family: Hiragino Sans;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.3;
    letter-spacing: 0.02em;
    color: #0076E5;
}

.section-title .title-ja .ja-blue .title-bold {
    font-family: Hiragino Sans;
    font-weight: 600;
    font-size: 46px;
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-align: center;
    color: #0076E5;
}

.cta-blue {
    position: relative;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Hiragino Sans;
    font-weight: 600;
    font-size: 18px;
    line-height: calc(28 / 18);
    letter-spacing: 0.02em;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    background-color: #0076E5;
    border: 1px solid #0076E5;
    border-radius: 40px;
    transition: all 0.2s;
}

.cta-blue::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #ffffff;
}

.cta-blue::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #0076E5;
}

.cta-white {
    position: relative;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Hiragino Sans;
    font-weight: 600;
    font-size: 18px;
    line-height: calc(28 / 18);
    letter-spacing: 0.02em;
    text-align: center;
    text-decoration: none;
    color: #0076E5;
    background-color: #ffffff;
    border: 1px solid #0076E5;
    border-radius: 40px;
    transition: all 0.2s;
}

.cta-white::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #0076E5;
}

.cta-white::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #ffffff;
}

.appointment__fv {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 550px;
    display: flex;
    gap: 32px;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 0 0 80px;
    background-image: url('../img/appointment/kv-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.appointment__fv--deco::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(max(80px, calc((100vw - 1440px) / 2 + 80px)) + 460px);
    width: 314px;
    aspect-ratio: 314 / 236;
    background-image: url('../img/appointment/fv-deco.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
}

.appointment__fv-left {
    min-width: 528px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.appointment__fv-left-title {
    order: 2;
    font-family: Hiragino Sans;
    font-weight: 600;
    color: #363843;
    font-size: 46px;
    line-height: 1.3;
    letter-spacing: 0;
    text-align: left;
    margin: 0 0 10px;
}

.appointment__fv-left--subtitle {
    order: 1;
    font-family: Hiragino Sans;
    font-weight: 600;
    color: #0076E5;
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 0;
    text-align: left;
}

.appointment__fv-left-guide {
    order: 4;
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
}

.appointment__guide--inner {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.appointment__guide--inner::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%) rotate(55deg);
    width: 20px;
    height: 2px;
    background-color: #0076E5;
}

.appointment__guide--inner::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%) rotate(-55deg);
    width: 20px;
    height: 2px;
    background-color: #0076E5;
}

.appointment__guide--number {
    font-family: Hiragino Sans;
    font-weight: 600;
    font-size: 15px;
    line-height: calc(24 / 15);
    letter-spacing: 0;
    text-align: center;
    color: #0076E5;
}

.appointment__guide--text {
    font-family: Hiragino Sans;
    font-weight: 600;
    font-size: 12px;
    line-height: calc(24 / 12);
    letter-spacing: 0;
    text-align: center;
    color: #0076E5;
}

.appointment__fv-left-guide .appointment__fv-cta-download {
    width: 100%;
    max-width: 380px;
    padding: 0 52px 0 80px;
    justify-content: center;
    overflow: visible;
}

.appointment__fv-cta-book {
    position: absolute;
    top: 40%;
    left: 13px;
    transform: translateY(-50%);
    width: 100px;
    height: auto;
    object-fit: contain;
    pointer-events: none;
}

.appointment__fv-cta-label {
    position: relative;
    display: block;
    font-family: Hiragino Sans;
    font-weight: 600;
    font-size: 18px;
    line-height: calc(28 / 18);
    letter-spacing: 0.02em;
    text-align: center;
    color: #ffffff;
    z-index: 1;
    transition: color 0.2s;
}

.appointment__fv-left--cta {
    order: 5;
    width: 100%;
    max-width: 380px;
}

.appointment__fv-left--cta .cta-white {
    width: 100%;
    font-size: 16px;
    line-height: calc(28 / 16);
}

.appointment__fv-right {
    position: relative;
    flex-shrink: 0;
    flex-grow: 1;
    width: calc(771px + (100vw - 1440px));
    max-width: 1176px;
    height: 479px;
    aspect-ratio: 1176 / 736;
}

.appointment__fv-right img {
    position: absolute;
    top: 0;
    left: 0;
    width: 1176px;
    height: auto;
    max-width: none;
}

.appointment__problem-list {
    width: 100%;
    max-width: 792px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 41.28px 7px;
    margin: 40px auto;
}

.appointment__problem-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #F7F7FA;
    border-radius: 20px;
    padding: 16.77px 20px;
    z-index: 1;
}

.appointment__problem-item::before {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 33.63px;
    height: 37.70px;
    background-image: url('../img/appointment/problem-deco.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.appointment__problem-item:nth-child(2)::before,
.appointment__problem-item:nth-child(3)::before,
.appointment__problem-item:nth-child(5)::before {
    transform: translateX(-50%) scaleX(-1);
}

.appointment__problem-item .item-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0;
    line-height: 1.35;
    gap: 0;
}

.appointment__problem-item .item-text p {
    margin: 0;
}

.appointment__problem-item .item-text--pc>span {
    display: inline-flex;
    line-height: inherit;
}

.appointment__problem-item .item-text--sp {
    display: none;
}

.appointment__problem-item .item-text .item-blue {
    font-family: Hiragino Sans;
    font-weight: 600;
    font-size: 16px;
    line-height: inherit;
    letter-spacing: 0;
    color: #0076E5;
}

.appointment__problem-item .item-text .item-black {
    font-family: Hiragino Sans;
    font-weight: 600;
    font-size: 16px;
    line-height: inherit;
    letter-spacing: 0;
    color: #383B42;
}

.appointment__problem-image {
    position: relative;
    width: 100%;
    max-width: 336px;
    aspect-ratio: 336 / 252;
    margin: 0 auto;
}

.appointment__problem-image::before {
    content: "";
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 48px;
    background-image: url('../img/appointment/arrow.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.appointment__problem-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.appointment__problem-solution {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3.48px;
    margin: 85px auto 0;
}

.solution-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Hiragino Sans;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-align: center;
    color: #ffffff;
    z-index: 0;
    margin: 0 0 3.48px;
}

.solution-title::before {
    content: "";
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    aspect-ratio: 150 / 36;
    background-image: url('../img/appointment/title-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.solution-logo-wrap {
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
    flex-wrap: wrap;
}

.solution-logo-wrap img {
    width: 100%;
    max-width: 157px;
    aspect-ratio: 157 / 54.95;
    object-fit: cover;
}

.solution-text {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.solution-text-black {
    font-family: Hiragino Sans;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-align: center;
    color: #363843;
}

.solution-text-blue {
    font-family: Hiragino Sans;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-align: center;
    color: #0076E5;
}

.appointment__problem-desc {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px auto 0;
}

.problem-desc-brack {
    font-family: Hiragino Sans;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #363843;
}

.problem-desc-blue {
    font-family: Hiragino Sans;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #0076E5;
}

/* ========================================
   Reason
   ======================================== */

.appointment__reason {
    background-color: #F7F7FA;
}

.reason-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    counter-reset: reason-counter;
}

.reason-item {
    display: flex;
    align-items: center;
    justify-content: center;
    counter-increment: reason-counter;
}

.reason-item:nth-child(even) {
    flex-direction: row-reverse;
}

.reason-item-counter {
    width: 98px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: #EAF3FF;
    border-radius: 4px;
}

.reason-item-counter--label {
    font-family: Hiragino Sans;
    font-weight: 600;
    font-size: 14px;
    color: #0076E5;
    letter-spacing: 0.05em;
}

.reason-item-counter--divider {
    width: 0;
    height: 11px;
    border-left: 1px solid var(--blue, #0076E5);
}

.reason-item-counter--number::before {
    content: counter(reason-counter, decimal-leading-zero);
    font-family: "urw-din", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #0076E5;
    letter-spacing: 0.05em;
}

.reason-item-text {
    width: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 50px;
}

.reason-item-title {
    margin: 20px 0 30px;
}

.ja-black {
    font-family: Hiragino Sans;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #1A1A1A;
}

.ja-blue {
    font-family: Hiragino Sans;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #0076E5;
}

.reason-item-desc {
    font-family: Hiragino Sans;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: left;
    color: #1F2937;
}

.reason-item-image {
    position: relative;
    width: 100%;
    max-width: 580px;
    aspect-ratio: 580 / 350;
    flex: 1;
}

.reason-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ========================================
   Function
   ======================================== */

.function-list {
    container-type: inline-size;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0 0;
}

.function-item {
    width: 208px;
    height: 212px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border: 1px solid #D0D5DD;
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
}

.function-item img {
    width: 100%;
    max-width: 80px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.function-item-title {
    font-family: Hiragino Sans;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: center;
    color: #363843;
    margin: 5px 0 0;
}

.function-item-desc {
    font-family: Hiragino Sans;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0;
    text-align: center;
    color: #363843;
    margin: 12px 0 0;
}

.benefit {
    background-color: #F7F7FA;
}

.benefit-inner {
    container-type: inline-size;
}

.benefit-header {
    display: grid;
    grid-template-columns: repeat(3, 252px);
    align-items: center;
    justify-content: center;
    gap: 0 30px;
    background-color: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    margin: 40px 0 20px;
}

.benefit-header-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
}

.benefit-header-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background-color: #D0D5DD;
}

.benefit-header-item-title {
    font-family: Hiragino Sans;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.04em;
    color: #0076E5;
    background-color: #EAF3FF;
    border-radius: 20px;
    padding: 8px 30px;
}

.benefit-header-item-desc {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.desc-plus,
.desc-minus {
    font-family: "urw-din", sans-serif;
    font-weight: 400;
    font-size: 60px;
    line-height: 80px;
    letter-spacing: 0;
    text-align: center;
    color: #0076E5;
}

.desc-number {
    font-family: "urw-din", sans-serif;
    font-weight: 600;
    font-size: 83px;
    line-height: 1;
    letter-spacing: -0.036em;
    color: #0076E5;
}

.desc-percent {
    font-family: "urw-din", sans-serif;
    font-weight: 600;
    font-size: 49px;
    line-height: 1;
    letter-spacing: 0;
    color: #0076E5;
}

.desc-times {
    font-family: "urw-din", sans-serif;
    font-weight: 600;
    font-size: 49px;
    line-height: 1;
    letter-spacing: 0;
    color: #0076E5;
}

.benefit-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0 0;
}

.benefit-item {
    width: 255px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.benefit-item-title {
    order: 2;
    font-family: Hiragino Sans;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: center;
    color: #1A1A1A;
    margin: 0 0 4px;
}

.benefit-item img {
    order: 1;
    width: 100%;
    max-width: 255px;
    aspect-ratio: 255 / 166;
    object-fit: cover;
    margin: 0 0 20px;
}

.benefit-item-desc {
    order: 3;
    font-family: Hiragino Sans;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #363843;
    text-align: center;
}

@container (max-width: 529px) {
    .benefit-list {
        gap: 40px;
        margin: 30px 0 0;
    }

    .benefit-item {
        width: 100%;
    }

    .benefit-item-desc br {
        display: none;
    }

    .benefit-item img {
        max-width: 100%;
    }
}


.point {
    padding: 60px 0;
}

.point-title {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}

.point-table-wrap {
    margin: 40px 0 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.point-table {
    width: 100%;
    border-collapse: collapse;
}

.point-table__head--empty {
    width: 235px;
}

.point-table__head--march {
    width: 232px;
    background-color: #0076E5;
    border-radius: 8px 8px 0 0;
    padding: 8.5px 0 8.2px;
    text-align: center;
}

.point-table__head--march img {
    width: 100%;
    max-width: 120px;
    object-fit: contain;
}

.point-table__head--other {
    width: 200px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Hiragino Sans;
    font-weight: 600;
    font-size: 14px;
    line-height: calc(20 / 14);
    letter-spacing: 0;
    text-align: center;
    background-color: #DFDFEB;
    border-radius: 12px 12px 0 0;
    padding: 24px 20px;
}

.point-table thead {
    margin: 0 auto;
}

.point-table thead th {
    border: none;
}

.point-table thead tr {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
}

.point-table tbody tr {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.point-table tbody tr:last-child .point-table__cell--march {
    border-bottom: 4px solid #0076E5;
    border-radius: 0 0 8px 8px;
}

.point-table tbody tr:nth-child(even) .point-table__cell--march {
    background-color: #EAF3FF;
}

.point-table tbody tr:last-child .point-table__cell--other {
    border-bottom: 4px solid #DFDFEB;
    border-radius: 0 0 8px 8px;
}

.point-table tbody tr:nth-child(even) .point-table__cell--other {
    background-color: #F7F7FA;
}

.point-table__row-head {
    width: 235px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    font-family: Hiragino Sans;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0;
    color: #363843;
    text-align: left;
    border-bottom: 1px solid #D0D5DD;
}

.point-table__row-head:first-child {
    border-top: 1px solid #D0D5DD;
}

.point-table__row-head-sub {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    list-style: none;
}

.point-table__row-head-sub li {
    font-family: Hiragino Sans;
    font-weight: 300;
    font-size: 14px;
    line-height: calc(23 / 14);
    letter-spacing: 0;
    color: #363843;
}

.point-table__cell--march {
    width: 232px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-left: 4px solid #0076E5;
    border-right: 4px solid #0076E5;
    padding: 10px 0;
}

.point-table__cell--march img {
    width: 28px;
    height: 28px;
    object-fit: cover;
    margin: 0 auto;
}

.point-table__cell-note {
    font-family: Hiragino Sans;
    font-weight: 300;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0;
    color: #363843;
    text-align: center;
}

.point-table__cell--other {
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    border-left: 4px solid #DFDFEB;
    border-right: 4px solid #DFDFEB;
    padding: 10px 20px;
}

.point-table__cell--other img {
    width: 17px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin: 0 auto;
}

.point-table__cell--other img[src*="icon-triangle.svg"] {
    width: 20px;
}

.appointment__case {
    background-color: #F7F7FA;
}

.appointment__case-head {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 30px 0 40px;
}

.appointment__case-archive-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: Hiragino Sans;
    font-weight: 600;
    font-size: 14px;
    line-height: calc(28 / 14);
    letter-spacing: 0.02em;
    text-align: center;
    color: #0076E5;
    transition: opacity 0.2s;
}

.appointment__case-archive-link:hover {
    opacity: 0.7;
}

.appointment__case-archive-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 20px;
    border-radius: 20px;
    background-color: #0076E5;
}

.appointment__case-slider-wrap {
    position: relative;
}

.appointment__case-list {
    list-style: none;
}

.appointment__case-item {
    width: 341px;
}

.appointment__case-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

.appointment__case-link:hover {
    opacity: 0.7;
}

.appointment__case-thumb {
    width: 100%;
    aspect-ratio: 341 / 190;
    border-radius: 8px;
    overflow: hidden;
}

.appointment__case-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.appointment__case-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 0 0;
}

.appointment__case-clinic {
    font-family: Hiragino Sans;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #A3A3B9;
}

.appointment__case-title {
    font-family: Hiragino Sans;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #363843;
}

.appointment__case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
}

.appointment__case-tag {
    font-family: Hiragino Sans;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #006EC5;
    background-color: #EAEFFF;
    border-radius: 34px;
    padding: 6px 16px 6px 27.5px;
    position: relative;
}

.appointment__case-tag::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url('../img/icon_sharp.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.appointment__case-btn {
    position: absolute;
    top: calc(290px / 2);
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #383B42;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.appointment__case-btn--prev {
    left: -50px;
}

.appointment__case-btn--next {
    right: -50px;
}

.appointment__case-btn--prev::before,
.appointment__case-btn--next::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
}

.appointment__case-btn--prev::before {
    border-width: 8px 12px 8px 0;
    border-color: transparent #ffffff transparent transparent;
    transform: translateX(-1px);
}

.appointment__case-btn--next::before {
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent #ffffff;
    transform: translateX(1px);
}

.appointment__case-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px 0 0;
}

.appointment__case-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 3px;
    border-radius: 3px;
    background-color: #D0D5DD;
    opacity: 1;
}

.appointment__case-pagination .swiper-pagination-bullet-active {
    background-color: #0076E5;
}

.appointment__step-desc {
    font-family: Hiragino Sans;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: center;
    color: #363843;
    margin: 30px 0;
}

.appointment__step-list {
    container-type: inline-size;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    counter-reset: step-counter;
    margin: 0 0 30px;
}

.appointment__step-item {
    width: 247px;
    height: 225px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    border-radius: 12px;
    border: 1px solid #D0D5DD;
    padding: 28px 23px;
    counter-increment: step-counter;
}

.appointment__step-item-num {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 2px;
    width: 55px;
    height: 22px;
    background-color: #0076E5;
    border-radius: 20px;
    flex-shrink: 0;
}

.appointment__step-item-num--number::before {
    content: "Step" counter(step-counter);
    font-family: "urw-din", sans-serif;
    font-weight: 600;
    font-size: 11px;
    line-height: calc(17.6 / 11);
    letter-spacing: 0;
    color: #ffffff;
}

.appointment__step-item-title {
    font-family: Hiragino Sans;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #363843;
}

.appointment__step-item-desc {
    font-family: Hiragino Sans;
    font-weight: 400;
    font-size: 13px;
    line-height: calc(20.8 / 13);
    letter-spacing: 0;
    color: #545454;
}

.appointment__step-note {
    font-family: Hiragino Sans;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #0076E5;
    text-align: center;
    background-color: #EAF3FF;
    border-radius: 12px;
    padding: 32px 16px;
}

.appointment__step-note br {
    display: none;
}

@container (max-width: 523px) {
    .appointment__step-item {
        width: 100%;
        height: auto;
        padding: 20px;
    }
}

.appointment__plan {
    background-color: #EAF3FF;
    padding: 60px 30px;
}

.appointment__plan-desc {
    font-family: Hiragino Sans;
    font-weight: 300;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0;
    color: #363843;
    text-align: center;
    margin: 40px 0 30px;
}

.appointment__plan-link-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.appointment__plan-download-link {
    width: 360px;
}

.appointment__plan-contact-link {
    width: 360px;
}

.appointment__cta {
    background-color: #F7F7FA;
    padding: 60px 0 0;
}

.appointment__cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background-image: url('../img/appointment/cta-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 63px 40px 62px;
}

.appointment__cta-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.appointment__cta-title .title-top,
.appointment__cta-title .title-bottom {
    font-family: Hiragino Sans;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-align: center;
    color: #0076E5;
}

.appointment__cta-desc {
    font-family: Hiragino Sans;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: center;
    color: #363843;
}

.appointment__cta--wrap {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.appointment__cta-item-wrap {
    position: relative;
    width: 420px;
}

.appointment__cta-item-wrap--book::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 246px;
    height: 158.58px;
    background-image: url('../img/appointment/cta-book.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

.appointment__cta-item-wrap--book .appointment__cta-item {
    margin: 80px 0 0;
}

.appointment__cta-item-wrap--online::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 193.44px;
    height: 117.11px;
    background-image: url('../img/appointment/cta-online.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

.appointment__cta-item-wrap--online .appointment__cta-item {
    margin: 65px 0 0;
}

.appointment__cta-item {
    position: relative;
    width: 100%;
    height: 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 70px 0 32.1px;
    box-sizing: border-box;
}

.appointment__cta-item-title {
    font-family: Hiragino Sans;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #292E32;
    text-align: center;
    margin: 0 0 10px;
}

.appointment__cta-item-desc {
    font-family: Hiragino Sans;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: center;
    color: #292E32;
    margin: 0 0 25.9px;
}

.appointment__cta-item-wrap--book .appointment__cta-item-link {
    width: 100%;
    max-width: 300px;
    font-family: Hiragino Sans;
    font-weight: 600;
    font-size: 16px;
    line-height: calc(28 / 16);
    letter-spacing: 0.02em;
    text-align: center;
}

.appointment__cta-item-wrap--online .appointment__cta-item-link {
    width: 300px;
    font-family: Hiragino Sans;
    font-weight: 600;
    font-size: 16px;
    line-height: calc(28 / 16);
    letter-spacing: 0.02em;
    text-align: center;
}

.appointment__faq {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 60px 0;
}

.faq-inner {
    padding: 0;
}

.appointment__faq .section-inner .faq_list {
    width: 100%;
    max-width: 800px;
    margin: 40px auto 24px;
}

.appointment__faq-link {
    display: flex;
    justify-content: center;
    width: 100%;
}

.appointment__faq-link a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: Hiragino Sans;
    font-weight: 600;
    font-size: 14px;
    line-height: calc(28 / 14);
    letter-spacing: 0.02em;
    text-align: center;
    color: #383B42;
    text-decoration: none;
}

.appointment__faq-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 20px;
    background-color: #fff;
    border-radius: 20px;
}

.appointment__faq-link-icon::before {
    content: "";
    width: 10px;
    height: 10px;
    background-image: url('../img/follow/arrow-black.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

@media (min-width: 1441px) {
    .appointment__case-item {
        width: 387px;
    }
}

@media (max-width: 1000px) {
    .reason-item {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

    .reason-item-image {
        flex: unset;
    }

    .reason-item-text {
        width: 100%;
        padding: 0;
    }

    .reason-item:nth-child(even) {
        flex-direction: row;
    }

    .reason-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .point-table thead tr,
    .point-table tbody tr {
        justify-content: flex-start;
    }

    .point-table {
        width: max-content;
        max-width: none;
    }

    .point-table-wrap {
        width: 100vw;
        max-width: 100vw;
        margin: 40px calc(50% - 50vw) 0;
        padding: 0 30px 10px 30px;
        box-sizing: border-box;
    }
}

@media (max-width: 960px) {
    .appointment__fv {
        height: 100vh;
        max-height: 800px;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        margin: calc(-1 * var(--header-height, 64px)) 0 0;
        padding: calc(var(--header-height, 64px) + 20px) 0 0;
        padding-left: 0;
    }

    .appointment__fv-cta-label {
        font-size: 16px;
        line-height: calc(26 / 16);
    }

    .appointment__fv-left {
        width: calc(100% - 40px);
        min-width: auto;
        height: auto;
        align-items: center;
        justify-content: flex-start;
    }

    .appointment__fv-left--subtitle {
        text-align: center;
        margin: 0 0 6px;
        font-size: 14px;
    }

    .appointment__fv-left-guide {
        margin: 0 0 20px;
    }

    .appointment__fv-left-title {
        text-align: center;
        margin: 0 0 20px;
        font-size: 32px;
    }

    .appointment__fv-right img {
        position: absolute;
        top: 0;
        left: 35px;
        width: 1050px;
        height: auto;
        max-width: none;
    }

    .appointment__fv-right {
        width: 100%;
        max-width: 100%;
        flex-grow: 0;
        height: auto;
        aspect-ratio: 1176 / 736;
        margin: 12px 0 0;
    }

    .appointment__fv--deco::before {
        width: 235px;
        left: -55px;
    }

    .appointment__guide--number {
        font-size: 14px;
        line-height: calc(22 / 14);
    }

    .appointment__guide--text {
        font-size: 11px;
        line-height: calc(22 / 11);
    }

    .benefit-header {
        grid-template-columns: repeat(2, 1fr);
        padding: 10px;
    }

    .benefit-header-item:nth-child(3) {
        grid-column: 1 / -1;
        padding: 0 0 20px;
    }

    .benefit-header-item:nth-child(2)::after {
        display: none;
    }

    .appointment__case-item {
        width: auto;
        max-width: none;
    }
}

/* @media (max-width: 867px) */
@media (max-width: 867px) {
    .appointment__problem-item:nth-child(3)::before {
        transform: translateX(-50%) scaleX(1);
    }

    .appointment__problem-item:nth-child(4)::before {
        transform: translateX(-50%) scaleX(-1);
    }
}

@media (max-width: 834px) {

    .section-title .title-ja .ja-black,
    .section-title .title-ja .ja-blue {
        display: inline;
    }

    .section-title .title-ja {
        display: block;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .point-title {
        width: 100%;
        max-width: 100%;
    }

    .section-inner {
        width: calc(100% - 60px);
        max-width: 100%;
    }

    .section-title .title-en {
        font-size: 14px;
    }

    .section-title .title-ja .ja-black {
        font-size: 32px;
    }

    .section-title .title-ja .ja-blue {
        font-size: 32px;
    }

    .appointment__fv-right img {
        width: 850px;
    }

    .appointment__problem-item .item-text .item-blue,
    .appointment__problem-item .item-text .item-black {
        font-size: 14px;
    }

    .appointment__problem-item .item-text {
        line-height: 1.3;
    }

    .problem-desc-brack,
    .problem-desc-blue {
        font-size: 18px;
    }

    .solution-text-black {
        font-size: 18px;
    }

    .solution-text-blue {
        font-size: 28px;
    }

    .ja-black,
    .ja-blue {
        font-size: 24px;
    }

    .reason-item-counter--label,
    .reason-item-counter--number::before {
        font-size: 14px;
    }

    .reason-item-desc {
        font-size: 14px;
    }

    .function-item-desc {
        font-size: 12px;
    }

    .function-item-title {
        font-size: 14px;
    }

    .benefit-header-item-title {
        font-size: 12px;
    }

    .desc-number {
        font-size: 63px;
    }

    .desc-percent,
    .desc-times {
        font-size: 37px;
    }

    .desc-plus,
    .desc-minus {
        font-size: 46px;
        line-height: 61px;
    }

    .point-table__head--other {
        font-size: 12px;
    }

    .point-table__row-head {
        font-size: 14px;
    }

    .point-table__row-head-sub li {
        font-size: 12px;
    }

    .appointment__case-archive-link {
        font-size: 12px;
    }

    .appointment__case-btn--next {
        right: -20px;
        width: 30px;
        height: 30px;
    }

    .appointment__case-btn--next::before {
        border-width: 6px 0 6px 9px;
    }

    .appointment__case-btn--prev {
        left: -20px;
        width: 30px;
        height: 30px;
    }

    .appointment__case-btn--prev::before {
        border-width: 6px 9px 6px 0;
    }

    .appointment__case-tag {
        font-size: 12px;
    }

    .appointment__case-title {
        font-size: 14px;
    }

    .appointment__cta-desc {
        font-size: 14px;
    }

    .appointment__cta-item-desc {
        font-size: 13px;
    }

    .appointment__cta-item-title {
        font-size: 18px;
    }

    .appointment__cta-item-wrap--book .appointment__cta-item-link,
    .appointment__cta-item-wrap--online .appointment__cta-item-link {
        width: calc(100% - 32px);
        max-width: 100%;
        height: 55px;
        font-size: 14px;
    }

    .appointment__cta-title .title-top,
    .appointment__cta-title .title-bottom {
        font-size: 28px;
    }

    .appointment__plan-desc {
        font-size: 14px;
    }

    .appointment__step-desc {
        font-size: 14px;
    }

    .appointment__step-item-desc {
        font-size: 12px;
    }

    .appointment__step-item-title {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .appointment__case-item {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 583px) {
    .appointment__step-list {
        gap: 20px;
    }
}

@media (max-width: 538px) {

    .appointment__problem-item:nth-child(2)::before,
    .appointment__problem-item:nth-child(4)::before {
        transform: translateX(-50%) scaleX(1);
    }

    .appointment__problem-item:nth-child(3)::before,
    .appointment__problem-item:nth-child(5)::before {
        transform: translateX(-50%) scaleX(-1);
    }
}

@media (max-width: 520px) {
    .appointment__problem-item .item-text--pc {
        display: none;
    }

    .appointment__problem-item .item-text--sp {
        display: flex;
    }

    .appointment__problem-item {
        padding: 10px 20px;
    }

    .appointment__problem-item:nth-child(2)::before {
        transform: translateX(-50%) scaleX(-1);
    }

    .appointment__problem-item:nth-child(3) {
        grid-column: 1 / -1;
        width: fit-content;
        margin: 0 auto;
    }

    .appointment__problem-list {
        display: grid;
        grid-template-columns: repeat(2, fit-content(100%));
        justify-content: space-between;
        gap: 0 7px;
    }

    .item-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .item-text>span {
        display: inline-flex;
        line-height: 1;
    }
}

@media (max-width: 500px) {
    .point-title {
        width: 100%;
    }

    .section-inner {
        width: calc(100% - 40px);
        padding: 50px 0;
    }

    .faq-inner {
        padding: 0;
    }

    .function-list {
        align-items: stretch;
    }

    .function-item {
        width: 162px;
        height: auto;
        padding: 10px 10px 12px 10px;
    }

    .function-item-title br {
        display: none;
    }

    .function-item-desc {
        margin: 0;
    }

    .desc-number {
        font-weight: 600;
        font-size: 65px;
        line-height: 1;
        letter-spacing: -0.046em;
    }

    .desc-percent,
    .desc-times {
        font-weight: 600;
        font-size: 38px;
        line-height: 1;
        letter-spacing: 0;
    }

    .desc-plus,
    .desc-minus {
        font-weight: 400;
        font-size: 45px;
        line-height: 1;
        letter-spacing: 0;
    }

    .appointment__cta {
        padding: 50px 0 0;
    }

    .appointment__cta-inner {
        padding: 50px 20px 52px;
    }
}

@media (max-width: 400px) {

    .appointment__case-slider-wrap .appointment__case-btn,
    .appointment__case-slider-wrap .appointment__case-pagination {
        display: none;
    }

    .appointment__case-swiper--static .appointment__case-item {
        width: 100%;
        max-width: none;
    }

    .appointment__case-swiper--static .appointment__case-item:nth-child(n + 4) {
        display: none;
    }

    .appointment__case-swiper--static .appointment__case-list {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }

    .appointment__case-swiper--static {
        overflow: visible;
    }
}

@media (max-width: 375px) {
    .appointment {
        --vw: calc(100vw / 375);
    }

    .section-inner {
        width: calc(100% - calc(40 * var(--vw)));
        padding: calc(50 * var(--vw)) 0;
    }

    .appointment__fv-left {
        width: calc(100% - calc(40 * var(--vw)));
    }

    .section-title {
        gap: calc(16 * var(--vw));
    }

    .section-title .title-en,
    .appointment__fv-left--cta .cta-white,
    .reason-item-counter--label,
    .reason-item-counter--number::before,
    .reason-item-desc,
    .appointment__case-title,
    .appointment__step-item-title,
    .appointment__cta-desc,
    .appointment .cta-blue,
    .appointment .cta-white {
        font-size: calc(14 * var(--vw));
    }

    .section-title .title-ja .ja-black,
    .section-title .title-ja .ja-blue,
    .solution-text-blue,
    .appointment__cta-title .title-top,
    .appointment__cta-title .title-bottom {
        font-size: calc(28 * var(--vw));
    }

    .section-title .title-ja .ja-blue .title-bold,
    .desc-percent,
    .desc-times {
        font-size: calc(38 * var(--vw));
    }

    .cta-blue,
    .cta-white {
        height: calc(64 * var(--vw));
        font-size: calc(18 * var(--vw));
        border-radius: calc(40 * var(--vw));
    }

    .cta-blue::before,
    .cta-white::before {
        right: calc(18 * var(--vw));
        width: calc(16 * var(--vw));
        height: calc(16 * var(--vw));
    }

    .cta-blue::after {
        right: calc(22 * var(--vw));
        border-top: calc(4 * var(--vw)) solid transparent;
        border-bottom: calc(4 * var(--vw)) solid transparent;
        border-left: calc(6 * var(--vw)) solid #0076E5;
    }

    .cta-white::after {
        right: calc(22 * var(--vw));
        border-top: calc(4 * var(--vw)) solid transparent;
        border-bottom: calc(4 * var(--vw)) solid transparent;
        border-left: calc(6 * var(--vw)) solid #ffffff;
    }

    .appointment__fv {
        padding: calc(var(--header-height, calc(64 * var(--vw))) + calc(20 * var(--vw))) 0 0;
        max-height: calc(620 * var(--vw));
        margin: calc(-1 * var(--header-height, calc(64 * var(--vw)))) 0 0;
    }

    .appointment__fv--deco::before {
        left: calc(-55 * var(--vw));
        width: calc(235 * var(--vw));
    }

    .appointment__fv-left-title {
        font-size: calc(30 * var(--vw));
        margin: 0 0 calc(20 * var(--vw));
    }

    .appointment__fv-left--subtitle {
        font-size: calc(14 * var(--vw));
        margin: 0 0 calc(6 * var(--vw));
    }

    .appointment__fv-left-guide {
        max-width: calc(380 * var(--vw));
        gap: calc(10 * var(--vw));
        margin: 0 0 calc(20 * var(--vw));
    }

    .appointment__guide--inner::before {
        left: calc(-25 * var(--vw));
        width: calc(20 * var(--vw));
        height: calc(2 * var(--vw));
    }

    .appointment__guide--inner::after {
        right: calc(-25 * var(--vw));
        width: calc(20 * var(--vw));
        height: calc(2 * var(--vw));
    }

    .appointment__guide--number {
        font-size: calc(13 * var(--vw));
        line-height: calc(21.16 / 13);
    }

    .appointment__guide--text {
        font-size: calc(10 * var(--vw));
        line-height: calc(21.16 / 10);
    }

    .appointment__fv-left-guide .appointment__fv-cta-download {
        max-width: calc(380 * var(--vw));
        padding: 0 calc(52 * var(--vw)) 0 calc(80 * var(--vw));
    }

    .appointment__fv-cta-book {
        left: calc(13 * var(--vw));
        width: calc(100 * var(--vw));
    }

    .appointment__fv-cta-label {
        font-size: calc(15 * var(--vw));
        line-height: calc(24.68 / 15);
    }

    .appointment__fv-left--cta {
        max-width: calc(380 * var(--vw));
    }

    .appointment__fv-right {
        margin: calc(12 * var(--vw)) 0 0;
    }

    .appointment__fv-right img {
        left: calc(52 * var(--vw));
        width: calc(679.1 * var(--vw));
    }

    .appointment__problem-list {
        max-width: calc(792 * var(--vw));
        gap: 0 calc(7 * var(--vw));
        margin: calc(40 * var(--vw)) auto;
    }

    .appointment__problem-item {
        border-radius: calc(20 * var(--vw));
        padding: calc(10 * var(--vw)) calc(20 * var(--vw));
    }

    .appointment__problem-item::before {
        bottom: calc(-25 * var(--vw));
        width: calc(33.63 * var(--vw));
        height: calc(37.70 * var(--vw));
    }

    .appointment__problem-item .item-text {
        line-height: 1.2;
    }

    .appointment__problem-item .item-text .item-blue,
    .appointment__problem-item .item-text .item-black {
        font-size: calc(11 * var(--vw));
    }

    .appointment__step-item-num--number::before {
        font-size: calc(11 * var(--vw));
    }

    .appointment__problem-image {
        max-width: calc(336 * var(--vw));
    }

    .appointment__problem-image::before {
        bottom: calc(-50 * var(--vw));
        width: calc(46 * var(--vw));
        height: calc(48 * var(--vw));
    }

    .appointment__problem-solution {
        gap: calc(3.48 * var(--vw));
        margin: calc(85 * var(--vw)) auto 0;
    }

    .solution-title {
        font-size: calc(12 * var(--vw));
        margin: 0 0 calc(3.48 * var(--vw));
    }

    .solution-title::before {
        width: calc(150 * var(--vw));
    }

    .solution-logo-wrap img {
        max-width: calc(157 * var(--vw));
    }

    .solution-text {
        gap: calc(2 * var(--vw));
    }

    .solution-text-black {
        font-size: calc(18 * var(--vw));
    }

    .appointment__problem-desc {
        margin: calc(20 * var(--vw)) auto 0;
        display: block;
        text-align: center;
    }

    .problem-desc-brack,
    .problem-desc-blue {
        font-size: calc(18 * var(--vw));
        display: inline;
    }

    .reason-list {
        gap: calc(40 * var(--vw));
        margin: calc(40 * var(--vw)) 0;
    }

    .reason-item {
        gap: calc(40 * var(--vw));
    }

    .reason-item-counter {
        width: calc(98 * var(--vw));
        height: calc(27 * var(--vw));
        gap: calc(6 * var(--vw));
        border-radius: calc(4 * var(--vw));
    }

    .reason-item-counter--divider {
        height: calc(11 * var(--vw));
        border-left: calc(1 * var(--vw)) solid var(--blue, #0076E5);
    }

    .reason-item-title {
        margin: calc(8 * var(--vw)) 0 calc(10 * var(--vw));
    }

    .ja-black,
    .ja-blue {
        font-size: calc(22 * var(--vw));
    }

    .reason-item-image {
        max-width: calc(580 * var(--vw));
    }

    .function-list {
        gap: calc(10 * var(--vw));
        margin: calc(32 * var(--vw)) 0 0;
        align-items: stretch;
    }

    .function-item {
        width: calc(162 * var(--vw));
        height: auto;
        border-radius: calc(12 * var(--vw));
        padding: calc(10 * var(--vw)) calc(10 * var(--vw)) calc(12 * var(--vw)) calc(10 * var(--vw));
    }

    .function-item img {
        max-width: calc(80 * var(--vw));
    }

    .function-item-title {
        font-size: calc(14 * var(--vw));
        margin: calc(5 * var(--vw)) 0 0;
    }

    .function-item-desc,
    .point-table__row-head-sub li,
    .point-table__cell-note,
    .appointment__case-clinic,
    .appointment__step-item-desc {
        font-size: calc(12 * var(--vw));
    }

    .benefit-header {
        gap: 0 calc(30 * var(--vw));
        border-radius: calc(12 * var(--vw));
        padding: calc(10 * var(--vw));
        margin: calc(40 * var(--vw)) 0 calc(20 * var(--vw));
    }

    .benefit-header-item {
        gap: calc(20 * var(--vw));
        padding: calc(20 * var(--vw)) 0;
    }

    .benefit-header-item:not(:last-child)::after {
        right: calc(-15 * var(--vw));
        width: calc(1 * var(--vw));
    }

    .benefit-header-item-title {
        font-size: calc(12 * var(--vw));
        border-radius: calc(20 * var(--vw));
        padding: calc(8 * var(--vw)) calc(30 * var(--vw));
    }

    .desc-plus,
    .desc-minus {
        font-size: calc(45 * var(--vw));
    }

    .desc-number {
        font-size: calc(65 * var(--vw));
    }

    .benefit-list {
        gap: calc(40 * var(--vw));
        margin: calc(30 * var(--vw)) 0 0;
    }

    .benefit-item-title {
        font-size: calc(18 * var(--vw));
        margin: 0 0 calc(4 * var(--vw));
    }

    .benefit-item img {
        margin: 0 0 calc(20 * var(--vw));
    }

    .point {
        padding: calc(60 * var(--vw)) 0;
    }

    .point-table-wrap {
        margin: calc(40 * var(--vw)) calc(50% - 50vw) 0;
        padding: 0 calc(30 * var(--vw)) calc(10 * var(--vw)) calc(30 * var(--vw));
    }

    .point-table__head--empty {
        width: calc(160 * var(--vw));
    }

    .point-table__head--march {
        width: calc(232 * var(--vw));
        border-radius: calc(8 * var(--vw)) calc(8 * var(--vw)) 0 0;
        padding: calc(8.5 * var(--vw)) 0 calc(8.2 * var(--vw));
    }

    .point-table__head--march img {
        max-width: calc(120 * var(--vw));
    }

    .point-table__head--other {
        width: calc(200 * var(--vw));
        height: calc(36 * var(--vw));
        font-size: calc(12 * var(--vw));
        border-radius: calc(12 * var(--vw)) calc(12 * var(--vw)) 0 0;
        padding: calc(24 * var(--vw)) calc(20 * var(--vw));
    }

    .point-table thead tr,
    .point-table tbody tr,
    .appointment__plan-link-wrap,
    .appointment__cta--wrap {
        gap: calc(20 * var(--vw));
    }

    .point-table tbody tr:last-child .point-table__cell--march {
        border-bottom: calc(4 * var(--vw)) solid #0076E5;
        border-radius: 0 0 calc(8 * var(--vw)) calc(8 * var(--vw));
    }

    .point-table tbody tr:last-child .point-table__cell--other {
        border-bottom: calc(4 * var(--vw)) solid #DFDFEB;
        border-radius: 0 0 calc(8 * var(--vw)) calc(8 * var(--vw));
    }

    .point-table__row-head {
        width: calc(160 * var(--vw));
        gap: calc(18 * var(--vw));
        font-size: calc(12 * var(--vw));
        border-bottom: calc(1 * var(--vw)) solid #D0D5DD;
    }

    .point-table__row-head:first-child {
        border-top: calc(1 * var(--vw)) solid #D0D5DD;
    }

    .point-table__cell--march {
        width: calc(232 * var(--vw));
        gap: calc(3.36 * var(--vw));
        border-left: calc(4 * var(--vw)) solid #0076E5;
        border-right: calc(4 * var(--vw)) solid #0076E5;
        padding: calc(10 * var(--vw)) 0;
    }

    .point-table__cell--march img {
        width: calc(28 * var(--vw));
        height: calc(28 * var(--vw));
    }

    .point-table__cell--other {
        width: calc(200 * var(--vw));
        gap: calc(4 * var(--vw));
        border-left: calc(4 * var(--vw)) solid #DFDFEB;
        border-right: calc(4 * var(--vw)) solid #DFDFEB;
        padding: calc(10 * var(--vw)) calc(20 * var(--vw));
    }

    .point-table__cell--other img {
        width: calc(17 * var(--vw));
    }

    .point-table__cell--other img[src*="icon-triangle.svg"] {
        width: calc(20 * var(--vw));
    }

    .appointment__case-head {
        margin: calc(30 * var(--vw)) 0 calc(40 * var(--vw));
    }

    .appointment__case-archive-link {
        gap: calc(12 * var(--vw));
        font-size: calc(12 * var(--vw));
    }

    .appointment__case-archive-pill {
        width: calc(42 * var(--vw));
        height: calc(20 * var(--vw));
        border-radius: calc(20 * var(--vw));
    }

    .appointment__case-thumb {
        border-radius: calc(8 * var(--vw));
    }

    .appointment__case-body {
        gap: calc(10 * var(--vw));
        padding: calc(20 * var(--vw)) 0 0;
    }

    .appointment__case-tags {
        gap: calc(6 * var(--vw));
    }

    .appointment__case-tag {
        font-size: calc(12 * var(--vw));
        border-radius: calc(34 * var(--vw));
        padding: calc(6 * var(--vw)) calc(16 * var(--vw)) calc(6 * var(--vw)) calc(27.5 * var(--vw));
    }

    .appointment__case-tag::before {
        left: calc(10 * var(--vw));
        width: calc(12 * var(--vw));
        height: calc(12 * var(--vw));
    }

    .appointment__case-btn {
        top: calc(290 * var(--vw) / 2);
        width: calc(40 * var(--vw));
        height: calc(40 * var(--vw));
    }

    .appointment__case-btn--prev {
        left: calc(-20 * var(--vw));
        width: calc(30 * var(--vw));
        height: calc(30 * var(--vw));
    }

    .appointment__case-btn--next {
        right: calc(-20 * var(--vw));
        width: calc(30 * var(--vw));
        height: calc(30 * var(--vw));
    }

    .appointment__case-btn--prev::before {
        border-width: calc(6 * var(--vw)) calc(9 * var(--vw)) calc(6 * var(--vw)) 0;
    }

    .appointment__case-btn--next::before {
        border-width: calc(6 * var(--vw)) 0 calc(6 * var(--vw)) calc(9 * var(--vw));
    }

    .appointment__case-pagination {
        gap: calc(8 * var(--vw));
        margin: calc(20 * var(--vw)) 0 0;
    }

    .appointment__case-pagination .swiper-pagination-bullet {
        width: calc(16 * var(--vw));
        height: calc(3 * var(--vw));
        border-radius: calc(3 * var(--vw));
    }

    .appointment__step-desc {
        font-size: calc(14 * var(--vw));
        margin: calc(30 * var(--vw)) 0;
    }

    .appointment__step-list {
        gap: calc(20 * var(--vw));
        margin: 0 0 calc(30 * var(--vw));
    }

    .appointment__step-item {
        gap: calc(12 * var(--vw));
        border-radius: calc(12 * var(--vw));
        padding: calc(20 * var(--vw));
    }

    .appointment__step-item-num {
        gap: calc(2 * var(--vw));
        width: calc(55 * var(--vw));
        height: calc(22 * var(--vw));
        border-radius: calc(20 * var(--vw));
    }

    .appointment__step-note {
        font-size: calc(18 * var(--vw));
        border-radius: calc(12 * var(--vw));
        padding: calc(32 * var(--vw)) calc(16 * var(--vw));
    }

    .appointment__step-note br {
        display: inline;
    }

    .appointment__plan {
        padding: calc(50 * var(--vw)) calc(20 * var(--vw));
    }

    .appointment__plan-desc {
        font-size: calc(14 * var(--vw));
        margin: calc(32 * var(--vw)) 0 calc(30 * var(--vw));
    }

    .appointment__plan-download-link,
    .appointment__plan-contact-link {
        width: calc(360 * var(--vw));
    }

    .appointment__cta {
        padding: calc(50 * var(--vw)) 0 0;
    }

    .appointment__cta-inner {
        gap: calc(30 * var(--vw));
        border-radius: calc(20 * var(--vw));
        padding: calc(50 * var(--vw)) calc(20 * var(--vw)) calc(52 * var(--vw));
    }

    .appointment__cta-item-wrap {
        width: calc(420 * var(--vw));
    }

    .appointment__cta-item-wrap--book::before {
        width: calc(194 * var(--vw));
        height: calc(125 * var(--vw));
    }

    .appointment__cta-item-wrap--online::before {
        width: calc(158.56 * var(--vw));
        height: calc(96 * var(--vw));
    }

    .appointment__cta-item-wrap--book .appointment__cta-item {
        margin: calc(60 * var(--vw)) 0 0;
        height: calc(250 * var(--vw));
        min-height: calc(250 * var(--vw));
        border-radius: calc(12 * var(--vw));
        padding: calc(70 * var(--vw)) 0 calc(23.94 * var(--vw));
    }

    .appointment__cta-item-wrap--online .appointment__cta-item {
        margin: calc(50 * var(--vw)) 0 0;
        height: calc(250 * var(--vw));
        min-height: calc(250 * var(--vw));
        border-radius: calc(12 * var(--vw));
        padding: calc(70 * var(--vw)) 0 calc(23.94 * var(--vw));
    }

    .appointment__cta-item-title {
        font-size: calc(18 * var(--vw));
        margin: 0 0 calc(10 * var(--vw));
    }

    .appointment__cta-item-desc {
        font-size: calc(13 * var(--vw));
        margin: 0 0 calc(25.9 * var(--vw));
    }

    .appointment__cta-item-wrap--book .appointment__cta-item-link,
    .appointment__cta-item-wrap--online .appointment__cta-item-link {
        width: calc(100% - calc(32 * var(--vw)));
        font-size: calc(14 * var(--vw));
        height: calc(55 * var(--vw));
    }

    .benefit-header-item:nth-child(3) {
        padding: 0;
    }

    .appointment__faq {
        gap: 0;
        padding: 0 0 calc(50 * var(--vw));
    }

    .appointment__faq .section-inner .faq_list {
        max-width: calc(800 * var(--vw));
        margin: calc(40 * var(--vw)) auto calc(24 * var(--vw));
    }

    .appointment__case-swiper--static .appointment__case-list {
        gap: calc(24 * var(--vw));
    }

}

@media (hover: hover) and (pointer: fine) {
    .cta-blue.appointment__fv-cta-download:hover .appointment__fv-cta-label {
        color: #0076E5;
    }

    .cta-blue:hover {
        background-color: #ffffff;
        color: #0076E5;
        border-color: #0076E5;
    }

    .cta-blue:hover::after {
        border-left-color: #ffffff;
    }

    .cta-blue:hover::before {
        background-color: #0076E5;
    }

    .cta-white:hover {
        background-color: #0076E5;
        color: #ffffff;
        border-color: #0076E5;
    }

    .cta-white:hover::after {
        border-left-color: #0076E5;
    }

    .cta-white:hover::before {
        background-color: #ffffff;
    }
}