@-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-main: "Noto Sans JP", sans-serif;
    --ff-sub: "Roboto", sans-serif;

    --text: #00342e;
    --primary: #27906e;
    --point: #f18b63;
    --red: #c30d24;
    --yellow: #ffe9a6;
    --white: #fff;

    --main-grad-1: #87d089;
    --main-grad-2: #00bdec;
    --bg: #edf6e6;

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

    position: relative;
    line-height: 1.7;

    background: #f2f2f2;
}

@media screen and (min-width: 769px) {
    body {
        padding-block-start: 67px;
    }
}

.fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: url(../images/fixed_bg-left.jpg) left center/auto 100% no-repeat,
        url(../images/fixed_bg-right.jpg) right center/auto 100% no-repeat;
}

img {
    max-width: 100%;
}

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

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

ul,
ol {
    list-style: none;
}

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

/* ========================
Common
======================== */
/* === Button === */
.cv-btn {
    display: inline-block;
    box-sizing: border-box;
    max-width: 100%;
    width: 330px;
    margin-left: 24px;
    margin-top: 11px;
    background-color: #ff7100;
    border-radius: 110px;
    color: #fff;
    font-size: 24.2px;
    text-decoration: none;
    text-align: center;
}

.cv-btn_wrap {
    display: inline-block;
    position: relative;
    width: max-content;
    filter: drop-shadow(4.4px 4.4px 0 #a34165);
}

.cv-btn_inner {
    display: flex;
    align-items: center;
    position: relative;
    padding: 4.4px;
    border-radius: 44px;
    font-size: 35.2px;
}

.cv-btn_appeal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 54px;
    height: 54px;
    background-color: #ffea82;
    border-radius: 50%;
    color: #ff7100;
    font-size: 8.8px;
    font-weight: bold;
}

.cv-btn_appeal-easy {
    position: absolute;
    top: 2.2px;
    left: 8.8px;
    z-index: 1;
}

.cv-btn_appeal-easy-cont {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    width: 26.4px;
    height: 26.4px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 0 5.5px #ff7100;
    color: #ff7100;
    font-size: 11px;
    font-weight: bold;
}

.cv-btn_appeal-easy-cont::before {
    content: "";
    position: absolute;
    bottom: 2.2px;
    right: 0;
    width: 5.5px;
    height: 5.5px;
    background-color: #fff;
    clip-path: polygon(3.3px 0, 100% 100%, 0 4.4px);
}

.cv-btn_appeal-easy-cont::after {
    content: "";
    position: absolute;
    bottom: -1.1px;
    right: -4.4px;
    z-index: -1;
    width: 8.8px;
    height: 8.8px;
    background-color: #ff7100;
    clip-path: polygon(6.6px 0, 100% 100%, 0 8.8px);
}

.cv-btn_appeal-num {
    display: block;
    position: relative;
    z-index: 1;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}

.cv-btn_appeal-txt {
    position: relative;
    z-index: 1;
    font-size: 10px;
    font-weight: bold;
    line-height: 1;
}

.cv-btn_appeal-arrow {
    position: absolute;
    top: 2.2px;
    right: 2.2px;
    bottom: 2.2px;
    left: 2.2px;
    border-radius: 50%;
    border: 3.3px solid #ff7100;
}

.cv-btn_appeal-arrow::before {
    content: "";
    position: absolute;
    top: -5.5px;
    right: 50%;
    width: 5.5px;
    height: 8.8px;
    background-color: #ffea82;
}

.cv-btn_appeal-arrow::after {
    content: "";
    position: absolute;
    top: -3.3px;
    right: calc(50% + 1.1px);
    width: 8.8px;
    height: 7.7px;
    background-color: #ff7100;
    clip-path: polygon(0 0, 100% 20%, 25% 100%);
}

.cv-btn_appeal-deco {
    position: absolute;
    top: 6.6px;
    right: 6.6px;
    bottom: 6.6px;
    left: 6.6px;
    border-radius: 50%;
    background-image: radial-gradient(#ffea82 0%, #ffea82 60%, transparent 60%),
        repeating-conic-gradient(
            from -2.5deg,
            #ff7100 0,
            #ff7100 5deg,
            transparent 5deg,
            transparent 30deg
        );
}

.cv-btn_l1 {
    position: relative;
    padding-left: 1.2em;
    padding-right: 1.2em;
    font-size: 13px;
    letter-spacing: 0.04em;
    line-height: 1.8;
}

.cv-btn_l1::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform-origin: top left;
    transform: translateY(-30%) rotate(-45deg);
    width: 1.1px;
    height: 1.5em;
    background-color: #fff;
}

.cv-btn_l1::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform-origin: top right;
    transform: translateY(-30%) rotate(45deg);
    width: 1.1px;
    height: 1.5em;
    background-color: #fff;
}

.cv-btn_l2 {
    position: relative;
    margin-top: 2.2px;
    margin-bottom: 2.2px;
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
}

.cv-btn_l2 em {
    color: #ffea82;
}

.cv-btn_deco {
    display: inline-block;
    position: relative;
    width: 1em;
    height: 1em;
}

.cv-btn_deco::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1em;
    height: 1em;
    border-radius: 50%;
    background-color: #fff;
}

.cv-btn_deco::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1em;
    height: 0.7em;
    background-color: #ff7100;
    clip-path: polygon(
        calc(50% + 0.08em) 0,
        calc(50% + 0.08em) 0.45em,
        calc(50% + 0.2em) 0.3em,
        calc(50% + 0.3em) 0.4em,
        50% 100%,
        calc(50% - 0.3em) 0.4em,
        calc(50% - 0.2em) 0.3em,
        calc(50% - 0.08em) 0.45em,
        calc(50% - 0.08em) 0
    );
}

.cv-btn--gritter {
    overflow: hidden;
    position: relative;
}

.cv-btn--gritter::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100%;
    width: 100%;
    background-image: linear-gradient(to left, #fff, transparent);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    animation: reflection 4s infinite;
}

.sect-title {
    text-align: center;
}

.sect-title_en {
    height: 48px;
    background-image: linear-gradient(
        to right,
        var(--main-grad-2, var(--main-grad-1))
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3rem;
    font-weight: 900;
}

.sect-title_en img {
    max-height: 100%;
}

.sect-title_ja {
    font-size: 2rem;
}

.sect-title_ja i {
    font-size: 2.6rem;
    font-style: normal;
}

.sect-title_ja em {
    color: var(--point);
    text-decoration: underline;
    text-underline-offset: 0.2em;
    font-size: 2.6rem;
}

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

/* === Slick === */
.slick-list {
    margin-left: -20px;
    margin-right: -20px;
}
.slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.slick-slide {
    float: none;
    height: auto;
}
.slick-slide:not(.slick-current) * {
    -webkit-filter: none;
    filter: none;
}
.slick-prev,
.slick-next {
    display: block;
    position: absolute;
    top: 50%;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    padding: 0;
    border: none;
    outline: none;
    color: transparent;
    cursor: pointer;
    background: none;
    appearance: none;
    background: url(../images/slick-arrow.png) center/contain no-repeat;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    outline: none;
    color: transparent;
}
.slick-prev {
    -webkit-transform: translateY(-50%) scale(-1, 1);
    transform: translateY(-50%) scale(-1, 1);
    left: -20px;
}
.slick-next {
    right: -20px;
}
.slick-disabled {
    opacity: 0;
    cursor: auto;
}
.slick-disabled:hover,
.slick-disabled:focus {
    opacity: 0;
}
.slick-dotted.slick-slider {
    margin-bottom: 40px;
}
.slick-dots {
    display: block;
    position: absolute;
    bottom: -28px;
    width: 100%;
    text-align: center;
    margin-inline-start: -10px;
}
.slick-dots li {
    display: inline-block;
    margin: 0 6px;
    cursor: pointer;
}
.slick-dots li button {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    padding: 0;
    background-color: #b2b3b3;
    border: 0;
    outline: none;
    color: transparent;
    font-size: 0px;
    line-height: 0px;
    cursor: pointer;
}
.slick-dots li.slick-active button {
    background-color: var(--point);
}

.cont {
    padding: 30px 20px 40px;
}

.cont_inner {
    max-width: 1000px;
    margin: 0 auto;
}

/* ========================
Blocks
======================== */
.sp-contents {
    overflow-x: hidden;
    max-width: 375px;
    margin-inline: auto;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.35);
    position: relative;
    background: var(--white);
}

@media screen and (max-width: 1220px) {
    .sp-contents {
        margin-inline-start: 295px;
    }
}
@media screen and (max-width: 768px) {
    .sp-contents {
        margin-inline: auto;
    }
}
@media screen and (max-width: 410px) {
    .sp-contents {
        box-shadow: none;
        max-width: none;
        width: 100%;
    }
}

/* ヘッダー */
.header {
    background: var(--white);
}
.header_logo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    gap: 40px;
    padding-block: 5px;
}

.header_logo::before,
.header_logo::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 2px;
    height: 17px;
    background-color: #000;
    rotate: 45deg;
}

.header_logo::before {
    rotate: -45deg;
}

.header_brand {
    display: grid;
    place-items: center;
    width: 116px;
}

.header_salon {
    display: block;
    width: 110px;
    padding-block-start: 6px;
    margin: 0;
}

/* === Hero Area === */
.hero {
    position: relative;
}

.hero_inner--main {
    position: relative;
    z-index: 1;
    padding-top: 214px;
    padding-bottom: 10px;
}

.hero_top {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-top: 10px;
    background-image: linear-gradient(
        to right,
        var(--main-grad-1),
        var(--main-grad-2)
    );
}

.hero_top-txt1 {
    width: 180px;
}

.hero_top-txt2 {
    width: 145px;
}

.hero_main {
    width: 100%;
    aspect-ratio: 781 / 430;
}

.hero_appeal {
    font-weight: 900;
    color: var(--white);
    text-shadow: 2px 2px 0 #957c31;
    line-height: 1;
    text-align: center;
}

@keyframes bgloop {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.hero_bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    display: flex;
    overflow: hidden;
}

.hero_bg-img {
    display: flex;
    animation: bgloop 30s linear infinite;
    aspect-ratio: 3752 / 856;
    height: 100%;
}

.hero_bg-img img {
    width: 100%;
}

.hero-bottom {
    padding: 12px 8px 0;
    position: relative;
    z-index: 5;
    background: url(../images/achievement_bg.svg) bottom / 100% auto no-repeat;
}

.hero-bottom_inner {
    display: block;
}

.hero-bottom_point {
    position: absolute;
    top: 0;
    left: 40px;
    transform: translateY(-50%);
    padding: 2px;
    background-color: var(--point);
}

.hero-bottom_point::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 8px;
    height: 6px;
    background-color: var(--point);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.hero-bottom_point-inner {
    padding: 2px 4px;
    background-color: #ffea82;
    color: var(--point);
    font-size: 1.2rem;
    line-height: 1;
}

.hero-bottom_point-inner::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -3px);
    width: 8px;
    height: 6px;
    background-color: #ffea82;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.hero-bottom_desc {
    font-size: 1.6rem;
    letter-spacing: 0.03em;
    text-align: center;
    line-height: 1.4;
}
.hero-bottom_desc strong {
    color: var(--point);
    font-weight: 700;
    font-size: 1.4rem;
}

.hero-bottom_btn {
    margin-block-start: 8px;
    width: 100%;
    display: grid;
    place-items: center;
}

.hero-bottom hr {
    width: 1px;
    height: 32px;
    margin: 12px auto 0;
    background-color: #000;
}

/* === About === */
.about {
    padding-top: 12px;
    background: var(--bg);
}

.about_img {
    margin-top: 16px;
}

.about_text {
    font-size: 1.7rem;
    margin-top: 24px;
    letter-spacing: 0.02em;
    line-height: 2;
}

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

/* === 4 Strengths === */
.reasons {
    padding-bottom: 88px;
    background: url(../images/testimonials_bg.svg) bottom / 100% auto no-repeat;
}

.reasons hr {
    width: 1px;
    height: 32px;
    margin: 8px auto;
    background-color: #000;
}

.reasons_item {
    background: var(--white);
    padding: 10px;
}

.reasons_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-block-start: 25px;
}

.reasons_item-inner {
    background: var(--white);
    position: relative;
}

.reaosns_index {
    font-family: var(--ff-sub);
    color: var(--primary);
    display: block;
    background: var(--white);
    border-radius: 50%;
    text-align: center;
    position: absolute;
    aspect-ratio: 1;
    width: 64px;
    top: 0;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.reasons_index-num {
    height: 40px;
    font-size: 3.5rem;
    line-height: 1;
}

.reasons_index-num img {
    height: 100%;
}

.reasons_wrap {
    position: relative;
}

.reasons_image {
    aspect-ratio: 2/1;
}
.reasons_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom;
}

.reasons_label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 2.4rem;
    color: #ffff69;
    font-weight: 700;
    background-image: linear-gradient(to right, #87d089c0, #00bdecc0);
    padding: 8px 24px;
    line-height: 1.2;
}

.reasons_text {
    font-size: 1.6rem;
    padding: 12px 24px;
    background-color: var(--bg);
}

.reasons_badge {
    width: max-content;
    padding: 4px 12px 6px;
    margin-inline: auto;
    background-image: linear-gradient(
        to right,
        var(--main-grad-1),
        var(--main-grad-2)
    );
    border-radius: 50px;
    color: var(--white);
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
}

/* === Testimonials === */
.testimonials {
    padding-top: 12px;
    padding-bottom: 60px;
    background: url(../images/achievement_bg.svg) bottom / 100% auto no-repeat;
    background-color: #c5eeca;
}

.testimonials_list {
    padding-inline: 10px;
    margin-block-start: 24px;
}

.testimonials_list-item {
    margin: 16px 10px 10px;
    background: var(--white);
}

.testimonials_body {
    position: relative;
    padding: 32px 24px;
}

.testimonials_body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 32px;
    background-color: #000;
}

.testimonials_profile {
    position: relative;
}
.testimonials_profile img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-32px, -50%);
    border-radius: 50%;
    aspect-ratio: 1;
    width: 100px;
}

.testimonials_profile-text {
    padding: 8px;
    padding-left: 90px;
    padding-right: 12px;
    background-color: #009b99;
    color: var(--white);
    font-weight: 700;
}

.testimonials_profile-name {
    font-size: 2rem;
    line-height: 1;
}

.testimonials_profile-area {
    padding: 2px;
    margin-top: 4px;
    background-color: var(--white);
    color: var(--primary);
    font-size: 1.6rem;
    line-height: 1;
}

.testimonials_profile--rev .testimonials_profile-text {
    padding-left: 12px;
    padding-right: 90px;
}

.testimonials_profile--rev img {
    left: auto;
    right: 0;
    transform: translate(32px, -50%);
}

.testimonials_desc {
    font-size: 1.6rem;
    margin-top: 24px;
}

.testimonials_btn-wrap {
    margin-inline: -12px;
}

/* === Achivement === */
.achievement {
    background-color: var(--bg);
    padding-top: 12px;
    padding-bottom: 30px;
}

.achievement_list {
    padding-inline: 10px;
    margin-block-start: 15px;
}

.achievement_list-item {
    margin: 10px;
}

.achievement_list-inner {
    position: relative;
    box-sizing: border-box;
    max-width: 270px;
    padding: 72px 24px 20px;
    margin-inline: auto;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 30px 30px 10px 10px;
}

.achievement_item-title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    font-size: 2.4rem;
    color: var(--white);
    text-align: center;
    padding: 16px 22px;
    background-image: linear-gradient(
        to right,
        var(--main-grad-1),
        var(--main-grad-2)
    );
    border: 4px solid var(--white);
    border-radius: 100px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0.025em;
    box-sizing: border-box;
    width: 320px;
    margin-inline: auto;
}

.achievement_item-title--sm {
    padding-block: 8px;
    font-size: 2rem;
}

.achievement_item-title::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -1px);
    width: 14px;
    height: 10px;
    background-color: #44c7ba;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.achievement_item-title em {
    color: #fff100;
}

.achievement_img {
    margin-block-start: 10px;
    max-width: 204px;
}

.achievement_name {
    margin-top: 10px;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
}

.achievement_main {
    font-weight: 700;
    letter-spacing: 0.025em;
    display: flex;
    align-items: center;
    width: max-content;
    margin-inline: auto;
    gap: 6px;
}

.achievement_main-head {
    display: block;
    background-color: #009b99;
    color: var(--white);
    font-size: 2.2rem;
    padding: 3px 4px 5px;
    flex-grow: 1;
    line-height: 1;
}

.achievement_main-text {
    color: #009b99;
    font-size: 2.5rem;
    flex-shrink: 0;
}
.achievement_main-text em {
    font-size: 3.2rem;
}

.flow {
    padding-top: 40px;
    padding-bottom: 140px;
    background: var(--white);
    text-align: center;
}

.flow_list-wrap {
    overflow-x: scroll;
    margin-top: 5px;
    margin-right: -17px;
}

.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: 36px;
    width: 684px;
    margin-top: 16px;
    margin-bottom: 16px;
    padding-inline-end: 15px;
}
.flow_item-first {
    aspect-ratio: 1;
    width: 104px;
    aspect-ratio: 104 / 146;
    position: relative;
    z-index: 2;
    display: block;
}
.flow_item {
    position: relative;
    width: 580px;
    aspect-ratio: 580 / 146;
}

/* === Push === */
.push {
    position: relative;
    padding-top: 30px;
    padding-bottom: 24px;
    background-color: #c5eeca;
    padding-inline: 15px;
}
.push::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    width: 192px;
    height: 144px;
    background: url(../images/push_illust.png) center / contain no-repeat;
}
.push_title {
    position: relative;
    z-index: 1;
    padding: 32px 12px 20px;
    background-color: var(--white);
    border-radius: 10px 10px 0 0;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
}
.push_title::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -8px);
    width: 32px;
    height: 16px;
    background-color: var(--white);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.push_title::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0px);
    width: 32px;
    height: 16px;
    background-color: #c5eeca;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.push_title > em {
    color: var(--primary);
    background-image: linear-gradient(to top, #ffea82 0.2em, transparent 0.2em);
}
.push_list {
    position: relative;
    width: 100%;
    margin: 6px auto 0;
    padding: 12px 15px 24px;
    background-color: var(--white);
    border-radius: 0 0 10px 10px;
    display: flex;
    flex-direction: column;
}
.push_list-item:not(:first-child) {
    border-top: 1px dashed #c5eeca;
}
.push_list-item span {
    display: inline-block;
    position: relative;
    font-size: 2.2rem;
    line-height: 1.4;
    padding-left: 40px;
    font-weight: 500;
    margin-inline: 24px;
    margin-block: 8px;
    letter-spacing: 0.05em;
}

.push_list-item span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    width: 28px;
    height: 28px;
    background: url(../images/push_check.png) center/contain no-repeat;
}

/* === Request === */
.request {
    position: relative;
    padding-top: 53px;
    padding-bottom: 45px;
    background: url(../images/request_bg.jpg) center/cover no-repeat;
}
.request_title-inner {
    position: relative;
    box-sizing: border-box;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 18px 20px;
    margin: 0 auto;
    background-image: linear-gradient(
        to right,
        var(--main-grad-1),
        var(--main-grad-2)
    );
    color: var(--white);
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
}
.request_title-inner::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -1px);
    width: 20px;
    height: 16px;
    background-color: #44c7ba;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.request_title-inner em {
    color: #ffea82;
}

.request_title-inner em strong {
    font-size: 2.4rem;
}

.request_note {
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.7;
}
.request_note-mail {
    display: block;
    margin-top: 20px;
}
.request_panel {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 21px auto 0;
}
.request_appeal {
    position: relative;
    display: flex;
    align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0 1.5em;
    margin: 0 auto;
    background-color: var(--bg);
    color: var(--primary);
    font-size: 1.6rem;
    font-weight: 700;
    white-space: nowrap;
    height: 37px;
    border-radius: 10px;
}
.request_appeal::before {
    content: "";
    position: absolute;
    top: 0.8em;
    left: 0.5em;
    transform-origin: top left;
    transform: rotate(-45deg);
    width: 1px;
    height: 1em;
    background-color: var(--primary);
}
.request_appeal::after {
    content: "";
    position: absolute;
    top: 0.8em;
    right: 0.5em;
    transform-origin: top right;
    transform: rotate(45deg);
    width: 1px;
    height: 1em;
    background-color: var(--primary);
}
.request_appeal em {
    display: flex;
    align-items: center;
    gap: 2px;
    padding-inline-start: 2px;
    line-height: 1;
}
.request_appeal strong {
    font-size: 2.3rem;
    display: inline-block;
    line-height: 1;
    margin-block-start: -3px;
}
.request_require-note {
    text-align: right;
    font-size: 1.1rem;
    margin-block-start: 8px;
}
.request_form {
    margin-top: 11px;
}
.request_form .form * {
    font-family: var(--font-en);
}

/* === Form === */
.form .form-text {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 42px;
    padding: 8px 14px;
    background-color: var(--white);
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 5px;
    border: 1px solid #d4d4d4;
    color: var(--text);
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 400;
    font-family: var(--font-en);
}
.form .form-text::-webkit-input-placeholder {
    color: #c0c0c0;
}
.form .form-text::-moz-placeholder {
    color: #c0c0c0;
}
.form .form-text:-ms-input-placeholder {
    color: #c0c0c0;
}
.form .form-text::-ms-input-placeholder {
    color: #c0c0c0;
}
.form .form-text::placeholder {
    color: #c0c0c0;
}
.form .form-text:not(:-moz-placeholder-shown) {
    background-color: #fff;
    border: 1px solid #232323;
}
.form .form-text:not(:-ms-input-placeholder) {
    background-color: #fff;
    border: 1px solid #232323;
}
.form .form-text:not(:placeholder-shown) {
    background-color: #fff;
    border: 1px solid #232323;
}
.form .form-select {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 46px;
    padding: 11px 14px 8px;
    background-color: var(--white);
    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: 1.6rem;
    line-height: 1.5;
    font-weight: 400;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 2px solid #d4d4d4;
    color: var(--text);
}
.form .form-select--initial {
    background-color: #fff;
}
.form .form-zip-btn {
    padding: 10px 10px;
    background: var(--white);
    color: var(--red);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.1428571429;
    cursor: pointer;
    height: 42px;
    letter-spacing: 0.025em;
    flex-grow: 1;
    border: 1px solid var(--red);
    border-radius: 5px;
    margin-block-start: 0;
}
.form .wpcf7-form-control-wrap {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 7px;
}
.form .form-textarea {
    height: 140px;
}
.form_item {
    display: block;
    gap: 13px;
    color: #000;
}
.form_item:not(:first-child) {
    margin-top: 20px;
}
.form_item--short .wpcf7-form-control-wrap {
    max-width: 185px;
    margin-inline-end: 3px;
    flex-shrink: 0;
}
.form_item--has-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
}
.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%;
    margin-left: 0;
    margin-block-start: 0;
}
.form_item--left {
    float: none;
    width: auto;
}
.form_item--right {
    float: right;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
    float: none;
    width: auto;
}
.form_title {
    display: block;
    width: auto;
    text-align: left;
    font-size: 1.4rem;
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: 0.025em;
    color: var(--text);
}

.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;
}
.form .form_item--select .wpcf7-form-control-wrap::after {
    content: "";
    display: block;
    position: absolute;
    top: 21px;
    right: 20px;
    width: 12px;
    height: 10px;
    background: var(--text);
    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 {
    width: auto;
    margin-top: 0;
    margin-left: 0;
    display: flex;
    gap: 21px;
}
.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;
    border-color: var(--primary);
}
.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;
    display: block;
    margin-left: 0;
}
.form .form_item--radio .wpcf7-list-item-label {
    display: inline-block;
    position: relative;
    padding-left: 1.5em;
    font-size: 1.6rem;
    line-height: 1.25;
    cursor: pointer;
    font-weight: 500;
    letter-spacing: 0.025em;
}
.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: 1.2em;
    height: 1.2em;
    background-color: #fff;
    border: 2px solid #cbcbcb;
    border-radius: 50%;
    cursor: pointer;
}
.form .form_item--radio .wpcf7-list-item-label::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 5px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    background-color: var(--primary);
    border-radius: 50%;
    opacity: 0;
    cursor: pointer;
}
.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: #3e310b;
    -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: block;
    margin-top: 12px;
    margin-left: 0;
}
.form .form_item--checkbox .wpcf7-list-item-label {
    display: inline-block;
    position: relative;
    line-height: 1.7857142857;
    cursor: pointer;
    padding-left: 27px;
    font-size: 1.1em;
    color: #999;
    font-family: var(--font-en);
    font-weight: 300;
}
.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: 18px;
    height: 18px;
    border-radius: 2px;
    background-color: #fff;
    cursor: pointer;
}
.form .form_item--checkbox .wpcf7-list-item-label::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-65%) rotate(-45deg);
    transform: translateY(-65%) rotate(-45deg);
    width: 9px;
    height: 4px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    opacity: 0;
    cursor: pointer;
    left: 4px;
}
.form .form_item--optional:not(._) {
    text-align: center;
    margin-top: 19px;
}
.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: #b2b3b3;
    text-align: left;
    font-size: 1.3rem;
    font-weight: 500;
}
.form .form_item--optional:not(#_) .wpcf7-list-item-label::before {
    background-color: #b2b3b3;
}
.form .wpcf7-not-valid:not(.wpcf7-radio) {
    background: #f6f6f6;
    color: #464646;
}
.form .wpcf7-not-valid-tip {
    margin-top: 4px;
}
.form_note {
    margin-top: 2px;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.5;
    margin-left: 0;
}
.form_privacy-policy-wrap {
    margin-top: 17px;
    text-align: center;
}
.form_privacy-policy {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 500;
}
.form_submit-wrap {
    margin-top: 25px;
    text-align: center;
    position: relative;
}
.form_submit {
    position: relative;
    width: 80%;
    padding-top: 12px;
    padding-bottom: 13px;
    outline: none;
    border: none;
    border-radius: 16px;
    background-color: var(--point);
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.075em;
    cursor: pointer;
}

/* ========================
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: linear-gradient(to top, var(--yellow) 10px, transparent 10px);
}

.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);
}

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

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

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

.bold {
    font-weight: bold;
}

.extrabold {
    font-weight: 800;
}
