@-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%;
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  --ff-roboto: "Roboto", sans-serif;
  --ff-noto: "Noto Sans JP", sans-serif;

  --text: #333333;
  --primary: #365e36;
  --red: #b70406;
  --orange: #eb6347;
  --yellow: #f9fc3f;
  --white: #fff;

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

  position: relative;
  line-height: 1.764;

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

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;
  aspect-ratio: 335/74;
}
.btn_appeal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  left: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--white);
}

.btn_appeal-inner {
  text-align: center;
  color: #01ac13;
  font-size: 1.2rem;
  font-weight: bold;
}
.btn_appeal-inner em {
  font-size: 2.1rem;
}
.btn_appeal-inner small {
  font-size: 1.1rem;
}
.btn_recommend {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}
.btn--gritter {
  overflow: hidden;
  position: relative;
  display: block;
}
.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 {
  font-family: var(--ff-sub);
  font-size: 4.2rem;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* === 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: 120px;
  padding: 0;
  background-color: #3e310b;
  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: 7px;
  height: 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  color: transparent;
}
.slick-prev {
  -webkit-transform: translateY(-50%) scale(-1, 1);
  transform: translateY(-50%) scale(-1, 1);
  left: -20px;
}
.slick-next {
  right: -20px;
}
.slick-disabled {
  opacity: 0;
  cursor: auto;
}
.slick-disabled:hover,
.slick-disabled:focus {
  opacity: 0;
}
.slick-dotted.slick-slider {
  margin-bottom: 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 3px;
  cursor: pointer;
}
.slick-dots li button {
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  padding: 0;
  background-color: #d6cca5;
  border: 0;
  outline: none;
  color: transparent;
  font-size: 0px;
  line-height: 0px;
  cursor: pointer;
}
.slick-dots li.slick-active button {
  background-color: #907525;
}

.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: 48px;
  padding-block: 1px;
}

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

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

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

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

.hero {
  position: relative;
  padding-top: 69px;
  background: url(../images/hero_bg.jpg) center 63%/100% auto no-repeat, #010101;
  overflow: hidden;
  position: relative;
}

.hero_inner {
  position: relative;
  padding-bottom: 229px;
}

.hero_inner::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/hero_triangle.svg) center/cover no-repeat;
  z-index: 2;
}

.hero_lead {
  font-size: 1.45rem;
  line-height: 1.2;
  color: #fff;
  background: var(--primary);
  position: relative;
  padding-block: 2px 4px;
  padding-inline: 31px 9px;
  border-radius: 2px;
  display: block;
  width: max-content;
  margin-inline: auto;
}

.hero_lead::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 9px;
  translate: 0 -50%;
  width: 15px;
  height: 15px;
  background: url(../images/icon_check.svg) center/contain no-repeat;
}

.hero_text {
  font-size: 1.86rem;
  line-height: 1.9;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-block-start: -10px;
  display: block;
}
.hero_text img {
  aspect-ratio: 75 / 42;
  width: 75px;
  translate: 0 10px;
}
.hero_achievement {
  width: 350px;
  aspect-ratio: 677/183;
  margin-block-start: 3px;
  margin-inline: auto;
  z-index: 10;
  position: relative;
}

.hero_achievement-text {
  z-index: 10;
  position: relative;
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  margin-inline: auto;
  margin-block-start: -12px;
}

.hero_badge {
  aspect-ratio: 1/1;
  width: 118px;
  position: absolute;
  top: 53%;
  right: 11px;
  z-index: 5;
}

.hero_main {
  width: 100%;
  aspect-ratio: 687 / 482;
}
.hero_appeal {
  font-family: var(--ff-sub);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-block-start: 27px;
  padding-inline: 8px;
}
.hero_appeal-item {
  font-size: 2.5rem;
  background: #2e2e2e;
  box-shadow: 3px 3px 0 #545454;
  line-height: 1;
  padding: 9px 11px 9px 22px;
  transform: skew(-5deg);
  font-weight: 500;
}
.hero_appeal-item-inner {
  position: relative;
  padding-inline-start: 25px;
}
.hero_appeal-item-inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 17px;
  height: 15px;
  background: url(../images/icon_check.png) center/contain no-repeat;
}
.hero_appeal-item em {
  font-size: 3.4rem;
  translate: 0 2px;
  display: inline-block;
}

.hero_catch {
  color: var(--white);
  font-size: 2rem;
  letter-spacing: 0.05em;
  font-family: var(--ff-sub);
  white-space: nowrap;
  margin-block-start: 22px;
  line-height: 1.5;
}

.hero_bottom {
  background: #e1daca;
  position: relative;
  margin-block-start: -16px;
}
.hero_bottom-badge {
  aspect-ratio: 1;
  width: 71px;
  position: absolute;
  top: 0;
  left: 12px;
  translate: 0 -67%;
}
.hero_bottom-head {
  padding: 8px 20px;
  font-size: 1.4rem;
  line-height: 1.4;
  background: var(--primary);
  color: #fff;
  text-align: center;
}
.hero_bottom-head span {
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 600;
}
.hero_bottom-head em {
}

.hero_btn {
  padding-block: 11px;
  padding-inline: 20px;
  width: 100%;
  display: grid;
  place-items: center;
  box-sizing: border-box;
}

.hero_bg {
  overflow: hidden;
  position: absolute;
  bottom: 0;
  right: 0;
  bottom: 0;
  left: 0;
  clip-path: polygon(0% 85px, 100% 0, 100% calc(100% - 85px), 0 100%);
  aspect-ratio: 375 / 245;
  width: 100%;
}
.hero_bg-item {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 1s linear;
  transition: opacity 1s linear;
  opacity: 0;
}
.hero_bg-img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
}
.hero_bg-img img {
  height: 100%;
  width: 100%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero_bg-item.show {
  opacity: 1;
  z-index: 1;
}
.hero_bg-item.hide {
  opacity: 1;
  z-index: 0;
}
.hero_bg-item.active .hero_bg-img {
  -webkit-transform-origin: center;
  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;
}

.about {
  padding-block: 60px 158px;
  position: relative;
  background: url(../images/about_bg.jpg) top center/auto 100% no-repeat;
}

.about_inner {
  position: relative;
  z-index: 5;
}
.about_deco {
  width: 113px;
  height: 210px;
  position: absolute;
  top: -41px;
  right: 7px;
}

.about_title {
  text-align: center;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1.5;
  position: relative;
}

.about_title-sub {
  position: absolute;
  left: 0;
  top: -60px;
  width: 260px;
}

.about_title-main {
  font-size: 2.6rem;
}

.about_list {
  display: flex;
  flex-direction: column;
  gap: 81px;
  margin-block-start: 40px;
}
.about_item {
}

.about_item:nth-child(2n) {
  margin-inline-start: auto;
  text-align: right;
}

.about_item:nth-child(3) {
  margin-block-start: -26px;
}

.about_item:nth-child(4) {
  margin-block-start: -51px;
}
.about_item:nth-child(5) {
  margin-block-start: 3px;
}
.about_item:nth-child(6) {
  margin-block-start: 5px;
}

.about_index {
  width: 110px;
  padding-inline: 20px;
  opacity: 0.9;
  mix-blend-mode: multiply;
}
.about_item:nth-child(2n) .about_index {
  margin-inline-start: auto;
  opacity: 1;
  padding-inline-end: 10px;
}

.about_item:nth-child(2) .about_index {
  width: 121px;
}

.about_item:nth-child(3) .about_index {
  width: 127px;
}
.about_item:nth-child(4) .about_index {
  width: 122px;
}
.about_item:nth-child(5) .about_index {
  width: 128px;
}
.about_item:nth-child(6) .about_index {
  width: 119px;
}

.about_text {
  font-size: 3.2rem;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-block-start: -6px;
  position: relative;
  z-index: 2;
}

.about_item:nth-child(2n) .about_text {
  align-items: end;
}

.about_text span {
  background-color: #6cecb8;
  display: block;
  padding-inline: 20px 16px;
  width: max-content;
  padding-block: 2px 3px;
  color: var(--primary);

  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
.about_item:nth-child(2n) .about_text span {
  padding-inline: 16px 20px;
  background-color: #ededdf;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.about_item:nth-child(3) .about_text span {
  height: 46px;
  display: flex;
  align-items: center;
}
.about_item:nth-child(3) .about_text span:nth-child(3) {
  font-size: 3.7rem;
}

.about_item:nth-child(3) .about_text span img {
  translate: 0 4px;
  padding-inline: 1px;
  width: 78px;
}
.about_item:nth-child(4) .about_text span {
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2px;
  padding-block: 5px;
}
.about_item:nth-child(4) .about_text span img {
  translate: 0 2px;
  padding-inline: 1px;
}

.about_item:nth-child(5) .about_text span {
  font-size: 2.8rem;
  display: flex;
  align-items: center;
  padding-block: 4px;
}
.about_note {
  color: #fff;
  line-height: 2.4;
  font-size: 1.5rem;
  padding-inline-end: 20px;
}

.media {
  background: url(../images/media_bg.jpg) center/cover no-repeat;
  padding-block: 45px;
  position: relative;
  padding-inline: 10px;
}

.media_title {
  color: var(--white);
  font-size: 1.95rem;
  text-align: center;
  font-family: var(--ff-sub);
  font-weight: 500;
}
.media_title strong {
  font-size: 2.25rem;
}
.media_title em {
  font-size: 2.5rem;
  line-height: 1.2;
  padding-block-start: 2px;
  padding-inline: 2px;
}
.media_title span {
  font-size: 1.8rem;
}
.media_img {
  margin-block-start: 30px;
}

.reasons {
  padding-block: 55px 46px;
  background: url(../images/reasons_bg.jpg) center top/cover no-repeat;
  position: relative;
}

.reasons::before {
  content: "";
  position: absolute;
  top: 176px;
  left: 50%;
  translate: -50% 0;
  width: 1px;
  height: 50px;
  background: url(../images/reasons_deco.png) center/contain no-repeat;
}

.reasons_title {
  font-size: 1.8rem;
  color: var(--white);
  text-align: center;
  line-height: 1.5;
  font-family: var(--ff-sub);
  font-weight: 500;
}
.reasons_title em {
  font-size: 3.05rem;
}

.reasons_list {
  display: flex;
  flex-direction: column;
  gap: 79px;
  margin-block-start: 90px;
}
.reasons_item:nth-child(2) {
  margin-block-start: -20px;
}

.reasons_item-inner {
}

.reasons_head {
  font-family: var(--ff-sub);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 30px;
}

.reasons_item-index {
  font-size: 6.7rem;
  font-style: italic;
  line-height: 1;
}

.reasons_item-title {
  font-size: 2.6rem;
  letter-spacing: 0.01em;
  line-height: 1.25;
  font-weight: 600;
  white-space: nowrap;
}
.reasons_item-title em {
  font-size: 3.8rem;
  line-height: 1;
  display: inline-block;
  translate: 0 3px;
}

.reasons_image {
  aspect-ratio: 690/394;
  margin-block-start: 16px;
}
.reasons_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reasons_text {
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  margin-block-start: 14px;
  font-feature-settings: "palt" 1;
}

.reasons_achievement {
  margin-block-start: 35px;
  padding-inline-start: 13px;
}

.testimonials {
  padding-block: 44px;
  background: #2a2a2a;
}
.testimonials_title {
  color: #fadd33;
}
.testimonials_list {
  margin-block-start: 35px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.testimonials_list-item {
  background: var(--white);
  margin-inline-start: auto;
  width: calc(100% - 15px);
  background: url(../images/testimonials_item-bg.jpg) center/cover no-repeat;
  padding: 30px 14px 23px;
  box-sizing: border-box;
}
.testimonials_list-item:last-child {
  margin-inline-end: auto;
  margin-inline-start: 0;
}
.testimonials_head {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--ff-sub);
}
.testimonials_list-item:last-child .testimonials_head {
  flex-direction: row-reverse;
  text-align: right;
}

.testimonials_head-text {
  flex-grow: 1;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.testimonials_item-title {
  font-size: 2.8rem;
  padding-block-end: 15px;
  display: block;
  border-block-end: 1px solid;
  font-weight: 400;
}

.testimonials_item-title span {
  font-size: 2rem;
}
.testimonials_item-info {
  font-size: 2rem;
  display: inline-block;
  padding-block-start: 6px;
  line-height: 1.35;
}

.testimonials_item-img {
  aspect-ratio: 320 / 334;
  width: 160px;
  flex-shrink: 0;
}

.testimonials_body {
  padding: 15px 12px;
  background: var(--white);
  border-image: linear-gradient(
      60deg,
      #e4c469 0,
      #e4c469 26%,
      #f3e7c3 51%,
      #dac27e 77%,
      #dac27e 100%
    )
    1;
  border-style: solid;
  border-width: 1px;
  margin-block-start: 10px;
}

.testimonials_desc {
  font-size: 1.4rem;
}
.testimonials_desc + .testimonials_desc {
  margin-block-start: 1.4rem;
}

.cta {
  padding: 55px 20px;
  background: var(--white);
}

.achievement {
  background: url(../images/achievement_bg.jpg) center/cover no-repeat;
  padding-block: 43px 33px;
}
.achievement_title {
  color: var(--white);
}
.achievement_list {
  margin-block-start: 15px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.achievement_list-item {
  background: url(../images/achievement_item-bg1.jpg) center/cover no-repeat;
  padding-block: 18px 25px;
}
.achievement_list-item:last-child {
  background-image: url(../images/achievement_item-bg2.jpg);
}

.achievement_head {
  display: flex;
  align-items: center;
  font-family: var(--ff-sub);
}

.achievement_index {
  font-size: 4rem;
  color: var(--white);
  line-height: 1;
  display: block;
  background: #2a2a2a;
  padding: 13px 18px;
}

.achievement__item-title {
  font-size: 2.6rem;
  font-weight: 500;
  padding-inline-start: 15px;
  line-height: 1.25;
  font-feature-settings: "palt" 1;
}

.achievement_img-wrapper {
  margin-block-start: 21px;
}

.achievement_img {
  padding-inline: 15px;
}

.achievement_item-name {
  margin-block-start: 34px;
  font-size: 2.3rem;
  color: var(--white);
  display: block;
  background: #2a2a2a;
  text-align: center;
  margin-inline: auto;
  padding: 3px 12px 0;
  width: max-content;
  font-family: var(--ff-sub);
  font-weight: 500;
}
.achievement_item-name em {
  font-size: 2.6rem;
}

.achievement_main {
  display: flex;
  font-family: var(--ff-sub);
  font-weight: 400;
  line-height: 1;
  align-items: baseline;
  margin-block-start: 12px;
  width: 290px;
  margin-inline: auto;
}

.achievement_main-head {
  font-size: 2.3rem;
}

.achievement_main-text {
  font-size: 5.4rem;
  font-feature-settings: "palt" 1;
}
.achievement_main-text span {
  font-size: 3.9rem;
}

.flow {
  padding-block: 28px 42px;
  background: var(--white);
}
.flow_title {
  color: var(--white);
  background: #080808;
  font-size: 3.1rem;
  display: block;
  width: max-content;
  margin-inline: auto;
  padding: 10px 14px 7px;
  line-height: 1;
  font-family: var(--ff-sub);
  font-weight: 500;
}
.flow_list {
  display: flex;
  flex-direction: column;
  margin-block-start: 45px;
}

.flow_item {
  display: flex;
  align-items: center;
  font-family: var(--ff-sub);
  font-weight: 500;
  gap: 20px;
  color: #080808;
  position: relative;
  line-height: 1;
}
.flow_item:not(:last-child) {
  padding-block-end: 40px;
}

.flow_item:not(:last-child)::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 7px;
  width: 1px;
  height: 52px;
  background-color: #080808;
}

.flow_item-link {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.flow_item-index {
  font-size: 2.1rem;
  text-transform: uppercase;
  padding-inline-start: 1.1em;
  position: relative;
  letter-spacing: 0.04em;
}

.flow_item-index::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #080808;
}

.flow_item-title {
  font-size: 2.3rem;
}

.push {
  padding-top: 40px;
  padding-bottom: 30px;
  background: url(../images/push_bg.jpg) center/cover no-repeat;
  padding-inline: 15px;
  position: relative;
}
.push_person {
  position: absolute;
  width: 110px;
  height: 140px;
  top: 15.5%;
  right: 0;
}
.push_person img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.push_title {
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.25;
  font-family: var(--ff-sub);
}
.push_title > em {
  font-size: 3.4rem;
  color: #c02e59;
  font-weight: 600;
}
.push_list {
  position: relative;
  width: 100%;
  gap: 24px;
  margin: 22px auto 0;
  display: flex;
  flex-direction: column;
  padding: 21px 13px 21px 17px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid #2e2e2e;
}

.push_list-item span {
  display: inline-block;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.25;
  font-weight: 400;
  padding-inline-start: 26px;
  white-space: nowrap;
}

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

.request {
  position: relative;
  padding-top: 96px;
  padding-bottom: 27px;
  background: #f7f7f7;
  padding-inline: 10px;
}
.request_title {
  width: 335px;
  margin-inline: auto;
  position: absolute;
  top: -57px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: var(--white);
  font-weight: 400;
}
.request_title-inner {
  box-sizing: border-box;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 23px 12px 32px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  background: url(../images/push_speech-bubble.png) center/contain no-repeat;
  width: 100%;
  font-feature-settings: "palt" 1;
}
.request_title-inner strong {
  position: relative;
  padding-block-start: 3px;
  display: inline-block;
  font-size: 2.1rem;
  line-height: 1.3;
  margin-block-start: 4px;
}
.request_title-inner em {
  color: #fcff7a;
}
.request_title-inner em span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  width: 3px;
  height: 3px;
  background: var(--red);
  border-radius: 50%;
}

.request_note {
  text-align: center;
  font-size: 1.2rem;
  line-height: calc(20 / 13);
  color: #555;
}
.request_note-mail {
  font-size: 1.3rem;
  display: block;
}
.request_panel {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
}
.request_lead {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
  margin-inline: auto;
  display: block;
  text-align: center;
  margin-block-start: 12px;
}
.request_lead img {
  width: 52px;
  translate: 0 6px;
}
.request_appeal {
  display: flex;
  align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 18px;
  margin: 0 auto;
  background-color: var(--red);
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
  height: 37px;
  border-radius: 999em;
}
.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.2rem;
  font-weight: 300;

  font-family: var(--ff-roboto);
  margin-block-start: 24px;
}
.request_form {
  margin-top: 11px;
}
.form * {
  font-family: var(--ff-roboto);
}
.form .form-text {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 50px;
  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);
  background: #fff;
  box-shadow: inset 2px 2px 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: 50px;
  padding: 8px 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.4rem;
  line-height: 1.5;
  font-weight: 400;
  width: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 2px solid #568856;
  color: var(--text);
}
.form .form-select--initial {
  background-color: #fff;
}
.form .form-zip-btn {
  width: 130px;
  padding: 10px 10px;
  background: #fff;
  border-radius: 999em;
  color: #568856;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.1428571429;
  cursor: pointer;
  height: 50px;
  letter-spacing: 0.025em;
  border: 3px solid #568856;
  margin-block-start: 0;
  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: 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: 144px;
  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: 500;
  letter-spacing: 0.025em;
  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 .wpcf7-form-control-wrap {
  position: relative;
  max-width: 200px;
}
.form .form_item--select .wpcf7-form-control-wrap::after {
  content: "";
  display: block;
  position: absolute;
  top: 19px;
  right: 20px;
  width: 12px;
  height: 10px;
  background: #568856;
  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: 20px;
  height: 20px;
  background-color: #fff;
  border: 3px solid var(--primary);
  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: 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: #bdbdbd;
  -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: #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: 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: 23px;
}
.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: #a4a4a4;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 2;
}
.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.2rem;
  font-weight: 400;
  color: #666;
  line-height: 1.5;
  margin-left: 0;
}
.form_privacy-policy-wrap {
  margin-top: 32px;
  text-align: center;
}
.form_privacy-policy {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.8;
}
.form_submit-wrap {
  margin-top: 20px;
  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: 40px;
  background: #568856;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  font-weight: bold;
  letter-spacing: 0.075em;
  cursor: pointer;
  color: #fff;
}

.form_submit-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  translate: 0 -50%;
  width: 10px;
  height: 13px;
  background: url(../images/right.svg) center center no-repeat;
  z-index: 2;
}

.footer {
  background-color: #19280a;
  color: #fff;
  padding-top: 43px;
}

.footer * {
  font-family: var(--ff-noto);
}
.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.5rem;
  letter-spacing: 0.02em;
  font-weight: 700;
  font-family: var(--font-en);
}
.footer_about-logo {
  display: inline-block;
  width: 222px;
}
.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: 25px;
}
.footer_info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-family: var(--font-en);
}
.footer_info + .footer_info {
  margin-block-start: 16px;
  padding-left: 0;
  border: none;
}
.footer_company {
  font-size: 1.5rem;
  font-weight: bold;
}
.footer_head-office {
  margin-top: 2px;
  font-size: 1.5rem;
  font-weight: 500;
}
.footer_address {
  margin-top: 4px;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
}
.footer_contact {
  margin-block-start: 30px;
  display: block;
  border-radius: 10px;
  padding: 8px 46px 8px 18px;
  width: 100%;
  border: 1px solid #fff;
  position: relative;
  box-sizing: border-box;
  position: relative;
  width: fit-content;
}
.footer_contact::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  translate: 0 -50%;
  width: 8px;
  height: 12px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.footer_contact-link {
  grid-area: 1/2/2/3;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.3;
  text-decoration: none;
  width: fit-content;
  text-align: center;
}
.footer_copyright {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  padding-block-end: 31px;
  margin-block-start: 50px;
}
.footer--copyright {
  padding-top: 10px;
  padding-bottom: 0px;
  background-color: #19280a;

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

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

.s-bold {
  font-weight: 600;
}
.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);
}
