@-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 {
    --ff-sub: 'Shippori Mincho', serif;
    --ff-main: 'Noto Sans JP', sans-serif;

    --text: #343434;
    --primary: #503326;
    --secondary: #f6c639;
    --orange: #ed8600;
    --yellow: #fdf681;

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

img {
    max-width: 100%;
}

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

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: 10px 12px;
    padding-left: 90px;
    padding-right: 66px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    min-height: 66px;
    background-color: #fe5518;
    border-radius: 40px;
    box-shadow: 0 5px 0 #cd3c09;
    color: #fff;
    font-size: 2.5rem;
    text-decoration: none;
    line-height: 1.3;
    letter-spacing: 0.2em;
    text-shadow: 0 2px 0 #cd3c09;
    white-space: nowrap;
}
@media screen and (max-width: 768px) {
    .btn {
        min-height: 62px;
        padding-left: 62px;
        padding-right: 43px;
        font-size: 2rem;
        box-shadow: 0 3px 0 #cd3c09;
    }
}
.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 28px;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 17px;
    height: 19px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background: #fff;
}
@media screen and (max-width: 768px) {
    .btn::after {
        right: 12px;
        width: 10px;
        height: 12px;
    }
}
.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: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    background-color: #fff334;
    border-radius: 50%;
    letter-spacing: normal;
}
@media screen and (max-width: 768px) {
    .btn_appeal {
        width: 42px;
        height: 42px;
    }
}
.btn_appeal-inner {
    text-align: center;
    color: #fe5518;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1;
    text-shadow: none;
}
.btn_appeal-inner em {
    font-size: 2.5rem;
}

@media screen and (max-width: 768px) {
    .btn_appeal-inner {
        font-size: 1rem;
    }
    .btn_appeal-inner em {
        font-size: 2rem;
    }
}
.btn_recommend {
    display: block;
    font-size: 1.5rem;
    letter-spacing: 0.12em;
    margin-inline: auto;
    width: max-content;
}
@media screen and (max-width: 768px) {
    .btn_recommend {
        font-size: 1.2rem;
    }
}
.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 {
    position: relative;
}

.sect-title_main {
    font-weight: 700;
    font-size: clamp(2rem, 4.44vw, 4rem);
    text-align: center;
    font-family: var(--ff-sub);
    letter-spacing: 0.1em;
    padding-block-start: 60px;
    z-index: 2;
    position: relative;
    color: var(--primary);
}
.sect-title_sub {
    position: absolute;
    left: 50%;
    top: 0;
    translate: -50% 0;
}

#voice .sect-title_main {
    font-size: clamp(3rem, 5vw, 4.5rem);
}
#flow .sect-title_main,
#achievement .sect-title_main {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
}

@media screen and (max-width: 768px) {
    .sect-title {
        font-size: 2.4rem;
        line-height: 1.8;
    }
}
@media screen and (max-width: 620px) {
    .sect-title_main {
        padding-block-start: 40px;
    }
    .sect-title_sub {
        scale: 0.5;
    }
}

.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: -17px;
    margin-right: -17px;
}
.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: 32px;
    height: 84px;
    padding: 0;
    background-color: var(--primary);
    border: none;
    outline: none;
    color: transparent;
    cursor: pointer;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.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: 8px;
    height: 8px;
    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: -17px;
}
.slick-next {
    right: -17px;
}
.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: -30px;
    width: 100%;
    text-align: center;
}
.slick-dots li {
    display: inline-block;
    margin: 0 6px;
    cursor: pointer;
}
.slick-dots li button {
    display: block;
    width: 14px;
    height: 14px;
    padding: 0;
    border-radius: 50%;
    background-color: #efebe1;
    border: 0;
    outline: none;
    color: transparent;
    font-size: 0px;
    line-height: 0px;
    cursor: pointer;
}
.slick-dots li.slick-active button {
    background-color: var(--primary);
}

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

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

.header {
    max-width: 1000px;
    width: fit-content;
    box-shadow: 0px 0px 54px rgba(0, 0, 0, 0.08);
    position: absolute;
    top: 0;
    left: min(calc(60 / 1440 * 100vw), 60px);
    background-color: #fff;
    box-sizing: border-box;
    z-index: 5;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.header .header-logo {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    padding: 9px;
    position: relative;
}
.header .header-logo .header_brand-logo {
    width: 204px;
    display: inline-block;
}
.header .header-logo .header_fcs-logo {
    width: 159px;
    display: inline-block;
}
.header .header-logo::before {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    background-color: #000;
    width: 18px;
    height: 2px;
}
.header .header-logo::after {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    background-color: #000;
    width: 18px;
    height: 2px;
}
@media screen and (max-width: 768px) {
    .header {
        position: relative;
        border-bottom-right-radius: 17px;
        width: 100%;
        left: 0;
        right: 0;
        top: 0;
        border-radius: 0;
    }
    .header .header-logo {
        flex-direction: row;
        justify-content: center;
        margin-inline: auto;
        gap: 35px;
        padding: 7px 27px 7px 21px;
    }

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

    .header .header-logo::before,
    .header .header-logo::after {
        left: 55%;
    }

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

    .header .header-logo::before {
        width: 12px;
        height: 1px;
    }

    .header .header-logo::after {
        width: 12px;
        height: 1px;
    }
}
.hero {
    position: relative;
    padding-top: 32px;
    padding-bottom: 88px;
    background: url(../images/hero_background.png) left top/auto calc(100% - 80px) no-repeat;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% 0;
    width: min(85vw, 1236px);
    background: url(../images/hero_deco.png) center/ contain no-repeat;
    z-index: 2;
    aspect-ratio: 1236 / 250;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 0, #fff0d3 45%, #fff0d3 62%, transparent 72%);
}

.hero_inner {
    display: flex;
    flex-direction: column;
    max-width: 860px;
    position: relative;
    z-index: 2;
    margin-inline-start: 265px;
}
.hero_main {
    aspect-ratio: 770 / 410;
    width: min(calc(780 / 1440 * 100vw), 780px);
}

.hero_medals {
    aspect-ratio: 467 / 147;
    width: min(30vw, 467px);
    margin-inline-start: 55px;
}

.hero_bg {
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
}
.hero_bg-item {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: opacity 1s linear;
    transition: opacity 1s linear;
    opacity: 0;
}
.hero_bg-img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}
.hero_bg-img img {
    height: 100%;
    -o-object-position: right;
    object-position: right;
    -o-object-fit: cover;
    object-fit: cover;
}
.hero_bg-item.show {
    opacity: 1;
    z-index: 1;
}
.hero_bg-item.hide {
    opacity: 1;
    z-index: 0;
}
.hero_bg-item.active .hero_bg-img {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: -webkit-transform 7s linear;
    transition: -webkit-transform 7s linear;
    transition: transform 7s linear;
    transition: transform 7s linear, -webkit-transform 7s linear;
}
@media screen and (max-width: 768px) {
    .hero {
        padding-top: 18px;
        padding-bottom: 0;
        overflow: hidden;
        padding-inline: 0;
        background: url(../images/hero_background-sp.jpg) center 26px/100% auto no-repeat;
    }
    .hero::before {
        width: 150%;
    }
    .hero::after {
        background: none;
        width: 90px;
        height: 90px;
        background: url(../images/hero_products.png) center/ contain no-repeat;
        position: absolute;
        left: auto;
        bottom: auto;
        right: 4px;
        top: 35%;
    }
    .hero_inner {
        margin-inline-start: 0;
        align-items: center;
        gap: 10px;
        padding-inline: 10px;
    }
    .hero_main {
        aspect-ratio: 722/497;
        width: 100%;
        max-width: 420px;
        margin-inline: auto;
    }
    .hero_medals {
        width: calc(320 / 375 * 100vw);
        max-width: 380px;
        margin-inline-start: 0;
    }

    .hero_bg {
        position: relative;
        aspect-ratio: 375 / 170;
        margin-block-start: 8px;
    }
    .hero_bg-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        opacity: 0.25;
        z-index: 3;
    }
    .hero_bg-item {
        inset: 0;
        top: 2px;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
}

.hero-bottom {
    position: relative;
    z-index: 2;
    margin-block-start: -80px;
    padding-top: 12px;
    padding-bottom: 16px;
    background-color: #edecd8;
}
.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: 1000px;
}
.hero-bottom_text {
    font-size: clamp(1.7rem, 2.444vw, 2.2rem);
    letter-spacing: 0.025em;
    font-weight: 700;
    line-height: 1.5;
    font-feature-settings: 'palt' 1;
    padding-inline-start: min(calc(60 / 1440 * 100vw), 60px);
}
.hero-bottom_cta {
    flex-shrink: 0;
}
@media screen and (max-width: 768px) {
    .hero-bottom {
        margin-block-start: 0;
        padding-bottom: 22px;
    }
    .hero-bottom_inner {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

.about {
    padding-bottom: 100px;
    background: url(../images/about_bg.jpg) center bottom/ cover no-repeat;
}
@media screen and (max-width: 768px) {
    .about {
        padding-top: 20px;
        padding-bottom: 48px;
        background-image: url(../images/about_bg-sp.jpg);
    }
}
.about_desc {
    margin-top: 60px;
    font-size: 1.8rem;
    line-height: 2;
    letter-spacing: 0.05em;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .about_desc {
        margin-top: 35px;
        font-size: 1.4rem;
    }
}

@keyframes loop-slider {
    0% {
        translate: 0% 0%;
    }
    100% {
        translate: -50% 0%;
    }
}
.media {
    text-align: center;
    position: relative;
}
.media_top {
    background: var(--secondary);
    padding-block: 40px 43px;
    font-size: clamp(1.8rem, 3.33vw, 3.6rem);
    font-weight: 700;
    color: var(--primary);
    position: relative;
}
.media_top::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 3.5%;
    width: calc(220 / 1440 * 100vw);
    min-width: 52px;
    aspect-ratio: 82 / 101;
    background: url(../images/media_product-img.png) center/ contain no-repeat;
}
.media_top em {
    font-family: var(--ff-sub);
    font-size: clamp(2rem, 4.44vw, 4rem);
    display: inline-block;
    margin-block-start: 16px;
    position: relative;
    padding-inline: 0.75em;
}
.media_top em::before,
.media_top em::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    width: 30px;
    height: 60px;
    background: url(../images/media_text-deco.png) center/ contain no-repeat;
}
.media_top em::after {
    left: auto;
    right: 0;
    scale: -1 1;
}
.media_top strong {
    font-size: clamp(2.5rem, 5.778vw, 5.2rem);
}
.media_top span {
    font-size: clamp(1.7rem, 4.44vw, 4rem);
}
.media_bottom {
    padding-block: 100px;
    background: #edecd8;
    overflow: hidden;
}

.media_slider {
    display: flex;
    align-items: center;
    gap: 30px;
    width: max-content;
    padding-inline: 30px;
    will-change: translate;
    animation: loop-slider 20s linear infinite;
}

.media_image {
    aspect-ratio: 400 / 280;
    width: calc(400 / 1440 * 100vw);
    min-width: 330px;
}

@media screen and (max-width: 768px) {
    .media_top {
        padding-block: 30px 32px;
    }
    .media_top::before {
        bottom: -2px;
        left: 5px;
    }
    .media_top em {
        letter-spacing: -0.075em;
        padding-inline: 1.1em;
    }
    .media_top em::before,
    .media_top em::after {
        background-image: url(../images/media_text-deco-sp.png);
        height: 95%;
        top: 60%;
    }

    .media_bottom {
        padding-block: 35px 50px;
    }

    .media_image {
        width: 265px;
    }
}
.reasons {
    position: relative;
    padding-block: 85px 90px;
    background: url(../images/reasons_bg.jpg) center/ cover no-repeat;
}

@media screen and (max-width: 768px) {
    .reasons {
        padding-block: 48px;
    }
}
.reasons_title {
}
.reasons_title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.reasons_title-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.reasons_title-l1 {
    font-size: 2.4rem;
    color: var(--primary);
    font-family: var(--ff-sub);
    font-weight: 600;
}

.reasons_title-l2 {
    font-weight: 600;
    display: block;
    width: max-content;
    font-size: 3.6rem;
    color: #fff;
    background: url(../images/reasons_title-bg.png) center/ contain no-repeat;
    aspect-ratio: 480 / 58;
    width: 480px;
    font-family: var(--ff-sub);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason_title-lead {
    color: var(--primary);
    font-weight: 700;
    font-size: 2.4rem;
}

.reasons_list {
    display: flex;
    flex-direction: column;
    gap: 58px;
    position: relative;
    margin-top: 16px;
}

.reasons_list-item {
    display: grid;
    gap: 20px 38px;
    grid-template-columns: 550fr 280fr;
    grid-template-rows: 1fr auto;
}

.reasons_item-index {
    grid-area: 1/1/2/2;
    aspect-ratio: 210 / 101;
    width: calc(210 / 618 * 100%);
}

.reasons_item-body {
    grid-area: 2/1/3/2;
}

.reasons_item-title {
    font-weight: 600;
    font-size: 3rem;
    font-family: var(--ff-sub);
    letter-spacing: 0.05em;
    padding-block-end: 10px;
    border-block-end: 2px solid var(--secondary);
}

.reasons_item-desc {
    font-size: 2rem;
    font-weight: 700;
    line-height: 2;
    margin-block-start: 9px;
    font-feature-settings: 'palt' 1;
}

.reasons_item-img {
    grid-area: 1/2/-1/-1;
    aspect-ratio: 300 / 230;
    min-width: 0;
    place-self: end;
}
.reasons_item-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.reasons_list-item:nth-child(2n) {
    grid-template-columns: 280fr 550fr;
}
.reasons_list-item:nth-child(2n) .reasons_item-index {
    grid-area: 1/2/2/3;
}
.reasons_list-item:nth-child(2n) .reasons_item-body {
    grid-area: 2/2/3/3;
}
.reasons_list-item:nth-child(2n) .reasons_item-img {
    grid-area: 1/1/-1/2;
    place-self: start;
}
@media screen and (max-width: 768px) {
    .reasons_title-wrap {
        gap: 8px;
    }
    .reasons_title-inner {
        gap: 8px;
    }

    .reasons_title-l1 {
        font-size: 1.8rem;
    }

    .reasons_title-l2 {
        font-size: 2.4rem;
        aspect-ratio: 578 / 69;
        width: calc(289 / 375 * 100vw);
        max-width: 340px;
    }

    .reason_title-lead {
        font-size: 2rem;
    }
    .reasons_list {
        gap: 25px;
        margin-block-start: 23px;
    }
    .reasons_list-item {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto auto;
        gap: 0;
    }
    .reasons_item-index {
        grid-area: 1/1/2/-1;
        aspect-ratio: 73 / 29;
        width: calc(146 / 340 * 100%);
    }
    .reasons_item-body {
        grid-area: 3/1/-1/-1;
        margin-block-start: 12px;
        text-align: center;
    }
    .reasons_item-title {
        font-size: 2.4rem;
    }
    .reasons_item-desc {
        font-size: 1.7rem;
        line-height: 1.8;
    }
    .reasons_item-img {
        grid-area: 2/1/3/-1;
        aspect-ratio: 672 / 378;
        width: calc(100% - 6px);
        place-self: center;
        margin-block-start: 5px;
    }
    .reasons_list-item:nth-child(2n) {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto auto;
        gap: 0;
    }
    .reasons_list-item:nth-child(2n) .reasons_item-index {
        grid-area: 1/1/2/-1;
    }
    .reasons_list-item:nth-child(2n) .reasons_item-body {
        grid-area: 3/1/-1/-1;
    }
    .reasons_list-item:nth-child(2n) .reasons_item-img {
        grid-area: 2/1/3/-1;
    }
}

.support {
    background: var(--primary);
    padding-block: 98px 0;
}

.support_inner {
}

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

.support_title-l1 {
    display: flex;
    justify-content: center;
    padding-block-start: 20px;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary);
    background: url(../images/support_title-bg.png) center/ 100% auto no-repeat;
    aspect-ratio: 400 / 70;
    width: 400px;
}

.support_title-l2 {
    font-size: 3.6rem;
    color: #fff;
    font-family: var(--ff-sub);
}

.support_title-l3 {
    font-size: 4.5rem;
    color: #fff;
    margin-block-start: 20px;
    padding-block-end: 16px;
    font-family: var(--ff-sub);

    /* 破線 */
    background-image: linear-gradient(to right, #fff 8px, transparent 9px);
    background-size: 17px 3px;
    background-repeat: repeat-x;
    background-position: left bottom;
}

.support_figure {
    margin-block-start: 70px;
    aspect-ratio: 220 / 197;
    width: 100%;
    max-width: 694px;
    margin-inline: auto;
}

@media screen and (max-width: 768px) {
    .support {
        padding-block: 50px 0;
        padding-inline: 15px;
    }
    .support_inner {
    }
    .support_title-l1 {
        padding-block-start: 12px;
        font-size: 1.7rem;
        aspect-ratio: 437 / 76;
        width: calc(218 / 375 * 100vw);
        max-width: 280px;
    }

    .support_title-l2 {
        font-size: 2.2rem;
    }

    .support_title-l3 {
        font-size: 2.5rem;
        margin-block-start: 10px;
        padding-block-end: 8px;
        white-space: nowrap;

        /* 破線 */
        background-image: linear-gradient(to right, #fff 5px, transparent 6px);
        background-size: 11px 2px;
        background-repeat: repeat-x;
        background-position: left bottom;
    }

    .support_figure {
        margin-block-start: 27px;
        aspect-ratio: 220 / 197;
        width: 100%;
        margin-inline: auto;
    }
}

.testimonials {
    background: url(../images/voice_deco1.png) 24px 8%/277px auto no-repeat,
        url(../images/voice_deco2.png) right 96%/434px auto no-repeat, var(--secondary);
    padding-block-end: 54px;
}
.testimonials_inner {
    max-width: 1000px;
}
.testimonials_list {
    margin-block-start: 60px;
    gap: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.testimonials_list-item {
    background: #efebe1;
    border-radius: 10px;
    padding: 16px 32px 40px 16px;
}

.testimonials_item-head {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 105px;
    position: relative;
}
.testimonials_item-head::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 24px;
    width: calc(300 / 423 * 100%);
    height: 2px;
    background: var(--primary);
}

.testimonials_item-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: calc(38 / 22);
    width: max-content;
    height: max-content;
    padding: 1px 20px;
    background: #fff;
    border-radius: 999em;
    margin-block-start: 12px;
}

.testimonials_item-img {
    aspect-ratio: 1;
    width: 105px;
}

.testimonials_item-body {
    font-size: 1.6rem;
    line-height: calc(30 / 16);
    font-weight: 500;
    margin-block-start: 8px;
    padding-inline-start: 14px;
}
.testimonials_cta {
    margin-block-start: 50px;
    display: grid;
    place-items: center;
}
@media screen and (max-width: 768px) {
    .testimonials {
        padding-inline: 7px;
        padding-top: 23px;
        padding-bottom: 40px;
        background: url(../images/voice_deco1.png) 6px 8%/102px auto no-repeat,
            url(../images/voice_deco2-sp.png) 23px 85%/75px auto no-repeat,
            url(../images/voice_deco3-sp.png) calc(100% - 4px) 86%/110px auto no-repeat, var(--secondary);
    }
    .testimonials_list {
        display: block;
        padding-inline: 20px;
        margin-block-start: 10px;
    }
    .testimonials_list-item {
        margin: 10px;
        padding: 22px 14px 30px;
    }
    .testimonials_item-head {
        grid-template-columns: 1fr 80px;
    }
    .testimonials_item-head::before {
        bottom: 16px;
    }
    .testimonials_item-title {
        font-size: 1.7rem;
    }
    .testimonials_item-img {
        width: 80px;
    }
    .testimonials_item-body {
        padding-inline-start: 0;
    }
    .testimonials_cta {
        margin-block-start: 96px;
    }

    .testimonials .slick-prev,
    .testimonials .slick-next {
        right: -7px;
    }
    .testimonials .slick-prev {
        left: -7px;
    }

    .testimonials .slick-dots {
        margin-inline-start: -17px;
    }
}

.revenue {
    padding-block-end: 100px;
    background: url(../images/revenue_bg.jpg) center/ cover no-repeat;
}
.revenue_inner {
    max-width: 1000px;
}
.revenue_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 49px;
    margin-top: 64px;
}
@media screen and (max-width: 768px) {
    .revenue {
        padding-block: 10px 40px;
    }
    .revenue_list {
        margin-top: 20px;
    }
}
.revenue_list-item {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: calc(50% - 24px);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 54px 16px 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 5px 8px 20px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
    .revenue_list-item {
        padding: 44px 15px 22px 20px;
        margin: 20px 20px 10px 24px;
        box-shadow: none;
    }
}
.revenue_label {
    position: absolute;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    background: url(../images/revenue_label-bg.png) center/ contain no-repeat;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    line-height: calc(26 / 20);
    text-align: center;
    aspect-ratio: 212/72;
    width: 212px;
    padding-block-start: 16px;
    top: 0;
    left: 0;
    translate: -12px -15px;
    text-transform: uppercase;
}

.revenue_example::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 20px;
    height: 10px;
    background-color: #009533;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.revenue_achievement {
    margin-top: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding-inline: 28px;
}
.revenue_achievement-text {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--secondary);
    border-radius: 8px;
    display: block;
    padding: 8px 18px;
    width: max-content;
    white-space: nowrap;
    font-family: var(--ff-main);
}
@media screen and (max-width: 768px) {
    .revenue_label {
        font-size: 1.5rem;
        width: 150px;
        padding-inline: 14px;
        padding-block-start: 12px;
    }
    .revenue_achievement {
        gap: 16px;
        padding-inline: 10px;
    }
    .revenue_achievement-text {
        font-size: 2.1rem;
    }
}
.revenue_achievement-num {
    display: block;
    aspect-ratio: 254 / 75;
    width: 254px;
}
@media screen and (max-width: 768px) {
    .revenue_achievement-num {
        width: 380px;
    }
}
.revenue_download {
    position: relative;
    margin-top: 20px;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .revenue_download {
        margin-top: 12px;
    }
}
.revenue_supp {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 26px 10px;
    background-color: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    color: #000;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.4;
}
@media screen and (max-width: 768px) {
    .revenue_supp {
        padding: 12px 8px;
        border-radius: 4px;
        font-size: 1.3rem;
    }
}

.appeal {
    text-align: center;
    padding-block-end: 0;
    background: url(../images/appeal_bg.jpg) no-repeat center/cover;
    padding-block-start: 100px;
}

.appeal_inner {
    max-width: 1000px;
}

.appeal-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.appeal_item {
    border: 4px solid var(--secondary);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.appeal_head {
    box-sizing: border-box;
    font-size: 3.2rem;
    display: block;
    background: var(--secondary);
    color: var(--primary);
    padding: 24px 4px;
    font-family: var(--ff-sub);
    min-height: 112px;
    font-weight: 700;
    display: grid;
    place-items: center;
    letter-spacing: -0.01em;
}

.appeal_desc {
    flex-grow: 1;
    font-size: 2rem;
    padding: 31px 16px 57px;
    background: #fff;
    line-height: 1.5;
    font-weight: 500;
}

.appeal_bottom {
    margin-block-start: 86px;
    margin-inline: 14px;
}

.appeal_bottom-text {
    color: #fff;
    background: var(--primary);
    border-top-right-radius: 24px;
    border-top-left-radius: 24px;
    padding: 33px 20px;
    font-family: var(--ff-sub);
    font-size: 3.6rem;
    line-height: calc(48 / 36);
}

@media screen and (max-width: 768px) {
    .appeal {
        padding-block-end: 0;
        padding-block-start: 58px;
        background: url(../images/appeal_bg-sp.jpg) no-repeat center/cover;
    }
    .appeal-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 35px;
        max-width: 380px;
        margin-inline: auto;
    }

    .appeal_item {
        border: 2px solid var(--secondary);
        border-radius: 7px;
    }

    .appeal_head {
        font-size: 2.8rem;
        padding: 18px 4px 22px;
        font-family: var(--ff-sub);
        min-height: 100px;
    }

    .appeal_desc {
        font-size: 1.7rem;
        padding: 25px 16px 29px;
    }

    .appeal_bottom {
        margin-block-start: 32px;
        margin-inline: 0;
    }

    .appeal_bottom-text {
        font-size: 1.7rem;
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
        padding: 20px 16px 22px;
    }
}

.cta {
    background: #fff;
    padding-block: 37px 50px;
    padding-inline: 17px;
    max-width: 1000px;
    margin-inline: auto;
    text-align: center;
}

.cta_title {
    font-size: clamp(2rem, 2.7778vw, 4rem);

    color: var(--primary);
    font-weight: 700;
    font-family: var(--ff-sub);
    letter-spacing: -0.085em;
    padding-inline: 48px;
    position: relative;
    width: max-content;
    margin-inline: auto;
}

.cta_title::before,
.cta_title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    background: url(../images/media_text-deco.png) center/ contain no-repeat;
    aspect-ratio: 55 / 109;
    width: 28px;
}
.cta_title::after {
    left: auto;
    right: 0;
    scale: -1 1;
}

.cta_title em {
    font-size: clamp(2.5rem, 3.6111vw, 5.2rem);
}

.cta_title span {
    font-size: clamp(1.7rem, 2.6889vw, 3.8rem);
}
.cta_text {
    font-size: 1.6rem;
    margin-block-start: 28px;
}

.cta_btn {
    margin-block-start: 26px;
    display: grid;
    place-items: center;
}

@media screen and (max-width: 768px) {
    .cta {
        padding-block: 24px 30px;
    }

    .cta_title {
        padding-inline: 20px;
        width: max-content;
    }

    .cta_title::before,
    .cta_title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -8px;
        background: url(../images/media_text-deco-sp.png) center/ contain no-repeat;
        aspect-ratio: 28 / 104;
        width: 16px;
    }

    .cta_title::after {
        left: auto;
        right: 0;
        scale: -1 1;
    }

    .cta_text {
        font-size: 1.2rem;
        margin-block-start: 25px;
    }

    .cta_btn {
        margin-block-start: 20px;
    }
}

.flow {
    padding-top: 40px;
    padding-block-end: 80px;
    padding-inline-end: 0;
    background: url(../images/flow_bg.png) center bottom/ cover no-repeat, #eeebd9;
}
.flow_inner {
    max-width: 1000px;
}
.flow_list-wrap {
    padding-block-end: 20px;
    overflow-x: auto;
}

.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;
    margin-top: 43px;
    width: max-content;
    padding-inline-end: 17px;
}
.flow_list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.flow_list-item {
    aspect-ratio: 1 / 1;
    width: 135px;
    height: 135px;
    background: #fff;
    border-radius: 10px;
    border: 4px solid var(--secondary);
    box-sizing: border-box;
    padding: 15px 0;
    position: relative;
}

.flow_list-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    width: 11px;
    height: 20px;
    translate: 100% -50%;
    background-color: var(--primary);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.flow_list-first a {
    text-decoration: none;
}

.flow_list-item-inner {
    display: grid;
    grid-template-rows: auto 1fr;
    align-items: center;
    justify-items: center;
    height: 100%;
}

.flow_index {
    aspect-ratio: 105 / 52;
    width: 52px;
}

.flow_step {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    justify-self: center;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .flow {
        padding-block: 14px 40px;
        background-image: url(../images/flow_bg-sp.png);
    }
    .flow_list-wrap {
        margin-block-start: 0;
    }
    .flow_list {
        gap: 25px;
        margin-block-start: 20px;
    }
    .flow_list-item {
        width: 102px;
        padding-block: 10px;
        border-width: 2px;
    }
    .flow_list-item:not(:last-child)::after {
        right: -12px;
        width: 8px;
        height: 16px;
    }
    .flow_index {
        width: 46px;
    }

    .flow_step {
        font-size: 1.4rem;
    }
}

.push {
    padding-top: 60px;
    padding-bottom: 80px;
    background: url(../images/push_bg.jpg) center/ cover no-repeat;
}
@media screen and (max-width: 768px) {
    .push {
        padding-top: 32px;
        padding-bottom: 60px;
    }
}
.push_title {
    text-align: center;
    color: #fff;
    font-family: var(--ff-sub);
    font-size: 3.4rem;
    font-weight: 600;
    line-height: 1.5;
    position: relative;
    padding-block-end: 8px;
}
.push_title::after {
    content: '';
    position: absolute;
    width: 518px;
    height: 8px;
    background: url(../images/push_title-deco.png) center/ contain no-repeat;
    left: 48.5%;
    bottom: 0;
    translate: -50% 0;
}

.push_list {
    display: flex;
    gap: 33px;
    margin-block-start: 42px;
}

.push_list-item {
    width: calc(33.333% - 22px);
    border-radius: 10px;
    background: #fff;
    padding: 20px 15px 18px;
    display: grid;
    place-items: center;
    position: relative;
}

.push_list-item-inner {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: calc(34 / 22);
    text-align: center;
    position: relative;
    padding-block-start: 20px;
    color: var(--primary);
}
.push_list-item::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    translate: -50% 0;
    width: 27px;
    height: 27px;
    background: url(../images/icon_check.png) center/ contain no-repeat;
}

@media screen and (max-width: 768px) {
    .push {
        background: url(../images/push_bg-sp.jpg) center/ cover no-repeat;
        padding-block: 43px 100px;
    }
    .push_title {
        font-size: 1.8rem;
    }
    .push_title span {
        font-size: 2.4rem;
        display: block;
        width: max-content;
        margin-inline: auto;
        position: relative;
        padding-block-end: 3px;
    }
    .push_title::after {
        display: none;
    }
    .push_title span::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 5px;
        background: url(../images/push_title-deco.png) center/ 400px auto no-repeat;
        left: 48.5%;
        bottom: 0;
        translate: -50% 0;
    }

    .push_list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-block-start: 28px;
    }

    .push_list-item {
        width: 100%;
        box-sizing: border-box;
        max-width: 375px;
        border-radius: 5px;
        padding: 23px 10px 23px 45px;
        justify-content: flex-start;
    }

    .push_list-item-inner {
        text-align: left;
        font-size: 1.7rem;
        padding-block-start: 0;
    }
    .push_list-item::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 17px;
        translate: 0 -50%;
        width: 18px;
        height: 18px;
    }
}

.request {
    position: relative;
    padding-top: 156px;
    padding-bottom: 100px;
    background: #edecd8;
}
.request_title {
    position: absolute;
    top: -40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
    .request {
        padding-block: 75px 40px;
        padding-inline: 12px;
    }
    .request_title {
        top: -56px;
    }
}
.request_title-inner {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 24px 52px;
    background-color: var(--secondary);
    text-align: center;
    color: var(--primary);
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.5;
    border-radius: 5px;
    letter-spacing: 0.01em;
}
.request_title-inner strong {
    font-size: 4rem;
    line-height: 1.5;
    font-weight: 500;
}
@media screen and (max-width: 768px) {
    .request_title-inner {
        padding-left: 16px;
        padding-right: 16px;
        font-size: 1.65rem;
        line-height: 1.25;
        border-radius: 10px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
    .request_title-inner strong {
        font-size: 2.1rem;
        font-weight: 700;
        line-height: 1.6;
    }
}
.request_title-inner::after {
    content: '';
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 36px;
    height: 22px;
    background-color: var(--secondary);
    -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-size: 1.8rem;
    color: #000;
    font-weight: 700;
}
.request_note-mail {
    display: inline;
    line-height: 1.5;
}
@media screen and (max-width: 768px) {
    .request_note-mail {
        display: block;
        font-size: 1.3rem;
    }
}
.request_note-supp {
    display: inline;
}
@media screen and (max-width: 768px) {
    .request_note-supp {
        display: block;
        font-size: 1.2rem;
    }
}
.request_panel {
    background: #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 900px;
    padding: 27px 60px 50px;
    margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
    .request_panel {
        padding: 22px 7px 24px;
        margin-top: 12px;
    }
}
.request_appeal {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 6px 20px 10px;
    margin: 0 auto;
    background-color: var(--primary);
    border-radius: 30px;
    color: #fff;
    font-size: 2rem;
    white-space: nowrap;
}
@media screen and (max-width: 768px) {
    .request_appeal {
        padding: 4px 21px 8px;
        margin-block-start: 16px;
        font-size: 1.7rem;
    }
}
.request_appeal-em {
    font-size: 3rem;
    translate: 0 2px;
    line-height: 1;
    display: inline-block;
}
@media screen and (max-width: 768px) {
    .request_appeal-em {
        font-size: 2.4rem;
    }
}
.request_require-note {
    text-align: right;
    font-size: 1.6rem;
    margin-block-start: -12px;
}
@media screen and (max-width: 768px) {
    .request_require-note {
        margin-top: 22px;
        font-size: 1.3rem;
    }
}
.request_form {
    margin-top: 32px;
}
@media screen and (max-width: 768px) {
    .request_form {
        margin-top: 20px;
    }
}

.form * {
    font-family: var(--ff-main);
}

.form .form-text {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 56px;
    padding: 14px;
    background-color: #f1f1f1;
    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.8rem;
    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;
}
.form .form-textarea {
    height: 148px;
}
@media screen and (max-width: 768px) {
    .form .form-text {
        height: 46px;
        font-size: 1.6rem;
        padding: 8px 14px;
    }
    .form .form-textarea {
        height: 146px;
    }
}
.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: #000;
    font-size: 1.8rem;
    line-height: 1.5;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 2px solid var(--orange);
    font-weight: 700;
}
.form .form-select--initial {
    background-color: #fff;
    color: #000;
}
.form .form-zip-btn {
    padding: 18px 25px 15px;
    background: none;
    border: 2px solid var(--orange);
    border-radius: 999em;
    color: #000;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.1428571429;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .form .form-select {
        font-size: 1.6rem;
        height: 46px;
        padding: 8px 14px;
    }
    .form .form-zip-btn {
        padding: 12px 13px;
        font-size: 1.6rem;
    }
}
.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: 280px;
}
@media screen and (max-width: 768px) {
    .form_item--short .wpcf7-form-control-wrap {
        max-width: 167px;
    }
}
@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: 150px;
    font-size: 1.8rem;
    font-weight: 700;
}
@media screen and (max-width: 768px) {
    .form_title {
        width: auto;
        font-size: 1.7rem;
    }
}
.form_title--long {
    letter-spacing: -0.1em;
}
.form_required {
    color: #da0000;
    font-size: 1.6rem;
}
.form_control {
    display: block;
    width: 100%;
}
.form .form_item--select .wpcf7-form-control-wrap {
    position: relative;
    max-width: 280px;
}
@media screen and (max-width: 768px) {
    .form .form_item--select .wpcf7-form-control-wrap {
        max-width: 210px;
    }
}
.form .form_item--select .wpcf7-form-control-wrap::after {
    content: '';
    display: block;
    position: absolute;
    top: 24px;
    right: 12px;
    width: 14px;
    height: 12px;
    background-color: #000;
    -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--select .wpcf7-form-control-wrap::after {
        width: 10px;
        height: 10px;
        top: 18px;
    }
    .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 {
        display: block;
        margin-left: 0;
    }
}
.form .form_item--radio .wpcf7-list-item-label {
    display: inline-block;
    position: relative;
    padding-left: 31px;
    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: 24px;
    height: 24px;
    background-color: #fff;
    border: 2px solid #009533;
    border-radius: 50%;
    cursor: pointer;
}
.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: 12px;
    height: 12px;
    background-color: #009533;
    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: #fff;
    -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.4em;
    }
}
.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: 26px;
    height: 26px;
    background-color: #fff;
    border: 2px solid #acacac;
    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: 47%;
    left: 6px;
    -webkit-transform: translateY(-60%) rotate(-45deg);
    transform: translateY(-60%) rotate(-45deg);
    width: 12px;
    height: 5px;
    border-bottom: 2px solid #acacac;
    border-left: 2px solid #acacac;
    opacity: 0;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .form .form_item--checkbox .wpcf7-list-item-label::after {
        left: 4px;
        width: 10px;
        height: 4px;
    }
}
.form .form_item--optional:not(._) {
    margin-top: 20px;
    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: #acacac;
    font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
    .form .form_item--optional:not(._) .wpcf7-list-item-label {
        text-align: left;
        font-size: 1.4rem;
    }
}
.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: 166px;
    color: #8b8b8b;
    font-size: 1.4rem;
    line-height: 1.5;
}
@media screen and (max-width: 768px) {
    .form_note {
        margin-left: 0;
    }
}
.form_privacy-policy-wrap {
    margin-top: 35px;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .form_privacy-policy-wrap {
        margin-top: 26px;
    }
}
.form_privacy-policy {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.8;
}
@media screen and (max-width: 768px) {
    .form_privacy-policy {
        font-size: 1.5rem;
    }
}
.form_submit-wrap {
    margin-top: 30px;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .form_submit-wrap {
        margin-top: 18px;
    }
}
.form_submit {
    position: relative;
    width: 410px;
    padding-top: 20px;
    padding-bottom: 20px;
    outline: none;
    border: none;
    border-radius: 40px;
    background-color: var(--secondary);
    color: var(--primary);
    font-size: 2.4rem;
    font-weight: bold;
    letter-spacing: 0.04em;
    cursor: pointer;
    box-shadow: 0 6px 0 #b78e1b;
}
@media screen and (max-width: 768px) {
    .form_submit {
        width: 284px;
        padding-top: 12px;
        padding-bottom: 12px;
        font-size: 1.9rem;
        box-shadow: 0 4px 0 #b78e1b;
    }
}
.form_submit::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 25px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 13px;
    height: 14px;
    clip-path: polygon(0 0, 100% 50%, 0% 100%);
    background-color: var(--primary);
}
@media screen and (max-width: 768px) {
    .form_submit::after {
        right: 20px;
        width: 10px;
        height: 10px;
    }
}

.footer {
    padding-top: 100px;
    padding-bottom: 20px;
    background-color: #fff;
    color: #000;
    font-family: var(--ff-main);
    font-weight: 400;
}
@media screen and (max-width: 768px) {
    .footer {
        padding-top: 31px;
        padding-bottom: 40px;
    }
}
.footer_inner {
    position: relative;
    max-width: 1000px;
    padding: 0 17px;
    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;
    }
}
.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: 1000px;
    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;
    }
}
.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 {
        padding-block-start: 28px;
        margin-top: 30px;
        padding-left: 0;
        border: none;
        margin-inline-start: 0;
        border-block-start: 1px solid #e6e6e6;
    }
}
.footer_company {
    font-size: 1.6rem;
    font-weight: 900;
}
.footer_head-office {
    margin-top: 16px;
    font-size: 1.6rem;
    font-weight: 500;
}
.footer_address {
    font-weight: 500;
    margin-top: 8px;
    font-size: 1.6rem;
    line-height: 1.5;
}
.footer_contact {
    margin-top: 19px;
    border: 2px solid #000;
    font-size: 1.3rem;
    border-radius: 999px;
    width: max-content;
    box-sizing: border-box;
}
@media screen and (max-width: 768px) {
    .footer_contact {
        display: block;
        width: max-content;
        font-size: 1.25rem;
        width: 100%;
    }
}
.footer_contact-link {
    display: block;
    color: #000;
    line-height: 1.6;
    padding: 8px 12px 7px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.07em;
    position: relative;
}

.footer_copyright {
    display: block;
    text-align: center;
    color: #000;
    font-size: 1.4rem;
    font-weight: bold;
    margin-block-start: 45px;
    letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
    .footer_contact {
        margin-block-start: 23px;
        width: max-content;
    }
    .footer_contact-link {
        padding: 8px 9px 9px;
        white-space: nowrap;
    }
    .footer_copyright {
        font-size: 1rem;
        margin-block-start: 31px;
    }
}
/* ========================
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: var(--primary);
}
.secondary {
    color: var(--secondary);
}

.yellow {
    color: var(--yellow);
}
.red {
    color: #da0000;
}
.orange {
    color: #db9100;
}

.bold {
    font-weight: bold;
}
