/* 共通部分 */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    color: #413F41;
}

main {
    background-color: #E6E6E1;
}

a,button {
    color: #413F41;
}

/* ページ内アンカーリンク：固定ヘッダー分の高さを差し引いてスクロール */
#buy_point,
#buy_faq,
#buy_bukken,
#buy_flow,
#buy_contact {
    scroll-margin-top: 104px;
}

@media (max-width: 768px) {
    #buy_point,
    #buy_faq,
    #buy_bukken,
    #buy_flow,
    #buy_contact {
        scroll-margin-top: 60px;
    }
}

.barlow {
    font-family: 'Barlow', sans-serif;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA */
.c-cta {
    width: 672px;
    margin: 26px auto 0;
    padding: 30px 35px 43px;
    background-color: #14B482;
    border-radius: 10px;
    border: 1px solid #707070;
    text-align: center;
}

.c-cta.small {
    margin-top: 113px;
    padding-bottom: 0;
}

.c-cta__title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    line-height: 46px;
    letter-spacing: 0.05em;
}

.c-cta__title .row {
    display: block;
}

.c-cta__title .strong {
    color: #FFEC5F;
    font-size: 35px;
}

.c-cta__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 41px;
    margin-top: 15px;
    margin-bottom: 29px;
    background-color: #fff;
    border-radius: 5px;
    color: #14B482;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
    position: relative;
    border: 1px solid #707070;
}

.c-cta.small .c-cta__btn {
    margin-bottom: 33px;
}

.c-cta__btn-icon {
    width: 29px;
    height: 29px;
    position: absolute;
    top: 50%;
    right: 7px;
    transform: translateY(-50%);
}

.c-cta__btn-icon img {
    object-fit: contain;
}

.c-cta__sub {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding-top: 29px;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.c-cta__sub::before,
.c-cta__sub::after {
    content: '';
    width: 1px;
    height: 13px;
    background-color: #fff;
    position: relative;
    top: 3px;
}

.c-cta__sub::before {
    transform: rotate(-25deg);
    right: -3px;
}

.c-cta__sub::after {
    transform: rotate(25deg);
    left: -6px;
}

.c-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 13px;
}

.c-cta__tel {
    width: 278px;
    height: 69px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid #EBA31A;
    border-radius: 10px;
    color: #EBA31A;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.c-cta__tel-icon {
    width: 20px;
    height: 20px;
    position: relative;
    top: 1px;
}

.c-cta__line {
    width: 278px;
    height: 69px;
    display: flex;
    align-items: center;
    padding-left: 38px;
    gap: 6px;
    background-color: #fff;
    border-radius: 5px;
    color: #18AB2D;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: 2px solid #00B51A;
    border-radius: 10px;
    position: relative;
}

.c-cta__line-icon {
    width: 26px;
    height: 26px;
    position: relative;
    top: 1px;
}

.c-cta__line-icon img {
    object-fit: contain;
}

.c-cta__line-arrow {
    width: 26px;
    height: 26px;
    position: absolute;
    top: 50%;
    right: 11px;
    transform: translateY(-50%);
}

@media (min-width: 769px) {
    .c-cta {
        transition: opacity 0.3s ease;
    }

    .c-cta:hover {
        opacity: 0.7;
    }

    .c-cta__btn.small .c-cta__btn-icon,
    .c-cta__line-arrow{
        transform: translateY(-50%) translateX(0);
        transition: transform 0.3s ease;
    }

    .c-cta.small:hover .c-cta__btn-icon,
    .c-cta__line:hover .c-cta__line-arrow{
        transform: translateY(-50%) translateX(5px);
    }

    .c-cta__tel {
        transition: opacity 0.3s ease;
        opacity: 1;
    }

    .c-cta__tel:hover {
        opacity: 0.7;
    }
}

@media (max-width: 768px) {
    .c-cta {
        width: 325px;
        margin: 25px auto 0;
        padding: 17px 20px 21px;
    }
    
    .c-cta.small {
        margin-top: 60px;
        padding-bottom: 0;
    }
    
    .c-cta__title {
        font-size: 20px;
        line-height: 33px;
        letter-spacing: 0.03em;
    }
    
    .c-cta__title .row {
    }
    
    .c-cta__title .strong {
        font-size: 25px;
    }
    
    .c-cta__btn {
        width: 100%;
        height: 47px;
        margin-top: 10px;
        margin-bottom: 16px;
        font-size: 18px;
        letter-spacing: 0.05em;
    }
    
    .c-cta.small .c-cta__btn {
        margin-bottom: 20px;
    }
    
    .c-cta__btn-icon {
        width: 24px;
        height: 24px;
        right: 11px;
    }
    
    .c-cta__sub {
        gap: 12px;
        padding-top: 15px;
        font-size: 16px;
        letter-spacing: 0.03em;
    }
    
    .c-cta__sub::before,
    .c-cta__sub::after {
        top: 0;
    }
    
    .c-cta__sub::before {
    }
    
    .c-cta__sub::after {
    }
    
    .c-cta__buttons {
        flex-direction: column;
        gap: 3px;
        margin-top: 8px;
    }
    
    .c-cta__tel {
        width: 100%;
        height: 47px;
        border: 2px solid #EBA31A;
        border-radius: 5px;
        font-size: 21px;
    }
    
    .c-cta__tel-icon {
        width: 17px;
        height: 17px;
        top: 1px;
        right: 1px;
    }
    
    .c-cta__line {
        width: 100%;
        height: 47px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-right: 10px;
        gap: 6px;
        font-size: 18px;
        border-radius: 5px;
    }
    
    .c-cta__line-icon {
        width: 24px;
        height: 24px;
        top: 1px;
    }
    
    .c-cta__line-icon img {
    }
    
    .c-cta__line-arrow {
        width: 24px;
        height: 24px;
        right: 11px;
    }
}
/* CTA */


/* タイトル */
.c-point__lead {
    width: 207px;
    height: 40px;
    margin: 0 auto 17px;
    border-radius: 3px;
    border: 1px solid #707070;
    background-color: #00BC82;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ttl {
    width: fit-content;
    margin: 0 auto;
    padding: 12px 30px;
    background-color: #fff;
    border: 1px solid #707070;
    border-radius: 5px;
    color: #00BC82;
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
}

.c-point__lead-text {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 36px;
    text-align: center;
    margin-top: 34px;
}

@media (min-width: 769px) {
    .nonePC {
        display: none!important;
    }
}

@media (max-width: 768px) {
    .noneSP {
        display: none!important;
    }

    .ttl {
        padding: 10px 16px;
        font-size: 30px;
        font-weight: 700;
    }

    .c-point__lead {
        width: 159px;
        height: 31px;
        margin: 0 auto 9px;
        font-size: 16px;
    }
    
    .c-point__lead-text {
        padding: 0 24px;
        font-size: 15px;
        letter-spacing: 0.03em;
        line-height: 27px;
        text-align: justify;
        margin-top: 20px;
    }
}
/* 共通部分 */


/* ヘッダー */
.c-header {
    width: 100%;
    height: 104px;
    background-color: #E6E6E1;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.c-header__inner {
    width: 100%;
    height: 100%;
    padding: 0 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c-header__nav-wrapper {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 34px;
}

.c-header__logo {
    width: 228px;
    height: 48px;
}

.c-header__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.c-header__nav {
}

.c-header__nav-list {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 28px;
}

.c-header__nav-item {
}

.c-header__nav-link {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
}

.c-header__nav-link.is-current {
}

.c-header__buttons {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 8px;
}

.c-header__btn {
    width: 139px;
    height: 54px;
    border-radius: 3px;
    border: 1px solid #707070;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.c-header__btn .txt {
    position: relative;
    top: -1px;
}

.c-header__btn .strong {
    font-size: 18px;
}

.c-header__btn i {
    width: 24px;
    height: 24px;
}

.c-header__btn i img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.c-header__btn--contact {
    background-color: #fff;
}

.c-header__btn--line {
    background-color: #18AB2D;
    color: #fff;
}

.c-header__btn-icon {
}

@media (min-width: 769px) {
    .c-header__nav-link {
        transition: color 0.3s ease;
    }

    .c-header__nav-link:hover {
        color: #00BC82;
    }

    .c-header__btn {
        transition: opacity 0.3s ease;
        opacity: 1;
        cursor: pointer;
    }

    .c-header__btn:hover {
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .c-header {
        height: 60px;
    }
    
    .c-header__inner {
        padding: 0 17px;
    }
    
    .c-header__logo {
        width: 147px;
        height: 31px;
    }

    .hamburger {
        width: 46px;
        height: 16px;
        position: relative;
        position: fixed;
        top: 22px;
        right: 18px;
        z-index: 11;
    }

    .hamburger__line {
        width: 100%;
        height: 1px;
        background-color: #707070;
        position: absolute;
        left: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        opacity: 1;
    }

    .hamburger__line:nth-child(1) {
        top: 0;
    }

    .hamburger__line:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger__line:nth-child(3) {
        bottom: 0;
    }

    .hamburger.is-active .hamburger__line:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(25deg);
    }

    .hamburger.is-active .hamburger__line:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.is-active .hamburger__line:nth-child(3) {
        bottom: 50%;
        transform: translateY(50%) rotate(-25deg);
    }
}


/* ファーストビュー */
.fv {
    width: 100%;
    height: 100vh;
    max-height: calc(1050px + 104px);
    padding-top: 104px;
    background-color: #E6E6E1;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
}

.fv__inner {
    width: 100%;
    height: 100%;
    padding: 0 43px 38px;
    position: relative;
    z-index: 2;
}

.fv__frame {
    max-height: calc(1050px - 104px + 38px);
    position: fixed;
    top: 104px;
    left: 43px;
    right: 43px;
    bottom: 38px;
    border-radius: 15px;
    box-shadow: 0 0 0 9999px #E6E6E1;
    z-index: 5;
    pointer-events: none;
}

.fv__content {
    width: 100%;
    height: 100%;
    background-image: url('/../../common/img/buy/fv_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-left: 100px;
}

.fv__content::before {
    content: '';
    display: block;
    width: 483px;
    height: 483px;
    background-image: url('/../../common/img/buy/fv_logo.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: -70px;
    left: -30px;
    z-index: 0;
}

.fv__title,.fv__txtbox,.fv__btn {
    position: relative;
    z-index: 1;
}

.fv__title {
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.fv__title .row {
    display: block;
    width: fit-content;
    padding: 15px 20px;
    background-color: #fff;
    border: 1px solid #707070;
    border-radius: 5px;
}

.fv__title .row:first-child {
    border-bottom: none;
    border-radius: 5px 5px 0 0;
}

.fv__title .row:last-child {
    border-radius: 0 5px 5px 5px;
}

.fv__title .row .sm {
    font-size: 21px;
    font-weight: 500;
    letter-spacing: 0;
    display: inline-block;
    margin-right: 15px;
    position: relative;
    top: -10px;
}

.fv__title .row .strong {
    color: #00BC82;
}

.fv__txtbox {
    margin-top: 8px;
    display: flex;
    align-items: center;
}

.fv__txt {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 44px;
}

.fv__img {
    width: 313px;
    height: auto;
    margin-left: -18px;
    margin-top: 5px;
}

.fv__img img {
    object-fit: contain;
}

.fv__btn {
    margin-top: -5px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.fv__btn .btn {
    width: 207px;
    height: 59px;
    border-radius: 5px;
    border: 1px solid #707070;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.08em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 13px 0 25px;
    background-color: #fff;
}

.fv__btn .btn .strong {
    font-size: 23px;
    font-weight: 700;
}

.fv__btn .btn i {
    width: 26px;
    height: 26px;
    background-image: url('/../../common/img/buy/ico_arrow_b.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@media (min-width: 769px) {
    .fv__btn .btn {
        cursor: pointer;
    }

    .fv__btn .btn i {
        transform: translateX(0);
        transition: transform 0.3s ease;
    }

    .fv__btn .btn:hover i {
        transform: translateX(5px);
    }
}

@media (max-width: 768px) {
    .fv {
        height: calc(100svh - 192px);
        min-height: 485px;
        position: static;
        padding-top: 60px;
        background-color: transparent;
    }
    
    .fv__inner {
        padding: 0;
    }
    
    .fv__frame {
        display: none;
    }
    
    .fv__content {
        border-radius: 0;
        padding-left: 15px;
        padding-right: 18px;
        justify-content: start;
        padding-top: 5.5vh;
    }
    
    .fv__content::before {
        width: 266px;
        height: 266px;
        top: -40px;
        left: -30px;
    }
    
    .fv__title,.fv__txtbox,.fv__btn {
    }
    
    .fv__title {
        font-size: 28px;
        letter-spacing: 0;
    }
    
    .fv__title .row {
        padding: 15px 8px;
        border-radius: 5px;
    }
    
    .fv__title .row:first-child {
    }
    
    .fv__title .row:last-child {
        letter-spacing: -0.036em;
        padding-right: 0;
        border-radius: 0 5px 5px 5px;
    }
    
    .fv__title .row .sm {
        font-size: 16px;
        margin-right: 7px;
        top: -5px;
    }
    
    .fv__title .row .strong {
    }
    
    .fv__txtbox {
        margin-top: 8px;
        align-items: end;
        position: relative;
    }
    
    .fv__txt {
        font-size: 14px;
        line-height: 30px;
        white-space: nowrap;
    }
    
    .fv__img {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 142px;
        margin-left: auto;
        margin-right: 0;
        margin-top: 0;
    }
    
    .fv__img img {
    }
    
    .fv__btn {
        margin-top: 5vh;
        gap: 11px;
        justify-content: center;
    }
    
    .fv__btn .btn {
        width: 152px;
        height: 47px;
        font-size: 15px;
        padding: 0 9px 0 20px;
    }
    
    .fv__btn .btn .strong {
        font-size: 20px;
    }
    
    .fv__btn .btn i {
        width: 21px;
        height: 21px;
    }
}
/* ファーストビュー */


/* スライダー */
.fv__slider {
    width: 439px;
    height: auto;
    margin: 104px 43px 0 auto;
    position: relative;
    z-index: 4;
    border-left: 1px solid #707070;
}

.fv__slider-title {
    width: 100%;
    padding: 24px 0 18px;
    background-color: #fff;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 30px;
    text-align: center;
    position: relative;
}

.fv__slider-title::before {
    content: '';
    width: 1.5px;
    height: 24px;
    background-color: #707070;
    position: absolute;
    bottom: 15px;
    left: 25px;
    transform: rotate(-25deg);
}
.fv__slider-title::after {
    content: '';
    width: 1.5px;
    height: 24px;
    background-color: #707070;
    position: absolute;
    bottom: 15px;
    right: 25px;
    transform: rotate(25deg);
}

.fv__slider-title .strong {
    font-size: 24px;
    color: #FFA700;
}

.fv__slider-inner {
    --fv-slider-item-height: 232px;
    height: calc(var(--fv-slider-item-height) * 4);
    overflow: hidden;
}

.fv__slider-item {
    height: var(--fv-slider-item-height);
    position: relative;
}

.fv__slider-item-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #14B482;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0;
    padding: 7px 12px;
    font-weight: 500;
}

.fv__slider-track {
    display: flex;
    flex-direction: column;
    animation: fv-slider-marquee 20s linear infinite;
}

@keyframes fv-slider-marquee {
    from {
        transform: translateY(0%);
    }
    to {
        transform: translateY(-50%);
    }
}

/* fv__sliderより後に続くセクションは、常に.fv__frameより手前に表示する */
.fv__slider ~ * {
    position: relative;
    z-index: 6;
}

@media (max-width: 768px) {
    .fv__slider {
        width: 100%;
        margin: 0 auto;
        position: relative;
        border-left: none;
        background-color: #E6E6E1;
    }
    
    .fv__slider-title {
        width: 100%;
        padding: 16px 0 13px;
        font-size: 14px;
        letter-spacing: 0.05em;
        line-height: 18px;
        border-top: 1px solid #707070;
    }
    
    .fv__slider-title::before {
        height: 20px;
        bottom: 12px;
        left: 32px;
    }
    .fv__slider-title::after {
        height: 20px;
        bottom: 12px;
        right: 32px;
    }
    
    .fv__slider-title .strong {
        font-size: 17px;
    }
    
    .fv__slider-item-sp {
        width: 205px;
        height: 125px;
        position: relative;
    }

    .fv__slider-item-tag-sp {
        position: absolute;
        right: 5px;
        bottom: 6px;
        background-color: #14B482;
        color: #fff;
        font-size: 15px;
        letter-spacing: 0;
        padding: 5px 7px;
        font-weight: 500;
    }
}

/* スライダー */


/* 3つのポイント */
.c-point {
    width: 100%;
    padding: 100px 0;
    background-color: #F0F0ED;
}

.c-point__list {
    display: flex;
    flex-direction: column;
    gap: 65px;
    padding-top: 90px;
}

.c-point__item {
    display: flex;
    align-items: stretch;
    justify-content: end;
    gap: 110px;

}

.c-point__item--reverse {
    flex-direction: row-reverse;
    justify-content: start;
    gap: 88px;
}

.c-point__text {
    width: 453px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.c-point__item--reverse .c-point__text {
}

.c-point__label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00BC82;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.c-point__label-num {
    font-size: 34px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.c-point__heading {
    margin-top: 7px;
    font-size: 32px;
    font-weight: 500;
    line-height: 49px;
    letter-spacing: 0.08em;
}

.c-point__heading .sm {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.c-point__desc {
    margin-top: 20px;
    font-size: 15px;
    font-weight: 500;
    line-height: 30px;
}

.c-point__illust {
    width: 260px;
    margin-top: 30px;
}

.c-point__item:nth-child(1) .c-point__illust {
    width: 356px;
}

.c-point__item:nth-child(2) .c-point__illust {
    width: 308px;
    margin-top: -20px;
}

.c-point__item:nth-child(3) .c-point__illust {
    width: 268px;
    margin-top: 20px;
}

.c-point__img {
    width: 46%;
    height: 563px;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
}

.c-point__item:nth-child(even) .c-point__img {
    border-radius: 0 20px 20px 0;
}


@media (max-width: 768px) {
    .c-point {
        width: 100%;
        padding: 60px 0 67px;
    }
    
    .c-point__list {
        gap: 50px;
        padding-top: 40px;
    }
    
    .c-point__item {
        flex-direction: column;
        align-items: start;
        justify-content: center;
        gap: 0;
    
    }
    
    .c-point__item--reverse {
        flex-direction: column;
        justify-content: center;
        gap: 0;
    }
    
    .c-point__text {
        width: 100%;
        padding: 0 24px;
        position: relative;
        padding-bottom: 0;
    }

    .c-point__item:nth-child(3) .c-point__text {
        padding-bottom: 0;
    }
    
    .c-point__item--reverse .c-point__text {
    }
    
    .c-point__label {
        gap: 6px;
        font-size: 15px;
    }
    
    .c-point__label-num {
        font-size: 28px;
    }
    
    .c-point__heading {
        margin-top: 7px;
        font-size: 26px;
        line-height: 35px;
    }
    
    .c-point__heading .sm {
        font-size: 18px;
    }
    
    .c-point__desc {
        margin-top: 12px;
        font-size: 14px;
        line-height: 24px;
        text-align: justify;
    }
    
    .c-point__illust {
        position: static;
        width: 260px;
        margin: 0 0 0 auto;
    }
    
    .c-point__item:nth-child(1) .c-point__illust {
        width: 229px;
        padding-bottom: 22px;
        margin-top: -5px;
    }
    
    .c-point__item:nth-child(2) .c-point__illust {
        width: 209px;
        margin-top: 0;
        padding-bottom: 7px;
        margin-top: -5px;
    }
    
    .c-point__item:nth-child(3) .c-point__illust {
        width: 161px;
        margin-top: 0;
        padding-bottom: 8px;
        margin-top: -10px;
    }
    
    .c-point__img {
        width: 93%;
        height: auto;
        border-radius: 15px 0 0 15px;
        margin-right: 0;
        margin-left: auto;
    }
    
    .c-point__item:nth-child(even) .c-point__img {
        border-radius: 0 15px 15px 0;
    }

    .c-point__item .c-point__img img{
        aspect-ratio: 35/21;
    }
}
/* 3つのポイント */

/* 購入までのフロー */
.c-flow {
    width: 100%;
    padding: 100px 0;
    background-color: #E6E6E1;
}

.c-flow__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 73px 0 0;
}

.c-flow__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.c-flow__row + .c-flow__row {
    margin-top: 61px;
}

.c-flow__arrow {
    width: 11px;
    height: 26px;
    background-image: url('/../../common/img/buy/ico_sankaku_g.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.c-flow__item {
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: stretch;
}

.c-flow__item.c-flow__item--desc {
    align-items: center;
}

.c-flow__card {
    width: 176px;
    height: 193px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.c-flow__item._03 .c-flow__card {
    width: 196px;
}

.c-flow__num {
    position: absolute;
    top: -21.5px;
    left: 50%;
    transform: translateX(-50%);
    width: 43px;
    height: 43px;
    background-color: #00BC82;
    border-radius: 50%;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    justify-content: center;
}


.c-flow__item.c-flow__item--desc .c-flow__num {
    left: 240px;
}

.c-flow__icon {
    width: 56px;
    height: 53px;
}

.c-flow__icon img {
    object-fit: contain;
}

.c-flow__label {
    margin-top: 16px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 28px;
    text-align: center;
}

.c-flow__desc {
    width: 287px;
    flex-shrink: 0;
    padding: 30px 34px 30px 18px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 27px;
    position: relative;
}

.c-flow__item._03 .c-flow__desc {
    padding-right: 22px;
}

.c-flow__desc::before {
    content: '';
    width: 1px;
    height: 132px;
    border-left: 1px dashed #707070;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .c-flow {
        padding: 60px 0;
        overflow: hidden;
    }

    .c-flow__inner {
        padding: 0 20px;
        width: 100%;
    }

    .c-flow__row {
        flex-wrap: wrap;
        gap: 16px 12px;
    }

    .c-flow__row + .c-flow__row {
        margin-top: 40px;
    }

    .c-flow__arrow {
        display: none;
    }

    .c-flow__item,
    .c-flow__item--desc {
        width: 100%;
        flex-direction: column;
    }

    .c-flow__card {
        width: 100%;
        height: 144px;
        padding: 27px 0 15px;
        background-color: #fff;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
    }

    .c-flow__desc {
        width: 100%;
        padding: 0 20px 24px;
    }

    .c-flow__slider {
        margin-top: 63px;
    }

    .c-flow__slider .slick-list {
        overflow: visible;
    }

    .c-flow__slider-item {
        width: 124px;
        margin: 0 16px;
        position: relative;
    }

    .c-flow__label {
        font-size: 14px;
        letter-spacing: 0;
        line-height: 23px;
        height: 44px;
        margin-top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .c-flow__slider-item.c-flow__slider-item--desc {
        width: auto;
        display: flex;
        align-items: center;
    }

    .c-flow__slider-item--desc .c-flow__card {
        width: 117px;
        flex-shrink: 0;
        border-radius: 10px 0 0 10px;
    }

    .c-flow__slider-item._03 .c-flow__card {
        width: 141px;
    }

    .c-flow__num {
        width: 36px;
        height: 36px;
        top: -18px;
        font-size: 15px;
    }

    .c-flow__slider-item--desc .c-flow__card .c-flow__num{
        left: 190px;
        z-index: 1;
    }

    .c-flow__slider-item--desc .c-flow__desc {
        width: 233px;
        height: 144px;
        flex-shrink: 0;
        padding: 0 12px;
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 1.8;
        position: relative;
        background-color: #fff;
        border-radius: 0 10px 10px 0;
        display: block;
    }


    .c-flow__slider-item._02 .c-flow__desc {
        padding-top: 25px;
    }

    .c-flow__slider-item._03 .c-flow__desc {
        width: 206px;
        display: flex;
        align-items: center;
    }

    .c-flow__slider-item--desc .c-flow__desc .sm {
        letter-spacing: -0.047em;
        display: inline;
        white-space: nowrap;
    }

    .c-flow__slider-item--desc .c-flow__desc::before {
        content: '';
        width: 1px;
        height: 100px;
        border-left: 1px dashed #707070;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

    .c-flow__slider-item::after {
        content: '';
        width: 0;
        height: 0;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        border-left: 8px solid #B3B3B3;
        position: absolute;
        top: 50%;
        right: -22px;
        transform: translateY(-50%);
        z-index: 1;
    }
    .c-flow__slider-item._08::after {
        display: none;
    }

    .c-flow__slider-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 17px;
        margin-top: 21px;
    }

    .c-flow__slider-btn {
        width: 37px;
        height: 37px;
        order: 1;
        border: none;
        background-color: transparent;
        background-image: url('/../../common/img/buy/ico_arrow_g.svg');
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    .c-flow__slider-btn--next {
        order: 3;
    }

    .c-flow__slider-btn i {
        display: none;
    }

    .c-flow__slider-btn--prev {
        transform: rotate(180deg);
    }

    .c-flow__slider-dots {
        display: flex;
        align-items: center;
        gap: 15px;
        order: 2;
    }

    .c-flow__slider-dots button {
        padding: 0;
        background: none;
        border: none;
        font-family: 'Barlow', sans-serif;
        font-size: 18px;
        font-weight: 500;
        color: #B3B3B3;
        cursor: pointer;
    }

    .c-flow__slider-dots li.slick-active button {
        color: #00BC82;
        font-weight: 700;
    }
}
/* 購入までのフロー */

/* メガメニュー */
.megamenu {
    width: 100%;
    height: calc(100% - 60px);
    position: fixed;
    top: 60px;
    left: 0;
    z-index: 9;
    background-color: #F0F0ED;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.megamenu.is-active {
    transform: translateX(0);
}

.megamenu::after {
    content: '';
    display: block;
    width: 266px;
    height: 266px;
    background-image: url('/../../common/img/buy/fv_logo.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: -45px;
    left: -31px;
    z-index: -1;
}

.megamenu__inner {
    height: 100%;
    padding: 0 0 18px;
}

.megamenu__nav-wrapper {
    height: calc(100% - 12px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
}

.megamenu__nav {
    width: 100%;
}

.megamenu__nav-list {
    width: 100%;
    padding: 0 44px;
}

.megamenu__nav-link {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 30px 4px 10px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #413F41;
    border-bottom: 1px solid #413F41;
}

.megamenu__nav-item:first-child .megamenu__nav-link {
    padding-top: 0;
}

.megamenu__nav-link i {
    width: 21px;
    height: 21px;
    background-image: url('/../../common/img/buy/ico_arrow_g.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    top: 3px;
}

.megamenu__nav-link i img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.megamenu__buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.megamenu__btn {
    width: 139px;
    height: 61px;
    border-radius: 3px;
    border: 1px solid #707070;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.megamenu__btn .txt {
    position: relative;
    top: -1px;
}

.megamenu__btn .strong {
    font-size: 18px;
}

.megamenu__btn i {
    width: 24px;
    height: 24px;
}

.megamenu__btn i img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.megamenu__btn--contact {
    background-color: #fff;
}

.megamenu__btn--line {
    background-color: #18AB2D;
    color: #fff;
}

.megamenu__btn-icon {
}

.megamenu__copyright {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
}

/* メガメニュー */

/* フッター */
.c-footer {
    padding: 79px 0 0;
    background-color: #004C38;
    color: #fff;
    position: relative;
    z-index: 6;
}

.c-footer__inner {
    width: 1150px;
    margin: 0 auto;
}

.c-footer__main {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.c-footer__info {
}

.c-footer__logo {
    width: 325px;
    height: 66px;
    margin-bottom: 20px;
}

.c-footer__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.c-footer__address{
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.c-footer__hours {
}

.c-footer__hours-item {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.c-footer__hours-item + .c-footer__hours-item {
    margin-top: 10px;
}

.c-footer__tel {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 22px;
    margin-bottom: 25px;
    color: #fff;
    font-size: 45px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.c-footer__tel-icon {
    width: 34px;
    height: 34px;
}

.c-footer__tel-number {
}

.c-footer__sns {
    display: flex;
    align-items: center;
    gap: 11px;
}

.c-footer__sns-item {
    width: 39px;
    height: 39px;
}

.c-footer__sns-link {
}

.c-footer__sns-icon {
}

.c-footer__nav {
}

.c-footer__nav-list {
}

.c-footer__nav-item {
}

.c-footer__nav-item + .c-footer__nav-item {
    margin-top: 25px;
}

.c-footer__nav-link {
    width: 180px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.c-footer__nav-text {
    display: block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
}

.c-footer__nav-icon {
    display: block;
    width: 23px;
    height: 23px;
    position: relative;
    top: 1px;
}

.c-footer__nav-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.c-footer__copyright {
    margin-top: 61px;
    padding: 25px 0;
    border-top: 1px solid #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

@media (min-width: 769px) {
    .c-footer__sns-link {
        opacity: 1;
        cursor: pointer;
        transition: opacity 0.3s ease;
    }

    .c-footer__sns-link:hover {
        opacity: 0.5;
    }

    .c-footer__nav-link i {
        transform: translateX(0);
        transition: transform 0.3s ease;
    }

    .c-footer__nav-link:hover i {
        transform: translateX(5px);
    }

}

@media (max-width: 768px) {
    .c-footer {
        padding: 48px 0 0;
    }
    
    .c-footer__inner {
        width: 265px;
    }
    
    .c-footer__main {
    }
    
    .c-footer__info {
    }
    
    .c-footer__logo {
        width: 100%;
        height: auto;
    }
    
    .c-footer__logo img {
    }
    
    .c-footer__address{
        font-size: 15px;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 24px;
        margin-bottom: 10px;
    }
    
    .c-footer__hours {
    }
    
    .c-footer__hours-item {
        font-size: 15px;
        letter-spacing: 0;
        line-height: 24px;
    }
    
    .c-footer__hours-item + .c-footer__hours-item {
        margin-top: 0;
    }
    
    .c-footer__tel {
        gap: 5px;
        margin-top: 18px;
        margin-bottom: 20px;
        font-size: 35px;
        font-weight: 500;
        letter-spacing: 0.02em;
    }
    
    .c-footer__tel-icon {
        width: 27px;
        height: 27px;
        position: relative;
        top: 1px;
    }

    .c-footer__tel-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .c-footer__tel-number {
    }
    
    .c-footer__sns {
        justify-content: center;
    }
    
    .c-footer__sns-item {
    }
    
    .c-footer__sns-link {
    }
    
    .c-footer__sns-icon {
    }
    
    .c-footer__copyright {
        margin-top: 50px;
        padding: 15px 0;
    }
}
/* フッター */

/* インビュー */

@media (min-width: 769px) {
    .action01,
    .action_fv {
        opacity: 0;
        transform: translateY(40px);
        position: relative;
        transition: opacity 1s cubic-bezier(.215,.61,.355,1),transform 1s cubic-bezier(.215,.61,.355,1);
    }

    .action01.action,
    .action_fv.action {
        opacity: 1;
        transform: translateY(0);
    }

    .action02 {
        opacity: 0;
        transform: translateX(-40px);
        position: relative;
        transition: opacity 1s cubic-bezier(.215,.61,.355,1),transform 1s cubic-bezier(.215,.61,.355,1);
    }

    .action02.action {
        opacity: 1;
        transform: translateY(0);
    }

    .action03 {
        opacity: 0;
        transform: translateX(40px);
        position: relative;
        transition: opacity 1s cubic-bezier(.215,.61,.355,1),transform 1s cubic-bezier(.215,.61,.355,1);
    }

    .action03.action {
        opacity: 1;
        transform: translateX(0);
    }

    .action04 {
        opacity: 0;
        transition: opacity 1s cubic-bezier(.215,.61,.355,1);
    }

    .action04.action {
        opacity: 1;
    }

    .action05 {
        opacity: 0;
        filter: blur(10px);
        transition: opacity 1s cubic-bezier(.215,.61,.355,1),filter 1s cubic-bezier(.215,.61,.355,1);
    }

    .action05.action {
        opacity: 1;
        filter: blur(0);
    }
}

@media screen and (max-width: 1259px) and (min-width: 769px) {
    .noneDelay {
        transition-delay: 0s;
    }
}

@media (max-width: 768px) {
    .action01_sp,
    .action_fv {
        opacity: 0;
        transform: translateY(50px);
        position: relative;
        transition: opacity 1s cubic-bezier(.215,.61,.355,1),transform 1s cubic-bezier(.215,.61,.355,1);
    }

    .action01_sp.action,
    .action_fv.action {
        opacity: 1;
        transform: translateY(0);
    }

    .action02_sp {
        opacity: 0;
        transform: translateX(-50px);
        position: relative;
        transition: opacity 1s cubic-bezier(.215,.61,.355,1),transform 1s cubic-bezier(.215,.61,.355,1);
    }

    .action02_sp.action {
        opacity: 1;
        transform: translateY(0);
    }

    .action03_sp {
        opacity: 0;
        transform: translateX(50px);
        position: relative;
        transition: opacity 1s cubic-bezier(.215,.61,.355,1),transform 1s cubic-bezier(.215,.61,.355,1);
    }

    .action03_sp.action {
        opacity: 1;
        transform: translateX(0);
    }

    .action04_sp {
        opacity: 0;
        transition: opacity 1s cubic-bezier(.215,.61,.355,1);
    }

    .action04_sp.action {
        opacity: 1;
    }

    .action05_sp {
        opacity: 0;
        filter: blur(10px);
        transition: opacity 1s cubic-bezier(.215,.61,.355,1),filter 1s cubic-bezier(.215,.61,.355,1);
    }

    .action05_sp.action {
        opacity: 1;
        filter: blur(0);
    }

    .delay1_sp {
        transition-delay: 0.3s;
    }

    .delay2_sp {
        transition-delay: 0.6s;
    }

    .delay3_sp {
        transition-delay: 0.9s;
    }

    .delay4_sp {
        transition-delay: 1.2s;
    }

    .fast1_sp {
        transition-duration: 1.5s;
    }
}

/* action_fv等のtransitionショートハンドがtransition-delayを暗黙的にリセットするため、両メディアクエリより後ろに置く */
.delay1 {
    transition-delay: 0.3s;
}

.delay2 {
    transition-delay: 0.6s;
}

.delay3 {
    transition-delay: 0.9s;
}

.delay4 {
    transition-delay: 1.2s;
}

.delay5 {
    transition-delay: 1.5s;
}
/* インビュー */


/* フローティング */
.float {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 9px;
    z-index: 7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    opacity: 0;
    transform: translateY(150px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.float.act {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.float__btn {
    width: calc(50% - 12px);
    height: 61px;
    border-radius: 3px;
    border: 1px solid #707070;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.float__btn--contact {
    background-color: #fff;
}

.float__btn--line {
    background-color: #18AB2D;
    color: #fff;
}

.float__btn--line i {
    width: 24px;
    height: 24px;
    position: relative;
    top: 2px;
}

.float__btn--line i img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.float__btn-text .strong {
    font-size: 19px;
}
/* フローティング */

@media (min-width: 769px) {
    .c-footer__tel,.c-contact__tel-link,.c-cta__tel {
        pointer-events: none;
    }

    .green {
        transition: color 0.3s ease;
    }

    .green:hover {
        color: #00BC82!important;
    }
}