@-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: 'Oswald', sans-serif;
    --ff-roboto: 'Roboto', sans-serif;
    --ff-inter: 'Inter', sans-serif;

    --text: #000;
    --text-light: #575757;
    --primary: #06446e;
    --red: #ff0c1d;
    --gold: #d5be32;
    --yellow: #ffee50;
    --white: #fff;

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

    position: relative;
    line-height: 1.6;

    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(--primary);
}

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

ul,
ol {
    list-style: none;
}

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

/* ========================
Common
======================== */
.btn {
    overflow: hidden;
    display: block;
    border-radius: 999em;
    display: flex;
    text-decoration: none;
    background: #9eecc9;
    box-shadow: 0 8px 0 #57b189;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 5px 6px 7px;
    position: relative;
}
.btn::after {
    content: '';
    position: absolute;
    top: 47%;
    right: 11px;
    width: 13px;
    height: 9px;
    background: var(--text);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    z-index: 5;
}
.btn_appeal {
    color: var(--white);
    line-height: 1.1;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    background: #f33a46;
    border-radius: 50%;
    display: block;
    aspect-ratio: 1/1;
    width: 49px;
    display: grid;
    place-items: center;
}

.btn_main {
    text-align: center;
    color: var(--text);
}

.btn_main-head {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: calc(22 / 13);
    display: block;
}

.btn_main-body {
    font-weight: 600;
    font-size: 2.3rem;
    line-height: 1;
    display: block;
}

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

.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);
}
.sect-title {
    --color: var(--primary);
    font-family: var(--ff-inter);
    width: 330px;
    margin-inline: auto;
}
.sect-title--white {
    --color: #fff;
}
.sect-title_inner {
    display: block;
    transform: skew(-8deg);
}

.sect-title_sub {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--gold);
    position: relative;
    display: block;
    text-align: center;
}
.sect-title_sub::before,
.sect-title_sub::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    width: 132px;
    height: 2px;
    background: var(--color);
}
.sect-title_sub::before {
    left: auto;
    right: 0;
}

.sect-tite--reasons .sect-title_sub::before,
.sect-tite--reasons .sect-title_sub::after {
    width: 82px;
}

.sect-tite--achievement .sect-title_sub::before,
.sect-tite--achievement .sect-title_sub::after {
    width: 74px;
}

.sect-tite--flow .sect-title_sub::before,
.sect-tite--flow .sect-title_sub::after {
    width: 107px;
}
.sect-title_main {
    line-height: 1.3;
    font-weight: 700;
    font-size: 3rem;
    color: var(--color);
    text-align: center;
    padding-block: 1px 21px;
    position: relative;
}
.sect-title_main::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 17px;
    mask: url(../images/sect-title_main-bg.svg) center/auto 100% no-repeat;
    background: var(--color);
}

/* === Slick === */
.slick-list {
}
.slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.slick-slide {
    float: none;
    height: auto;
}
.slick-slide:not(.slick-current) * {
    -webkit-filter: none;
    filter: none;
}
.slick-prev,
.slick-next {
    display: block;
    position: absolute;
    top: 50%;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 29px;
    height: 116px;
    padding: 0;
    background-color: color-mix(in srgb, var(--gold) 70%, transparent);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border: none;
    outline: none;
    color: transparent;
    cursor: pointer;
}
.slick-prev::after,
.slick-next::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-70%, -50%) rotate(-45deg);
    transform: translate(-70%, -50%) rotate(-45deg);
    width: 12px;
    height: 12px;
    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: 0;
}
.slick-next {
    right: 0;
}
.slick-disabled {
    opacity: 0;
    cursor: auto;
}
.slick-disabled:hover,
.slick-disabled:focus {
    opacity: 0;
}
.slick-dotted.slick-slider {
    margin-bottom: 40px;
}
.slick-dots {
    display: block;
    position: absolute;
    bottom: -4px;
    width: 100%;
    text-align: center;
}
.slick-dots li {
    display: inline-block;
    margin: 0 4px;
    cursor: pointer;
}
.slick-dots li button {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    padding: 0;
    background-color: #afafaf;
    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: 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%;
    }
}

/* PC用コンテンツ */

.pc-nav {
    position: fixed;
    top: 50%;
    left: calc(158 / 1440 * 100vw);
    translate: 0 -50%;
}

@media screen and (max-width: 1220px) {
    .pc-nav {
        left: 10px;
    }
}

.pc-nav_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: max-content;
    gap: 1em;
}

.pc_nav-item {
}

.pc-nav_link {
    position: relative;
    color: #acacac;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
    padding-inline-start: 28px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.pc-nav_link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    width: 19px;
    height: 16px;
    mask: url(../images/chevron2.svg) center/contain no-repeat;
    background: #00c5c5;
    opacity: 0;
}

.pc-nav_link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    translate: 0 -50%;
    width: calc(100% - 28px);
    height: 2px;
    background: #00c5c5;
    opacity: 0;
}

.pc_nav-item.current .pc-nav_link {
    color: #00c5c5;
}
.pc_nav-item.current > .pc-nav_link::before,
.pc_nav-item.current > .pc-nav_link::after {
    opacity: 1;
}

.pc_nav-item:hover {
    opacity: 1;
}
.pc_nav-item:hover > .pc-nav_link {
    color: #00c5c5;
    opacity: 1;
}
.pc_nav-item:hover > .pc-nav_link::before,
.pc_nav-item:hover > .pc-nav_link::after {
    opacity: 1;
}

.pc-cta {
    max-width: 331px;
    margin-inline: auto;
    position: fixed;
    top: 50%;
    translate: 0 -50%;
    left: calc(50% + 20vw);
}

@media screen and (max-width: 1220px) {
    .pc-cta {
        left: calc(50% + 16vw);
    }
}
@media screen and (max-width: 1024px) {
    .pc-cta {
        display: none;
    }
}
.pc-cta_block {
    padding-block-start: 42px;
}
@media screen and (max-height: 620px) {
    .pc-cta_block {
        padding-block-start: 3px;
    }
}
.pc-cta_block-inner {
    padding-block-start: calc(32 / 915 * 100vh);
    background: var(--white);
    border-radius: 15px;
}

.pc-cta_block-icon {
    aspect-ratio: 1;
    width: min(calc(84 / 1440 * 100vw), 90px);
    border-radius: 50%;
    background: var(--white);
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% 0;
    display: grid;
    place-items: center;
}

@media screen and (max-height: 620px) {
    .pc-cta_block-icon {
        display: none;
    }
}

.pc-cta_block-icon img {
    aspect-ratio: 1;
    width: calc(44 / 1440 * 100vw);
    margin-inline: auto;
    display: block;
    object-fit: contain;
}

.pc-cta_block-title {
    color: #00c5c5;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-align: center;
    padding-inline: 13px;
    position: relative;
    max-width: 280px;
    display: block;
    margin-inline: auto;
    width: max-content;
}
.pc-cta_block-title::before,
.pc-cta_block-title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    width: 2px;
    height: 50px;
    background-color: #00c5c5;
    rotate: -25deg;
}
.pc-cta_block-title::after {
    left: auto;
    right: 0;
    rotate: 25deg;
}

.pc-cta_block-line {
    width: calc(208 / 1440 * 100vw);
    max-width: 208px;
    margin-inline: auto;
    margin-block-start: 6px;
}

.pc-cta_block-desc {
    color: var(--text);
    font-size: 1.3rem;
    line-height: 1.5;
    display: block;
    width: calc(274 / 1440 * 100vw);
    max-width: 274px;
    margin-inline: auto;
    margin-block-start: 8px;
}

.pc-cta_block-qr {
    aspect-ratio: 234/80;
    width: calc(234 / 1440 * 100vw);
    max-width: 234px;
    margin-inline: auto;
    margin-block: 9px;
}

.pc-cta_block-footer {
    background: #00c5c5;
    padding: calc(21 / 915 * 100vh) 22px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}

.pc-cta_block-logo {
    display: flex;
    justify-content: center;
    align-self: center;
}
.pc-cta_block-logo span {
    font-size: min(1.4rem, 2.2vw);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    display: flex;
    align-items: center;
}

.pc-cta_block-footer-text {
    color: var(--white);
    text-align: center;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.6;
}

.pc-cta_btn {
    margin-block-start: calc(26 / 915 * 100vh);
    display: block;
    border: 2px solid #00c5c5;
    border-radius: 999px;
    background: var(--white);
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 0 rgb(0 0 0 / 25%);
    padding-block: 8px;
    position: relative;
    color: #00c5c5;
}

.pc-cta_btn::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 16px;
    translate: 0% -50%;
    width: 10px;
    height: 14px;
    background-color: #00c5c5;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.pc-cta_btn-inner {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.5;
}

/* ヘッダー */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: var(--white);
}
.header_logo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    gap: 28px;
    padding-block: 2px;
}

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

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

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

.header_salon {
    display: block;
    width: 153px;
    padding-block-start: 6px;
    margin: 0;
}
.hero {
    padding-block: 82px 0;
    background: url(../images/hero_bg.jpg) center/cover no-repeat;
}

.hero_inner {
}

.hero_lead {
    background: var(--white);
    transform: skew(-7deg);
    font-size: 1.8rem;
    line-height: 1.2;
    display: block;
    padding: 9px 17px;
    width: fit-content;
    margin-inline: auto;
    text-align: center;
}

.hero_main {
    margin-block-start: 16px;
    text-align: center;
}

.hero_main-head {
    display: block;
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--white);
    background: url(../images/hero_main-head-bg.svg) center/contain no-repeat;
}

.hero_main-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero_main-item-title {
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--white);
    padding-block-end: 13px;
    position: relative;
    display: block;
    width: fit-content;
    margin-inline: auto;
}
.hero_main-item-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: url(../images/hero_main-item-title-bg.svg) center/auto 100% no-repeat;
}
.hero_main-item-title strong {
    font-size: 2.4rem;
}

.hero_main-item-desc {
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1;
    margin-block-start: -2px;
}
.hero_main-item:last-child .hero_main-item-desc {
    font-size: 5.8rem;
}

.hero_main-item-desc strong {
    display: inline-block;
    font-size: 9.8rem;
    font-weight: 700;
    font-family: var(--ff-sub);
    translate: 0 5%;
    line-height: 0.8;
}

.hero_main-item-desc small {
    font-size: 1.25rem;
    color: var(--white);
    text-shadow: 1px 1px 0 var(--text);
}

.hero_main-item-desc-inner {
    display: flex;
    align-items: baseline;
    justify-content: center;
    filter: drop-shadow(3px 3px 6px var(--text));
}
.hero_main-item-desc-inner span {
    writing-mode: vertical-lr;
    line-height: 1.2;
    font-weight: 700;
    font-size: 2.7rem;
    display: flex;
    background: var(--gold);
    color: var(--text);
    padding: 10px 5px;
    margin-block-end: 10px;
    letter-spacing: 0.05em;
    translate: 0 4px;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.25);
}
.hero_main-note {
    display: block;
    font-size: 0.9rem;
    line-height: 1.3;
    color: var(--white);
    text-align: right;
    margin-block-start: 12px;
    width: 315px;
    margin-inline: auto;
    position: relative;
}
.hero_main-note::before {
    content: '※直営店の平均';
    position: absolute;
    inset: 0;
    color: var(--text);
    font-weight: 900;
    -webkit-text-stroke: 1px var(--text);
}
.hero_main-note::after {
    content: '※直営店の平均';
    position: absolute;
    inset: 0;
    color: var(--white);
    font-weight: 300;
}

.hero_bottom {
    background: url(../images/hero_bottom-bg.jpg) center/cover no-repeat;
    padding: 15px 20px 22px;
    margin-block-start: 20px;
}

.hero_bottom-lead {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
}
.hero_lead strong {
    font-size: 2rem;
    line-height: 1.3;
}
.hero_btn {
    margin-block-start: 10px;
}

.intro {
}

.intro_head {
    background: url(../images/intro_head-bg.png) center/cover no-repeat;
    padding: 20px 10px 35px;
}

.intro_title {
}
.intro_title img {
    display: block;
    max-width: 268px;
    margin-inline: auto;
}

.intro_text {
    color: #fff;
    text-align: center;
    font-family: var(--ff-sub);
    font-size: 2.2rem;
    font-weight: 400;
    position: relative;
    padding-inline: 1em;
    letter-spacing: -0.01em;
    margin-block-start: 16px;
    line-height: 1;
}
.intro_text::before,
.intro_text::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    mask: url(../images/deco2.png) center/contain no-repeat;
    background: #fff;
    width: 1.5em;
    height: 1.5em;
}
.intro_text::after {
    left: auto;
    right: 0;
    scale: -1 1;
}

.intro_text em {
    font-size: 2.8rem;
}
.intro_text strong {
    font-size: 2.7rem;
}

.intro_body {
    padding-inline: 15px;
    padding-block: 20px 32px;
}

.intro_lead {
    font-weight: 700;
    font-size: 2.1rem;
    color: var(--primary);
    text-align: center;
}
.intro_lead span > img {
    display: inline-block;
    width: 18px;
    height: 18px;
    object-fit: contain;
    object-position: center;
    translate: 0 1px;
}
.intro_lead em {
    font-size: 3.1rem;
    background: linear-gradient(to top, var(--yellow) 0, var(--yellow) 12px, transparent 12px);
}
.intro_lead em > img {
    display: inline-block;
    width: 55px;
    height: 27px;
    object-fit: contain;
    object-position: center;
    translate: 0 3px;
}

.intro_graph {
    background: #f5f3f3;
    padding: 20px 10px;
    border-radius: 4px;
    margin-block-start: 30px;
}

.intro_graph-img {
    max-width: 95%;
    margin-inline: auto;
}

.intro_graph-note {
    font-size: 1rem;
    font-weight: 400;
    margin-block-start: 10px;
}

.about {
    background: url(../images/about_bg.jpg) center/cover no-repeat;
    padding-block: 22px 70px;
    position: relative;
    padding-inline: 18px;
}

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

.about_text-wrap {
    margin-block-start: 20px;
}
.about_text {
    font-size: 1.6rem;
    font-weight: 400;
}
.about_text small {
    font-size: 1.2rem;
}
.about_text + .about_text {
    margin-block-start: 1.5em;
}

.about_img {
    padding-inline: 4px;
    margin-block-start: 30px;
}

.reasons {
    background: url(../images/reasons_bg.png) center top/cover no-repeat;
    padding-block: 70px 64px;
    margin-block-start: -32px;
    position: relative;
    z-index: 5;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 31px), 0 100%);
}

.reasons_inner {
}

.reasons_title {
}

.reasons_list {
    margin-block-start: 24px;
}

.reasons_item {
    position: relative;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
}
.reasons_item + .reasons_item {
    margin-block-start: 22px;
}

.reasons_item-index {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.6;
    color: var(--white);
    background: var(--red);
    clip-path: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
    padding: 2px 22px 5px 17px;
}
.reasons_item-index span {
    font-size: 1.8rem;
    display: inline-block;
    margin-inline-start: 4px;
}
.reasons_image {
    aspect-ratio: 335/169;
}
.reasons_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.reasons_item-lead {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--primary);
    text-align: center;
    padding-inline: 10px;
    position: relative;
    display: block;
    width: max-content;
    margin-inline: auto;
}
.reasons_item-lead::before,
.reasons_item-lead::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    width: 2px;
    height: 14px;
    background: var(--primary);
    rotate: 325deg;
}
.reasons_item-lead::after {
    left: auto;
    right: 0;
    rotate: 35deg;
}
.reasons_item-body {
    padding: 16px 14px;
    background: var(--white);
}
.reasons_item-title {
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.25;
    margin-block-start: 2px;
    transform: skew(-8deg);
    text-align: center;
    background: #e9e4c9;
    padding: 4px 5px 5px;
    width: 95%;
    margin-inline: auto;
    color: var(--primary);
}

.reasons_text {
    display: block;
    font-size: 1.6rem;
    line-height: 1.6;
    margin-block-start: 13px;
}

.reasons_cta {
    margin-block-start: 44px;
}

.voice {
    background: url(../images/voice_bg.jpg) center/cover no-repeat;
    padding: 35px 0 45px;
}

.voice_list {
}

.voice_list-item {
    display: inline-block;
    margin: 15px;
    padding: 0 12px 20px;
    background: #fff;
}

.voice_index {
    width: 118px;
    aspect-ratio: 118/25;
    margin-inline: auto;
}

.voice_lead {
    text-align: center;
    font-family: var(--ff-sub);
    font-size: 2.3rem;
    margin-block-start: 14px;
    line-height: calc(60 / 46);
    font-weight: 400;
}
.voice_info {
    display: grid;
    grid-template-columns: 330fr 175fr;
    grid-template-rows: auto auto;
    gap: 5px 53px;
    padding-inline-start: 12px;
}

.voice_info-label {
    grid-area: 1 / 1 / 2 / 2;
    background: var(--gold);
    color: #fff;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1;
    text-align: center;
    padding-block: 5px;
    display: grid;
    place-items: center;
    align-self: end;
    justify-self: center;
    width: 165px;
}

.voice_info-title {
    grid-area: 2 / 1 / 3 / 2;
    font-size: 2rem;
    font-family: var(--ff-sub);
    text-align: center;
    line-height: 1.5;
    border-block-end: 1px solid var(--text);
    align-self: start;
    justify-self: center;
    width: 165px;
}

.voice_info-icon {
    grid-area: 1 / 2 / -1 / -1;
}

.voice_desc {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: calc(54 / 30);
    letter-spacing: 0.05em;
    font-feature-settings: 'palt' 1;
    padding-inline-start: 8px;
}

.cta {
    padding: 35px 20px 55px;
    background: #f1ecd3;
}

.achievement {
    padding-inline: 0;
    padding-block: 54px 16px;
    background: url(../images/achievement_bg.jpg) center/cover no-repeat;
    margin-block-start: -32px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 31px), 0 100%);
    position: relative;
    z-index: 4;
}

.achievement_inner {
}

.achievement_title {
    padding-inline: 20px;
}

.achievement_list {
}

.achievement_list-item {
    padding: 23px 26px 21px;
    background: var(--white);
    border-radius: 6px;
    border: 1px solid var(--primary);
    margin: 24px 20px 20px;
}

.achievement_item-head {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    padding-inline: 34px;
    position: relative;
    display: block;
    text-align: center;
    width: max-content;
    margin-inline: auto;
}
.achievement_item-head::before,
.achievement_item-head::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    width: 2px;
    height: 100%;
    background: url(../images/achievement_item-title-deco.svg) center/contain no-repeat;
}
.achievement_item-head::after {
    left: auto;
    right: 0;
}

.achievement_item-main {
    margin-block-start: 23px;
    display: flex;
    align-items: end;
    position: relative;
    width: max-content;
    margin-inline: auto;
}

.achievement_item-main::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 206px;
    height: 13px;
    background: var(--yellow);
    border-radius: 999em;
}

.achievement_item-main-head {
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.05em;
    font-size: 2.1rem;
    display: block;
    background: var(--primary);
    border-radius: 5px;
    width: 54px;
    aspect-ratio: 54/58;
    display: grid;
    place-items: center;
    margin-inline-end: 12px;
}

.achievement_item-main-num {
    font-family: var(--ff-sub);
    color: var(--red);
    font-size: 6.3rem;
    font-weight: 400;
    line-height: 1;
    position: relative;
    z-index: 5;
}

.achievement_item-main-text {
    position: relative;
    z-index: 5;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--red);
    display: inline-block;
    padding-block-start: 6px;
}

.achievement_item-month {
    margin-block-start: 11px;
    font-family: var(--ff-sub);
    font-weight: 400;
    line-height: 1.42;
    font-size: 1.6rem;
    text-align: center;
    background: #f0f0f0;
    padding-block: 3px;
}

.achievement_item-download {
    margin-block-start: 10px;
    aspect-ratio: 264/145;
    width: 100%;
    background: url(../images/achievement_item-download-bg.jpg) center/contain no-repeat;
    display: grid;
    place-items: center;
}

.achievement_item-download-inner {
    width: 257px;
    display: block;
    margin-inline: auto;
    font-size: 1.4rem;
    letter-spacing: 0.02em;
    text-align: center;
    padding-block: 9px;
    background: var(--white);
    border-radius: 6px;
}

.flow {
    padding-block: 83px 66px;
    background: var(--primary);
    margin-block-start: -32px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 31px), 0 100%);
    position: relative;
    z-index: 3;
}

.flow_list-wrap {
    overflow: auto;
}
.flow_list {
    padding-block: 26px 20px;
    display: grid;
    gap: 16px;
    grid-template-columns: 72px repeat(6, 1fr);
    width: max-content;
    padding-inline: 20px;
    position: relative;
}

.flow_list::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 90%;
    height: 4px;
    background: var(--gold);
    box-shadow: 1px 3px 0 rgba(0, 0, 0, 0.25);
}

.flow_item-first {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-inline-end: 6px;
    position: relative;
    z-index: 5;
}

.flow_item-link {
    color: var(--white);
    text-decoration: none;
    text-align: center;
    font-size: 1.6rem;
    font-family: var(--ff-roboto);
    font-weight: 400;
    margin-block-start: 24px;
}
.flow_item-link span {
    text-shadow: 3px 3px 3px var(--text);
    display: block;
    margin-block-start: -5px;
}

.flow_icon {
    translate: 2px 0;
}

.flow_item {
    border-radius: 19px;
    background: var(--white);
    border: 3px solid var(--gold);
    aspect-ratio: 1;
    padding: 8px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    align-items: center;
    position: relative;
    z-index: 5;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.25);
}
.flow_item:last-child {
    border-color: var(--red);
    background: var(--red);
}
.flow_item:last-child > * {
    color: var(--white);
}

.flow_item-index {
    font-size: 2.2rem;
    line-height: 1.2;
    color: var(--primary);
    text-align: center;
    font-weight: 700;
    font-family: var(--ff-sub);
}

.flow_item-title {
    font-family: var(--ff-roboto);
    font-weight: 400;
    line-height: 1.3;
    font-size: 2rem;
    text-align: center;
    margin-block-start: 3px;
}

.flow_item-title-inner {
}
.push {
    padding-block: 68px 98px;
    background: #0b1632;
    margin-block-start: -32px;
    position: relative;
    z-index: 1;
}

.push_head {
}

.push_title {
    font-size: 1.8rem;
    line-height: 1.5;
    color: var(--white);
    text-align: center;
}
.push_title strong {
    font-size: 2.3rem;
    line-height: 1.4;
    letter-spacing: 0.03em;
}

.push_list {
    margin-block-start: 32px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    max-width: 324px;
    margin-inline: auto;
    margin-inline-start: 14px;
}

.push_item {
    padding-inline-start: 36px;
    position: relative;
}
.push_item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    width: 24px;
    height: 24px;
    background: url(../images/push_item-icon.svg) center/contain no-repeat;
}

.push_item-text {
    color: var(--white);
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.request {
    position: relative;
    z-index: 5;
    padding-top: 82px;
    padding-bottom: 38px;
}
.request_title {
    width: 100%;
    position: absolute;
    top: -56px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.request_title-inner {
    box-sizing: border-box;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 22px 20px 38px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    background: url(../images/request_title-bg.png) center/contain no-repeat;
    width: 100%;
    color: var(--text-light);
    line-height: 1.4;
}

.request_title-inner strong {
    font-size: 1.8rem;
    display: inline-block;
}
.request_title-inner strong em {
    font-size: 2rem;
    line-height: 1.3;
    letter-spacing: 0.03em;
}
.request_note {
    text-align: center;
    font-weight: 300;
    font-size: 1.2rem;
    font-family: var(--ff-roboto);
    line-height: calc(20 / 12);
}
.request_note-mail {
    display: block;
}
.request_panel {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
}
.request_appeal {
    display: flex;
    align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 4px 21px;
    margin: 0 auto;
    background-color: var(--red);
    color: var(--yellow);
    font-size: 1.4rem;
    font-weight: 700;
    white-space: nowrap;
    height: 35px;
    border-radius: 999em;
    margin-block-start: 15px;
}
.request_appeal em {
    display: flex;
    align-items: center;
    gap: 2px;
    padding-inline-start: 2px;
    line-height: 1;
    margin-block-start: -2px;
}
.request_appeal strong {
    font-size: 2rem;
    display: inline-block;
    font-weight: 500;
    line-height: 1;
    margin-block-start: -2px;
}
.request_require-note {
    text-align: right;
    font-size: 1.2rem;
    font-weight: 300;
    margin-block-start: 21px;
    font-family: var(--ff-roboto);
}
.request_form {
}
.form * {
    font-family: var(--ff-roboto);
}
.form .form-text {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 49px;
    padding: 8px 14px;
    background-color: #efefef;
    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;
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.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: 49px;
    padding: 8px 14px 8px;
    background-color: #fafafa;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 5px;
    -webkit-box-shadow: inset 3px 3px 2px rgba(0, 0, 0, 0.2);
    box-shadow: inset 3px 3px 2px rgba(0, 0, 0, 0.2);
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 400;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 2px solid var(--primary);
    color: var(--text);
}
.form .form-select--initial {
    background-color: #fff;
}
.form .form-zip-btn {
    padding: 10px 13px;
    background: #fff;
    border-radius: 999em;
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    height: 50px;
    letter-spacing: 0.02em;
    border: none;
    margin-block-start: 0;
    border: 2px solid var(--primary);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
}
.form .wpcf7-form-control-wrap {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 5px;
}
.form .form-textarea {
    height: 100px;
}
.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: 166px;
    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-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text);
    line-height: 1.25;
}

.form_title--long {
    letter-spacing: -0.1em;
}
.form_required {
    color: #e42d2d;
}
.form_control {
    display: block;
    width: 100%;
}
.form .form_item--select {
    max-width: 200px;
}
.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: 19px;
    right: 16px;
    width: 12px;
    height: 10px;
    background: var(--primary);
    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: 700;
    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: 18px;
    height: 18px;
    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: 4px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
    opacity: 0;
    cursor: pointer;
}
.form .form_item--checkbox .wpcf7-checkbox {
    margin-top: 0;
    margin-left: 0;
}
.form .form_item--checkbox .wpcf7-checkbox input {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
}
.form .form_item--checkbox .wpcf7-checkbox input:checked + .wpcf7-list-item-label::before {
    background-color: #b6b6b6;
    border: 1px solid #b6b6b6;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 2px;
}
.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: 39px;
    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: #bdbdbd;
    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: 21px;
    height: 21px;
    border-radius: 2px;
    background-color: #fff;
    border: 2px solid #b6b6b6;
    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 var(--white);
    border-left: 2px solid var(--white);
    opacity: 0;
    cursor: pointer;
    left: 5px;
}
.form .form_item--optional:not(._) {
    text-align: center;
    margin-top: 30px;
}
.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: #999;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 400;
}
.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.3rem;
    font-weight: 300;
    color: #9b9b9b;
    line-height: 1.5;
    margin-left: 0;
    font-family: var(--ff-roboto);
}
.form_privacy-policy-wrap {
    margin-top: 74px;
    text-align: center;
    max-width: 288px;
    margin-inline: auto;
}
.form_privacy-policy {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8;
}
.form_submit-wrap {
    margin-top: 26px;
    text-align: center;
    position: relative;
    width: 222px;
    margin-inline: auto;
}
.form_submit {
    position: relative;
    width: 100%;
    padding-top: 12px;
    padding-bottom: 13px;
    outline: none;
    border: none;
    border-radius: 8px;
    background: #a69778;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    color: #fff;
}

.footer {
    background-color: var(--primary);
    color: #fff;
    padding-top: 24px;
}

.footer * {
    font-family: var(--ff-roboto);
}
.footer_inner {
    position: relative;
    max-width: 1000px;
    padding: 0 20px;
    margin: 0 auto;
}
.footer_about-franchise-salon {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 860px;
    margin: 0 auto;
    border-radius: 10px;
    background-color: #fff;
    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-weight: bold;
    font-size: 1.6rem;
    letter-spacing: 0.02em;
    font-weight: 700;
    font-family: var(--font-en);
    color: var(--text);
}
.footer_about-logo {
    display: inline-block;
    width: 172px;
}
.footer_about-desc {
    line-height: 1.5;
    font-size: 1.3rem;
    font-weight: 300;
    font-family: var(--font-roboto);
    letter-spacing: -0.02em;
    color: var(--text);
}
.footer_company-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-block-start: 35px;
}
.footer_info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-family: var(--font-en);
}
.footer_info + .footer_info {
    margin-block-start: 28px;
    padding-left: 0;
    border: none;
}
.footer_company {
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.07em;
}
.footer_head-office {
    margin-top: 2px;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.07em;
}
.footer_address {
    margin-top: 4px;
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 400;
    letter-spacing: 0.07em;
}
.footer_contact {
    margin-block-start: 15px;
    display: block;
    border-radius: 999em;
    padding: 7px 25px 6px 8px;
    width: 100%;
    background: var(--gold);
    position: relative;
    box-sizing: border-box;
    position: relative;
    width: fit-content;
}
.footer_contact::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 11px;
    translate: 0 -50%;
    width: 8px;
    height: 12px;
    background-color: var(--primary);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.footer_contact-link {
    grid-area: 1/2/2/3;
    color: var(--primary);
    font-size: 1.2rem;
    line-height: calc(20 / 12);
    font-weight: 700;
    text-decoration: none;
    width: fit-content;
    text-align: center;
}
.footer_copyright {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    padding-block-end: 8px;
}
.footer--copyright {
    padding-top: 23px;
    padding-bottom: 0px;
    background-color: var(--primary);

    margin-block-start: -1px;
}
/* ========================
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);
}

.highlight {
    background: linear-gradient(
        to top,
        transparent 2px,
        var(--yellow) 2px,
        var(--yellow) calc(100% - 2px),
        transparent calc(100% - 2px)
    );
    font-weight: 700;
}

.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);
}
.orange {
    color: var(--orange);
}
.red {
    color: var(--red);
}

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

.bold {
    font-weight: bold;
}

.extrabold {
    font-weight: 800;
}

.box {
    display: inline-block;
    padding: 0 0.2em;
    background: linear-gradient(to right, #f5d784 0, #fdf4d5 50%, #f5d784 100%);
    color: var(--text);
}
