@-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-ja: 'Noto Sans JP', sans-serif;

    --text: #4d362b;
    --primary: #edbb1c;
    --secondary: #e54f6b;
    --accent: #d96641;
    --yellow: #fffb8e;
    --gray: #f0f0eb;

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

img {
    max-width: 100%;
}

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

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

ul,
ol {
    list-style: none;
}

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

/* ========================
Common
======================== */
.btn {
    display: block;
    aspect-ratio: 315 / 52;
    width: 100%;
    border-radius: 999em;
}
.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;
}
.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;
}

@media screen and (max-width: 768px) {
    .btn {
        aspect-ratio: 670/127;
    }
}

.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;
    display: grid;
    place-items: center;
}
@media screen and (max-width: 768px) {
    .sect-title {
        zoom: 1;
        margin-inline: auto;
    }
    .sect-title--about {
        width: calc(243 / 375 * 100vw);
    }
    .sect-title--reason2 {
        width: calc(295 / 375 * 100vw);
    }
    .sect-title--msg {
        width: calc(265 / 375 * 100vw);
        place-self: start;
        margin: 0;
    }

    .sect-title--revenue {
        width: calc(116 / 375 * 100vw);
    }
    .sect-title--flow {
        width: calc(235 / 375 * 100vw);
    }

    .sect-title--push {
        width: calc(312 / 375 * 100vw);
    }
}

.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: -15px;
    margin-right: -15px;
}
.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(--text);
    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: 10px;
    height: 10px;
    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: -15px;
}
.slick-next {
    right: -15px;
}
.slick-disabled {
    opacity: 0;
    cursor: auto;
}
.slick-disabled:hover,
.slick-disabled:focus {
    opacity: 0;
}
.slick-dotted.slick-slider {
    margin-bottom: 20px;
}
.slick-dots {
    display: block;
    position: absolute;
    bottom: -21px;
    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;
    background-color: #fff;
    border: 0;
    outline: none;
    color: transparent;
    font-size: 0px;
    line-height: 0px;
    cursor: pointer;
    border-radius: 50%;
}
.slick-dots li.slick-active button {
    background-color: var(--text);
}
.cont {
    padding: 70px 15px;
}
@media screen and (max-width: 768px) {
    .cont {
        padding-top: 40px;
        padding-bottom: 50px;
    }
}
.cont_inner {
    max-width: 1000px;
    margin: 0 auto;
}

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

.header {
    max-width: 1000px;
    width: fit-content;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
    box-sizing: border-box;
    z-index: 10;
    border-bottom-left-radius: 10px;
}

.header .header-logo {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    padding: 4px 29px 4px 18px;
    position: relative;
    max-width: max-content;
    margin-inline: auto;
    position: relative;
}
.header .header-logo .header_brand-logo {
    width: 120px;
    display: inline-block;
}
.header .header-logo .header_fcs-logo {
    width: 132px;
    display: inline-block;
}
.header .header-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 43%;
    transform: translate(-50%, -50%) rotate(45deg);
    background-color: #000;
    width: 14px;
    height: 2px;
}
.header .header-logo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 43%;
    transform: translate(-50%, -50%) rotate(-45deg);
    background-color: #000;
    width: 14px;
    height: 2px;
}
@media screen and (max-width: 768px) {
    .header {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        width: 100%;
        left: 50%;
        translate: -50% 0;
    }
    .header .header-logo {
        margin-inline: auto;
        gap: 21px;
        padding: 0px 19px;
        justify-content: center;
    }

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

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

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

    .header .header-logo::after {
        width: 12px;
        height: 1px;
        left: 41%;
    }
}

.hero {
    position: relative;
    padding-block: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    aspect-ratio: 1440/445;
    background: var(--primary);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: 7.5%;
    width: clamp(161px, calc(216 / 1440 * 100vw), 216px);
    aspect-ratio: 432/556;
    background: url(../images/hero_deco.png) no-repeat center center / cover;
}

.hero_main {
    position: relative;
    grid-area: 1 / 1;
    background: var(--primary);
    z-index: 5;
    width: 100%;
}
.hero_main-img {
    width: 100%;
    height: 100%;
}
.hero_main-img * {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero_appeal {
    position: absolute;
    aspect-ratio: 1;
    width: clamp(114px, 200 / 1440 * 100vw, 200px);
    z-index: 5;
    right: 0;
    top: 25%;
    translate: 60% 0;
}

.hero_deco {
    position: absolute;
    aspect-ratio: 162/217;
    z-index: 5;
    left: 0;
    bottom: 0;
    translate: 0 12%;
    width: clamp(116px, 243 / 1440 * 100vw, 243px);
}

.hero_bg {
    position: relative;
    overflow: hidden;
    z-index: 0;
    grid-area: 1 / 2;
    width: 100%;
    height: 100%;
}
.hero_bg-item {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: opacity 1s linear;
    transition: opacity 1s linear;
    opacity: 0;
}
.hero_bg-img {
    height: 100%;
    width: 100%;
}
.hero_bg-img img {
    height: 100%;
    width: 100%;
    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 {
    transform-origin: center;
    -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;
}

.hero-bottom {
    background: var(--gray);
    padding-block: 20px 22px;
}
.hero-bottom_inner {
    max-width: 1000px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.hero-bottom_text-wrap {
    color: #000;
    text-align: center;
}

.hero-bottom_text {
    font-size: clamp(1.5rem, 2vw + 0.25rem, 2.5rem);
    white-space: nowrap;
    line-height: 1.25;
    font-weight: 500;
    letter-spacing: 0.01em;
}
.hero-bottom_text .l2 {
    font-size: clamp(1.7rem, 2vw + 0.5rem, 2.8rem);
    font-weight: 500;
}

.hero-bottom_text-logo {
    aspect-ratio: 404/64;
    width: clamp(136px, calc(202 / 1440 * 100vw), 202px);
    display: inline-block;
    padding-inline: 5px;
}

.hero-bottom_cta {
    max-width: 315px;
}

@media screen and (max-width: 768px) {
    .hero {
        position: relative;
        padding-block: 0;
        display: block;
        aspect-ratio: auto;
        background: transparent;
        padding-block: 47px 0;
        overflow: hidden;
    }

    .hero::after {
        display: none;
    }

    .hero_main {
    }

    .hero_main-img {
        position: relative;
        width: 100%;
        aspect-ratio: 524/395;
        z-index: 5;
    }

    .hero_appeal {
        right: 0;
        top: auto;
        bottom: 0;
        translate: 10% 46%;
    }

    .hero_deco {
        left: 0;
        bottom: 0;
        translate: 0 52%;
    }

    .hero_bg {
        aspect-ratio: 750 / 468;
        width: 100%;
        height: auto;
        margin-block-start: -8px;
        z-index: 0;
    }
    .hero_bg-item {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        -webkit-transition: opacity 1s linear;
        transition: opacity 1s linear;
        opacity: 0;
    }
    .hero_bg-img {
        height: 100%;
        width: 100%;
    }
    .hero_bg-img img {
        height: 100%;
        width: 100%;
        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 {
        transform-origin: center;
        -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;
    }

    .hero-bottom {
        padding-block: 13px 15px;
    }
    .hero-bottom_inner {
        gap: 16px;
    }

    .hero-bottom_text {
        font-size: clamp(1.5rem, 2vw + 0.5rem, 2.5rem);
        white-space: nowrap;
        line-height: 1.25;
    }
    .hero-bottom_text em {
        font-size: clamp(1.7rem, 2vw + 0.5rem, 3rem);
        letter-spacing: 0.01em;
    }

    .hero-bottom_text-logo {
        aspect-ratio: 404/64;
        width: clamp(136px, calc(202 / 1440 * 100vw), 202px);
        display: inline-block;
        padding-inline: 5px;
    }
    .hero-bottom_text:first-child .hero-bottom_text-logo {
        display: none;
    }
    .hero-bottom_text:nth-child(2) .hero-bottom_text-logo {
        display: inline-block;
    }

    .hero-bottom_cta {
        max-width: 315px;
        margin-inline: auto;
    }
}
@media screen and (max-width: 768px) {
    .hero-bottom {
        padding-block: 12px 18px;
        margin-block-start: -2px;
    }
    .hero-bottom_inner {
        display: block;
    }
    .hero-bottom_text {
        line-height: 1.5;
    }
    .hero-bottom_cta {
        max-width: 335px;
        margin-block-start: 15px;
    }
}
.about {
    padding-block: 90px 100px;
    background: url(../images/about_deco.png) no-repeat center top / calc(619 / 1440 * 100vw) auto;
}

.about_inner {
    position: relative;
}

.about_body {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(25px, calc(37 / 1440 * 100vw), 37px);
    margin-block-start: 60px;
}

.about_flag {
    aspect-ratio: 102/128;
    width: clamp(51px, calc(102 / 1440 * 100vw), 102px);
    position: absolute;
    top: 0;
    left: 0;
    translate: -20% -40%;
}
.about_desc {
    font-size: clamp(1.4rem, 1vw + 1rem, 2rem);
    line-height: calc(38 / 20);
    white-space: nowrap;
}

.about_img {
    aspect-ratio: 385/260;
    width: 100%;
    box-shadow: 6px 6px 0 var(--primary);
}
.about_deco-img {
    aspect-ratio: 271 / 149;
    width: clamp(160px, calc(271 / 1440 * 100vw), 271px);
    position: absolute;
    bottom: 0;
    left: 55%;
    translate: 0 78%;
}

@media screen and (max-width: 1024px) {
    .about_desc {
        white-space: normal;
    }
}
@media screen and (max-width: 768px) {
    .about {
        padding-block: 43px 28px;
        background: url(../images/about_deco.png) no-repeat right top / 77% auto;
        overflow-x: clip;
    }

    .about_inner {
        position: relative;
    }

    .about_body {
        display: grid;
        grid-template-columns: 1fr;
        gap: clamp(25px, calc(37 / 1440 * 100vw), 37px);
        margin-block-start: 37px;
        overflow: hidden;
    }

    .about_flag {
        width: clamp(51px, calc(102 / 1440 * 100vw), 102px);
        position: absolute;
        top: 0;
        left: 0;
        translate: -10% -20%;
    }
    .about_desc {
        white-space: normal;
        line-height: calc(48 / 28);
    }

    .about_img {
        box-shadow: -5px 6px 0 var(--primary);
    }
    .about_deco-img {
        aspect-ratio: 271 / 149;
        width: clamp(160px, calc(271 / 1440 * 100vw), 271px);
        position: absolute;
        bottom: 0;
        left: auto;
        right: 0;
        translate: 10% 65%;
    }
}

.appeal {
    background: url(../images/appeal_bg.png) no-repeat center top / cover;
    padding-block: 140px 116px;
}

.appeal_inner {
}

.appeal_body {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: clamp(25px, calc(37 / 1440 * 100vw), 37px);
    margin-block-start: 55px;
    position: relative;
}

.appeal_desc {
    font-size: clamp(1.4rem, 1vw + 1rem, 2rem);
    line-height: calc(38 / 20);
}

.appeal_img {
    padding-inline-start: min(calc(37 / 1440 * 100vw), 55px);
}

.appeal_deco-img {
    aspect-ratio: 48/47;
    width: clamp(138px, calc(250 / 1440 * 100vw), 250px);
    position: absolute;
    bottom: 0;
    left: 0;
    translate: -72% 12%;
}
@media screen and (max-width: 768px) {
    .appeal {
        background: url(../images/appeal_bg-sp.png) no-repeat center top / cover;
        padding-block: 63px 57px;
    }

    .appeal_inner {
    }

    .appeal_body {
        display: grid;
        grid-template-columns: 1fr;
        gap: clamp(25px, calc(37 / 1440 * 100vw), 37px);
        margin-block-start: 35px;
        position: relative;
    }

    .appeal_desc {
        grid-area: 1/1;
        line-height: calc(48 / 28);
    }

    .appeal_img {
        grid-area: 2/1;
        padding-inline-start: 85px;
    }

    .appeal_deco-img {
        aspect-ratio: 46/59;
        width: clamp(138px, calc(250 / 1440 * 100vw), 250px);
        position: absolute;
        bottom: 0;
        left: 0;
        translate: 0 21%;
    }
}

.reason1 {
    background: url(../images/reason1_bg.jpg) no-repeat center bottom / cover;
    padding-block: 90px;
}

.reason1_inner {
}

.reason1_body {
}

.reason1_lead {
    line-height: calc(38 / 20);
    font-size: clamp(1.7rem, 1vw + 1rem, 2rem);
    margin-block-start: 10px;
    display: block;
    width: fit-content;
    margin-inline: auto;
}
.reason1_lead em {
    font-weight: 700;
    font-size: clamp(2rem, 1vw + 1.25rem, 2.4rem);
    display: inline-block;
    padding: 4px 2px 5px;
    background: var(--secondary);
    color: #fff;
    border-radius: 6px;
    line-height: 1.25;
}
.reason1_desc {
    display: grid;
    grid-template-columns: 397fr 33fr 346fr;
    max-width: 777px;
}

.reason1_desc-item {
    grid-area: 1 / 1;
    padding-block-start: 38px;
    position: relative;
}
.reason1_desc-item:nth-child(2) {
    grid-area: 1 / 3;
}

.reason1_desc-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% 1px;
    background: #fff;
    aspect-ratio: 21/39;
    width: 21px;
    clip-path: polygon(100% 0, 90% 100%, 0 100%);
}
.reason1_desc-item:nth-child(2)::before {
    scale: -1 1;
}

.reason1_desc-item p {
    box-shadow: 8px 8px 13px 0 rgb(77 54 43 / 0.21);
    background: #fff;
    border-radius: 8px;
    display: block;
    padding: 26px 12px 26px 25px;
    font-size: clamp(1.5rem, 1vw + 0.75rem, 2rem);
    line-height: calc(38 / 20);
}

.reason1_img {
}

.reason1_deco-img {
}

@media screen and (max-width: 768px) {
    .reason1 {
        background: url(../images/reason1_bg-sp.jpg) no-repeat center bottom / 100% auto, var(--primary);
        padding-block: 40px;
    }

    .reason1_inner {
    }

    .reason1_body {
    }

    .reason1_lead {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-weight: 700;
        line-height: 1.25;
    }
    .reason1_lead em {
        display: inline-block;
        padding: 6px 2px 7px;
        border-radius: 3px;
        line-height: 1;
    }
    .reason1_lead span {
        display: inline-block;
        margin-block-start: 6px;
    }
    .reason1_desc {
        grid-template-columns: 55fr 205fr 85fr;
        grid-template-rows: auto auto;
        row-gap: 10px;
        margin-block-start: 16px;
    }

    .reason1_desc-item {
        grid-area: 1 / 2 / 2 / 4;
        padding-block-start: 20px;
        position: relative;
        display: grid;
        place-items: center;
    }
    .reason1_desc-item:nth-child(2) {
        grid-area: 2 / 1 / 3 / 3;
    }

    .reason1_desc-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 40%;
        translate: -50% 1px;
        background: #fff;
        aspect-ratio: 21/39;
        width: 12px;
        clip-path: polygon(100% 0, 90% 100%, 0 100%);
    }
    .reason1_desc-item:nth-child(2)::before {
        scale: -1 1;
    }

    .reason1_desc-item p {
        box-shadow: 4px 4px 7px 0 rgb(77 54 43 / 0.21);
        border-radius: 4px;
        padding: 15px 5px 15px 15px;
        max-width: fit-content;
    }
    .reason1_desc-item:nth-child(2) p {
        padding-inline-end: 10px;
    }
    .reason1_img {
    }

    .reason1_deco-img {
    }
}

.reason2 {
    background: url(../images/reason2_bg.png) no-repeat center bottom / 100% auto,
        linear-gradient(to bottom, #f0f0eb 50%, transparent 50%);
    padding-block: 57px 90px;
    position: relative;
    z-index: 5;
}
.reason2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: 17%;
    width: 83px;
    aspect-ratio: 1;
    background: var(--primary);
    border-radius: 50%;
}

.reason2_inner {
    max-width: 1100px;
}

.reason2_list {
    margin-block-start: 55px;
    display: flex;
    flex-direction: column;
    gap: 73px;
}

.reason2_item {
    display: grid;
    grid-template-columns: 50fr 520fr 488fr;
    grid-template-rows: 346px;
    grid-template-areas: 'gutter main img';
}
.reason2_item:nth-of-type(even) {
    grid-template-columns: 488fr 520fr 50fr;
    grid-template-areas: 'img main gutter';
}

.reason2_item-main {
    grid-area: main;
    margin-block-end: 10px;
    display: flex;
    flex-direction: column;
    margin-inline-end: 60px;
}
.reason2_item:nth-of-type(even) .reason2_item-main {
    margin-inline-end: 0;
    margin-inline-start: 60px;
}

.reason2_item-main-inner {
    padding: 0;
    flex-grow: 1;
}

.reason2_index {
    aspect-ratio: 401/169;
    width: 200px;
}

.reason2_item:nth-child(2) .reason2_index {
    aspect-ratio: 439/169;
    width: 219px;
}

.reason2_item:nth-child(3) .reason2_index {
    aspect-ratio: 435/169;
    width: 217px;
}

.reason2_item:nth-child(4) .reason2_index {
    aspect-ratio: 440/172;
    width: 220px;
}

.reason2_item-title {
    display: block;
    margin-block-start: 30px;
    aspect-ratio: 9 / 1;
    width: 99%;
}

.reason2_item:nth-child(2) .reason2_item-title {
    aspect-ratio: 439/56;
    width: 86%;
}

.reason2_item:nth-child(3) .reason2_item-title {
    aspect-ratio: 55/8;
    width: 76%;
}

.reason2_item:nth-child(4) .reason2_item-title {
    aspect-ratio: 495/56;
    width: 97%;
}

.reason2_item-title img {
    height: 100%;
    width: auto;
}

.reason2_desc {
    font-size: clamp(1.5rem, 1vw + 1rem, 2rem);
    margin-block-start: 30px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: calc(38 / 20);
}

.reason2_item:first-child {
    font-size: clamp(1.5rem, 1vw + 0.75rem, 1.8rem);
}

.reason2_item-img {
    grid-area: img;
    border-radius: 8px;
    overflow: hidden;
}
.reason2_item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .reason2 {
        background: url(../images/reason2_bg-sp.png) no-repeat center center / cover;
        padding-block: 22px 45px;
    }
    .reason2::after {
        bottom: -20px;
        right: auto;
        left: 12%;
        width: 42px;
    }
    .reason2_list {
        margin-block-start: 30px;
        display: flex;
        flex-direction: column;
        gap: 28px;
    }

    .reason2_item {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        grid-template-areas: 'index' 'title' 'img' 'desc';
        gap: 15px;
    }
    .reason2_item:nth-of-type(even) {
        grid-template-columns: 1fr;
        grid-template-areas: 'index' 'title' 'img' 'desc';
    }

    .reason2_item-main {
        display: contents;
    }

    .reason2_item-main-inner {
        display: contents;
    }

    .reason2_index {
        grid-area: index;
        aspect-ratio: 401/169;
        width: calc(102 / 375 * 100vw);
    }

    .reason2_item:nth-child(2) .reason2_index {
        aspect-ratio: 439/169;
        width: calc(110 / 375 * 100vw);
    }

    .reason2_item:nth-child(3) .reason2_index {
        aspect-ratio: 435/169;
        width: calc(110 / 375 * 100vw);
    }

    .reason2_item:nth-child(4) .reason2_index {
        aspect-ratio: 440/172;
        width: calc(111 / 375 * 100vw);
    }

    .reason2_item-title {
        grid-area: title;
        display: block;
        margin-block-start: 0;
        width: 96%;
        aspect-ratio: 11/1;
    }
    .reason2_item:nth-child(2) .reason2_item-title {
        width: 80%;
        aspect-ratio: 560/60;
    }

    .reason2_item:nth-child(3) .reason2_item-title {
        width: 69%;
        aspect-ratio: 475/60;
    }

    .reason2_item:nth-child(4) .reason2_item-title {
        width: 95%;
        aspect-ratio: 640/60;
    }

    .reason2_item-title img {
        height: 100%;
        width: auto;
    }

    .reason2_desc {
        grid-area: desc;
        margin-block-start: 5px;
        line-height: calc(52 / 30);
    }

    .reason2_item:first-child {
        font-size: clamp(1.5rem, 1vw + 0.75rem, 1.8rem);
    }

    .reason2_item-img {
        margin-block-start: 5px;
        border-radius: 4px;
        padding-inline: 12px;
    }
}

.msg {
    background: url(../images/msg_bg.jpg) no-repeat center center / cover;
    padding-block: 106px 60px;
    margin-block-start: -100px;
}

.msg_inner {
}

.msg_body {
    margin-block-start: 55px;
    padding: 30px;
    box-shadow: 6px 6px 13px rgb(47 47 47 / 0.1);
    background: color-mix(in srgb, #fff 80%, transparent 20%);
    display: grid;
    grid-template-columns: 7fr 2fr;
    gap: 40px;
}

.msg_text-wrap {
    display: flex;
    flex-direction: column;
    gap: 34px;
    grid-area: 1/1;
}

.msg_text {
    line-height: calc(34 / 18);
    font-size: clamp(1.4rem, 1vw + 0.75rem, 1.8rem);
    font-feature-settings: 'palt' 1;
}

.msg_img {
    grid-area: 1/2;
    max-width: 200px;
    max-height: 200px;
    height: auto;
    margin-inline-start: auto;
}

.msg_img img {
    aspect-ratio: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.msg_cap {
    margin-block-start: 16px;
    font-weight: 700;
    line-height: 1.25;
    font-size: clamp(1.7rem, 1vw + 1rem, 2rem);
    display: block;
    text-align: center;
    margin-inline: auto;
}

.msg_cta {
    margin-block-start: 61px;
    max-width: 476px;
    margin-inline: auto;
}

@media screen and (max-width: 768px) {
    .msg {
        background: url(../images/msg_bg-sp.jpg) no-repeat center bottom / cover;
        padding-block: 82px 42px;
        margin-block-start: -30px;
    }

    .msg_inner {
    }

    .msg_body {
        margin-block-start: 0;
        padding: 0;
        background: transparent;
        display: flex;
        flex-direction: column-reverse;
        justify-content: end;
        gap: 10px 0px;
        box-shadow: none;
        margin-block-start: -120px;
    }

    .msg_text-wrap {
        box-shadow: 3px 3px 7px rgb(47 47 47 / 0.1);
        display: flex;
        flex-direction: column;
        gap: 34px;
        grid-area: 1/1;
        background: color-mix(in srgb, #fff 80%, transparent 20%);
        padding: 22px 13px 23px;
    }

    .msg_text {
        line-height: calc(34 / 18);
        font-size: clamp(1.4rem, 1vw + 0.75rem, 1.8rem);
        font-feature-settings: 'palt' 1;
    }

    .msg_img {
        grid-area: 1/2 / 2 / 3;
        width: calc(100 / 375 * 100vw);
        margin-inline-start: auto;
    }

    .msg_cap {
        font-weight: 700;
        line-height: 1.25;
        font-size: clamp(1.7rem, 1vw + 1rem, 2rem);
        margin-block-start: 6px;
        display: block;
        text-align: center;
        margin-inline: auto;
    }

    .msg_cta {
        margin-block-start: 40px;
        max-width: 476px;
        margin-inline: auto;
    }
}

.revenue {
    padding: 80px 15px;
    background: url(../images/revenue_bg.jpg) no-repeat center center / cover;
}

.revenue_inner {
    max-width: 1025px;
}

.revenue_lead {
    display: block;
    width: fit-content;
    margin-inline: auto;
    border-radius: 4px;
    background: var(--text);
    color: #fff;
    padding: 12px 24px 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: clamp(1.7rem, 1vw + 1.25rem, 2.4rem);
    margin-block-start: 47px;
    text-align: center;
}

.revenue_list {
    display: grid;
    grid-template-columns: 481fr 53fr 481fr;
    grid-template-areas: 'item1 gutter item2';
    margin-block-start: 40px;
}

.revenue_list-item {
    border-radius: 15px;
    background: #fff;
    display: inline-block;
    overflow: hidden;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
}
.revenue_list-item:nth-of-type(1) {
    grid-area: item1;
}
.revenue_list-item:nth-of-type(2) {
    grid-area: item2;
}

.revenue_example {
    display: block;
    background: var(--primary);
    color: #fff;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: clamp(2rem, 2vw + 0.25rem, 2.4rem);
    padding: 13px 15px 12px;
}
.revenue_item-body {
    padding: 43px 50px 33px;
}

.revenue_achievement {
    aspect-ratio: 422/72;
    padding-inline: 16px;
}

.revenue_list-item:nth-of-type(1).revenue_achievement {
    aspect-ratio: 422/67;
}

.revenue_download {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    place-items: center;
    margin-block-start: 12px;
}

.revenue_mosaic {
    grid-area: 1 / 1 / 2 / 2;
}

.revenue_supp {
    text-align: center;
    font-weight: 700;
    background: #fff;
    font-size: clamp(1.1rem, 2vw, 1.8rem);
    display: block;
    padding: 22px 40px;
    line-height: calc(25 / 18);
    grid-area: 1 / 1 / 2 / 2;
    width: fit-content;
    height: fit-content;
    box-shadow: 5px 5px 16px rgba(0, 0, 0, 0.17);
}

@media screen and (max-width: 768px) {
    .revenue {
        padding-block: 15px 40px;
    }

    .revenue_inner {
        max-width: 1025px;
    }

    .revenue_lead {
        padding: 7px 6px 9px;
        margin-block-start: 20px;
        font-feature-settings: 'palt' 1;
        line-height: 1.25;
    }

    .revenue_list {
        display: block;
        margin-block-start: 2px;
    }

    .revenue_list-item {
        margin: 16px 43px;
        border-radius: 7px;
        display: inline-block;
    }

    .revenue_example {
        padding: 12px 5px 15px;
        letter-spacing: normal;
        white-space: nowrap;
    }
    .revenue_item-body {
        padding: 16px;
    }

    .revenue_achievement {
        padding-inline: 0;
    }

    .revenue_download {
        padding-inline: 6px;
        margin-block-start: 8px;
    }

    .revenue_mosaic {
        grid-area: 1 / 1 / 2 / 2;
    }

    .revenue_supp {
        padding: 12px 22px;
        box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.17);
    }
}

.flow {
    padding-block: 73px;
    padding-inline: 0;

    background: url(../images/flow_bg.jpg) no-repeat center center / cover;
}

.flow a {
    text-decoration: none;
}

.flow_inner {
    max-width: 1040px;
}

.flow_list-wrap {
    padding-block: 20px;
    margin-block-start: 44px;
    overflow-x: auto;
}

.flow_list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 39px;
    width: max-content;
    padding-inline: 15px;
}

.flow_item {
    background: #fff;
    border-radius: 16px;
    padding: 14px;
    position: relative;
    width: 107px;
    aspect-ratio: 1;
}

.flow_item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    translate: 50% -50%;
    width: 11px;
    height: 19px;
    background: #79563d;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.flow_item a {
    color: var(--text);
}

.flow_item-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;
    height: 100%;
}

.flow_index {
    position: absolute;
    width: calc(96 / 135 * 100%);
    top: 0;
    left: 50%;
    translate: -50% -40%;
}
.flow_index img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.flow_text {
    font-weight: 700;
    line-height: calc(25 / 18);
    letter-spacing: 0.025em;
    font-size: clamp(1.5rem, 1vw + 0.75rem, 1.8rem);
    text-align: center;
    display: block;
    margin-inline: auto;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}
@media screen and (max-width: 768px) {
    .flow {
        padding-block: 20px 29px;
        background: url(../images/flow_bg-sp.jpg) no-repeat center center / cover;
    }

    .flow_inner {
    }

    .flow_list-wrap {
        margin-block-start: 19px;
        overflow-x: auto;
    }

    .flow_list {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 22px;
        width: max-content;
    }

    .flow_item {
        border-radius: 8px;
        padding: 8px;
        width: 66px;
        height: 66px;
    }

    .flow_item:not(:last-child)::after {
        width: 7px;
        height: 12px;
    }

    .flow_index {
        width: calc(55 / 82 * 100%);
    }
    .flow_item:not(:last-child)::after {
        right: -11px;
    }

    .flow_text {
    }
}

.push {
    background: url(../images/push_bg.jpg) no-repeat center top / cover;
    padding-block: 68px 110px;
}

.push_inner {
}

.push_list {
    margin-block-start: 54px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.push_item {
    background: var(--text);
    border-radius: 15px;
    text-align: center;
    box-shadow: 6px 6px 13px rgb(47 47 47 / 0.28);
    padding: 18px 10px 20px;
    position: relative;
}

.push_item::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 22px;
    background: var(--text);
    clip-path: polygon(0 0, 80% 0, 100% 100%);
    bottom: 0;
    left: 20%;
    translate: -50% calc(100% - 1px);
}

.push_item:nth-child(2)::before {
    left: 37%;
}

.push_item:nth-child(3)::before {
    left: 73%;
    scale: -1 1;
}

.push_item-inner {
    font-size: clamp(1.6rem, 1vw + 1rem, 2.2rem);
    line-height: calc(34 / 22);
    letter-spacing: 0.025em;
    font-weight: 700;
    position: relative;
    display: grid;
    place-items: center;
    height: 100%;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .push {
        background: url(../images/push_bg-sp.jpg) no-repeat center center / cover;
        padding-block: 48px 110px;
    }

    .push_inner {
    }

    .push_list {
        margin-block-start: 23px;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
        gap: 25px;
        max-width: 255px;
        margin-inline: auto;
    }

    .push_item {
        border-radius: 8px;
        padding: 16px 2px 19px 12px;
    }
    .push_item:nth-child(2)::before {
        left: 60%;
        scale: -1 1;
    }

    .push_item:nth-child(3)::before {
        left: 30%;
        scale: 1;
    }

    .push_item-inner {
        text-align: center;
    }

    .push_item-inner::before {
        top: 50%;
        left: 0;
        translate: 0 -50%;
        width: 22px;
    }
}

.request {
    position: relative;
    padding-top: 130px;
    padding-bottom: 100px;
    background-color: var(--gray);
}
.request_title {
    position: absolute;
    top: -60px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.09);
}

.request_title-inner {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 24px 48px;
    background-color: var(--primary);
    border-radius: 5px;
    text-align: center;
    color: #fff;
    font-size: clamp(1.6rem, 2vw + 0.5rem, 2.8rem);
    font-weight: 500;
    line-height: 1.5;
}
@media screen and (max-width: 768px) {
    .request {
        padding-top: 70px;
        padding-bottom: 40px;
    }
    .request_title {
        top: -52px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.09);
    }
    .request_title-em {
        font-weight: 700;
    }
    .request_title-inner {
        padding-left: 27px;
        padding-right: 27px;
        line-height: 1.6;
        border-right: 10px;
        padding-block: 11px;
    }
}
.request_title-inner::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    translate: -50% 100%;
    width: 52px;
    height: 31px;
    background-color: var(--primary);
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 768px) {
    .request_title-inner::after {
        width: 31px;
        height: 18px;
        bottom: 5px;
    }
}
.request_title-em {
    font-size: clamp(2.1rem, 2vw + 1.25rem, 4rem);
}

.request_note {
    text-align: center;
    font-weight: 700;
    line-height: calc(32 / 18);
    font-size: clamp(1.5rem, 1vw + 0.75rem, 1.8rem);
}
.request_panel {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 900px;
    padding: 29px 57px 42px 62px;
    margin: 28px auto 0;
    background: #fff;
}
@media screen and (max-width: 768px) {
    .request_panel {
        padding: 16px 8px 18px;
        margin-top: 12px;
        border-radius: 7px;
    }
    .request_note {
        text-align: left;
    }
}
.request_appeal {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 6px 30px 10px;
    margin: 0 auto;
    background-color: #503326;
    border-radius: 999em;
    color: #fff;
    font-size: clamp(1.7rem, 1vw + 1rem, 2rem);
    white-space: nowrap;
    font-weight: 700;
}
.request_appeal-em {
    font-size: clamp(2.2rem, 1vw + 1.75rem, 2.8rem);
    translate: 0 2px;
    display: inline-block;
}
@media screen and (max-width: 768px) {
    .request_appeal {
        padding: 6px 16px;
        margin-block-start: 0;
    }

    .request_appeal-em {
        translate: 0 1px;
    }
}

@media screen and (max-width: 768px) {
    .request_appeal-em {
        font-size: 2rem;
    }
}
.request_require-note {
    text-align: right;
    font-size: 1.6rem;
    font-weight: 700;
}
@media screen and (max-width: 768px) {
    .request_require-note {
        margin-top: 23px;
        font-size: 1.3rem;
    }
}
.request_form {
    margin-top: 24px;
}
@media screen and (max-width: 768px) {
    .request_form {
        margin-top: 4px;
    }
}

.form *:not(a) {
    font-family: var(--ff-ja);
}

.form .form-text {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 58px;
    padding: 10px 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: var(--text);
    font-size: clamp(1.5rem, 1vw + 0.75rem, 1.8rem);
    line-height: 1.5;
}
.form .form-text::-webkit-input-placeholder {
    color: #acacac;
}
.form .form-text::-moz-placeholder {
    color: #acacac;
}
.form .form-text:-ms-input-placeholder {
    color: #acacac;
}
.form .form-text::-ms-input-placeholder {
    color: #acacac;
}
.form .form-text::placeholder {
    color: #acacac;
}
.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;
}
.form .form-select {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 58px;
    padding: 10px 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);
    font-size: clamp(1.5rem, 1vw + 0.75rem, 1.8rem);
    font-weight: 700;

    line-height: 1.5;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 2px solid var(--primary);
    color: var(--text);
}
.form .form-select--initial {
    background-color: #fff;
    color: #393939;
}
.form .form-zip-btn {
    padding: 15px 32px;
    background: none;
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: #000;
    font-size: clamp(1.5rem, 1vw + 0.75rem, 1.8rem);
    font-weight: bold;
    line-height: 1.1428571429;
    cursor: pointer;
    background: #fff;
}
@media screen and (max-width: 768px) {
    .form .form-select {
        height: 46px;
    }
    .form .form-text {
        height: 46px;
    }
    .form .form-textarea {
        height: 148px;
    }
    .form .form-zip-btn {
        padding: 11px 14px;
        margin-inline-start: 6px;
    }
}
.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: 168px;
    }
}
@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 .wpcf7-form-control-wrap {
        margin: 0;
    }
    .form_item--has-btn .form-zip-btn {
        margin-top: 3px;
        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: 132px;
    font-size: clamp(1.5rem, 1vw + 0.75rem, 1.8rem);
    font-weight: 700;
}
@media screen and (max-width: 768px) {
    .form_title {
        width: auto;
        text-align: left;
    }
}
.form_title--top {
    place-self: start;
    margin-block-start: 20px;
}
.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: 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: 16px;
    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: 8px;
        top: 19px;
    }
    .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-radio {
        display: flex;
        gap: 25px;
    }
    .form .form_item--radio .wpcf7-list-item {
        margin-left: 0;
    }
}
.form .form_item--radio .wpcf7-list-item-label {
    display: inline-block;
    position: relative;
    padding-left: 34px;
    font-size: clamp(1.5rem, 1vw + 0.75rem, 1.8rem);
    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: 23px;
    height: 23px;
    background-color: #fff;
    border: 2px solid #c7c7c7;
    border-radius: 50%;
    cursor: pointer;
}
.form .form_item--radio input:checked + .wpcf7-list-item-label::before {
    border-color: var(--primary);
}
.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: 11px;
    height: 11px;
    background-color: var(--primary);
    border-radius: 50%;
    opacity: 0;
    cursor: pointer;
}
.form .form_item--checkbox .wpcf7-checkbox {
    margin-top: -12px;
    margin-left: -36px;
}
@media screen and (max-width: 768px) {
    .form .form_item--radio .wpcf7-list-item-label::before {
        width: 17px;
        height: 17px;
    }
    .form .form_item--radio .wpcf7-list-item-label::after {
        width: 9px;
        height: 9px;
        left: 4px;
    }
    .form .form_item--radio .wpcf7-list-item-label {
        padding-left: 25px;
    }
    .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 {
    -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: 22px;
    margin-left: 36px;
}
@media screen and (max-width: 768px) {
    .form .form_item--checkbox .wpcf7-list-item {
        display: block;
        margin-top: 30px;
        margin-left: 0;
    }
}
.form .form_item--checkbox .wpcf7-list-item-label {
    display: inline-block;
    position: relative;
    padding-left: 36px;
    font-size: clamp(1.4rem, 1vw + 0.75rem, 1.6rem);
    line-height: 1.7857142857;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .form .form_item--checkbox .wpcf7-list-item-label {
        padding-left: 27px;
    }
}
.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;
    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: 45%;
    left: 6px;
    -webkit-transform: translateY(-60%) rotate(-45deg);
    transform: translateY(-60%) rotate(-45deg);
    width: 10px;
    height: 4px;
    border-bottom: 3px solid #acacac;
    border-left: 3px solid #acacac;
    opacity: 0;
    cursor: pointer;
}
@media screen and (max-width: 768px) {
    .form .form_item--checkbox .wpcf7-list-item-label::after {
        left: 5px;
        width: 8px;
        height: 4px;
        border-width: 2px;
    }
}
.form .form_item--optional:not(._) {
    margin-top: 22px;
    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;
        margin-block-start: 16px;
    }
}
.form .form_item--optional:not(._) .wpcf7-list-item-label {
    color: #acacac;
}
@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: 148px;
    color: #8b8b8b;
    font-size: 1.4rem;
    line-height: 1.5;
}
@media screen and (max-width: 768px) {
    .form_note {
        margin-left: 0;
        font-size: 1.3rem;
    }
}
.form_privacy-policy-wrap {
    margin-top: 38px;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .form_privacy-policy-wrap {
        margin-top: 23px;
    }
}
/**
 * .form_privacy-policy
 *
 * display: inline-block;
 * font-size: 1.5rem;
 * line-height: 1.8;
 *
 * - display: inline-block;
 *   font-size: 1.5rem;
 *   line-height: 1.8;
 */
.form_privacy-policy {
    display: inline-block;
    font-size: 1.5rem;
    line-height: 1.5;
    text-transform: uppercase;
}
.form_submit-wrap {
    margin-top: 35px;
    text-align: center;
}
@media screen and (max-width: 768px) {
.form_privacy-policy {
font-size: 1.4rem;
}
    .form_submit-wrap {
        margin-top: 20px;
    }
}
.form_submit {
    position: relative;
    width: 300px;
    padding-top: 9px;
    padding-bottom: 9px;
    outline: none;
    border: none;
    border-radius: 999em;
    background-color: #f6c539;
    box-shadow: 0 7px 0 #b78e1b;
    color: #000;
    font-size: clamp(1.9rem, 1vw + 1.25rem, 2.2rem);
    letter-spacing: 0.04em;
    cursor: pointer;
    font-weight: 700;
}
@media screen and (max-width: 768px) {
    .form_submit {
        width: 255px;
        padding-top: 12px;
        padding-bottom: 12px;
        box-shadow: 0 4px 0 #b78e1b;
    }
}
.form_submit::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 18px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 13px;
    height: 12px;
    clip-path: polygon(0 0, 100% 50%, 0% 100%);
    background: #000;
}
@media screen and (max-width: 768px) {
    .form_submit::after {
        right: 20px;
        width: 10px;
        height: 10px;
    }
}

.footer * {
    font-family: var(--ff-ja);
}
.footer {
    padding-top: 45px;
    padding-bottom: 30px;
    background-color: #fff;
    z-index: 2;
}
@media screen and (max-width: 768px) {
    .footer {
        padding-top: 6px;
        padding-bottom: 36px;
    }
}
.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.4rem;
    line-height: 1.4;
    letter-spacing: -0.05em;
}
@media screen and (max-width: 768px) {
    .footer_about-desc {
        font-size: 1.2rem;
        letter-spacing: -0.02em;
    }
}
.footer_company-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 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: 27px;
    }
}
.footer_info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 400;
}
.footer_info + .footer_info {
    border-left: 2px solid;
}
@media screen and (max-width: 768px) {
    .footer_info + .footer_info {
        margin-top: 12px;
        padding-left: 0;
        padding-top: 20px;
        border-left: none;
        border-top: 2px solid;
    }
    .footer_info {
        padding-left: 0px;
    }
}
.footer_company {
    font-size: 1.4rem;
    padding-bottom: 5px;
    line-height: 1.6;
    font-weight: 700;
    text-transform: uppercase;
}
.footer_head-office {
    font-size: 1.4rem;
    line-height: 1.6;
}
.footer_address {
    margin-top: 8px;
    font-size: 1.4rem;
    line-height: 1.6;
}
.footer_contact {
    display: grid;
    grid-template: auto/1fr 1fr;
    margin-top: 24px;
}
@media screen and (max-width: 768px) {
    .footer_contact {
        display: block;
    }
}
.footer_contact-link {
    font-size: 1.3rem;
    line-height: 1.6;
    text-decoration: none;
    padding: 5px 29px;
    display: inline-block;
    border-radius: 30px;
    margin-top: 15px;
    font-weight: 500;
    border: 2px solid;
    color: var(--text);
}
.footer_copyright {
    color: var(--text);
    display: block;
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
}
@media screen and (max-width: 768px) {
    .footer_contact-link {
        padding: 7px 13px;
        margin-top: 20px;
    }
    .footer_copyright {
        font-size: 1.2rem;
    }
}
.footer--copyright {
    padding-top: 10px;
    padding-bottom: 25px;
    background-color: #fff;
    z-index: 5;
    margin-block-start: -1px;
}
@media screen and (max-width: 768px) {
    .footer--copyright {
        padding-top: 0;
        padding-bottom: 36px;
    }
}

/* ========================
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);
}

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

.green {
    color: var(--green);
}
.text {
    color: var(--text);
}
.red {
    color: #da0101;
}
.bold {
    font-weight: bold;
}
