@charset "UTF-8";

body {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 1;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}



img {
    width: 100%;
}

ul li {
    list-style: none;
}

table {
    border-spacing: 0;
}

body * {
    color: #452114;
    line-height: 1;
    margin: 0;
    padding: 0;
}

a {
    color: #000;
    text-decoration: none;
    vertical-align: baseline;
    display: block;
}

a:hover,
button:hover {
    opacity: 0.8;
}

.sp_item {
    display: none;
}

@media screen and (max-width: 750px) {
    .sp_item {
        display: block;
    }
}

.pc_item {
    display: block;
}

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

.lp_wrap {
    margin: 0 auto;
    width: 100%;
    max-width: 2000px;
    overflow-x: hidden;
    position: relative;
}

@media screen and (max-width: 750px) {
    .lp_wrap {
        width: 100vw;
    }
}

/*固定背景*/
.background-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/bg.png") no-repeat center center;
    background-size: cover;
    z-index: -1;
}

@media screen and (max-width: 750px) {
    .background-fixed {
        display: none;
    }
}

.contents_wrap {
    width: 100%;
    max-width: 2000px;
    margin: 0 auto;
}

@media screen and (max-width: 1300px) {
    .contents_wrap {
        width: 100vw;
    }
}

@media screen and (max-width: 750px) {
    .contents_wrap {
        width: 100vw;
    }
}

/*吸着左*/
.l_menu {
    position: fixed;
    left: calc(50% - 700px);
    top: 50%;
    transform: translate(0%, -50%);
    width: 358px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}

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

.l_menu .tit {
    width: 325px;
}

@media screen and (max-width: 1600px) {
    .l_menu .tit {
        width: 230px;
    }
}

.l_menu ul {
    width: 194px;
    margin-top: 15px;
    text-align: center;
}

.l_menu li {
    margin-top: 38px;
}

/*吸着右*/
.r_menu {
    position: fixed;
    right: calc(50% - 700px);
    top: 51%;
    transform: translate(0%, -50%);
    width: 358px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 2000px) {}

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

.r_menu .qr {
    width: 246px;
    position: relative;
}

.r_menu .qr img {
    position: relative;
    z-index: 2;
    width: 65%;
    display: block;
    margin: 0 auto;
}

/* .r_menu .qr::before {
    content: "";
    display: block;
    background: url(../img/maru.png) no-repeat center 0/100%;
    width: 146px;
    height: 146px;
    position: absolute;
    top: -118px;
    right: -70px;
    z-index: 1;
} */

.r_menu .qr_code {
    position: absolute;
    top: 2%;
    left: 50%;
    width: 93%;
    height: auto;
    transform: translateX(-50%);
    z-index: 10;
}

/* ========================================
  注釈
======================================== */

.inner p.notes {
    color: #fff;
}

@media screen and (max-width: 750px) {
    .inner p.notes {
        font-size: 10px;
    }
}

.inner p.notes_p {
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.4px;
}

@media screen and (max-width: 750px) {
    .inner p.notes_p {
        font-size: 8px;
    }
}

.inner .relative p.notes {
    position: absolute;
    top: 17.9%;
    left: 12.5%;
}

@media screen and (max-width: 750px) {
    .inner .relative p.notes {
        left: 12%;
    }
}


.inner .relative p.notes_p {
    position: absolute;
    bottom: 2%;
    right: 2%;
}

.inner .sv,
.inner #reason {
    position: relative;
}

.inner .sv p.notes {
    position: absolute;
    bottom: 42%;
    left: 20%;
}

.inner .sv p.notes_p {
    position: absolute;
    bottom: 1%;
    right: 2%;
}

.inner #reason p.notes {
    position: absolute;
    top: 37.7%;
    left: 4%;
}

.inner #reason p.notes_p {
    position: absolute;
    top: 45%;
    left: 5.5%;
}

@media screen and (max-width: 750px) {
    .inner #reason p.notes_p {
        top: 45%;
        left: 6%;
    }
}

/* ========================================
  スマホのみヘッダー表示 
======================================== */

@media (max-width: 767.98px) {
    .sp-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(69, 33, 20, 0.5);
        /* backdrop-filter: blur(8px); */
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);

        /* ふわっと出る */
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: transform .45s cubic-bezier(.2, .7, .2, 1), opacity .45s;

        /* ノッチ対応 */
        height: calc(70px + env(safe-area-inset-top));
    }

    .sp-header.is-visible {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .sp-header__inner {
        display: flex;
        align-items: center;
        gap: .75rem;
        height: 70px;
        padding: 0 12px;
    }

    .sp-header__logo {
        width: 33%;
    }

    .header__logo {
        filter: brightness(0) saturate(100%) invert(1);
    }

    .header__logo img {
        display: block;
        margin: 0 auto;
        width: 96%;
    }

    /* 縦線（白） */
    .sp-header__divider {
        width: 1px;
        height: 70px;
        background: #fff;
        opacity: .6;
        margin: 0 8px;
    }

    /* 右：テキスト + ▶︎ */
    .sp-header__cta {
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: .5rem;
        font-size: 17px;
        letter-spacing: 1px;
        line-height: 1;
        text-decoration: none;
        color: #fff;
        padding: 8px 10px;
    }

    .sp-header__cta-text {
        color: #fff;
    }

    .sp-header__cta-arrow {
        color: #fff;
        font-size: 12px;
        transform: translateY(1px);
    }
}

/* PCでは非表示（必要なら別デザインに） */
@media (min-width: 768px) {
    .sp-header {
        display: none;
    }
}



/* ========================================
  カルーセル
======================================== */

.background-area {
    position: absolute;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 10;
}


/* ========================================
  btn_area
======================================== */
.btn_area {
    position: absolute;
    left: 0;
    right: 0;
}

.btn_area.btn01 {
    top: 5.5%;
}

@media screen and (max-width: 750px) {
    .btn_area.btn01 {
        bottom: 10vw;
    }
}

.btn_area.btn02 {
    position: unset;
}

@media screen and (max-width: 750px) {
    .btn_area.btn02 {
        bottom: 24.33vw;
    }
}

.btn_area.btn03 {
    bottom: 10%;
}

@media screen and (max-width: 750px) {
    .btn_area.btn03 {
        bottom: 9.33vw;
    }
}

.btn_area.btn04 {
    bottom: 110px;
}

@media screen and (max-width: 750px) {
    .btn_area.btn04 {
        bottom: 14.67vw;
    }
}

.btn_area a {
    display: block;
    position: relative;
}


.btn_area a .offer_btn {
    width: 85%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
}

.btn_area a .offer_btn::after {
    background-color: #fff;
    content: "";
    display: block;
    position: absolute;
    top: -100px;
    left: 0;
    width: 30px;
    height: 100%;
    opacity: 0;
    transition: cubic-bezier(0.32, 0, 0.67, 0);
}

@media screen and (min-width: 751px) {
    .btn_area a:hover {
        opacity: 1;
    }

    .btn_area a:hover .offer_btn::after {
        animation: kiran 1s linear;
    }

    @keyframes kiran {
        0% {
            transform: scale(2) rotate(45deg);
            opacity: 0;
        }

        20% {
            transform: scale(20) rotate(45deg);
            opacity: 0.4;
        }

        40% {
            transform: scale(30) rotate(45deg);
            opacity: 0.2;
        }

        80% {
            transform: scale(45) rotate(45deg);
            opacity: 0.1;
        }

        100% {
            transform: scale(50) rotate(45deg);
            opacity: 0;
        }
    }
}

@media screen and (max-width: 750px) {
    .btn_area a .offer_btn {
        width: 80vw;
        border-radius: 2vw;
    }
}

.btn_area a .offer_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 20%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s ease-in-out infinite;
}

/*./btn_area*/
@keyframes shine {
    0% {
        left: -75%;
    }

    40% {
        left: 125%;
    }

    100% {
        left: 125%;
    }
}

.sv {
    background: #786044;
}

.inner {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 10px 10px 20px rgba(56, 27, 6, 0.3);
    margin: 64px auto 40px;
}


@media screen and (max-width: 750px) {
    .inner {
        width: 100vw;
        max-width: unset;
        border-radius: 0;
        margin: 0;
    }
}

.inner .relative {
    position: relative;
}

.inner .achieve_slider {
    width: 692px;
    margin: 0 auto;
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
}

@media screen and (max-width: 750px) {
    .inner .achieve_slider {
        width: 92.27vw;
        top: 53.2vw;
    }
}

.inner .achieve_slider .slide_arrow {
    width: 66px;
    position: absolute;
    top: 356px;
    z-index: 99;
    cursor: pointer;
}

@media screen and (max-width: 750px) {
    .inner .achieve_slider .slide_arrow {
        width: 8.8vw;
        top: 47.47vw;
    }
}

.inner .achieve_slider .slide_arrow.arrow_p {
    left: -29px;
}

@media screen and (max-width: 750px) {
    .inner .achieve_slider .slide_arrow.arrow_p {
        left: -3.87vw;
    }
}

.inner .achieve_slider .slide_arrow.arrow_n {
    right: -29px;
}

@media screen and (max-width: 750px) {
    .inner .achieve_slider .slide_arrow.arrow_n {
        right: -3.87vw;
    }
}

.inner .achieve_slider .slick-dots {
    bottom: -50px;
}

@media screen and (max-width: 750px) {
    .inner .achieve_slider .slick-dots {
        bottom: -6.67vw;
    }
}

.inner .achieve_slider .slick-slide {
    margin: 0 13px;
}

@media screen and (max-width: 750px) {
    .inner .achieve_slider .slick-slide {
        margin: 0 1.73vw;
    }
}

.inner .footer .footer_menu {
    position: absolute;
    bottom: 26%;
}

@media screen and (max-width: 750px) {
    .inner .footer .footer_menu {
        bottom: 27%;
    }
}

.inner .footer .foot_nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 11px;
}

@media screen and (max-width: 750px) {
    .inner .footer .foot_nav {
        row-gap: 6px;
    }
}

.inner .footer .foot_nav li {
    display: flex;
}

.inner .footer .foot_nav li::before {
    content: "|";
    color: #fff;
    font-size: 13px;
    line-height: 1.76;
    padding-left: 16px;
}

@media screen and (max-width: 750px) {
    .inner .footer .foot_nav li::before {
        font-size: 3vw;
        padding-left: 2.67vw;
    }
}

.inner .footer .foot_nav li a {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 13px;
    line-height: 1.76;
    letter-spacing: 0.2em;
    padding-left: 16px;
}

@media screen and (max-width: 750px) {
    .inner .footer .foot_nav li a {
        font-size: 3vw;
        padding-left: 2.67vw;
    }
}

.inner .footer .foot_nav li:nth-child(1)::before,
.inner .footer .foot_nav li:nth-child(4)::before {
    content: none;
}

.inner .footer .foot_nav li:nth-child(1) a,
.inner .footer .foot_nav li:nth-child(4) a {
    padding-left: 0;
}

@media screen and (max-width: 750px) {
    #reason p {
        margin-top: -1px;
    }
}

#flow {
    background: #6d4f2b;
}

/*# sourceMappingURL=style.css.map */

/* 20250924 追記 */
/* Loading */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10001;
    width: 100%;
    height: 100vh;
    height: 100svh;
    background: #CBB9A3;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    animation: loadingFade 1.5s forwards;
    animation-delay: 2s;
    /* 画像が終わった後に消える */
}

.loading img {
    width: 500px;
    opacity: 0;
    transform: scale(0.92);
    animation: fadeInZoomOut 2s forwards;
}

@keyframes fadeInZoomOut {
    0% {
        opacity: 0;
        transform: scale(0.97);
    }

    30% {
        opacity: 1;
        transform: scale(1);
    }

    /* 拡大しながら出現 */
    70% {
        opacity: 1;
        transform: scale(1);
    }

    /* 表示維持 */
    100% {
        opacity: 0;
        transform: scale(0.97);
    }

    /* 縮小しながら消える */
}

@keyframes loadingFade {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}


/* セクションタイトル */
.section_title {
    text-align: center;
}

.section_title .en {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #402a1b;
    letter-spacing: 1px;
}

.section_title .ja {
    display: block;
    font-size: 30px;
    font-weight: 500;
    color: #402a1b;
    margin-top: 20px;
    letter-spacing: 5px;
}

/* FV
***************************************************************/


.fv {
    position: relative;
    overflow: hidden;
}

.fv_reef01 {
    width: 246px;
    position: absolute;
    left: -100px;
    top: 123px;
    transform-origin: center center;
    opacity: 0;
    /* 最初は非表示 */
}

.fv_reef02 {
    width: 251px;
    position: absolute;
    right: -100px;
    bottom: 50px;
    transform-origin: center center;
    opacity: 0;
    /* 最初は非表示 */
}

/* 出現アニメーション */
.show-reef01 {
    animation:
        reefFromLeft 1s ease forwards,
        swayLeft 8s ease-in-out infinite 1s;
}

.show-reef02 {
    animation:
        reefFromRight 1s ease forwards 0.5s,
        swayRight 8.3s ease-in-out infinite 2s;
}

/* 左からフェードイン */
@keyframes reefFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-10px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* 右からフェードイン */
@keyframes reefFromRight {
    0% {
        opacity: 0;
        transform: translateX(10px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* 左側の葉っぱ */
@keyframes swayLeft {
    0% {
        transform: rotate(0deg) translateY(0px);
    }

    20% {
        transform: rotate(2deg) translateY(-3px);
    }

    50% {
        transform: rotate(-2deg) translateY(2px);
    }

    80% {
        transform: rotate(1deg) translateY(-2px);
    }

    100% {
        transform: rotate(0deg) translateY(0px);
    }
}

/* 右側の葉っぱ */
@keyframes swayRight {
    0% {
        transform: rotate(0deg) translateY(0px);
    }

    25% {
        transform: rotate(-2deg) translateY(3px);
    }

    50% {
        transform: rotate(2deg) translateY(-4px);
    }

    75% {
        transform: rotate(-2deg) translateY(3px);
    }

    100% {
        transform: rotate(0deg) translateY(0px);
    }
}


.bag {
    width: 227px;
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translate(-50%, 0);
}

.fukidashi {
    width: 428px;
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, 0);
}

.fukidashi img:nth-of-type(1) {
    padding-right: 83px;
}

.fukidashi img:nth-of-type(2) {
    margin-top: 22px;
    padding-left: 83px;
}

.fukidashi img:nth-of-type(3) {
    margin-top: 22px;
    padding-right: 83px;
}

.img {
    width: 428px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.blur {
    border-radius: 100px 100px 0 0;
    overflow: hidden;
}

.blur::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
}

.blur.scrollin::before {
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0);
}

/* Voice
***************************************************************/
.slider {
    width: 100%;
}


.slider .slick-slide {
    transition: all .5s;
    opacity: 0.5;
}

.slider img {
    width: 394px;
    height: auto;
}

.slider .slick-slide.slick-center {
    opacity: 1;
}

.slick-dots {
    text-align: center;
    margin: 30px 0 0 0;
}

.slick-dots li {
    margin: 0 10px;
    display: inline-block;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width: 12px;
    height: 12px;
    display: block;
    border-radius: 50%;
    background: #fff;
    opacity: .5;
    border: unset;
}

.slick-dots .slick-active button {
    opacity: 1;
}

/* Flow
***************************************************************/
#flow {
    padding: 60px 20px;
    background-image: url(../img/flow_bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.flow_list {
    margin-top: 30px;
    position: relative;
}

.flow_item:nth-last-of-type(1) {
    position: relative
}

.flow_item:nth-last-of-type(1)::before {
    content: "";
    display: inline-block;
    width: 95px;
    height: 95px;
    background-image: url(../img/flow_bag.webp);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    vertical-align: middle;
    position: absolute;
    right: -15px;
    bottom: -15px;
    z-index: 10;
}

.cta {
    background-image: url(../img/cta_bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 40px 0;
    text-align: center;
}

.cta_title {
    font-size: 23px;
    line-height: 1.6;
    font-weight: 500;
    color: #502200;
}

.btn_area {
    margin-top: 25px;
}

.btn_area_text {
    font-size: 18px;
    color: #2daa1d;
    margin-bottom: 10px;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.1em;
}

.cta_text {
    font-size: 18px;
    color: #502200;
    line-height: 1.6;
    margin-top: 20px;
}

/* section7
***************************************************************/
#faq {
    padding: 60px 20px;
    background-image: url(../img/faq_bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#faq .section_title .en,
#faq .section_title .ja {
    color: #fff;
}

.faq_accordion-area {
    display: flex;
    flex-flow: column;
    gap: 15px;
    margin-top: 40px;
}

.faq_accordion-area li {
    background: #DFD6D1;
    position: relative;
}

.faq_title {
    position: relative;
    cursor: pointer;
    transition: all .5s ease;
    padding: 20px 50px 20px 55px;
    font-size: 19px;
    line-height: 1.6;
    font-weight: 400;
}

.faq_title span {
    position: relative;
    color: #5f3718;
    font-family: "Noto Sans JP", sans-serif;
}

.faq_title span::before {
    content: "Q.";
    display: block;
    font-size: 26px;
    line-height: 1.2;
    color: #5f3718;
    font-family: "Noto Sans JP", sans-serif;
    position: absolute;
    top: 10px;
    left: -36px;
    transform: translate(0, -50%);
}

/*アイコンの＋と×*/
.faq_title::before {
    position: absolute;
    content: '';
    width: 15px;
    height: 8px;
    background-image: url(../img/icon_arrow.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    top: 46%;
    right: 15px;
    transition: .3s
}

.faq_title.close::before {
    transform: rotate(180deg);
}

.faq_box {
    display: none;
    padding: 20px 50px 20px 55px;
    position: relative;
    background: #795944;
}

.faq_box p {
    position: relative;
    line-height: 1.6;
    font-size: 16px;
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
}

.faq_box p::before {
    content: "A.";
    display: block;
    font-size: 26px;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.2;
    font-weight: 500;
    color: #fff;
    position: absolute;
    top: 10px;
    left: -35px;
    transform: translate(0, -50%);
}

@media screen and (max-width: 750px) {

    .loading img {
        width: 200px;
    }


    /* FV
***************************************************************/
    .fv {
        position: relative;
        overflow: hidden;
    }

    .fv_reef01 {
        width: 51.25vw;
        position: absolute;
        left: -20.8333333333vw;
        top: 25.625vw;
        transform-origin: center center;
        opacity: 0;
        /* 最初は非表示 */
    }

    .fv_reef02 {
        width: 52.2916666667vw;
        position: absolute;
        right: -20.8333333333vw;
        bottom: 10.4166666667vw;
        transform-origin: center center;
        opacity: 0;
        /* 最初は非表示 */
    }

    /* 出現アニメーション */
    .show-reef01 {
        animation: reefFromLeft 1s ease forwards, swayLeft 8s ease-in-out infinite 1s;
    }

    .show-reef02 {
        animation: reefFromRight 1s ease forwards 0.5s, swayRight 8.3s ease-in-out infinite 2s;
    }

    /* 左からフェードイン */
    @keyframes reefFromLeft {
        0% {
            opacity: 0;
            transform: translateX(-2.0833333333vw) scale(0.95);
        }

        100% {
            opacity: 1;
            transform: translateX(0) scale(1);
        }
    }

    /* 右からフェードイン */
    @keyframes reefFromRight {
        0% {
            opacity: 0;
            transform: translateX(2.0833333333vw) scale(0.95);
        }

        100% {
            opacity: 1;
            transform: translateX(0) scale(1);
        }
    }

    /* 左側の葉っぱ */
    @keyframes swayLeft {
        0% {
            transform: rotate(0deg) translateY(0vw);
        }

        20% {
            transform: rotate(2deg) translateY(-0.625vw);
        }

        50% {
            transform: rotate(-2deg) translateY(0.4166666667vw);
        }

        80% {
            transform: rotate(1deg) translateY(-0.4166666667vw);
        }

        100% {
            transform: rotate(0deg) translateY(0vw);
        }
    }

    /* 右側の葉っぱ */
    @keyframes swayRight {
        0% {
            transform: rotate(0deg) translateY(0vw);
        }

        25% {
            transform: rotate(-2deg) translateY(0.625vw);
        }

        50% {
            transform: rotate(2deg) translateY(-0.8333333333vw);
        }

        75% {
            transform: rotate(-2deg) translateY(0.625vw);
        }

        100% {
            transform: rotate(0deg) translateY(0vw);
        }
    }

    .bag {
        width: 47.2916666667vw;
        position: absolute;
        top: 18%;
        left: 50%;
        transform: translate(-50%, 0);
    }

    .fukidashi {
        width: 89.1666666667vw;
        position: absolute;
        top: 44%;
        left: 50%;
        transform: translate(-50%, 0);
    }

    .fukidashi img:nth-of-type(1) {
        padding-right: 17.2916666667vw;
    }

    .fukidashi img:nth-of-type(2) {
        margin-top: 4.5833333333vw;
        padding-left: 17.2916666667vw;
    }

    .fukidashi img:nth-of-type(3) {
        margin-top: 4.5833333333vw;
        padding-right: 17.2916666667vw;
    }

    .img {
        width: 89.1666666667vw;
    }

    /* Voice
***************************************************************/
    .slider {
        width: 100%;
    }

    .slider img {
        width: 80vw;
        height: auto;
    }

    .slider .slick-slide {
        transition: all 0.5s;
        opacity: 0.5;
    }

    .slider .slick-slide.slick-center {
        opacity: 1;
    }

    .slick-dots {
        text-align: center;
        margin: 6.25vw 0 0 0;
    }

    .slick-dots li {
        margin: 0 2.0833333333vw;
        display: inline-block;
    }

    .slick-dots button {
        color: transparent;
        outline: none;
        width: 2.5vw;
        height: 2.5vw;
        display: block;
        border-radius: 50%;
        background: #fff;
        opacity: 0.5;
        border: unset;
    }

    .slick-dots .slick-active button {
        opacity: 1;
    }

    /* Flow
***************************************************************/
    #flow {
        padding: 12.5vw 4.1666666667vw;
        background-image: url(../img/flow_bg.webp);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    .flow_list {
        margin-top: 6.25vw;
        position: relative;
    }

    .flow_item:nth-last-of-type(1) {
        position: relative;
    }

    .flow_item:nth-last-of-type(1)::before {
        content: "";
        display: inline-block;
        width: 19.7916666667vw;
        height: 19.7916666667vw;
        background-image: url(../img/flow_bag.webp);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        vertical-align: middle;
        position: absolute;
        right: -3.125vw;
        bottom: -3.125vw;
        z-index: 10;
    }

    .cta {
        background-image: url(../img/cta_bg.webp);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        padding: 8.3333333333vw 0;
        text-align: center;
    }

    .cta_title {
        font-size: 4.7916666667vw;
        line-height: 1.6;
        font-weight: 500;
        color: #502200;
    }

    .btn_area {
        margin-top: 5.2083333333vw;
    }

    .btn_area_text {
        font-size: 3.75vw;
        color: #2daa1d;
        margin-bottom: 15px;
    }

    .cta_text {
        font-size: 3.75vw;
        color: #502200;
        line-height: 1.6;
        margin-top: 4.1666666667vw;
    }

    /* section7
***************************************************************/
    #faq {
        padding: 12.5vw 4.1666666667vw;
        background-image: url(../img/faq_bg.webp);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }

    #faq .section_title .en,
    #faq .section_title .ja {
        color: #fff;
    }

    .faq_accordion-area {
        display: flex;
        flex-flow: column;
        gap: 3.125vw;
        margin-top: 8.3333333333vw;
    }

    .faq_accordion-area li {
        background: #DFD6D1;
        position: relative;
    }

    .faq_title {
        position: relative;
        cursor: pointer;
        transition: all 0.5s ease;
        padding: 4.1666666667vw 10.4166666667vw 4.1666666667vw 11.4583333333vw;
        font-size: 3.9583333333vw;
        line-height: 1.6;
        font-weight: 400;
    }

    .faq_title span {
        position: relative;
        color: #5f3718;
        font-family: "Noto Sans JP", sans-serif;
    }

    .faq_title span::before {
        content: "Q.";
        display: block;
        font-size: 5.4166666667vw;
        line-height: 1.2;
        color: #5f3718;
        font-family: "Noto Sans JP", sans-serif;
        position: absolute;
        top: 2.0833333333vw;
        left: -7.5vw;
        transform: translate(0, -50%);
    }

    /*アイコンの＋と×*/
    .faq_title::before {
        position: absolute;
        content: "";
        width: 3.125vw;
        height: 1.6666666667vw;
        background-image: url(../img/icon_arrow.webp);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        top: 46%;
        right: 3.125vw;
        transition: 0.3s;
    }

    .faq_title.close::before {
        transform: rotate(180deg);
    }

    .faq_box {
        display: none;
        padding: 4.1666666667vw 10.4166666667vw 4.1666666667vw 11.4583333333vw;
        position: relative;
        background: #795944;
    }

    .faq_box p {
        position: relative;
        line-height: 1.6;
        font-size: 3.3333333333vw;
        color: #fff;
        font-family: "Noto Sans JP", sans-serif;
        font-weight: 400;
    }

    .faq_box p::before {
        content: "A.";
        display: block;
        font-size: 5.4166666667vw;
        font-family: "Noto Sans JP", sans-serif;
        line-height: 1.2;
        font-weight: 500;
        color: #fff;
        position: absolute;
        top: 2.0833333333vw;
        left: -7.2916666667vw;
        transform: translate(0, -50%);
    }
}