@-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: 85%;
}

body {
  --ff-sub: "din-2014", sans-serif;
  --ff-main: "Noto Sans JP", sans-serif;

  --text: #222222;
  --primary: #1d2089;
  --gray: #e9e9e9;
  --gold: #ba9641;
  --brown: #6f5821;
  --yellow: #fffc94;
  --blue: #4596e4;
  --red: #e60012;
  --white: #fff;

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

  position: relative;
  line-height: 1.4;
  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
======================== */
.btn {
  overflow: hidden;
  display: block;
  border-radius: 999em;
  aspect-ratio: 667/140;
}
.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);
}

.section-title {
  font-size: 4.942rem;
  color: #e9e9e9;
  font-family: var(--ff-sub);
  letter-spacing: 0;
  font-weight: 600;
}

/* === 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: 32px;
  height: 84px;
  padding: 0;
  background-color: var(--gold);
  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: 10px;
  height: 10px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  color: transparent;
}
.slick-prev {
  -webkit-transform: translateY(-50%) scale(-1, 1);
  transform: translateY(-50%) scale(-1, 1);
  left: 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: -28px;
  width: 100%;
  text-align: center;
  margin-inline-start: -10px;
}
.slick-dots li {
  display: inline-block;
  margin: 0 7px;
  cursor: pointer;
}
.slick-dots li button {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  padding: 0;
  background-color: #fff;
  border: 0;
  outline: none;
  color: transparent;
  font-size: 0px;
  line-height: 0px;
  cursor: pointer;
}
.slick-dots li.slick-active button {
  background-color: var(--gold);
}

.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.40625rem;
  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.17rem;
  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.015625rem;
  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.09375rem, 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: 0.9375rem;
  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.09rem;
  font-weight: 800;
  line-height: 1.5;
}

/* ヘッダー */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #f5f5f5;
}
.header_logo {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  gap: 61.8px;
  padding-block: 7px;
}

.header_logo::before,
.header_logo::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 46%;
  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: 102px;
}

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

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: var(--red);
  z-index: 10;
}

.hero::before {
  position: absolute;
  content: "";
  background-image: url(../images/fv-bg-treat.png);
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
  width: 214px;
  height: 214px;
  top: 0;
  left: -85px;
  z-index: 3;
}

.hero_inner {
  position: relative;
  z-index: 30;
}

.hero_check-items {
  padding-top: 61px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  justify-content: center;
  background-color: var(--white);
  width: 340px;
  height: 93px;
  border-bottom-left-radius: 30px;
  margin-left: auto;
}

.hero_check-item {
  padding-left: 45px;
  position: relative;
}

.hero_check-item::before {
  position: absolute;
  content: "";
  background-image: url(../images/contact-check.svg);
  width: 24px;
  height: 24px;
  top: 50%;
  transform: translateY(-50%);
  left: 11px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.hero_check-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}

.hero_check-text span {
  color: var(--blue);
}

.hero_check-text.hero_check-text--top {
  position: relative;
  z-index: 10;
}

.hero_check-text.hero_check-text--top::before {
  position: absolute;
  content: "";
  background-image: url(../images/under-line.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 87px;
  height: 8px;
  bottom: -5px;
  left: 80px;
  z-index: 5;
}

.hero_check-text.hero_check-text--bottom {
  position: relative;
  z-index: 10;
}

.hero_check-text.hero_check-text--bottom::before {
  position: absolute;
  content: "";
  background-image: url(../images/under-line.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 87px;
  height: 8px;
  bottom: -5px;
  left: 0;
  z-index: 5;
}

.hero_treat {
  background-image: url(../images/fv-treat.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 325px;
  height: 51px;
  margin-left: auto;
  margin-right: auto;
  margin-block-start: 6px;
}

.hero-banner {
  display: flex;
  align-items: baseline;
  font-family: sans-serif;
  justify-content: center;
  margin-block-start: -7px;
}

.hero-banner__label {
  padding: 7px 5px;
  background-color: #fff;
  font-size: 2.184rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0;
  writing-mode: vertical-lr;
  line-height: 1;
}

.hero-banner__content {
  display: flex;
  margin-left: -6px;
}

.hero-banner__number {
  font-size: 7.721rem;
  font-family: var(--ff-sub);
  font-weight: 600;
  color: #fff;
  text-shadow: 4px 4px 0 #b2000e;
  letter-spacing: -0.021em;
  line-height: 1;
}
.hero-banner__number span {
  letter-spacing: -0.1em;
}

.hero-banner__right {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 2px;
}

.hero-banner__unit {
  font-size: 2.279rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 3px 2px 0 #b2000e;
  line-height: 1;
}

.hero-banner__text {
  font-size: 2.279rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 3px 2px 0 #b2000e;
  line-height: 1;
}

.hero_under-img {
  position: relative;
  z-index: 2;
  background-image: url(../images/fv-img.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  width: 100%;
  height: auto;
  aspect-ratio: 340 / 230;
  margin-left: 35px;
  margin-top: 1px;
}

.hero_under-img::after {
  position: absolute;
  content: "";
  background-image: url(../images/fv-bg-treat.png);
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
  width: 214px;
  height: 214px;
  top: -70px;
  right: -120px;
  z-index: 3;
}

.hero_under-img::before {
  position: absolute;
  content: "";
  background-image: url(../images/fv-bg-treat.png);
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
  width: 214px;
  height: 214px;
  bottom: -70px;
  left: -71px;
  z-index: 3;
}

.hero_under-item {
  position: relative;
  z-index: 30;
  width: 244px;
  height: 89px;
  background-color: rgba(238, 246, 253, 0.95);
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  margin-block-start: -130px;
  padding: 7px 10px 0 11px;
}

.hero_under-text {
  font-size: 1.029rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.7;
  color: var(--text);
  border-bottom: 1px dashed rgba(0, 0, 0, 0.4);
}

.hero_under-text .blue {
  color: var(--blue);
}

.hero_under-text .pink {
  color: #cb4572;
}

.hero_under-text.no-line {
  border-bottom: none;
}

.hero_bottom {
  margin-top: 34px;
  padding: 9px 0 18px;
  background-color: #fff;
  border-top-right-radius: 30px;
}

.hero_bottom-text {
  text-align: center;
  font-size: 0.956rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
  letter-spacing: 0.04em;
}

.hero_bottom-text span {
  font-weight: 700;
  font-size: 1.029rem;
  color: var(--blue);
}

.hero_btn {
  display: grid;
  place-items: center;
  margin-block-start: 8px;
  padding-left: 15px;
  padding-right: 15px;
}

.intro {
}

.intro_body {
  padding-inline: 15px;
  padding-block: 20px 32px;
  position: relative;
  margin-block-start: -22px;
}

.intro_body::before {
  position: absolute;
  content: "";
  background-image: url(../images/about-bg.jpg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  width: 355px;
  height: 320px;
  left: 0;
  top: 0;
  z-index: 3;
}

.intro_body::after {
  position: absolute;
  content: "";
  background-image: url(../images/about-bg2.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  width: 355px;
  height: 518px;
  right: 0;
  bottom: 36px;
  z-index: 3;
}

.intro_lead {
  padding-left: 20px;
  position: relative;
  text-align: left;
  color: #e60012;
  font-size: 1.7647058823529rem;
  z-index: 10;
  font-weight: 600;
}

.intro_lead::before {
  position: absolute;
  content: "";
  background-color: #e60012;
  width: 4px;
  height: 68px;
  top: 0;
  left: 0;
}

.intro_contents-body {
  margin-top: 21px;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro_contents-sub-title,
.intro_contents-text {
  font-size: 1.176rem;
  width: 100%;
  max-width: 315px;
  line-height: 1.6;
  font-weight: 400;
}

.intro_contents-sub-title {
  margin-right: 30px;
}

.intro_contents-sub-title span {
  font-weight: 600;
  white-space: nowrap;
}

.intro_contents-text {
  margin-top: 10px;
}

.intro_contents-text span {
  font-weight: 600;
}

.intro_items {
  margin-top: 16px;
  display: flex;
  width: 100%;
  max-width: 330px;
  justify-content: center;
}

.intro_item {
  width: 100%;
  max-width: 110px;
}

.intro_item img {
  width: 100%;
  aspect-ratio: 110 / 110;
}

.intro_bottom-img {
  margin: -27px auto 0;
  width: 100%;
  max-width: 230px;
}

.intro_bottom-img img {
  width: 100%;
  aspect-ratio: 230/223;
}

.section-title.reaching-title {
  color: rgba(230, 0, 18, 0.15);
}

.reaching {
  margin-block-start: -16px;
}

.about_inner {
  position: relative;
  background-color: var(--red);
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  padding-block-start: 22px;
  padding-block-end: 40px;
  margin-block-start: -22px;
}

.about_inner::before {
  position: absolute;
  content: "";
  background-image: url(../images/reaching-treat1.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  width: 98px;
  height: 125px;
  top: -2%;
  right: -2%;
}

.about_sub-title {
  position: relative;
  text-align: center;
  font-size: 1.765rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.6;
  color: var(--white);
}

.about_sub-title::before {
  position: absolute;
  content: "";
  background-image: url(../images/reaching-finger.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  width: 40px;
  height: 52px;
  top: 2%;
  left: 30px;
}

.reaching_text {
  margin-block-start: 21px;
  padding: 16px 6px;
  border: 2px solid var(--white);
  border-radius: 10px;
  width: 100%;
  max-width: 335px;
  margin-left: auto;
  margin-right: auto;
}

.reaching_text p {
  color: var(--yellow);
  font-size: 1.324rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}

.reaching_top-items {
  position: relative;
  z-index: 20;
  margin-block-start: -50px;
  display: flex;
  gap: 6px;
  align-items: center;
  padding-left: 9px;
}

.reaching_top-img {
  width: 100%;
  max-width: 113.8px;
}

.reaching_top-img img {
  width: 100%;
  aspect-ratio: 113.8 / 205;
  object-fit: cover;
}

.reaching_top-text {
  margin-block-start: 40px;
}

.reaching_top-text p {
  font-size: 1.176rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.6;
}

.reaching_contents {
  margin-block-start: -4px;
}
.reaching_items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reaching_item {
  width: 340px;
  margin-right: auto;
  position: relative;
}

.reaching_item.reaching_item--right {
  margin-left: auto;
  margin-right: initial;
}

.reaching_item-img img {
  width: 100%;
  display: block;
  height: auto;
}

.reaching_item-text {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 24px 20px;
  width: 90%;
  z-index: 2;
}

.reaching_item-text p {
  font-size: 1.471rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
}

.reaching_item-text p span {
  color: var(--red);
}

.reaching_item-text p .reaching_item-text-small {
  font-weight: 400;
  font-size: 0.882rem;
  color: var(--text);
}

.reaching_item-text p .reaching_item-text-side {
  font-weight: 400;
  margin-left: 10px;
  font-size: 0.882rem;
  color: var(--text);
}

.reaching_bottom {
  margin-block-start: 25px;
  background-image: url(../images/reaching-bubble.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 320px;
  height: 161px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 16px 0;
  position: relative;
}

.reaching_bottom p {
  color: var(--yellow);
  font-size: 1.324rem;
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0;
  margin-block-start: 20px;
}

.reaching_bottom::before {
  position: absolute;
  content: "";
  background-image: url(../images/reaching-treat2.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  width: 55px;
  height: 55px;
  top: 2%;
  left: -20px;
}

.reaching_bottom::after {
  position: absolute;
  content: "";
  background-image: url(../images/reaching-treat3.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  width: 55px;
  height: 55px;
  top: 80%;
  right: -20px;
}

.cta {
  padding: 42px 16px 22px;
}

.future {
  margin-block-start: -16px;
}

.section-title.future_title {
  color: #ffeef6;
  text-align: end;
}

.future_body {
  margin-block-start: -15px;
  padding: 35px 0 33px;
  background-image: url(../images/future-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  margin-block-start: -22px;
}

.future_lead {
  margin-left: 20px;
  padding-left: 20px;
  position: relative;
  text-align: left;
  color: var(--text);
  font-size: 1.7647058823529rem;
  z-index: 10;
  font-weight: 600;
}

.future_lead::before {
  position: absolute;
  content: "";
  background-color: var(--text);
  width: 4px;
  height: 68px;
  top: 0;
  left: 0;
}

.future_items {
  display: flex;
  flex-direction: column;
  margin-block-start: 28px;
  gap: 22px;
}

.future_item {
  position: relative;
  background-color: var(--white);
  border-bottom-left-radius: 20px;
  width: 340px;
  height: 94px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.future_item.future_item--left {
  margin-right: auto;
  margin-left: initial;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 20px;
}

.future_item.future_item--second {
  background-image: url(../images/bubble-right.png);
  margin-left: auto;
}

.future_item + .future_item {
  margin-top: 23px;
}

.future_item-tag {
  position: absolute;
  top: -17px;
  background: #333;
  color: var(--white);
  padding: 5px 12px;
  font-weight: 600;
  font-size: 1.618rem;
  line-height: 1;
}
.future_item-tag--left {
  left: 0;
}
.future_item-tag--right {
  right: 0;
}

.future_item-small {
  position: absolute;
  top: 3px;
  left: 15%;
  font-size: 1.176rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
}

/* 中央の数字行 */
.future_item-text-body {
  text-align: center;
  line-height: 1;
  display: inline-flex;
  justify-content: center;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  text-align: center;
  line-height: 1;
  margin: 0;
}

.future_item-text-body.future_item-text-body--second {
  margin-top: 12px;
}

/* 約・単位 */
.future_item-prefix {
  font-size: 1.765rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-left: 7px;
}
.future_item-num {
  font-size: 4.929rem;
  font-weight: 600;
  color: var(--red);
  font-family: var(--ff-sub);
  letter-spacing: -0.04em;
}
.future_item-tilde {
  font-size: 28px;
  color: #111;
  font-weight: 700;
}

.future_item-unit {
  color: var(--red);
  font-weight: 600;
  font-size: 2.353rem;
  letter-spacing: 0;
}

.future_item-text {
  color: var(--red);
  font-weight: 600;
  font-size: 3.341rem;
  letter-spacing: 0;
}

.future_bottom-contents {
  width: 100%;
  margin-block-start: 20px;
}

.future_bottom-contents img {
  width: 100%;
  aspect-ratio: 375 / 343;
}

.support {
  margin-block-start: 13px;
  position: relative;
}

.support::before {
  position: absolute;
  content: "";
  background-image: url(../images/support-treat1.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  width: 98px;
  height: 170px;
  right: 8px;
  top: 45px;
  z-index: 20;
}

.support_body {
  padding-block: 20px 20px;
  position: relative;
  margin-block-start: -22px;
}

.support_body::before {
  position: absolute;
  content: "";
  background-image: url(../images/support-bg1.jpg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  width: 355px;
  height: 506px;
  left: 0;
  top: 0;
  z-index: 3;
}

.support_body::after {
  position: absolute;
  content: "";
  background-image: url(../images/support-bg2.jpg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  width: 355px;
  height: 428px;
  right: 0;
  bottom: 0;
  z-index: 3;
}

.support_lead {
  margin-left: 20px;
  padding-left: 20px;
  position: relative;
  text-align: left;
  color: var(--blue);
  font-size: 1.7647058823529rem;
  z-index: 10;
  font-weight: 600;
}

.support_lead::before {
  position: absolute;
  content: "";
  background-color: var(--blue);
  width: 4px;
  height: 100px;
  top: 0;
  left: 0;
}

.support_lead::after {
  position: absolute;
  content: "";
  background-image: url(../images/under-line.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 133px;
  height: 10.3px;
  bottom: 34px;
  left: 27%;
  z-index: -2;
}

.support_contents-body {
  margin-top: 21px;
  position: relative;
  z-index: 10;
  /* display: flex;
    flex-direction: column;
    align-items: center; */
}

.section-title.support-title {
  color: #e3f2ff;
  position: relative;
  z-index: 10;
}

.support_contents-sub-title,
.intro_contents-text {
  font-size: 1.1764705882353rem;
  width: 100%;
  max-width: 315px;
  line-height: 1.6;
  padding-left: 20px;
  padding-right: 20px;
  margin-right: 30px;
}

.support_contents-sub-title {
  font-weight: 600;
}

.intro_contents-text span {
  font-weight: 600;
}

.intro_contents-text.intro_contents-text--under {
  margin-right: initial;
  margin-left: 30px;
}

.support_contents-text {
  margin-top: 10px;
}

.support_contents-text span {
  font-weight: 600;
}

.support_items {
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 16px;
  display: flex;
  width: 100%;
  max-width: 330px;
  justify-content: center;
}

.support_item {
  width: 100%;
  max-width: 110px;
}

.support_item img {
  width: 100%;
  aspect-ratio: 110 / 110;
}

.intro_bottom-img {
  margin: -27px auto 0;
  width: 100%;
  max-width: 230px;
}

.intro_bottom-img img {
  width: 100%;
  aspect-ratio: 230/182;
}

.support-top-contents {
  margin-block-start: 19px;
  background-color: var(--white);
  padding: 16px 26px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  width: 288px;
}

.support-top-text {
  position: relative;
  font-size: 1.176rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0;
  padding-left: 15px;
}

.support-top-text::before {
  position: absolute;
  content: "";
  background-image: url(../images/support-text-treat-left.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  width: 9.51px;
  height: 18.4px;
  top: 4px;
  left: 0;
  z-index: 30;
}

.support-top-text::after {
  position: absolute;
  content: "";
  background-image: url(../images/support-text-treat-right.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  width: 9.51px;
  height: 18.4px;
  top: 4px;
  left: 103px;
  z-index: 30;
}

.support_top-items {
  margin-block-start: 16px;
}

.support_top-item {
  font-size: 1.176rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}

.support-top-end-text {
  font-size: 1.176rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: right;
}

.support_under-img {
  width: 100%;
  max-width: 271px;
  margin-left: auto;
  margin-right: auto;
  margin-block-start: 10px;
}

.support_under-contents {
  margin-block-start: -100px;
  width: 300px;
  padding: 114.2px 20px 29px;
  background-color: var(--white);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  margin-left: auto;
}

.support_under-text {
  font-size: 1.176rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
}

.support_under-text span {
  font-weight: 600;
}

.support_under-name {
  font-size: 1.029rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: right;
}

.section-title.start_title {
  color: rgba(230, 0, 18, 0.15);
}

.start_body {
  padding: 20px 20px 0;
  background-image: url(../images/start-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  margin-block-start: -22px;
}

.start_lead {
  padding-left: 20px;
  position: relative;
  text-align: left;
  color: var(--white);
  font-size: 1.7647058823529rem;
  z-index: 10;
  font-weight: 600;
}

.start_lead::before {
  position: absolute;
  content: "";
  background-color: var(--white);
  width: 4px;
  height: 68px;
  top: 0;
  left: 0;
}

.start_sub-title {
  padding: 10px;
  border: 2px solid var(--white);
  border-radius: 10px;
  margin-block-start: 24px;
}

.start_sub-title p {
  font-size: 1.324rem;
  color: var(--yellow);
  line-height: 1.6;
  font-weight: 600;
}

.start_text {
  margin-block-start: 20px;
  font-size: 1.176rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.6;
  letter-spacing: 0;
}

.start_items {
  display: flex;
  flex-direction: column;
  margin-block-start: 28px;
}

.start_item {
  background-image: url(../images/bubble.png);
  background-repeat: no-repeat;
  background-position: left;
  background-size: 100% 100%;
  width: 300px;
  height: 100px;
  display: grid;
  box-sizing: border-box;
  place-items: center;
  padding: 0 18px;
}

.start_item.start_item--second {
  background-image: url(../images/bubble-right.png);
  margin-left: auto;
}

.start_item p {
  margin: 0;
  width: 100%;
  line-height: 1.6;
  white-space: nowrap;
  font-size: 1.176rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.start_item p span {
  color: var(--blue);
}

.start_under-contents {
  position: relative;
}

.start_under-contents::before {
  position: absolute;
  content: "";
  background-image: url(../images/text-treat-left.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  width: 19.33px;
  height: 37.4px;
  top: 8%;
  left: 5px;
}

.start_under-contents::after {
  position: absolute;
  content: "";
  background-image: url(../images/text-treat-right.png);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  width: 19.33px;
  height: 37.4px;
  top: 8%;
  right: 8px;
}

.start_under-contents p {
  text-align: center;
  color: var(--white);
  font-size: 1.176rem;
  line-height: 1.6;
  font-weight: 500;
}

.start_img {
  margin-top: 13px;
  width: 100%;
  max-width: 291px;
  margin-left: auto;
  margin-right: auto;
}

.start_img img {
  width: 100%;
  aspect-ratio: 291 / 124;
  object-fit: cover;
}

.start_bottom-text {
  background-color: #d30020;
  border-bottom-right-radius: 30px;
  padding-top: 25px;
  padding-bottom: 30px;
  margin-block-start: -5px;
  padding-left: 20px;
  padding-right: 20px;
}

.start_bottom-text p {
  font-size: 1.324rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.6;
  color: var(--white);
}

.start_bottom-text p span {
  color: var(--yellow);
}

.flow {
  padding-block: 35px 15px;
  background: var(--white);
}

.section-title.flow-title {
  text-align: center;
  color: #ffeef6;
}

.section-title.flow-title span {
  display: block;
  color: var(--red);
  font-size: 1.765rem;
  font-weight: 600;
  line-height: 1.6;
}

.flow_list-wrap {
  margin-block-start: 16px;
  overflow: auto;
  padding-bottom: 18px;
}

.flow_list-wrap img {
  display: block;
  height: auto;
  max-width: none;
  width: 986px;
}

.push {
  padding-top: 20px;
}

.section-title.push-title {
  text-align: end;
}

.push_contents {
  position: relative;
  z-index: 10;
  padding-top: 34px;
  background-image: url(../images/push-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  width: 355px;
  height: auto;
  right: 0;
  margin-left: auto;
  margin-block-start: -22px;
}

.push_sub-title {
  padding-left: 25px;
  padding-right: 20px;
}

.push_sub-title p {
  color: var(--blue);
  font-size: 1.618rem;
  font-weight: 600;
  line-height: 1.4;
}

.push_list {
  margin-block-start: 18px;
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  padding-left: 10px;
  padding-right: 15px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.push_item {
  width: 100%;
  max-width: 270px;
  padding: 10px 0 10px 46px;
  background-color: var(--white);
  position: relative;
}

.push_item::before {
  position: absolute;
  content: "";
  background-image: url(../images/contact-check.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  top: 30%;
  left: 13px;
}

.push_item-title {
  font-size: 1.324rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.025em;
}

.push_item-title span {
  color: var(--red);
}

.pushu_img {
  width: 100%;
  max-width: 280px;
  margin: -27px auto 0;
  position: relative;
  z-index: 50;
}

.push_img img {
  width: 100%;
  aspect-ratio: 279/83 / 273;
}

.request {
  padding-bottom: 58px;
  margin-block-start: -5px;
}
.request_title {
  width: 100%;
}
.request_title-inner {
  position: relative;
  z-index: 100;
  box-sizing: border-box;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 23px 20px;
  text-align: center;
  font-size: 1.176rem;
  font-weight: 600;
  background-color: var(--blue);
  width: 100%;
  line-height: 1.7;
  color: var(--white);
}

.request_title-inner::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 14px solid var(--blue);
}

.request_title-inner strong {
  font-size: 1.618rem;
  line-height: 1.5;
  font-weight: 700;
  display: inline-block;
  margin-block-start: 4px;
}
.request_note {
  margin-block-start: 40px;
  text-align: center;
  font-weight: 400;
  font-size: 0.95588235294118rem;
  line-height: 1.6;
}
.request_note-mail {
  display: block;
}
.request_panel {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.request_appeal {
  font-family: var(--ff-main);
  display: flex;
  align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 14px;
  margin: 0 auto;
  background-color: var(--red);
  color: var(--white);
  font-size: 1.3235294117647rem;
  font-weight: 600;
  white-space: nowrap;
  height: 38px;
  border-radius: 999em;
  margin-block-start: 14px;
}
.request_appeal em {
  display: flex;
  align-items: center;
  gap: 2px;
  padding-inline-start: 2px;
  line-height: 1;
}
.request_appeal strong {
  font-size: 1.7647058823529rem;
  display: inline-block;
  font-weight: 600;
  line-height: 1;
  margin-block-start: -2px;
}
.request_require-note {
  text-align: right;
  font-size: 0.88235294117647rem;
  font-weight: 400;
  margin-block-start: 17px;
}
.request_form {
  margin-top: 11px;
}
.request_form .form * {
  font-family: var(--font-en);
}
.form * {
  font-family: var(--ff-noto);
}
.form .form-text {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 56px;
  padding: 20px 13px;
  background-color: #f7f7f7;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 4px;
  color: var(--text);
  font-size: 1.1764705882353rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: var(--font-en);
  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: 53.23px;
  padding: 14px;
  background-color: var(--white);
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 5px;
  font-size: 1.1029411764706rem;
  line-height: 1.5;
  font-weight: 300;
  width: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #3b7dbd;
  color: var(--text);
}
.form .form-select--initial {
  background-color: #fff;
}

.form-address {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form .form-zip-btn {
  height: 59px;
  width: 157px;
  flex: 0 0 157px;
  padding: 0 20px;
  border-radius: 999em;
  background: #fff;
  color: #3b7dbd;
  font-size: 1.103rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  border: 1px solid #3b7dbd;
  cursor: pointer;
  margin: 0;
}
.form .wpcf7-form-control-wrap {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 7px;
}
.form .form-textarea {
  height: 151px;
}
.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.1029411764706rem;
  font-family: var(--font-en);
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
}

.form_title--long {
  letter-spacing: -0.1em;
}
.form_required {
  color: #e42d2d;
}
.form_control {
  display: block;
  width: 100%;
}
.form .form_item--select {
  max-width: 235px;
}
.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: 24px;
  right: 14px;
  width: 12px;
  height: 8.07px;
  background: #3b7dbd;
  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: #3b7dbd;
}
.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: 27px;
  font-size: 1.1029411764706rem;
  cursor: pointer;
  font-weight: 400;
}
.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: 2px solid #3b7dbd;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: inset 3px 3px 2px 0 rgba(0, 0, 0, 0.2);
}
.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: #3b7dbd;
  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: #999999;
  border-radius: 4px;
  border: 1px solid #999999;
  -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: 21px;
  height: 21px;
  border-radius: 2px;
  background-color: #fff;
  cursor: pointer;
  border: 2px solid #999999;
}
.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: #bdbdbd;
  text-align: left;
  font-size: 1.0294117647059rem;
  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: 5.27px;
  font-size: 0.95588235294118rem;
  font-weight: 400;
  color: #555555;
  line-height: 1.5;
  margin-left: 0;
}
.form_privacy-policy-wrap {
  margin-top: 32.31px;
  text-align: center;
}
.form_privacy-policy {
  display: inline-block;
  font-size: 0.88235294117647rem;
  font-weight: 300;
  line-height: 1.8;
}
.form_submit-wrap {
  margin-top: 20px;
  text-align: center;
  position: relative;
  width: 284px;
  margin-inline: auto;
}
.form_submit {
  position: relative;
  padding: 15px 49.5px 15px 36.5px;
  outline: none;
  border: none;
  background: var(--blue);
  font-size: 1.1029411764706rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  cursor: pointer;
  color: #fff;
}

.form_submit-wrap::before,
.form_submit-wrap::after {
  content: "";
  position: absolute;
  top: 45%;
  right: 51.5px;
  width: 12px;
  height: 3px;
  background: #fff;
  border-radius: 999px;
  transform-origin: right center;
  z-index: 2;
}

.form_submit-wrap::before {
  transform: translate(50%, 50%) rotate(45deg);
}

.form_submit-wrap::after {
  transform: translate(48%, 8%) rotate(-45deg);
}

.footer {
  background-color: var(--red);
  color: var(--text);
  padding-top: 30px;
  padding-bottom: 78px;
}

.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: var(--white);
  color: var(--text);
  padding: 13px 20px;
}
.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.103rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  font-family: var(--font-en);
  color: #313131;
  line-height: 0;
}
.footer_about-logo {
  display: inline-block;
  width: 153.4px;
}
.footer_about-desc {
  line-height: 1.5;
  font-size: 0.956rem;
  font-weight: 300;
  color: #313131;
  font-family: var(--font-en);
  letter-spacing: 0.02em;
}
.footer_company-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 46px;
}
.footer_info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-family: var(--font-en);
}
.footer_info + .footer_info {
  margin-block-start: 27px;
  padding-left: 0;
  border: none;
}
.footer_company {
  font-size: 1.029rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--white);
}
.footer_head-office {
  margin-top: 2px;
  font-size: 1.029rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--white);
}
.footer_address {
  margin-top: 4px;
  font-size: 1.029rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--white);
  text-decoration: none;
}
.footer_contact {
  margin-block-start: 17px;
  display: block;
  background: transparent;
  border-radius: 999px;
  padding: 10px 45px 10px 24px;
  width: 271px;
  position: relative;
  box-sizing: border-box;
  border: 1px solid var(--white);
  color: var(--white);
  position: relative;
}
.footer_contact::after {
  position: absolute;
  content: "";
  background-color: var(--white);
  width: 8px;
  height: 12px;
  top: 41%;
  right: 14px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.footer_contact-link {
  grid-area: 1/2/2/3;
  color: var(--white);
  font-size: 1.029rem;
  line-height: 1.3;
  text-decoration: none;
  width: fit-content;
  font-weight: 700;
}

.footer_copyright {
  display: block;
  text-align: center;
  color: var(--white);
  font-size: 1rem;
  padding-block-end: 22px;
}
.footer--copyright {
  padding-top: 10px;
  padding-bottom: 0px;
  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);
}
