@-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
======================== */
html {
    font-size: 62.5%;
}

body {
    --sans: 'Noto Sans JP', sans-serif;
    --serif: 'Noto Serif JP', serif;
    --roboto: 'Roboto', sans-serif;

    --text: #4d4d4d;
    --red: #c6183b;
    --yellow: #faf080;
    --gold: #daccaa;

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

img {
    max-width: 100%;
}

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

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

ul,
ol {
    list-style: none;
}

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

/* ========================
Common
======================== */
.btn {
    display: block;
    width: 372px;
    width: 100%;
    border-radius: 999px;
    overflow: hidden;
}
@media screen and (max-width: 768px) {
    .btn {
        min-height: 69px;
    }
}
.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 {
    zoom: 0.5;
    width: fit-content;
    margin: 0 auto;
}
@media screen and (max-width: 768px) {
    .sect-title {
    }
}

.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 {
    margin-left: -20px;
    margin-right: -20px;
}
.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: 29px;
    height: 116px;
    padding: 0;
    background-color: rgb(218 204 170 / 0.7);
    border: none;
    outline: none;
    color: transparent;
    cursor: pointer;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.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: 14px;
    height: 14px;
    border-right: 3px solid #fff;
    border-bottom: 3px 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: -20px;
}
.slick-next {
    right: -20px;
}
.slick-disabled {
    opacity: 0;
    cursor: auto;
}
.slick-disabled:hover,
.slick-disabled:focus {
    opacity: 0;
}
.slick-dotted.slick-slider {
    margin-bottom: 28px;
}
.slick-dots {
    display: block;
    position: absolute;
    bottom: -28px;
    width: 100%;
    text-align: center;
    margin-inline-start: -20px;
}
.slick-dots li {
    display: inline-block;
    margin: 0 4px;
    cursor: pointer;
    border-radius: 50%;
    overflow: hidden;
}
.slick-dots li button {
    display: block;
    width: 12px;
    height: 12px;
    padding: 0;
    background-color: var(--gold);
    border: 0;
    outline: none;
    color: transparent;
    font-size: 0px;
    line-height: 0px;
    cursor: pointer;
}
.slick-dots li.slick-active button {
    background-color: #fff;
}

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

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

.header {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    box-sizing: border-box;
    z-index: 5;
    padding-inline: 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.header .header-logo {
    width: fit-content;
    display: flex;
    gap: 37px;
    align-items: center;
    justify-content: center;
    padding: 13px 16px 12px 72px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    position: relative;
    background: #fff;
}
.header .header-logo .header_badge {
    position: absolute;
    left: -5px;
    top: 0;
    width: 78px;
}
.header .header-logo .header_brand-logo {
    width: 254px;
    display: inline-block;
}
.header .header-logo .header_fcs-logo {
    width: 153px;
    display: inline-block;
}
.header .header-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 64%;
    transform: translate(-50%, -50%) rotate(45deg);
    background-color: #000;
    width: 22px;
    height: 1px;
}
.header .header-logo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 64%;
    transform: translate(-50%, -50%) rotate(-45deg);
    background-color: #000;
    width: 22px;
    height: 1px;
}
.header-thanks-text {
    display: none;
}
@media (max-width: 768px) {
    .header {
        position: relative;
        width: 100%;
        padding: 0;
        box-sizing: border-box;
        background: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    .header .header-logo {
        gap: 28px;
        border-radius: 0;
        padding: 6px 20px 7px 67px;
        box-shadow: none;
        margin-inline: auto;
    }

    .header .header-logo::before {
        width: 15px;
        height: 1px;
        left: 57.5%;
    }

    .header .header-logo::after {
        width: 15px;
        height: 1px;
        left: 57.5%;
    }

    .header .header-logo .header_badge {
        width: 52px;
        left: 10px;
    }

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

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

.hero {
    position: relative;
    padding-top: 62px;
    padding-bottom: 0;
    background: url(../images/hero_bg.jpg) no-repeat center center / cover;
}
.hero_inner {
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    padding-inline-end: calc(71 / 1440 * 100vw);
}
.hero_main {
    width: calc(616 / 1440 * 100vw);
    max-width: 616px;
}
.hero_msg {
    width: 161px;
}
@media screen and (max-width: 768px) {
    .hero {
        padding-top: 25px;
        padding-bottom: 8px;
        background: url(../images/hero_bg-sp.jpg) no-repeat center center / cover;
    }
    .hero_inner {
        flex-direction: column-reverse;
        gap: 3px;
        padding: 0;
    }
    .hero_main {
        width: calc(100% + 20px);
        margin-inline-end: -20px;
    }
    .hero_msg {
        width: 100%;
    }
}

.hero-bottom {
    padding-top: 11px;
    padding-bottom: 7px;
    background: linear-gradient(to right, #e1c274 0%, #fff3d6 51%, #e1c274 100%);
    position: relative;
}
.hero-bottom_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}

.hero-bottom_catch {
    width: 263px;
    position: absolute;
    left: 0;
    top: 0;
    translate: 0 -50%;
}
.hero-bottom_text {
    font-family: var(--serif);
    font-weight: 700;
    font-size: 2.2rem;
    margin-block-start: 39px;
    display: inline-block;
    line-height: 1.5;
}
.hero-bottom_btn {
    width: calc(372 / 1440 * 100vw);
    min-width: 320px;
}
@media screen and (max-width: 768px) {
    .hero-bottom {
        padding-block: 32px 12px;
    }
    .hero-bottom_inner {
        flex-direction: column;
        align-items: center;
    }

    .hero-bottom_catch {
        width: 184px;
        left: 50%;
        top: 0;
        translate: -50% -100%;
    }
    .hero-bottom_text {
        font-size: 1.6rem;
        text-align: center;
        margin-block-start: 0;
    }
    .hero-bottom_text span {
        font-size: 2rem;
    }
    .hero-bottom_btn {
        width: 100%;
        max-width: 375px;
        margin-block-start: 10px;
    }
}

.statistics {
    padding-block: 37px 100px;
    background: linear-gradient(to bottom, #fff 58%, #e8e8e8 100%);
}
.statistics_inner {
    max-width: 860px;
    margin: 0 auto;
}

.statistics_top {
}

.statistics_bottom {
    margin-block-start: 9px;
}

.about {
    padding-block: 120px 160px;
    background: url(../images/about_bg.svg) no-repeat center top / cover;
    margin-block-start: -60px;
}

.about_body {
    display: flex;
    margin-block-start: 43px;
    gap: 29px;
}

.about_desc {
    width: calc(522 / 1000 * 100%);
    font-weight: 700;
    font-size: 1.8em;
    font-family: var(--serif);
    color: #fff;
}
.about_desc em {
    font-size: 2.4rem;
}

.about_text {
}

.about_list {
    padding: 19px 16px 18px 24px;
    background: #830e26;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-block: 14px 10px;
}

.about_item {
    position: relative;
    padding-inline-start: 44px;
    line-height: 25px;
}
.about_item em {
    font-size: 1.8rem;
}
.about_item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 28px;
    height: 25px;
    background: url(../images/check_icon.svg) no-repeat center center / contain;
}

.about_img {
    width: calc(452 / 1000 * 100%);
}

@media screen and (max-width: 768px) {
    .about {
        background: url(../images/about_bg-sp.svg) no-repeat top center / cover;
        padding-top: 62px;
        padding-bottom: 100px;
    }

    .about_body {
        flex-direction: column;
        gap: 32px;
        margin-block-start: 25px;
    }

    .about_desc {
        width: 100%;
        font-size: 1.4rem;
    }
    .about_desc em {
        font-size: 1.8rem;
    }
    .about_list {
        padding: 19px 16px;
    }
    .about_item {
        font-size: 1.6rem;
        padding-inline-start: 28px;
        line-height: 18px;
    }
    .about_item em {
        font-size: 1.6rem;
    }
    .about_item::before {
        width: 20px;
        height: 18px;
    }

    .about_img {
        width: calc(100% + 8px);
        margin-inline-start: -8px;
    }
}

.reasons {
    position: relative;
    padding-block: 104px 96px;
    background: url(../images/reasons_bg.svg) no-repeat center top / cover;
    margin-block-start: -80px;
}
@media screen and (max-width: 768px) {
    .reasons {
        background: url(../images/reasons_bg-sp.svg) no-repeat center top / cover;
        padding-top: 64px;
        padding-bottom: 90px;
        margin-block-start: -40px;
    }
}
.reasons_list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    margin-top: 40px;
    box-sizing: border-box;
    align-items: stretch;

}
@media screen and (max-width: 768px) {
    .reasons_list {
        flex-direction: column;
        gap: 24px;
        margin-block-start: 24px;
    }
}
.reasons_list-item {
    position: relative;
    box-shadow: 0 4px 3px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column-reverse;
    box-sizing: border-box;
    width: calc(50% - 20px);
    flex-grow: 1;
    min-height: 0;
    height: auto;
}
.reasons_item-body {
    padding: 16px 20px 24px 26px;
    background: #fff;
    display: grid;
    grid-template-columns: 88px 1fr;
    grid-template-rows: auto 1fr;
    text-align: left;
    column-gap: 10px;
    row-gap: 7px;
    flex-grow: 1;
    min-height: 0;
    height: 100%;
}
.reasons_item-index {
    aspect-ratio: 88 / 92;
    grid-column: 1;
    grid-row: 1 / -1;
}
.reasons_item-title {
    position: relative;
    font-size: 3rem;
    color: var(--red);
    font-weight: bold;
    line-height: 1.2;
    font-family: var(--serif);
    background: #f4ecd4;
    display: inline-block;
    padding: 2px 6px;
    width: fit-content;

    grid-column: 2;
    grid-row: 1;
}

.reasons_item-desc {
    font-size: 1.6rem;
    line-height: 1.5;
    grid-column: 2;
    grid-row: 2;
}

.reasons_item-img {
    aspect-ratio: 480 / 200;
    flex-shrink: 0;
    overflow: hidden;
}
.reasons_item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}

@media screen and (max-width: 768px) {
    .reasons_list-item {
        width: calc(100%);
    }
    .reasons_item-body {
        padding: 18px 16px 16px 11px;
        grid-template-columns: 61px 1fr;
        column-gap: 7px;
    }
    .reasons_item-title {
        font-size: 2.6rem;
        max-width: 100%;
        padding: 2px 4px;
    }
    .reasons_item-title span {
        font-size: 2.3rem;
    }
    .reasons_item-desc {
        font-size: 1.4rem;
    }
    .reasons_item-img {
        aspect-ratio: 335 / 140;
    }
}

.point {
    padding-block: 129px 119px;
    margin-block-start: -80px;
    background: url(../images/point_bg.svg) no-repeat center top / cover;
    position: relative;
    z-index: 3;
}

.point_title {
}
.point_lead {
    margin-block-start: 25px;
    text-align: center;
    font-size: 2.2rem;
    font-family: var(--serif);
    font-weight: 700;
    line-height: 1.25;
}

.point_lead-text {
}

.point_lead-list {
}

.point_lead-text2 {
    margin-block-start: 14px;
}
.point_lead-text2 strong {
    font-size: 3.2rem;
}
.point_lead-text2 em {
    background: linear-gradient(to top, var(--yellow) 0, var(--yellow) 45%, transparent 45%);
}

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

.point_example {
    margin-block-start: 27px;
    max-width: 755px;
}

.point_more {
    margin-block-start: 20px;
    width: 120px;
}

.point_points {
    margin-block-start: 8px;
}

.point_efficiency {
}
.point_addition {
    margin-block-start: 18px;
}

.point_option {
    margin-block-start: 50px;
    max-width: 814px;
}

.point_cta {
    max-width: 420px;
    margin-block-start: 40px;
}

@media screen and (max-width: 768px) {
    .point {
        background: url(../images/point_bg-sp.svg) no-repeat center top / cover;
        margin-block-start: -37px;
        padding-block: 64px 60px;
    }

    .point_example {
        margin-block-start: 38px;
        max-width: 755px;
    }
    .point_lead {
        font-size: 1.6rem;
    }
    .point_lead-list {
        margin-block-start: 8px;
    }
    .point_lead-text2 {
        margin-block-start: 9px;
        font-size: 1.8rem;
    }
    .point_lead-text2 strong {
        font-size: 2.4rem;
    }

    .point_more {
        margin-block-start: 15px;
        width: 120px;
    }

    .point_efficiency {
        margin-block-start: 8px;
        margin-inline-end: -20px;
    }

    .point_points {
        margin-block-start: 8px;
    }

    .point_addition {
        margin-block-start: 16px;
    }

    .point_option {
        margin-block-start: 31px;
        max-width: 814px;
    }

    .point_cta {
        max-width: 420px;
        margin-block-start: 31px;
    }
}
.testimonials {
    background: url(../images/testimonials_bg.svg) no-repeat center top / cover;
    padding-block: 100px 179px;
    margin-block-start: -80px;
    position: relative;
    z-index: 5;
}
.testimonials_body {
    display: flex;
    justify-content: center;
    gap: 45px;
    margin-block-start: 63px;
}

.testimonials_img {
    width: calc(240 / 1000 * 100%);
    box-shadow: 0 4px 3px rgba(0, 0, 0, 0.12);
}
.testimonials_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonials_content {
    width: calc(525 / 1000 * 100%);
}

.testimonials_label {
    display: block;
    font-weight: 700;
    font-size: 2.4rem;
    font-family: var(--serif);
    padding: 10px 19px;
    background: linear-gradient(to bottom, #c6183b 0%, #930320 100%);
    color: #fff;
    width: fit-content;
    text-align: center;
}

.testimonials_desc {
    display: block;
    margin-block-start: 9px;
    line-height: 1.8;
    font-size: 1.6rem;
}
.testimonials_desc em {
    color: var(--red);
    font-weight: 700;
    background: #fff;
}
@media screen and (max-width: 768px) {
    .testimonials {
        padding-block: 67px 84px;
        margin-block-start: -40px;
        background: url(../images/testimonials_bg-sp.svg) no-repeat center top / cover;
    }

    .testimonials_body {
        margin-block-start: 20px;
        gap: 26px;
        flex-direction: column;
        align-items: center;
    }

    .testimonials_img {
        width: calc(116 / 375 * 100vw);
    }

    .testimonials_content {
        width: 100%;
    }

    .testimonials_label {
        font-size: 2rem;
        padding: 6px 17px;
    }
    .testimonials_desc {
        font-size: 1.6rem;
    }
}
.revenue {
    background: url(../images/revenue_bg.svg) no-repeat center top / cover;
    margin-block-start: -80px;
    position: relative;
    z-index: 4;
    padding-block: 102px 136px;
}
.revenue_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 48px;
    margin-top: 40px;
}
@media screen and (max-width: 768px) {
    .revenue {
        background: url(../images/revenue_bg-sp.svg) no-repeat center top / cover;
        padding-block: 76px 80px;
        margin-block-start: -40px;
    }
    .revenue_list {
        margin-top: 30px;
        padding-inline: 20px;
    }
}
.revenue_list-item {
    padding: 12px 12px 14px;
    background-color: #fff;
    position: relative;
}

.revenue_label {
    width: 277px;
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% 0;
}

.revenue_item-inner {
    border: 2px solid var(--red);
    padding: 20px 17px 15px;
}

.revenue_achievement {
    zoom: 0.5;
    margin-inline: auto;
    text-align: center;
}

.revenue_download {
    position: relative;
    margin-top: 20px;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .revenue_list-item {
        padding: 8px;
    }
    .revenue_item-inner {
        padding: 28px 11px 11px;
    }
    .revenue_achievement {
        scale: 0.94;
    }
    .revenue_download {
        margin-top: 23px;
    }
}
.revenue_supp {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 82%;
    padding: 21px;
    background-color: #fff;
    border-radius: 6px;
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 1.4;
}
@media screen and (max-width: 768px) {
    .revenue_supp {
        padding: 11px;
        border-radius: 4px;
        font-size: 1.4rem;
    }
}

.flow {
    padding-block: 103px 62px;
    background: url(../images/flow_bg.svg) no-repeat center top / cover;
    position: relative;
    z-index: 7;
    overflow-x: clip;
    margin-block-start: -80px;
}
.flow_list-wrap {
    overflow: hidden;
    margin-top: 42px;
    padding-block: 6px;

}
@media screen and (max-width: 768px) {
    .flow {
        padding-block: 84px 25px;
        margin-block-start: -40px;
        background: url(../images/flow_bg-sp.svg) no-repeat center top / cover;
    }
    .flow_list-wrap {
        overflow: auto;
        margin-right: -17px;
        margin-top: 22px;
        padding-block: 8px;
    }
}
.flow_list {
    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;
    gap: 10px;
    padding-block: 6px;
}
@media screen and (max-width: 768px) {
    .flow_list {
        width: 630px;
        margin-bottom: 14px;
        margin-inline: auto;
        padding-inline-end: 20px;
        gap: 8px;
        justify-content: start;
        padding-block: 4px;
    }
}
.flow_list-first {
    width: calc(128 / 1000 * 100%);
    aspect-ratio: 128 / 120;
    display: flex;
    align-items: center;
}

.flow_list-first a {
    text-decoration: none;
    display: block;
}
.flow_list-item {
    width: calc(768 / 1000 * 100%);
}
@media screen and (max-width: 768px) {
    .flow_list-first {
        width: 86px;
    }
    .flow_list-item {
        width: 533px;
    }
}

.push {
    padding-top: 46px;
    padding-bottom: 123px;
    background: linear-gradient(to bottom, #c6183b 0%, #930320 100%);
}
@media screen and (max-width: 768px) {
    .push {
        padding-top: 32px;
        padding-bottom: 92px;
    }
}
.push_title {
    text-align: center;
    color: #fff;
    font-size: 2.7rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.03em;
    font-family: var(--serif);
}
.push_title strong {
    line-height: 1.41;
    font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
    .push_title {
        font-size: 1.8rem;
        white-space: nowrap;
    }

    .push_title strong {
        font-size: 2.3rem;
    }
}
.push_list {
    position: relative;
    width: 100%;
    margin: 40px auto 0;
    max-width: 858px;
}
@media screen and (max-width: 768px) {
    .push_list {
        margin-top: 21px;
        padding-block: 3px;
    }
}
.push_list-item {
    position: relative;
    padding-left: 41px;
    color: #fff;
    font-size: 2.3rem;
    line-height: 1.4;
    letter-spacing: 0.05em;
    max-width: 604px;
    margin-inline-start: 110px;
    font-family: var(--serif);
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .push_list-item {
        font-size: 1.8rem;
        margin-inline-start: 14px;
        padding-left: 36px;
    }
}
.push_list-item:not(:first-child) {
    margin-top: 18px;
}
.push_list-item::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    width: 21px;
    height: 21px;
    background-color: var(--yellow);
}
.push_list-item::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 11px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    height: 5px;
    width: 10px;
    border-left: 2px solid #b61233;
    border-bottom: 2px solid #b61233;
}
.push_additional {
    max-width: 913px;
    margin-inline-start: 16px;
}
@media screen and (max-width: 768px) {
    .push_additional {
        margin-inline-start: -20px;
    }

}

.request {
    position: relative;
    padding-top: 100px;
    padding-bottom: 88px;
    background: #e8e8e8;
}
.request_title {
    position: absolute;
    top: -95px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    max-width: 760px;
}
@media screen and (max-width: 768px) {
    .request {
        padding-block: 74px 55px;
    }
    .request_title {
        top: -68px;
        padding-inline: 20px;
        width: calc(100vw - 40px);
    }
    .request_title-inner {
        max-width: 370px;
        margin-inline: auto;
    }
    .push_list-item::before {
        top: 50%;
        translate: 0 -50%;
    }
    .push_list-item::after {
        top: calc(50% - 2px);
        translate: 0 -50%;
    }
}
.request_note {
    text-align: center;
}
.request_note span {
    color: #ff2667;
}

.request_note-mail {
    display: inline;
    font-size: 1.6rem;
    line-height: 1.5;
}
@media screen and (max-width: 768px) {
    .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;
        line-height: 2;
        font-size: 1.2rem;
    }
}
.request_panel {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 858px;
    padding: 29px 85px 65px 70px;
    margin: 28px auto 0;
    border-radius: 6px;
    /* -webkit-box-shadow: 0 0 11px rgba(45, 45, 45, 0.21);
  box-shadow: 0 0 11px rgba(45, 45, 45, 0.21); */
    background: #fff;
}
@media screen and (max-width: 768px) {
    .request_panel {
        margin-top: 12px;
        padding: 0;
        background: transparent;
    }
}
.request_appeal {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 9px 23px;
    margin: 0 auto;
    background-color: var(--red);
    border-radius: 30px;
    color: var(--yellow);
    font-size: 1.8rem;
    white-space: nowrap;
    font-weight: 600;
}
@media screen and (max-width: 768px) {
    .request_appeal {
        padding: 11px 19px;
        font-size: 1.5rem;
    }
}
.request_appeal-em {
    font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
    .request_appeal-em {
        font-size: 2rem;
    }
}
.request_require-note {
    text-align: right;
    font-size: 1.4rem;
}
.request_require-note span {
    color: #ff2667;
}
@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 .form-text {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 52px;
    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-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;
}
@media screen and (max-width: 768px) {
    .form .form-text {
        background: #fff;
    }
}
.form .form-textarea {
    height: 160px;
}
.form .form-select-wrap {
    width: 100%;
    max-width: 240px;
}

.form .form-select {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 52px;
    padding: 12px 14px 10px;
    background-color: #fafafa;
    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: var(--black);
    font-size: 1.6rem;
    line-height: 1.5;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 5px;
    background-color: #fafafa;
    width: 100%;
    border: 2px solid var(--red);
}
.form .form-select--initial {
    background-color: #fff;
    color: #393939;
}
@media screen and (max-width: 768px) {
    .form .form-select-wrap {
        max-width: 200px;
        margin-block-start: 6px;
    }
    .form .form-select {
        height: 49px;
        margin: 0;
    }
}
.form .form-zip-btn-wrap {
    border-radius: 999px;
    padding: 2px;
    background: linear-gradient(to bottom, #c6183b 0%, #930320 100%);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
}
.form .form-zip-btn {
    padding: 15px 32px;
    background: none;
    color: var(--red);
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.1428571429;
    cursor: pointer;
    border-radius: 999px;
    border: none;
    background: #fff;
}
@media screen and (max-width: 768px) {
    .form .form-zip-btn {
        padding: 16px 14px;
    }
}
.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-block-start: 8px;
    }
    .form .wpcf7-form-control-wrap:has(#your-zip),
    .form .wpcf7-form-control-wrap:has(button) {
        margin-block-start: 0;
    }
}

.form_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}
@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: 0;
        margin-left: 0;
    }
}
.form_item--left {
    float: left;
    width: 51.5%;
}
@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: 48.5%;
}
@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;
}
.form_title--short {
    width: 100px;
}
@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 {
        max-width: 200px;
        margin-block-start: 0;
    }
}
.form .form_item--select .wpcf7-form-control-wrap::after {
    content: '';
    display: block;
    position: absolute;
    top: 24px;
    right: 12px;
    width: 10px;
    height: 6px;
    background: linear-gradient(to bottom, #c6183b 0%, #930320 100%);
    -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 {
        margin-top: 0;
    }
    .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: 27px;
    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: 3px solid var(--blue);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: inset 3px 3px 2px rgba(0, 0, 0, 0.25);
}
.form .form_item--radio .wpcf7-list-item-label::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 6px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    background-color: var(--blue);
    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--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: #606060;
    -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: 36px;
    font-size: 1.4rem;
    line-height: 1.7857142857;
    cursor: pointer;
}
@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: 25px;
    height: 25px;
    background-color: #fff;
    border: 2px solid #606060;
    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: 45%;
    left: 6px;
    -webkit-transform: translateY(-60%) rotate(-45deg);
    transform: translateY(-60%) rotate(-45deg);
    width: 12px;
    height: 6px;
    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;
        width: 10px;
        height: 5px;
    }
}
.form .form_item--optional:not(._) {
    margin-top: 34px;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .form .form_item--optional:not(._) {
        margin-top: 37px;
    }
}
@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 {
}
@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: 8px;
    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: 24px;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .form_privacy-policy-wrap {
        margin-top: 16px;
    }
}
.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;
        padding-inline: 23px;
    }
}
.form_submit-wrap {
    margin-top: 16px;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .form_submit-wrap {
        margin-top: 24px;
    }
}
.form_submit {
    position: relative;
    width: 300px;
    padding-top: 16px;
    padding-bottom: 18px;
    outline: none;
    border: none;
    border-radius: 40px;
    background: linear-gradient(to bottom, #c6183b 0%, #930320 100%);
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.04em;
    cursor: pointer;
    padding-inline-end: 20px;
}
@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: 50%;
    right: 36px;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
    width: 10px;
    height: 10px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
}
@media screen and (max-width: 768px) {
    .form_submit::after {
        right: 20px;
        width: 10px;
        height: 10px;
    }
}

.footer {
    padding-top: 35px;
    padding-bottom: 30px;
    background: linear-gradient(to bottom, #c6183b 0%, #930320 100%);
    color: #fff;
}
@media screen and (max-width: 768px) {
    .footer {
        padding-top: 24px;
        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: 860px;
    padding: 14px 25px;
    margin: 0 auto;
    border-radius: 5px;
    background-color: #fff;
    color: #393939;
}
@media screen and (max-width: 768px) {
    .footer_about-franchise-salon {
        padding: 16px 13px 16px 17px;
    }
}
.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;
}
@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 {
    margin-top: 4px;
    font-size: 1.6rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: #393939;
}
@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: 860px;
    margin: 25px 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: 33px;
    }
}
.footer_info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.footer_info + .footer_info {
    margin-inline-start: 62px;
}
@media screen and (max-width: 768px) {
    .footer_info + .footer_info {
        margin-top: 43px;
        padding-left: 0;
        border: none;
        margin-inline-start: 0;
    }
}
.footer_company {
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.07em;
}
.footer_head-office {
    margin-top: 8px;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.07em;
}
.footer_address {
    margin-top: 8px;
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.07em;
}
.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: 11px 28px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.07em;
    position: relative;
}
.footer_contact-link::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 16px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px;
    height: 12px;
    background-color: #fff;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.footer_copyright {
    display: block;
    text-align: center;
    color: var(--white);
    font-size: 1.4rem;
    font-weight: bold;
    margin-block-start: 24px;
}
@media screen and (max-width: 768px) {
    .footer_contact {
        margin-block-start: 37px;
    }
    .footer_contact-link {
        padding: 8px 35px 9px 19px;
    }
    .footer_copyright {
        font-size: 1.2rem;
        margin-block-start: 56px;
    }
}

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

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

.clear-fix {
    clear: both;
}

.marker {
    background-color: #fff48f;
}

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

.primary {
    color: #009533;
}

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

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

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

.bold {
    font-weight: bold;
}
