@-webkit-keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    transform: scale(0) rotate(45deg);
    opacity: 0.25;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    transform: scale(4) rotate(45deg);
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
@keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    transform: scale(0) rotate(45deg);
    opacity: 0.25;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    transform: scale(4) rotate(45deg);
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
/* ========================
Base
======================== */
html {
  font-size: 62.5%;
}

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

  --text: #000000;
  --primary: #0046a0;
  --secondary: #00b4f0;
  --bg: #e5f7fd;
  --red: #e62846;
  --yellow: #fff000;
  --light-yellow: #fff994;
  --white: #fff;

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

  position: relative;
  line-height: 1.7;

  background: #f2f2f2;
}

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

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

img {
  max-width: 100%;
}

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

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

ul,
ol {
  list-style: none;
}

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

/* ========================
Common
======================== */
.btn {
  overflow: hidden;
  border-radius: 10px;
}
.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: 54px;
  height: 54px;
  background-color: var(--yellow);
  border-radius: 50%;
}

.btn_appeal-inner {
  text-align: center;
  color: var(--pink);
  font-size: 1.5rem;
  font-weight: bold;
}
.btn_recommend {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 0 1px rgba(33, 113, 15, 0.8);
}
.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;
}

.sect-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sect-title_inner {
  display: inline-block;
  width: max-content;
  background: var(--primary);
  color: var(--white);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.009em;
  padding-inline: 20px 10px;
  line-height: 1.25;
}

.sect-title::before,
.sect-title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 15px;
  height: 100%;
  background: url(../images/sect-title_deco.png) center/contain no-repeat;
}

.sect-title::after {
  left: auto;
  right: 0;
  translate: 0 -50%;
  rotate: 180deg;
}

.sect-title--white {
  color: var(--white);
}

.sect-title--2l::before,
.sect-title--2l::after {
  background: url(../images/sect-title_deco2.png) center/contain no-repeat;
}

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

/* === Slick === */
.slick-list {
  margin-left: -20px;
  margin-right: -20px;
}
.slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.slick-slide {
  float: none;
  height: auto;
}
.slick-slide:not(.slick-current) * {
  -webkit-filter: none;
  filter: none;
}
.slick-prev,
.slick-next {
  display: block;
  position: absolute;
  top: 50%;
  z-index: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
  height: 100px;
  padding: 0;
  background-color: #6690c6;
  border: none;
  outline: none;
  color: transparent;
  cursor: pointer;
}
.slick-prev::after,
.slick-next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-70%, -50%) rotate(-45deg);
  transform: translate(-70%, -50%) rotate(-45deg);
  width: 12px;
  height: 12px;
  border-right: 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: -39px;
  width: 100%;
  text-align: center;
  margin-inline-start: -10px;
}
.slick-dots li {
  display: inline-block;
  margin: 0 8px;
  cursor: pointer;
}
.slick-dots li button {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  padding: 0;
  background-color: #e5e5e5;
  border: 0;
  outline: none;
  color: transparent;
  font-size: 0px;
  line-height: 0px;
  cursor: pointer;
}
.slick-dots li.slick-active button {
  background-color: var(--primary);
}

.cont {
  padding: 40px 0;
}

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

/* ========================
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: calc(84 / 1440 * 100vw);
  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: 50%;
  translate: -50% 0;
  z-index: 10;
  background: var(--white);
  max-width: 276px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.header_logo {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  gap: 30px;
  padding: 10px 20px;
}

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

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

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

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

.hero {
  position: relative;
  padding-top: 100px;
  padding-bottom: 15px;
  background: url(../images/hero_bg.jpg) center bottom/cover no-repeat;
  overflow: hidden;
}

.hero_inner {
}

.hero_main {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero_main-text {
  text-align: center;
  display: block;
  width: 170px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.25;
  padding-block: 5px 2px;
}
.hero_main-text em {
  font-size: 3.4rem;
}
.hero_main-text span {
  position: relative;
}
.hero_main-text span::before {
  position: absolute;
  content: "";
  left: 50%;
  translate: -50% 0;
  top: 5%;
  border-radius: 50%;
  background: var(--yellow);
  width: 5px;
  height: 5px;
}

.hero_appeal {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-block-start: 39px;
}

.hero_appeal-item {
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  padding-block-start: 4px;
  box-sizing: border-box;
}

.hero_appeal-text {
  font-size: 1.7rem;
  font-weight: 700;
  display: inline-block;
  background: linear-gradient(
    to top,
    var(--yellow) 0,
    var(--yellow) 35%,
    transparent 35%
  );
}

.hero_appeal-percentage {
  width: 107px;
  margin-block-start: -8px;
}

.hero-bottom {
  padding: 11px 20px 9px;
  background: var(--light-yellow);
  position: relative;
  z-index: 5;
  text-align: center;
}
.hero-bottom_inner {
  display: block;
}

.hero-bottom_top {
  max-width: 276px;
  margin-inline: auto;
}
.hero-bottom_text {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: calc(24 / 16);
  border-block-end: 1px dashed;
}
.hero-bottom_text small {
  font-size: 0.8rem;
  vertical-align: super;
}
.hero-bottom_cta-text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
  margin-block-start: 2px;
}
.hero-bottom_btn {
  margin-block-start: 8px;
  width: 100%;
  display: grid;
  place-items: center;
}
.hero-bottom_note {
  text-align: left;
  font-size: 0.7rem;
  color: #4c4c4c;
  line-height: calc(12 / 7);
}

.appeal {
  background: url(../images/appeal_bg.jpg) right top/ auto 100% no-repeat;
}

.appeal_title {
}
.appeal_body {
}

.appeal_list {
  margin-block-start: 23px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.appeal_item {
  padding-inline-start: 20px;
  position: relative;
}

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

.appeal_item-inner {
  padding: 13px 13px 14px 33px;
  display: flex;
  justify-content: space-between;
  border: 1px solid var(--secondary);
  background: var(--white);
}

.appeal_item-body {
}

.appeal_item-title {
  width: max-content;
  color: var(--primary);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  background: linear-gradient(
    to top,
    var(--yellow) 0,
    var(--yellow) 35%,
    transparent 35%
  );
}

.appeal_item-text {
  font-size: 1.6rem;
  line-height: calc(24 / 16);
  margin-block-start: 5px;
}

.appeal_item-image {
  width: 80px;
  height: 80px;
}

.comparison {
}

.comparison_title {
}

.comparison_body {
  margin-block-start: 38px;
}

.comparison_table {
}

.comparison_note {
  font-size: 1.2rem;
  line-height: 2;
  margin-block-start: 52px;
}

/* === Table === */
.table {
  overflow-x: auto;
  padding-block: 2px 25px;
}
.table_inner {
  min-width: 100%;
  text-align: center;
  table-layout: fixed;
  border-collapse: separate;
  margin-inline: auto;
  width: 926px;
}
.table_th {
  box-sizing: border-box;
  padding: 8px 6px;
  background-color: var(--bg);
  border-top: 1px solid var(--secondary);
  border-left: 1px solid var(--secondary);
  vertical-align: middle;
  text-align: center;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: calc(24 / 16);
  white-space: normal;
}

.table_th {
  white-space: nowrap;
  font-size: 1.4rem;
}
.table_th:first-child {
  text-align: left;
  border-top: 1px solid var(--secondary);
}
.table_th:last-child {
  border-right: 1px solid var(--secondary);
}
.table_th--top {
  height: 50px;
  background-color: var(--bg);
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: calc(19 / 16);
}

.table_th--primary {
  position: relative;
  height: 100%;
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
  font-size: 2.4rem;
}
.table_th--primary::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  box-sizing: border-box;
  width: calc(100% + 1px);
  height: calc(100% + 1px);
  border: 4px solid var(--secondary);
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 3px;
  border-right-width: 3px;
}
.table_th--sp-sticky {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
}
.table_th--sp-sticky2 {
  position: sticky;
  top: 0;
  left: 85px;
  z-index: 1;
}
.table_sp-sticky-inner {
  text-align: center;
}

.table_th--sp-sticky::after,
.table_th--sp-sticky2::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 2;
  box-sizing: border-box;
  width: calc(100% + 3px);
  height: calc(100% + 3px);
  border-right: 1px solid var(--secondary);
}
.table_td {
  padding: 16px 8px;
  background-color: #fff;
  border-top: 1px solid var(--secondary);
  border-left: 1px solid var(--secondary);
  vertical-align: middle;
  font-size: 1.6rem;
  line-height: calc(24 / 16);
  white-space: normal;
  font-weight: 500;
}
.table_td:last-child {
  border-right: 1px solid var(--secondary);
}
.table_td small {
  display: block;
  width: 100%;
  margin-block-start: auto;
  margin-block-start: 3px;
  font-size: 1.2rem;
  line-height: calc(19 / 12);
}
.table_td span {
  font-size: 0.8rem;
  vertical-align: super;
}
.table_td--primary {
  position: relative;
  border-top: 1px solid var(--secondary);
  border-left: 1px solid var(--secondary);
  color: var(--red);
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0;
}
.table_td--primary::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  box-sizing: border-box;
  width: calc(100% + 1px);
  height: calc(100% + 1px);
  border-left: 1px solid var(--secondary);
  border-right: 1px solid var(--secondary);
}
.table_body-tr:last-child .table_th,
.table_body-tr:last-child .table_td {
  border-bottom: 1px solid var(--secondary);
}
.table_body-tr:last-child .table_th--primary::after,
.table_body-tr:last-child .table_td--primary::after {
  border-bottom: 1px solid var(--secondary);
}
.table_corner-cell {
  width: 170px;
  height: 50px;
  border: none;
  background: var(--white);
  border-top: 2px solid var(--white) !important;
}
.table_corner-cell::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  box-sizing: border-box;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
}
.table_head-tr .table_th {
  border-top-width: 1px;
}
.table_body-tr:last-child .table_th,
.table_body-tr:last-child .table_td {
  border-bottom-width: 1px;
}
.table_th:first-child {
  border-left-width: 1px;
}
.table_th:last-child {
  border-right-width: 1px;
}
.table_td:last-child {
  border-right-width: 1px;
}

.cta {
  background: var(--light-yellow);
  padding-block: 0 16px;
  padding-inline: 20px;
}

.cta_inner {
}

.cta_text {
  text-align: center;
  font-size: 1.8rem;
  line-height: 2;
}

.reasons {
  background: var(--bg);
  position: relative;
}
.reasons::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 26px;
  width: 152px;
  height: 225px;
  background: url(../images/reasons_deco.png) center/contain no-repeat;
}

.reasons_body {
  margin-block-start: 42px;
}

.reasons_list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.reasons_item small {
  font-size: 0.8rem;
  vertical-align: super;
}

.reasons_item-head {
  position: relative;
}

.reasons_item-index {
  width: 54px;
  height: 64px;
  position: absolute;
  top: 0;
  left: 20px;
  translate: 0 -50%;
}

.reasons_image {
  width: calc(100% - 40px);
}

.reasons_item-title {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: calc(30 / 20);
  color: var(--white);
  padding: 19px 6px 17px 14px;
  background: rgb(0 180 240 / 0.85);
  width: calc(100% - 40px);
  box-sizing: border-box;
  margin-inline-start: auto;
  margin-block-start: -30px;
  position: relative;
  z-index: 5;
  font-feature-settings: "palt" 1;
}

.reasons_item-title small {
  font-size: 1rem;
}
.reasons_item-title span {
  font-size: 1.2rem;
  vertical-align: baseline;
}

.reasons_item-body {
  margin-block-start: 23px;
}

.reasons_text {
  font-size: 1.6rem;
  line-height: 2;
  padding-inline: 20px;
  font-weight: 500;
}

.reasons_note {
  padding-inline: 20px;
  line-height: 2;
  font-weight: 500;
  font-size: 1.3rem;
}

.reasons_item:nth-child(2) .reasons_item-index {
  left: auto;
  right: 10px;
}
.reasons_item:nth-child(2) .reasons_image {
  margin-inline-start: auto;
}
.reasons_item:nth-child(2) .reasons_item-title {
  margin-inline: 0 auto;
  padding: 19px 14px 17px 20px;
}

.simulation_body {
  margin-block-start: 26px;
}

.simulation_list {
}

.simulation_item {
  padding-block-start: 20px;
  position: relative;
  margin-inline: 20px;
}

.simulation_item-inner {
  border: 1px solid var(--secondary);
  padding: 33px 23px 20px;
  background: var(--white);
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.simulation_item-title {
  font-weight: 700;
  font-size: 2rem;
  padding: 5px 17px;
  background: var(--white);
  border: 1px solid var(--secondary);
  color: var(--secondary);
  width: max-content;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  line-height: calc(24 / 20);
}
.simulation_item:nth-child(2) .simulation_item-inner {
  border-color: var(--primary);
}
.simulation_item:nth-child(2) .simulation_item-title {
  border: 1px solid var(--primary);
  color: var(--primary);
}

.simulation_item-graph {
}

.simulation_item-table {
  margin-block-start: 6px;
}

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

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

.market_list::before {
  width: 25px;
  height: 15px;
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% calc(100% + 3px);
  background: #dac27e;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.market_item {
  padding-inline-start: 1.25em;
  position: relative;
  font-size: 1.7rem;
  font-weight: 700;
}
.market_item::before {
  content: "";
  position: absolute;
  background: url(../images/icon_check.png) center/contain no-repeat;
  width: 16px;
  height: 1lh;
  left: 0;
  top: 0;
}

.market_graph {
  margin-block-start: 25px;
}

.market_graph-lead {
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
}
.market_graph-lead em {
  font-size: 2.2rem;
  color: var(--red);
  border-block-end: 1px solid;
}

.market_graph-image {
  margin-block-start: 20px;
}

@keyframes loop-slider {
  0% {
    translate: 0 0;
  }

  100% {
    translate: -50% 0;
  }
}

.about {
  background: #f2f2f2;
  padding-block-end: 0;
}

.about_text {
  font-size: 1.8rem;
  margin-block-start: 25px;
  letter-spacing: 0.02em;
}

.about_slider {
  overflow: hidden;
  margin-inline: -20px;
  margin-block-start: 40px;
}

.about_slider-inner {
  width: calc(1373px * 2);
  height: 180px;
  display: flex;
  gap: 4px;
  animation: loop-slider 16s linear infinite;
}

.testimonials {
  padding-block-end: 24px;
  background: url(../images/testimonials_bg.jpg) center/cover no-repeat;
}

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

.testimonials_list-item {
  box-shadow: 5px 5px 0 #d6cca5;
  margin: 10px;
  background: var(--white);
}

.testimonials_head {
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 1.8rem;
  padding-inline: 1.5em;
  position: relative;
  text-align: center;
  padding-block: 12px;
}

.testimonials_head-text {
  width: max-content;
  position: relative;
  margin-inline: auto;
  line-height: 1;
}
.testimonials_head-text::before,
.testimonials_head-text::after {
  content: "";
  position: absolute;
  left: -16px;
  bottom: 0;
  width: 2px;
  height: 80%;
  background-color: #fff;
  rotate: -25deg;
}
.testimonials_head-text::after {
  left: auto;
  right: -16px;
  rotate: 25deg;
}
.testimonials_head-text strong {
  font-size: 2.5rem;
  font-weight: 700;
}
.testimonials_head-text em {
  background: url(../images/voice_deco.png) center bottom/contain no-repeat;
  letter-spacing: 0.04em;
}

.testimonials_body {
  padding: 20px;
}

.testimonials_profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.testimonials_profile img {
  border-radius: 50%;
  aspect-ratio: 1;
  width: 90px;
}

.testimonials_profile-text {
  font-size: 1.7rem;
  font-weight: 700;
}

.testimonials_desc {
  font-size: 1.8rem;
  margin-block-start: 20px;
}
.testimonials_desc.second {
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
.testimonials_more {
  --r: 45deg;

  display: block;
  margin-block-start: 20px;
  border-radius: 4px;
  background: var(--primary);
  text-align: center;
  color: var(--white);
  position: relative;
  padding-inline: 11px;
  width: 100%;
  outline: none;
  font-size: 1.5rem;
  border: none;
  padding-block: 7px;
  cursor: pointer;
}

.testimonials_more::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
  border-block-end: 2px solid var(--white);
  border-inline-end: 2px solid var(--white);
  width: 9px;
  height: 9px;
  rotate: var(--r);
}

.testimonials_more-inner {
  font-size: 1.5rem;
  letter-spacing: 0.025em;
  font-family: var(--ff-main);
  font-weight: 700;
}

.achievement {
  background: url(../images/achievement_bg.jpg) center/cover no-repeat;
  padding-block-end: 30px;
}

.achievement_list {
  padding-inline: 10px;
  margin-block-start: 15px;
}
.achievement_list-item {
  padding: 20px;
  background: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
}

.achievement_item-title {
  font-size: 1.7rem;
  color: #947a30;
  text-align: center;
  padding: 3px 22px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.025em;
  border-image: url(../images/achievement_title-bg.png) 1;
  border-style: solid;
  border-width: 5px;
  border-image-slice: 10 fill;
  width: max-content;
  margin-inline: auto;
}

.achievement_main {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.025em;
  display: flex;
  align-items: center;
  width: max-content;
  margin-block-start: 10px;
  margin-inline: auto;
  gap: 6px;
}

.achievement_main-head {
  display: block;
  font-size: 2rem;
  writing-mode: vertical-rl;
  border-inline: 1px solid var(--white);
  padding-inline: 6px 7px;
  flex-grow: 1;
  line-height: 1.2;
}

.achievement_main-text {
  font-size: 2.3rem;
  flex-shrink: 0;
}
.achievement_main-text em {
  font-size: 5.3rem;
  background: url(../images/achievement_num-bg.png) center 90% / contain
    no-repeat;
  padding-inline: 3px;
}
.achievement_mosaic {
  padding: 5px 10px;
  background: var(--white);
  position: relative;
  margin-block-start: 10px;
}

.achievement_mosaic-text {
  font-size: 1.5rem;
  text-align: center;
  width: 220px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background: var(--white);
  aspect-ratio: 438/201;
}

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

.flow_lead {
  color: #947a30;
  font-weight: 700;
  font-size: 1.7rem;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  margin-inline: auto;
  margin-block-start: 25px;
  display: flex;
  align-items: end;
  gap: 6px;
  justify-content: center;
}

.flow_lead em {
  padding: 2px 6px 4px;
  background: #947a30;
  display: block;
  line-height: 1;
  color: var(--white);
}

.flow_lead em strong {
  font-size: 2.5rem;
}
.flow_list-wrap {
  overflow-x: scroll;
  margin-top: 5px;
  margin-right: -17px;
}

.flow_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 36px;
  width: 820px;
  margin-top: 16px;
  margin-bottom: 16px;
  padding-inline-end: 15px;
}
.flow_item-first {
  aspect-ratio: 1;
  width: 140px;
  aspect-ratio: 140 / 120;
  position: relative;
  z-index: 2;
  display: block;
}
.flow_item {
  position: relative;
  width: 680px;
  aspect-ratio: 680 / 120;
}

.push {
  padding-top: 40px;
  padding-bottom: 61px;
  background: url(../images/push_bg.jpg) center/cover no-repeat;
  position: relative;
}
.push::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 4px;
  width: 133px;
  height: 150px;
  background: url(../images/push_deco.png) center/contain no-repeat;
}
.push_title .sect-title_inner {
  font-size: 2.4rem;
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: calc(29 / 24);
  padding-block-end: 2px;
}
.push_list {
  position: relative;
  width: 100%;
  margin: 24px auto 0;
  padding-inline: 15px;
  display: flex;
  flex-direction: column;
}
.push_item {
  padding-block: 10px;
  position: relative;
}

.push_item-inner {
}

.push_item-icon {
  position: absolute;
  width: 251px;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  aspect-ratio: 1;
  width: 84px;
  height: 84px;
}

.push_item-body {
  background: var(--white);
  padding-block: 6px;
  padding-inline-start: 52px;
  margin-inline-start: 42px;
  width: 251px;
  box-sizing: border-box;
}

.push_item-text {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: calc(26 / 18);
  padding-inline-start: 36px;
  position: relative;
  max-width: fit-content;
}

.push_item-text-bottom {
  font-size: 1.5rem;
  font-weight: bold;
  padding-inline-start: 20px;
  margin-top: 20px;
}
.push_item-text::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 30px;
  height: 30px;
  background: url(../images/icon_check.svg) center/contain no-repeat;
}

.push_item:nth-child(2) .push_item-icon {
  left: auto;
  right: 0;
}

.push_message {
  font-size: 2rem;
  font-weight: 700;
  line-height: calc(34 / 20);
  color: var(--primary);
  padding-inline-start: 20px;
  margin-block-start: 13px;
}
.push_message span {
  display: inline-block;
  border-block-end: 1px dashed var(--primary);
}
.request {
  position: relative;
  padding-top: 51px;
  padding-bottom: 40px;
  /* background: var(--secondary); */
}
.request_title {
  width: 100%;
}
.request_title-inner {
  box-sizing: border-box;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  /* padding: 18px 20px 34px; */
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  background: url(../images/push_speech-bubble.png) center/contain no-repeat;
  width: 100%;
}
.request_title-inner {
  /* --x-gradient: linear-gradient(
        90deg,
        var(--primary) 0 10px,
        transparent 0 calc(100% - 10px),
        var(--primary) calc(100% - 10px)
    );
    --y-gradient: linear-gradient(
        var(--primary) 0 10px,
        transparent 0 calc(100% - 10px),
        var(--primary) calc(100% - 10px)
    );

    text-align: center;
    padding: 2px;
    max-width: 331px;
    margin-inline: auto;
    background-image: var(--x-gradient), var(--y-gradient), var(--x-gradient), var(--y-gradient);
    background-repeat: no-repeat;
    background-size: 100% 10px, 10px 100%, 100% 10px, 10px 100%;
    background-position: top, right, bottom, left; */
}

.request_title-text {
  display: block;
  background: var(--yellow);
  font-size: 1.8rem;
  padding: 7px 14px 11px;
  white-space: nowrap;
}
.request_title-text em {
  display: block;
  font-size: 2.4rem;
  line-height: calc(29 / 24);
  letter-spacing: -0.02em;
  margin-block-start: 6px;
}

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

.request_note {
  text-align: center;
  font-size: 1.6rem;
  line-height: calc(30 / 16);
  font-weight: 500;
  color: var(--white);
}
.request_note-mail {
  display: block;
}
.request_note-supp {
  font-size: 1.3rem;
  text-align: center;
  margin-block-start: 10px;
}
.request_panel {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 15px auto 0;
  background: var(--white);
  padding: 34px 9px 38px 6px;
  padding: 0 9px 38px 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(--yellow);
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
  height: 37px;
  color: #333333;
}
.request_appeal strong {
  display: flex;
  align-items: center;
  gap: 2px;
  padding-inline-start: 2px;
  line-height: 1;
  color: var(--primary);
  font-size: 3.6rem;
  display: inline-block;
  line-height: 1;
  margin-block-start: -6px;
  letter-spacing: -0.03em;
  padding-inline-end: 2px;
}
.request_require-note {
  text-align: right;
  font-size: 1.1rem;
  margin-block-start: 12px;
}
.request_form {
  margin-top: 10px;
}
.request_form .form * {
  font-family: var(--font-en);
}

.form * {
  font-family: var(--font-main);
}
.form .form-text {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 48px;
  padding: 8px 15px;
  background-color: #f6f6f5;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 5px;
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
  font-family: var(--font-en);
  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: 48px;
  padding: 11px 14px 11px;
  background-color: #e5ecf1;
  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.5rem;
  font-weight: 700;
  line-height: 1.5;
  font-weight: 500;
  width: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #333;
}
.form .form-select--initial {
  background-color: #fff;
  border: 2px solid var(--primary);
}
.form .form-zip-btn {
  font-family: var(--ff-main);
  padding: 10px 10px;
  background: var(--white);
  border-radius: 5px;
  color: #333333;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.1428571429;
  cursor: pointer;
  height: 48px;
  letter-spacing: 0.025em;
  flex-grow: 1;
  border: none;
  margin-block-start: 0;
  border: 2px solid #000;
}
.form .wpcf7-form-control-wrap {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 5px;
}
.form .form-textarea {
  height: 200px;
  padding-block-start: 16px;
}
.form_item {
  display: block;
  gap: 13px;
  color: #000;
}
.form_item--contact-class {
  opacity: 0;
  font-size: 0px;
  width: 0;
  height: 0;
}
.form_item:not(:first-child) {
  margin-top: 10px;
}
.form_item--short .wpcf7-form-control-wrap {
  max-width: 185px;
  margin-inline-end: 3px;
  flex-shrink: 0;
}
.form_item--has-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}
.form_item--has-btn .form_title {
  width: 100%;
}

.form_item--has-btn .wpcf7-form-control-wrap {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 100%;
  margin-left: 0;
  margin-block-start: 0;
}
.form_item--left {
  float: none;
  width: auto;
}
.form_item--right {
  float: right;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
  float: none;
  width: auto;
}
.form_title {
  display: block;
  width: auto;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
}

.form_title--long {
  letter-spacing: -0.1em;
}
.form_required {
  color: #e42d2d;
}
.form_control {
  display: block;
  width: 100%;
}
.form .form_item--select .wpcf7-form-control-wrap {
  position: relative;
}
.form .form_item--select .wpcf7-form-control-wrap::after {
  content: "";
  display: block;
  position: absolute;
  top: 21px;
  right: 13px;
  width: 18px;
  height: 10px;
  background: url(../images/chevron.svg) center/contain no-repeat;
}
.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: #907525;
}
.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.25em;
  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: 1em;
  height: 1em;
  background-color: #fff;
  border: 1px solid var(--text);
  border-radius: 50%;
  cursor: pointer;
}
.form .form_item--radio .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 4px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  background-color: var(--primary);
  border-radius: 50%;
  opacity: 0;
  cursor: pointer;
}
.form .form_item--checkbox .wpcf7-checkbox {
  margin-top: 0;
  margin-left: 0;
}
.form .form_item--checkbox .wpcf7-checkbox input {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
}
.form
  .form_item--checkbox
  .wpcf7-checkbox
  input:checked
  + .wpcf7-list-item-label::before {
  background-color: #c1c1c1;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.form
  .form_item--checkbox
  .wpcf7-checkbox
  input:checked
  + .wpcf7-list-item-label::after {
  opacity: 1;
}
.form .form_item--checkbox .wpcf7-list-item {
  display: block;
  margin-top: 12px;
  margin-left: 0;
}
.form .form_item--checkbox .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  line-height: 1.7857142857;
  cursor: pointer;
  padding-left: 27px;
  font-size: 1.1em;
  color: #999;
  font-family: var(--font-en);
  font-weight: 300;
}
.form .form_item--checkbox .wpcf7-list-item-label::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  background-color: #fff;
  cursor: pointer;
}
.form .form_item--checkbox .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-65%) rotate(-45deg);
  transform: translateY(-65%) rotate(-45deg);
  width: 9px;
  height: 4px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  opacity: 0;
  cursor: pointer;
  left: 4px;
}
.form .form_item--optional:not(._) {
  text-align: center;
  margin-top: 29px;
}
.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: #c1c1c1;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 500;
}
.form .wpcf7-not-valid:not(.wpcf7-radio) {
  background: #f6f6f6;
  color: #464646;
}
.form .wpcf7-not-valid-tip {
  margin-top: 4px;
}
.form_note {
  margin-top: 2px;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-left: 0;
}
.form_privacy-policy-wrap {
  margin-top: 17px;
  display: flex;
  justify-content: center;
}
.form_privacy-policy {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
}
.form_submit-wrap {
  margin-top: 25px;
  text-align: center;
  position: relative;
}
.form_submit {
  position: relative;
  width: 225px;
  padding-top: 12px;
  padding-bottom: 13px;
  outline: none;
  border: none;
  border-radius: 40px;
  background: #e62846;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.075em;
  cursor: pointer;
}

.form_submit-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  translate: 0 -50%;
  width: 13px;
  height: 20px;
  background-color: var(--white);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  z-index: 2;
}

.form_attention {
  margin-block-start: 16px;
  display: block;
  text-align: center;
  color: #5e544e;
  font-size: 1.15rem;
  line-height: 1.4;
}

#your-company-wrap {
  display: none;
}

#your-company-wrap + .form_note {
  display: none;
}

.footer {
  background-color: var(--primary);
  color: #fff;
  padding-top: 24px;
  padding-bottom: 0;
  font-family: var(--font-main);
}
.footer_inner {
  position: relative;
  max-width: 1000px;
  padding: 0 17px;
  margin: 0 auto;
}
.footer_about-franchise-salon {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 860px;
  margin: 0 auto;
  background-color: #fff;
  color: #393939;
  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.8rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  margin-inline-start: -10px;
}
.footer_about-logo {
  display: inline-block;
  width: 222px;
}
.footer_about-desc {
  line-height: 1.5;
  font-size: 1.4rem;
  font-weight: 500;
  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: 17px;
}
.footer_info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-family: var(--font-en);
}
.footer_info + .footer_info {
  margin-top: 22px;
  padding-left: 0;
  border: none;
}
.footer_company {
  font-size: 1.5rem;
  font-weight: bold;
}
.footer_head-office {
  font-size: 1.5rem;
  font-weight: 700;
}
.footer_address {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 400;
  margin-block-start: 2px;
}
.footer_contact {
  margin-block-start: 11px;
  display: block;
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 9px 10px 8px;
  position: relative;
  box-sizing: border-box;
}
.footer_contact-link {
  grid-area: 1/2/2/3;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.6;
  text-decoration: none;
  display: block;
  margin-inline: auto;
  width: fit-content;
}
.footer_copyright {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  padding-block-end: 22px;
}
.footer--copyright {
  padding-top: 27px;
  padding-bottom: 0px;
  background-color: var(--primary);
  margin-block-start: -1px;
}
/* ========================
Helper
======================== */
@media screen and (max-width: 768px) {
  .only-pc {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .only-sp {
    display: none;
  }
}

.clear-fix {
  clear: both;
}

.marker {
  background: linear-gradient(to top, var(--yellow) 10px, transparent 10px);
}

.white-line {
  background-image: -webkit-linear-gradient(bottom, #fff 7px, transparent 7px);
  background-image: linear-gradient(to top, #fff 7px, transparent 7px);
}

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

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

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

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

.bold {
  font-weight: bold;
}

.extrabold {
  font-weight: 800;
}

.scroll-hint-icon {
  z-index: 10;
}
