@-webkit-keyframes reflection {
    0% {
        -webkit-transform: scale(0) rotate(45deg);
        transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        -webkit-transform: scale(0) rotate(45deg);
        transform: scale(0) rotate(45deg);
        opacity: 0.25;
    }
    81% {
        -webkit-transform: scale(4) rotate(45deg);
        transform: scale(4) rotate(45deg);
        opacity: 0.4;
    }
    100% {
        -webkit-transform: scale(50) rotate(45deg);
        transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}
@keyframes reflection {
    0% {
        -webkit-transform: scale(0) rotate(45deg);
        transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        -webkit-transform: scale(0) rotate(45deg);
        transform: scale(0) rotate(45deg);
        opacity: 0.25;
    }
    81% {
        -webkit-transform: scale(4) rotate(45deg);
        transform: scale(4) rotate(45deg);
        opacity: 0.4;
    }
    100% {
        -webkit-transform: scale(50) rotate(45deg);
        transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}
/* ========================
Base
======================== */
* {
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
}

body {
    --primary: #136ca0;
    --primary-light: #deeef7;
    --secondary: #ae5135;
    --secondary-light: #f7efec;
    --text: #130902;
    --yellow: #eee58c;

    --ff-sans: 'Noto Sans JP', sans-serif;
    --ff-serif: 'Noto Serif JP', serif;
    --ff-rbt: 'Roboto', sans-serif;
    --ff-deco: 'Bacasime Antique', serif;

    color: var(--text);
    font-family: var(--ff-sans);
    font-weight: 500;
}

img {
    max-width: 100%;
}

a {
    color: var(--secondary);
}

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

ul,
ol {
    list-style: none;
}

em,
address,
b {
    font-style: normal;
}

/* ========================
Common
======================== */
.btn {
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 100%;
    padding: 6px 12px;
    padding-left: 55px;
    padding-right: 49px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    min-height: 49px;
    background-color: var(--secondary);
    border-radius: 999em;
    box-shadow: 0 4px 0px #7b3620;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.3;
    flex-shrink: 0;
}
@media screen and (max-width: 768px) {
    .btn {
        padding-right: 53px;
        font-size: 20px;
    }
}
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    translate: 0 -40%;
    right: 15px;
    width: 7px;
    height: 7px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    rotate: 315deg;
}
@media screen and (max-width: 768px) {
    .btn::after {
        width: 10px;
        height: 10px;
    }
}
.btn_main {
    padding-inline-start: 0.35em;
    letter-spacing: 0.1em;
}
.btn_appeal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    left: 7px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 43px;
    height: 43px;
    background-color: #eee58c;
    border-radius: 50%;
}
@media screen and (max-width: 768px) {
    .btn_main {
        padding-inline-start: 0.25em;
    }
    .btn_appeal {
        width: 39px;
        height: 39px;
    }
}
.btn_appeal-inner {
    text-align: center;
    color: #7b3620;
    font-size: 1.2rem;
    line-height: 1.1;
    font-weight: bold;
}
@media screen and (max-width: 768px) {
    .btn_appeal-inner {
        font-size: 11px;
    }
}
.btn_recommend {
    display: block;
    font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
    .btn_recommend {
        font-size: 11px;
    }
}
.btn--gritter {
    overflow: hidden;
    position: relative;
}
.btn--gritter::before {
    content: '';
    display: block;
    height: 100%;
    width: 10%;
    position: absolute;
    top: -50%;
    left: -78px;
    background-color: #fff;
    opacity: 0;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-animation: reflection 3s ease-in-out infinite;
    animation: reflection 3s ease-in-out infinite;
}

.btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 17px;
    padding-right: 17px;
    margin-top: 16px;
}

.sect-title {
    display: grid;
    place-items: center;
    padding-block-end: 16px;
    width: calc(886 / 1200 * 100vw);
    border-block-end: 1px solid var(--primary);
}
.sect-title_inner {
    width: fit-content;
    margin-inline-start: calc(314 / 1200 * 100vw);
}
.sect-title--reverse .sect-title_inner {
    margin-inline-start: 0;
    margin-inline-end: calc(314 / 1200 * 100vw);
}

.sect-title--about .sect-title_inner {
    aspect-ratio: 142 / 36;
}

.sect-title--design .sect-title_inner {
    aspect-ratio: 148 / 44;
}

.sect-title--reason .sect-title_inner {
    aspect-ratio: 158 / 32;
}
.sect-title--revenue .sect-title_inner {
    aspect-ratio: 282/35;
}
.sect-title--flow .sect-title_inner {
    aspect-ratio: 109/35;
}
@media screen and (max-width: 768px) {
    .sect-title {
        padding-block-end: 13px;
        width: calc(335 / 375 * 100vw);
    }
    .sect-title_inner {
        margin-inline-start: calc(45 / 375 * 100vw);
    }
    .sect-title--reverse .sect-title_inner {
        margin-inline-end: calc(45 / 375 * 100vw);
    }
    .sect-title--about .sect-title_inner {
        width: calc(114 / 375 * 100vw);
    }
    .sect-title--design .sect-title_inner {
        width: calc(119 / 375 * 100vw);
    }
    .sect-title--reason .sect-title_inner {
        width: calc(126 / 375 * 100vw);
    }
    .sect-title--revenue .sect-title_inner {
        width: calc(225 / 375 * 100vw);
    }
    .sect-title--flow .sect-title_inner {
        width: calc(95 / 375 * 100vw);
    }
}

.sect-lead {
    letter-spacing: 0.05em;
    line-height: 1.55;
    font-size: clamp(1.8rem, 2vw + 0.25rem, 2.5rem);
    font-weight: 400;
    font-family: var(--ff-serif);
    color: var(--primary);
    text-align: center;
    font-style: oblique;
}

.fadeup {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.fadeup.show {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

/* === Slick === */
.slick-list {
}
.slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.slick-slide {
    float: none;
    height: auto;
}
.slick-slide:not(.slick-current) * {
    -webkit-filter: none;
    filter: none;
}
.slick-prev,
.slick-next {
    display: block;
    position: absolute;
    top: 50%;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 30px;
    height: 150px;
    padding: 0;
    background-color: rgb(230 214 203 / 1);
    border: none;
    outline: none;
    color: transparent;
    cursor: pointer;
}
.slick-prev::after,
.slick-next::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-70%, -50%) rotate(-45deg);
    transform: translate(-70%, -50%) rotate(-45deg);
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    outline: none;
    color: transparent;
}
.slick-prev {
    -webkit-transform: translateY(-50%) scale(-1, 1);
    transform: translateY(-50%) scale(-1, 1);
    left: 0;
}
.slick-next {
    right: 0;
}
.slick-disabled {
    opacity: 0;
    cursor: auto;
}
.slick-disabled:hover,
.slick-disabled:focus {
    opacity: 0;
}
.slick-dotted.slick-slider {
    margin-bottom: 40px;
}
.slick-dots {
    display: block;
    position: absolute;
    bottom: -31px;
    width: 100%;
    text-align: center;
}
.slick-dots li {
    display: inline-block;
    margin: 0 11px;
    cursor: pointer;
}
.slick-dots li button {
    display: block;
    width: 12px;
    height: 12px;
    padding: 0;
    background-color: #bdbdbd;
    border: 0;
    outline: none;
    color: transparent;
    font-size: 0px;
    line-height: 0px;
    cursor: pointer;
    border-radius: 50%;
}
.slick-dots li.slick-active button {
    background-color: var(--secondary);
}

.cont {
    padding: 70px 17px;
}
@media screen and (max-width: 768px) {
    .cont {
        padding-top: 40px;
        padding-bottom: 50px;
    }
}
.cont_inner {
    max-width: 1000px;
    margin: 0 auto;
}

/* ========================
Blocks
======================== */

.header {
    max-width: 1000px;
    width: fit-content;
    box-shadow: 5px 5px 13px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    box-sizing: border-box;
    z-index: 15;
    border-bottom-right-radius: 20px;
}

.header .header-logo {
    display: flex;
    gap: 39px;
    align-items: center;
    justify-content: space-between;
    padding: 12px 13px 12px 20px;
    position: relative;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border-bottom-right-radius: 20px;
}
.header .header-logo .header_brand-logo {
    width: calc(75 / 1200 * 100vw);
    max-width: 75px;
    aspect-ratio: 75/39;
    display: inline-block;
}
.header .header-logo .header_fcs-logo {
    width: calc(128 / 1200 * 100vw);
    max-width: 128px;
    display: inline-block;
}
.header .header-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 40.5%;
    transform: translate(-50%, -50%) rotate(45deg);
    background-color: #000;
    width: 16px;
    height: 1px;
}
.header .header-logo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 40.5%;
    transform: translate(-50%, -50%) rotate(-45deg);
    background-color: #000;
    width: 16px;
    height: 1px;
}
@media screen and (max-width: 768px) {
    .header {
    }
    .header .header-logo {
        gap: 32px;
        box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.2);

        padding: 8px 16px 7px 20px;
    }

    .header .header-logo .header_brand-logo {
        width: 75px;
    }

    .header .header-logo .header_fcs-logo {
        width: 123px;
    }

    .header .header-logo::before {
        height: 1px;
        width: 13px;
        left: 41.5%;
    }

    .header .header-logo::after {
        width: 13px;
        height: 1px;
        left: 41.5%;
    }
}
.hero {
    background: url(../images/hero_bg.jpg) center/cover no-repeat;
}

.hero_inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
}

.hero_image {
    grid-column: 1/2;
    grid-row: 1/3;
    border-top-right-radius: 216px;
    overflow: hidden;
}
.hero_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero_main {
    grid-column: 2/3;
    grid-row: 1/3;
    padding-block: 49px 24px;
    padding-inline: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero_lead {
    position: relative;
    padding-inline: 18px;
    font-weight: 700;
    font-family: var(--ff-serif);
    line-height: 1.3;
    font-size: clamp(1.7rem, 1vw + 1rem, 1.8rem);
    display: block;
    width: fit-content;
    margin-inline: auto;
    text-align: center;
}
.hero_lead::before,
.hero_lead::after {
    content: '';
    display: block;
    width: 13px;
    height: 19px;
    background: url(../images/hero_lead-deco.svg) center/contain no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
}

.hero_lead::after {
    right: 0;
    left: auto;
    translate: 0 -50%;
    transform: scaleX(-1);
}

.hero_points {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 448px;
    margin: 22px auto 0;
}

.hero_point {
    width: 41.5%;
    line-height: 1.35;
    font-weight: 400;
    font-size: clamp(1.2rem, 1vw + 0.5rem, 1.5rem);
    font-family: var(--ff-serif);
    display: block;
    text-align: center;
    border-bottom-left-radius: 36px;
    border-top-right-radius: 36px;
    background: #f4e7e4;
    aspect-ratio: 186/84;
    display: grid;
    place-items: center;
}
.hero_point:last-child {
    background: var(--primary-light);
}

.hero_point-icon {
    aspect-ratio: 1;
    max-width: 72px;
    display: inline-block;
    width: 17%;
    padding-inline: 16px;
    display: grid;
    place-items: center;
}

.hero_point-inner {
    line-height: 1.35;
}

.hero_point-inner em {
    padding-block-end: 10px;
    background: url(../images/underline.svg) 55% bottom / contain no-repeat;
}
.hero_point-inner strong {
    font-size: clamp(1.4rem, 1vw + 0.75rem, 1.8rem);
    font-weight: 400;
}

.hero_main-text {
    line-height: 1.3;
    font-weight: 800;
    font-family: var(--ff-serif);
    font-size: clamp(5rem, 3vw + 3rem, 6.4rem);
    text-align: center;
    font-style: oblique;
    margin-block-start: 18px;
}
.hero_main-text span {
    display: inline-block;
    font-size: clamp(5.5rem, 4vw + 3rem, 7.8rem);
    position: relative;
}
.hero_main-text span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 65%;
    width: 10px;
    height: 10px;
    background-color: #000;
    border-radius: 50%;
}
.hero_appeal-list {
    display: grid;
    grid-template-columns: 161fr 155fr 155fr;
    gap: 19px;
    margin-block-start: 24px;
    place-items: center;
    max-width: 516px;
    margin-inline: auto;
}

.hero_appeal-item {
    border-block-end: 1px solid var(--text);
    background: url(../images/hero_appeal-check.svg) center top/155px 29px no-repeat;
    padding-block: 37px 11px;
    width: fit-content;
    display: grid;
    place-items: center;
    height: 100%;
    width: 100%;
}

.hero_appeal-item-inner {
    text-align: center;
    font-family: var(--ff-serif);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.05em;
    font-size: clamp(1.8rem, 1vw + 1rem, 2.2rem);
}

@media screen and (max-width: 1024px) {
    .hero_inner {
        grid-template-columns: 3fr 5fr;
    }
}
@media screen and (max-width: 768px) {
    .hero_inner {
        display: block;
        position: relative;
    }

    .hero_image {
        position: absolute;
        border-top-right-radius: 108px;
        bottom: 0;
        left: 0;
        aspect-ratio: 195/363;
        width: calc(195 / 375 * 100vw);
        max-width: 245px;
    }

    .hero_main {
        position: relative;
        z-index: 5;
        padding-block: 72px 19px;
        padding-inline: 12px;
    }

    .hero_lead {
        padding-inline: 16px;
    }
    .hero_lead::before,
    .hero_lead::after {
        top: auto;
        bottom: -8px;
    }

    .hero_points {
        margin: 11px auto 0;
    }

    .hero_point {
        border-bottom-left-radius: 30px;
        border-top-right-radius: 30px;
    }

    .hero_point-icon {
        aspect-ratio: 1;
        max-width: 72px;
        width: 17%;
        padding-inline: 10px;
    }

    .hero_main-text {
        margin-block-start: 23px;
    }
    .hero_main-text span::before {
        width: 7px;
        height: 7px;
    }
    .hero_appeal-list {
        margin-block-start: 14px;
        display: flex;
        flex-direction: column;
        gap: 9px;
        align-items: center;
        width: calc(189 / 375 * 100vw);
        margin-inline: auto 0;
    }

    .hero_appeal-item {
        background: url(../images/hero_appeal-check-sp.svg) center top/189px 24px no-repeat,
            linear-gradient(to bottom, transparent 20px, rgb(255 255 255 / 0.6) 20px);
        padding-block: 26px 9px;
        height: auto;
        width: 100%;
        max-width: 190px;
    }
}
.hero-bottom {
    padding-top: 14px;
    padding-bottom: 19px;
    background-color: var(--text);
}
.hero-bottom_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
    max-width: 915px;
}
@media screen and (max-width: 768px) {
    .hero-bottom {
        padding-top: 6px;
        padding-bottom: 13px;
        padding-inline: 15px;
    }
    .hero-bottom_inner {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }
}

.hero-bottom_text {
    text-align: center;
    font-family: var(--ff-serif);
    font-weight: 400;
    line-height: 1.35;
    font-size: clamp(1.5rem, 1vw + 1rem, 2rem);
    color: #fff;
    font-style: oblique;
}
.hero-bottom_text em {
    font-size: clamp(1.5rem, 1vw + 1rem, 2.2rem);
    font-weight: 400;
    font-style: oblique;
}
.about {
    padding-block: 118px 110px;
    background: url(../images/about_bg.jpg) center bottom/cover no-repeat;
}

.about_title {
    position: relative;
    z-index: 5;
}

.about_body {
    max-width: 769px;
    margin-inline: auto;
    padding-block: 104px 22px;
    background: rgb(255 255 255 / 0.9);
    border-top-left-radius: 108px;
    border-bottom-right-radius: 108px;
    margin-block-start: -96px;
}

.about_desc {
    margin-top: 22px;
    font-size: 1.6rem;
    line-height: 1.8;
    max-width: 552px;
    margin-inline: auto;
}

@media screen and (max-width: 768px) {
    .about {
        padding-block: 80px 50px;
        background: url(../images/about_bg-sp.jpg) center bottom/cover no-repeat;
    }
    .about_body {
        max-width: calc(334 / 375 * 100vw);
        padding-block: 83px 39px;
        padding-inline: 25px 18px;
        border-top-left-radius: 60px;
        border-bottom-right-radius: 60px;
        margin-block-start: -74px;
    }
    .about_desc {
    }
}

.design {
    padding-block: 118px 110px;
    background: url(../images/design_bg.jpg) center bottom/cover no-repeat;
}

.design_title {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: end;
}

.design_body {
    max-width: 769px;
    margin-inline: auto;
    padding-block: 104px 22px;
    margin-block-start: -96px;
    position: relative;
}

.design_desc-wrapper {
    margin-top: 22px;
    max-width: 552px;
    margin-inline: auto;
}
.design_desc {
    display: inline;
    font-size: 1.6rem;
    line-height: 1.8;
    margin-inline: auto;
}
.design_desc-inner {
}
.design_img {
    display: none;
}
@media screen and (max-width: 768px) {
    .design {
        padding-block: 59px 130px;
        background: url(../images/design_bg-sp.jpg) center bottom/cover no-repeat;
    }
    .design_body {
        max-width: calc(334 / 375 * 100vw);
        padding-block: 83px 39px;
        padding-inline: 25px 18px;
        border-top-left-radius: 60px;
        border-bottom-right-radius: 60px;
        background: rgb(247 245 241 / 0.9);

        margin-block-start: -74px;
    }
    .design_desc:has(.design_img) {
        margin-inline-start: calc(50% - 50vw);
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .design_desc-inner {
        display: block;
        width: calc(193 / 375 * 100vw);
    }
    .design_img {
        display: block;
        width: calc(130 / 375 * 100vw);
    }
}

.reason {
    padding-block: 84px 100px;
    background: url(../images/reason_bg.jpg) center/cover no-repeat;
}

.reason_lead {
    margin-block-start: 12px;
}

.reason_text {
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.1em;
    font-size: 1.4rem;
    display: block;
    margin-block-start: 15px;
    text-align: center;
    margin-inline: auto;
}

.reason_list {
    display: flex;
    flex-direction: column;
    gap: 62px;
    margin-block-start: 62px;
}

.reason_item {
    display: grid;
    grid-template-columns: 503fr 96fr 430fr;
    grid-template-rows: 48fr 306fr 48fr;
    max-width: clamp(1045px, calc(1045 / 1200 * 100vw) , 1215px);
    padding-inline-end: 15px;
}
.reason_item:nth-child(even) {
    max-width: clamp(1062px, calc(1062 / 1200 * 100vw) , 1225px);
    grid-template-columns: 464fr 62fr 535fr;
    grid-template-rows: 37fr 325fr 38fr;
    padding-inline: 15px 0;
    margin-inline-start: auto;
}

.reason_item-img {
    grid-column: 1 / 3;
    grid-row: 1 / -1;
}

.reason_item-body {
    grid-column: 2 / -1;
    grid-row: 2/3;
    padding: 35px calc(50 / 1200 * 100vw) 25px;
    position: relative;
    z-index: 5;
    background: #f7f5f1;
    border-top-right-radius: 60px;
    border-bottom-left-radius: 60px;
}

.reason_item:nth-child(even) .reason_item-img {
    grid-column: 2 / -1;
    grid-row: 1 / -1;
}
.reason_item:nth-child(even) .reason_item-body {
    grid-column: 1 / 3;
    background: #dfeef7;
}

.reason_item-index {
    color: var(--primary);
    font-weight: 400;
    font-size: 2.5rem;
    font-family: var(--ff-deco);
    text-align: center;
}
.reason_item-index em {
    font-size: 4rem;
}
.reason_item-title {
    padding-block-end: 19px;
    position: relative;
    margin-block-start: 4px;
}
.reason_item-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 11px;
    background: url(../images/reason_title-line.svg) center bottom/contain no-repeat;
}

.reason_item-title-inner {
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
    font-size: clamp(1.8rem, 2vw + 0.25rem, 2.3rem);
    font-family: var(--ff-serif);
    padding: 10px 6px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid var(--primary);
    display: block;
    text-align: center;
}

.reason_item-desc {
    display: block;
    margin-block-start: 6px;
    line-height: 2;
    font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
    .reason {
        padding-block: 59px 0;
        background: url(../images/reason_bg-sp.jpg) center/cover no-repeat;
    }

    .reason_text {
        margin-block-start: 7px;
    }

    .reason_list {
        gap: 42px;
        margin-block-start: 32px;
    }

    .reason_item {
        display: grid;
        grid-template-columns: 40fr 260fr 75fr;
        grid-template-rows: 250fr 84fr 129fr;
        padding-inline: 0;
        max-width: 400px;
    }
    .reason_item:nth-child(even) {
        padding-inline: 0;
        grid-template-columns: 75fr 260fr 40fr;
        grid-template-rows: 233fr 84fr 108fr;
        max-width: 400px;
    }

    .reason_item-img {
        grid-column: 1 / 3;
        grid-row: 2 / -1;
    }

    .reason_item-body {
        grid-column: 2 / -1;
        grid-row: 1/3;
        padding: 12px calc(32 / 375 * 100vw) 28px;
        border-top-right-radius: 0;
        border-bottom-left-radius: 0;
        border-top-left-radius: 40px;
        border-bottom-right-radius: 40px;
        background: rgb(247 245 241 / 0.95);
    }

    .reason_item:nth-child(even) .reason_item-img {
        grid-column: 2 / -1;
        grid-row: 2 / -1;
    }
    .reason_item:nth-child(even) .reason_item-body {
        grid-column: 1 / 3;
        grid-row: 1 / 3;
        background: rgb(223 238 247 / 0.95);
    }
}

.cta {
    padding: 30px 15px;
    background: var(--text);
    position: relative;
    z-index: 5;
}

.cta_inner {
    display: grid;
    place-items: center;
}

@media screen and (max-width: 768px) {
    .cta {
        padding: 27px 15px 25px;
        margin-block-start: -3px;
    }
}

@media screen and (max-width: 768px) {
    .testimonials {
        padding-bottom: 50px;
    }
}
.testimonials_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 36px;
    margin-top: 40px;
}
@media screen and (max-width: 768px) {
    .testimonials_list {
        margin-top: 20px;
    }
}
.testimonials_list-item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 24px 30px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
    .testimonials_list-item {
        padding-left: 20px;
        padding-right: 20px;
        margin: 10px;
    }
}
.testimonials_head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media screen and (max-width: 768px) {
    .testimonials_portrait {
        width: 66px;
    }
}
.testimonials_info {
    margin-left: 16px;
}
@media screen and (max-width: 768px) {
    .testimonials_info {
        margin-left: 14px;
    }
}
.testimonials_name {
    color: #009533;
    font-size: 1.7rem;
    font-weight: bold;
}
@media screen and (max-width: 768px) {
    .testimonials_name {
        font-size: 1.2rem;
    }
}
.testimonials_item-title {
    margin-top: 8px;
}
.testimonials_item-title-inner {
    display: inline;
    background-color: #009533;
    color: #fff;
    font-family: 'Yu Mincho Pr6N', 'Times New Roman', 'YuMincho', 'Hiragino Mincho ProN', 'Yu Mincho', 'MS PMincho',
        serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.6;
}
@media screen and (max-width: 768px) {
    .testimonials_item-title-inner {
        font-size: 2rem;
    }
}
.testimonials_desc {
    margin-top: 28px;
    font-size: 1.8rem;
    line-height: 1.6;
}
@media screen and (max-width: 768px) {
    .testimonials_desc {
        margin-top: 24px;
        font-size: 1.4rem;
    }
}
.revenue {
    padding-block: 74px;
    background: url(../images/revenue_bg.jpg) left top/cover no-repeat;
}

.revenue_inner {
}

.revenue_title {
    display: flex;
    justify-content: end;
}

.revenue_lead {
    margin-block-start: 15px;
}

.revenue_list {
    max-width: 936px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.revenue_item {
    margin: 12px;
    border-top-right-radius: 999em;
    border-top-left-radius: 999em;
    background: #fff;
    padding: 85px 34px 42px;
    position: relative;
}
.revenue_item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    border: 1px solid var(--secondary);
    border-top-right-radius: 999em;
    border-top-left-radius: 999em;
}

.revenue_item-title {
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.1em;
    font-size: clamp(2rem, 2vw + 0.25rem, 2.6rem);
    display: block;
    border-bottom: 1px solid;
    font-family: var(--ff-serif);
    text-align: center;
    max-width: 264px;
    margin-inline: auto;
}

.revenue_item-shop {
    margin-inline: auto;
    max-width: 264px;
    border-bottom: 1px solid;
    font-size: clamp(2.4rem, 1vw + 1.75rem, 2.8rem);
    line-height: 1.4;
    letter-spacing: 0.1em;
    font-weight: 500;
    font-family: var(--ff-serif);
    text-align: center;
    margin-inline: auto;
}

.revenue_item-achieve {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-block-start: 36px;
}

.revenue_item-achieve-head {
    display: block;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #f7efec;
    font-family: var(--ff-serif);
    font-weight: 500;
    font-size: clamp(1.5rem, 1vw + 0.75rem, 1.8rem);
    aspect-ratio: 1;
    width: 57px;
}

.revenue_item-achieve-body {
}

.revenue_download {
    aspect-ratio: 362 / 172;
    width: 100%;
    background: url(../images/revenue_download.jpg) center center/cover no-repeat;
    margin-block-start: 32px;
    display: grid;
    place-items: center;
}

.revenue_download-inner {
    max-width: 248px;
    width: 100%;
}

.revenue_download-head {
    display: block;
    text-align: center;
    font-weight: 500;
    line-height: 1.1;
    font-family: var(--ff-serif);
    background: #f7efec;
    font-size: clamp(1.4rem, 1vw + 0.5rem, 1.6rem);
    padding-block: 4px;
}

.revenue_download-body {
    padding-block: 10px;
    display: block;
    background: #fff;
    text-align: center;
    font-weight: 500;
    font-size: 1.3em;
    line-height: 1.4;
}
@media screen and (max-width: 768px) {
    .revenue {
        padding-block: 61px 30px;
        background: url(../images/revenue_bg-sp.jpg) left top/cover no-repeat;
    }
    .revenue_lead {
        margin-block-start: 10px;
    }
    .revenue_list {
        max-width: 936px;
        margin: 0;
        display: block;
    }

    .revenue_item {
        display: inline-block;
        padding: 64px 26px 33px;
        margin: 10px 20px;
    }
    .revenue_item::before {
        width: calc(100% - 22px);
        height: calc(100% - 22px);
    }

    .revenue_item-title {
        max-width: calc(205 / 375 * 100vw);
    }

    .revenue_item-shop {
        max-width: calc(205 / 375 * 100vw);
    }

    .revenue_item-achieve {
        gap: 13px;
        margin-block-start: 36px;
    }

    .revenue_item-achieve-head {
        width: 48px;
    }
    .revenue_download {
        margin-block-start: 16px;
    }

    .revenue_download-inner {
        max-width: 230px;
        width: 100%;
    }

    .revenue_download-head {
        padding-block: 3px;
    }

    .revenue_download-body {
        padding-block: 3px;
    }
}

.flow {
    padding-block: 80px;
    background: url(../images/flow_bg.jpg) right center/cover no-repeat;
}

.flow_inner {
}

.flow_title {
}

.flow_lead {
    margin-block-start: 15px;
}

.flow_list-wrap {
    margin-block-start: 50px;
    max-width: 974px;
    margin-inline: auto;
    overflow: auto;
}

.flow_list {
    display: grid;
    grid-template-columns: 138fr 165fr 165fr 165fr 165fr 134fr;
    grid-template-rows: 1fr;
    padding: 20px;
    width: fit-content;
    min-width: 801px;
}

.flow_list-first {
    margin-inline-end: 18px;
    position: relative;
    aspect-ratio: 120 / 138;
}
.flow_list-first::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    translate: 56% -50%;
    width: 27px;
    height: 37px;
    background: var(--primary);
    clip-path: polygon(0 10px, 9px 10px, 9px 0, 100% 50%, 9px 100%, 9px calc(100% - 10px), 0 calc(100% - 10px));
}
.flow_list-first a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    text-align: center;
    line-height: 1.2;
    font-weight: 400;
    font-size: clamp(1.6rem, 1vw + 1rem, 2rem);
}
.flow_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border-top-left-radius: 32px;
    border-bottom-right-radius: 32px;
    background: #e6d6cb;
    position: relative;
    aspect-ratio: 1;
    width: 134px;
}
.flow_item:not(:last-child) {
    background: #deeef7;
    margin-inline-end: 31px;
}
.flow_item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    translate: calc(100% + 3px) -50%;
    width: 27px;
    height: 37px;
    background: var(--primary);
    clip-path: polygon(0 10px, 9px 10px, 9px 0, 100% 50%, 9px 100%, 9px calc(100% - 10px), 0 calc(100% - 10px));
}

.flow_item-index {
}

.flow_item-title {
    text-align: center;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.1em;
    font-size: clamp(1.7rem, 1vw + 1rem, 2rem);
}
@media screen and (max-width: 768px) {
    .flow {
        padding-block: 42px 75px;
        background: none;
    }

    .flow_inner {
    }

    .flow_title {
    }

    .flow_lead {
        margin-block-start: 7px;
    }

    .flow_list-wrap {
        margin-block-start: 22px;
        margin-inline: auto;
    }

    .flow_list {
        max-width: 801px;
        display: grid;
        grid-template-columns: 112fr 135fr 135fr 135fr 135fr 109fr;
        grid-template-rows: 1fr;
        padding-block: 20px;
    }

    .flow_list-first {
        margin-inline-end: 16px;
        position: relative;
    }
    .flow_list-first img {
        width: 63px;
        height: 63px;
    }
    .flow_list-first::after {
        translate: 56% -50%;
        width: 22px;
        height: 30px;
        clip-path: polygon(0 9px, 7px 9px, 7px 0, 100% 50%, 7px 100%, 7px calc(100% - 9px), 0 calc(100% - 9px));
    }
    .flow_list-first a {
        gap: 4px;
    }
    .flow_item {
        gap: 10px;
        width: 109px;
    }
    .flow_item:not(:last-child) {
        margin-inline-end: 25px;
    }
    .flow_item:not(:last-child)::after {
        translate: calc(100% + 3px) -50%;
        width: 22px;
        height: 30px;
        clip-path: polygon(0 9px, 7px 9px, 7px 0, 100% 50%, 7px 100%, 7px calc(100% - 9px), 0 calc(100% - 9px));
    }
    .flow_item-title {
        font-weight: 500;
        text-transform: uppercase;
    }
}

.push {
    background: url(../images/push_bg.jpg) center bottom/1200px auto no-repeat, #f6f5f1;
}
.push_inner {
    padding: 54px 20px 81px;
}

.push_title {
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
    font-family: var(--ff-serif);
    font-size: clamp(1.8rem, 2vw + 0.25rem, 2.5rem);
    text-align: center;
    color: var(--primary);
    padding-inline: 27px;
    position: relative;
    width: fit-content;
    margin-inline: auto;
}
.push_title::before,
.push_title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    width: 1px;
    height: 68px;
    background: var(--primary);
    rotate: 340deg;
}
.push_title::before {
    left: auto;
    right: 0;
    rotate: 20deg;
}
.push_content {
    aspect-ratio: 669/265;
    max-width: 669px;
    margin-inline: auto;
    margin-block-start: 22px;
}
.push_content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (max-width: 768px) {
    .push {
        background: url(../images/push_bg-sp.jpg) center bottom/auto 100% no-repeat, #f6f5f1;
    }
    .push_inner {
        padding: 38px 5px 41px;
    }

    .push_title {
        padding-inline: 10px;
        max-width: 365px;
    }
    .push_title::before,
    .push_title::after {
        height: 50px;
    }
    .push_content {
        aspect-ratio: 364/235;
        max-width: 364px;
        margin-inline: auto;
        margin-block-start: 22px;
    }
    .push_content img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

.request {
    position: relative;
    padding-top: 93px;
    padding-bottom: 33px;
}
.request_title {
    position: absolute;
    top: -60px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
}
.request_title-inner {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 20px 20px 17px;
    max-width: 579px;
    width: 100%;
    margin-inline: auto;
    background-color: var(--primary);
    text-align: center;
    color: #fff;
    font-size: clamp(1.3rem, 2vw, 2.2rem);
    font-weight: 500;
    line-height: 1.4;
    border-radius: 24px;
}
.request_title-inner strong {
    display: block;
    font-weight: 700;
    font-size: clamp(2.2rem, 2vw + 1.25rem, 3.5rem);
}
@media screen and (max-width: 768px) {
    .request {
        padding-block: 67px 49px;
    }
    .request_title {
        top: -32px;
    }
    .request_title-inner {
        width: calc(335 / 375 * 100%);
        padding-left: 8px;
        padding-right: 8px;
        padding-block: 10px 8px;
        border-radius: 12px;
    }
}
.request_title-inner::after {
    content: '';
    position: absolute;
    top: 99.7%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 42px;
    height: 15px;
    background-color: var(--primary);
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 768px) {
    .request_title-inner::after {
        width: 32px;
        height: 13px;
    }
}
.request_title-em {
    font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
    .request_title-em {
        font-size: 1.8rem;
    }
}
.request_note {
    text-align: center;
    font-family: var(--ff-rbt);
}
.request_note-mail {
    display: inline;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.2;
}
@media screen and (max-width: 768px) {
    .request_note {
        line-height: 1.6;
    }
    .request_note-mail {
        display: block;
        font-size: 1.3rem;
    }
}
.request_note-supp {
    display: inline;
    font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
    .request_note-supp {
        display: block;
        font-size: 1.2rem;
    }
}
.request_panel {
    max-width: 713px;
    padding: 0 6px 0 0;
    margin: 19px auto 0;
}
@media screen and (max-width: 768px) {
    .request_panel {
        padding: 22px 0 24px;
        margin-top: 12px;
    }
}
.request_appeal {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 6px 14px;
    margin: 0 auto;
    background-color: #f5f1c7;
    border-radius: 999em;
    font-size: 1.8rem;
    white-space: nowrap;
    font-family: var(--ff-rbt);
    line-height: 1.3;
    letter-spacing: 0.03em;
    font-weight: 600;
}
@media screen and (max-width: 768px) {
    .request_appeal {
        padding: 6px 16px;
        font-size: 1.5rem;
    }
}
.request_appeal-em {
    font-size: 2.4rem;
    color: var(--secondary);
}
@media screen and (max-width: 768px) {
    .request_appeal-em {
        font-size: 2rem;
    }
}
.request_require-note {
    text-align: right;
    font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
    .request_require-note {
        margin-top: 16px;
        font-size: 1.2rem;
    }
}
.request_form {
    margin-top: 24px;
}
@media screen and (max-width: 768px) {
    .request_form {
        margin-top: 4px;
    }
}

.form * {
    font-family: var(--ff-rbt);
}
.form .form-text {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 56px;
    padding: 14px;
    background-color: #f6f6f6;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 5px;
    -webkit-box-shadow: inset 3px 3px 2px rgba(0, 0, 0, 0.2);
    box-shadow: inset 3px 3px 2px rgba(0, 0, 0, 0.2);
    color: #393939;
    font-size: 1.6rem;
    line-height: 1.5;
}
.form .form-textarea {
    height: 160px;
}
.form .form-text::-webkit-input-placeholder {
    color: #a6a6a6;
}
.form .form-text::-moz-placeholder {
    color: #a6a6a6;
}
.form .form-text:-ms-input-placeholder {
    color: #a6a6a6;
}
.form .form-text::-ms-input-placeholder {
    color: #a6a6a6;
}
.form .form-text::placeholder {
    color: #a6a6a6;
}
.form .form-text:not(:-moz-placeholder-shown) {
    background-color: #fff;
    border: 1px solid #232323;
}
.form .form-text:not(:-ms-input-placeholder) {
    background-color: #fff;
    border: 1px solid #232323;
}
.form .form-text:not(:placeholder-shown) {
    background-color: #fff;
    border: 1px solid #232323;
}
.form .form-select {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 56px;
    padding: 14px;
    background-color: #fff;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 5px;
    -webkit-box-shadow: inset 3px 3px 2px rgba(0, 0, 0, 0.2);
    box-shadow: inset 3px 3px 2px rgba(0, 0, 0, 0.2);
    color: #393939;
    font-size: 1.6rem;
    line-height: 1.3;
    font-weight: 400;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid var(--primary);
}
.form .form-select--initial {
    background-color: #fff;
    color: #393939;
}
.form .form-zip-btn {
    padding: 15px 32px;
    background: none;
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.3;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .form .form-zip-btn {
        padding: 16px 14px;
        border-width: 1px;
    }
}
.form .wpcf7-form-control-wrap {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
@media screen and (max-width: 768px) {
    .form .wpcf7-form-control-wrap {
        margin-top: 7px;
    }
}
.form_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}
@media screen and (max-width: 768px) {
    .form_item {
        display: block;
    }
}
.form_item:not(:first-child) {
    margin-top: 20px;
}
.form_item--short .wpcf7-form-control-wrap {
    max-width: 240px;
}
@media screen and (max-width: 768px) {
    .form_item--short .wpcf7-form-control-wrap {
        max-width: 145px;
    }
}
@media screen and (max-width: 768px) {
    .form_item--has-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 8px;
    }
}
@media screen and (max-width: 768px) {
    .form_item--has-btn .form_title {
        width: 100%;
    }
}
.form_item--has-btn .wpcf7-form-control-wrap {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
}
@media screen and (max-width: 768px) {
    .form_item--has-btn .form-zip-btn {
        margin-top: 10px;
        margin-left: 0;
    }
}
.form_item--left {
    float: left;
    width: 50%;
}
@media screen and (max-width: 768px) {
    .form_item--left {
        float: none;
        width: auto;
    }
}
.form_item--right {
    float: right;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
}
@media screen and (max-width: 768px) {
    .form_item--right {
        float: none;
        width: auto;
    }
}
.form_title {
    display: block;
    width: 110px;
    text-align: right;
    font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
    .form_title {
        width: auto;
        text-align: left;
        font-size: 1.4rem;
    }
}
.form_title--long {
    letter-spacing: -0.1em;
}
.form_required {
    color: #e42d2d;
}
.form_control {
    display: block;
    width: 100%;
}
.form .form_item--select .wpcf7-form-control-wrap {
    position: relative;
    max-width: 240px;
}
@media screen and (max-width: 768px) {
    .form .form_item--select .wpcf7-form-control-wrap {
    }
}
.form .form_item--select .wpcf7-form-control-wrap::after {
    content: '';
    display: block;
    position: absolute;
    top: 24px;
    right: 12px;
    width: 10px;
    height: 6px;
    background-color: var(--primary);
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.form .form_item--radio > p {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.form .form_item--radio .wpcf7-radio {
    margin-top: -12px;
    margin-left: -20px;
    width: auto;
}
@media screen and (max-width: 768px) {
    .form .form_item--radio .wpcf7-radio {
        margin-top: 0;
        margin-left: 0;
    }
}
.form .form_item--radio .wpcf7-radio input {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
}
.form .form_item--radio .wpcf7-radio input:checked + .wpcf7-list-item-label {
    cursor: auto;
}
.form .form_item--radio .wpcf7-radio input:checked + .wpcf7-list-item-label::before {
    cursor: auto;
}
.form .form_item--radio .wpcf7-radio input:checked + .wpcf7-list-item-label::after {
    opacity: 1;
    cursor: auto;
}
.form .form_item--radio .wpcf7-list-item {
    display: inline-block;
    margin-top: 12px;
    margin-left: 20px;
}
@media screen and (max-width: 768px) {
    .form .form_item--radio .wpcf7-list-item:first-child {
        margin-left: 0;
    }
}
.form .form_item--radio .wpcf7-list-item-label {
    display: inline-block;
    position: relative;
    padding-left: 25px;
    font-size: 1.6rem;
    line-height: 1.25;
    cursor: pointer;
}
.form .form_item--radio .wpcf7-list-item-label::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2px solid var(--primary);
    border-radius: 50%;
    cursor: pointer;
}
.form .form_item--radio .wpcf7-list-item-label::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 5px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
    opacity: 0;
    cursor: pointer;
}
.form .form_item--checkbox .wpcf7-checkbox {
    margin-top: -12px;
    margin-left: -36px;
}
@media screen and (max-width: 768px) {
    .form .form_item--radio .wpcf7-list-item-label {
        font-size: 1.5rem;
    }
}
@media screen and (max-width: 768px) {
    .form .form_item--checkbox .wpcf7-checkbox {
        margin-top: 0;
        margin-left: 0;
    }
}
.form .form_item--checkbox .wpcf7-checkbox input {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
}
.form .form_item--checkbox .wpcf7-checkbox input:checked + .wpcf7-list-item-label::before {
    background-color: #b6b6b6;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.form .form_item--checkbox .wpcf7-checkbox input:checked + .wpcf7-list-item-label::after {
    opacity: 1;
}
.form .form_item--checkbox .wpcf7-list-item {
    display: inline-block;
    margin-top: 12px;
    margin-left: 36px;
}
@media screen and (max-width: 768px) {
    .form .form_item--checkbox .wpcf7-list-item {
        display: block;
        margin-top: 12px;
        margin-left: 0;
    }
}
.form .form_item--checkbox .wpcf7-list-item-label {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    font-size: 1.4rem;
    line-height: 1.7857142857;
    cursor: pointer;
    font-weight: 400;
}
@media screen and (max-width: 768px) {
    .form .form_item--checkbox .wpcf7-list-item-label {
        padding-left: 27px;
        font-size: 1.2em;
    }
}
.form .form_item--checkbox .wpcf7-list-item-label::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 22px;
    height: 22px;
    background-color: #fff;
    border: 2px solid #b6b6b6;
    border-radius: 4px;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .form .form_item--checkbox .wpcf7-list-item-label::before {
        width: 20px;
        height: 20px;
    }
}
.form .form_item--checkbox .wpcf7-list-item-label::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 5px;
    -webkit-transform: translateY(-60%) rotate(-45deg);
    transform: translateY(-60%) rotate(-45deg);
    width: 10px;
    height: 5px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    opacity: 0;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .form .form_item--checkbox .wpcf7-list-item-label::after {
        left: 4px;
    }
}
.form .form_item--optional:not(._) {
    margin-top: 34px;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .form .form_item--optional:not(._) {
        margin-top: 20px;
    }
}
@media screen and (max-width: 768px) {
    .form .form_item--optional:not(._) .wpcf7-list-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.form .form_item--optional:not(._) .wpcf7-list-item-label {
    color: #999999;
}
@media screen and (max-width: 768px) {
    .form .form_item--optional:not(._) .wpcf7-list-item-label {
        text-align: left;
        font-size: 1.2rem;
    }
}
.form .wpcf7-not-valid:not(.wpcf7-radio) {
    background: #f6f6f6;
    color: #464646;
}
.form .wpcf7-not-valid-tip {
    margin-top: 4px;
}
.form_note {
    margin-top: 4px;
    margin-left: 126px;
    color: #9b9b9b;
    font-size: 1.3rem;
    line-height: 1.5;
}
@media screen and (max-width: 768px) {
    .form_note {
        margin-left: 0;
    }
}
.form_privacy-policy-wrap {
    margin-top: 21px;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .form_privacy-policy-wrap {
        margin-top: 33px;
        margin-inline: auto;
        width: calc(315 / 375 * 100vw);
    }
}
.form_privacy-policy {
    display: inline-block;
    font-size: 1.3rem;
    line-height: 1.8;
}
@media screen and (max-width: 768px) {
    .form_privacy-policy {
        font-size: 1.2rem;
    }
}
.form_submit-wrap {
    margin-top: 22px;
    text-align: center;
}
.form_submit {
    position: relative;
    width: 235px;
    padding-top: 15px;
    padding-bottom: 15px;
    outline: none;
    border: none;
    background-color: var(--secondary);
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.04em;
    cursor: pointer;
    padding-inline-end: 10px;
}
@media screen and (max-width: 768px) {
    .form_submit {
        width: 222px;
        padding-top: 12px;
        padding-bottom: 12px;
        font-size: 1.6rem;
    }
}
.form_submit::after {
    content: '';
    position: absolute;
    top: 53%;
    right: 16px;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
    width: 8px;
    height: 8px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
}
@media screen and (max-width: 768px) {
    .form_submit::after {
        right: 20px;
    }
}

.footer {
    padding-top: 36px;
    padding-bottom: 16px;
    background-color: var(--text);
    color: #fff;
}
@media screen and (max-width: 768px) {
    .footer {
        padding-top: 23px;
        padding-bottom: 17px;
    }
}
.footer_inner {
    position: relative;
    max-width: 1000px;
    padding: 0 20px;
    margin: 0 auto;
}
.footer_about-franchise-salon {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 953px;
    padding: 12px 28px 14px 10px;
    margin: 0 auto;
    border-radius: 10px;
    background-color: #fff;
}
@media screen and (max-width: 768px) {
    .footer_inner {
        padding-inline: 13px 8px;
    }
    .footer_about-franchise-salon {
        padding: 12px 12px 27px 5px;
        margin-inline-end: 5px;
    }
}
.footer_about-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 2.1rem;
    font-weight: bold;
    color: var(--text);
}
@media screen and (max-width: 768px) {
    .footer_about-title {
        font-size: 1.6rem;
    }
}
.footer_about-logo {
    display: inline-block;
    width: 222px;
}
@media screen and (max-width: 768px) {
    .footer_about-logo {
        width: 172px;
    }
}
.footer_about-desc {
    font-size: 1.6rem;
    line-height: 1.4;
    color: var(--text);
    padding-inline-start: 12px;
}
@media screen and (max-width: 768px) {
    .footer_about-desc {
        font-size: 1.3rem;
        letter-spacing: -0.02em;
        line-height: 1.5;
    }
}
.footer_company-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 953px;
    margin: 27px auto 0;
}
@media screen and (max-width: 768px) {
    .footer_company-info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 46px;
    }
}
.footer_info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.footer_info + .footer_info {
    margin-inline-start: 100px;
}
@media screen and (max-width: 768px) {
    .footer_info + .footer_info {
        margin-top: 52px;
        padding-left: 0;
        border: none;
        margin-inline-start: 0;
    }
}
.footer_company {
    font-size: 1.4rem;
    font-weight: bold;
}
.footer_head-office {
    margin-top: 8px;
    font-size: 1.4rem;
    font-weight: bold;
}
.footer_address {
    margin-top: 8px;
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 400;
}
.footer_contact {
    margin-top: 19px;
    border: 1px solid #fff;
    font-size: 1.3rem;
    border-radius: 999px;
}
@media screen and (max-width: 768px) {
    .footer_contact {
        display: block;
        width: max-content;
    }
}
.footer_contact-link {
    display: block;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.6;
    padding: 8px 15px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.07em;
    position: relative;
    text-align: center;
}
.footer_contact-link::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: 8px;
    height: 12px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background-color: #fff;
}
.footer_copyright {
    display: block;
    text-align: center;
    color: var(--white);
    font-size: 1.4rem;
    font-weight: bold;
    margin-block-start: 63px;
}
@media screen and (max-width: 768px) {
    .footer_contact {
        margin-block-start: 19px;
    }
    .footer_contact-link {
        padding: 7px 53px 6px 24px;
        letter-spacing: -0.02em;
        text-align: left;
    }
    .footer_contact-link::after {
        right: 15px;
    }
    .footer_copyright {
        font-size: 1.2rem;
        line-height: 1.3;
        font-weight: 400;
        margin-block-start: 88px;
    }
}

/* ========================
Helper
======================== */
@media screen and (max-width: 768px) {
    .only-pc {
        display: none;
    }
}

@media screen and (min-width: 769px) {
    .only-sp {
        display: none;
    }
}

@media screen and (min-width: 1024px) {
    .only-tab {
        display: none;
    }
}

.clear-fix {
    clear: both;
}

.marker {
    background: linear-gradient(to top, var(--yellow) 0%, var(--yellow) 30%, transparent 30%, transparent 100%);
}

.white-line {
    background-image: -webkit-linear-gradient(bottom, #fff 7px, transparent 7px);
    background-image: linear-gradient(to top, #fff 7px, transparent 7px);
}

.primary {
    color: var(--primary);
}

.secondary {
    color: var(--secondary);
}

.yellow {
    color: var(--yellow);
}

.E42D2D {
    color: #e42d2d;
}

.bold {
    font-weight: bold;
}

.black {
    font-weight: 900;
}
