@-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-serif: "Zen Old Mincho", serif;
  --ff-sans: "Noto Sans JP", sans-serif;
  --ff-en: "Roboto", sans-serif;

  --text: #000;
  --primary: #d74f76;
  --primary-light: #da4893;
  --yellow: #fffb8e;
  --yellow-light: #fdfbd9;

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

img {
  max-width: 100%;
}

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

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

ul,
ol {
  list-style: none;
}

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

/* ========================
Common
======================== */
.btn {
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  aspect-ratio: 53 / 11;
  border-radius: 999em;
  overflow: hidden;
}
.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: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .btn_appeal {
    width: 39px;
    height: 39px;
  }
}
.btn_appeal-inner {
  text-align: center;
  color: #c91818;
  font-size: 15px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .btn_appeal-inner {
    font-size: 11px;
  }
}
.btn_recommend {
  display: block;
  font-size: 15px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .btn_recommend {
    font-size: 11px;
  }
}
.btn--gritter {
  overflow: hidden;
  position: relative;
}
.btn--gritter::before {
  content: "";
  display: block;
  height: 100%;
  width: 10%;
  position: absolute;
  top: -50%;
  left: -78px;
  background-color: #fff;
  opacity: 0;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-animation: reflection 3s ease-in-out infinite;
  animation: reflection 3s ease-in-out infinite;
}

.btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 17px;
  padding-right: 17px;
  margin-top: 16px;
}

.sect-title {
  padding-left: 24px;
  border-left: 3px solid #009533;
  color: #000;
  font-size: 4rem;
  font-family: "Yu Mincho Pr6N", "Times New Roman", "YuMincho",
    "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  line-height: 1.5;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .sect-title {
    padding-left: 16px;
    font-size: 2.4rem;
    line-height: 1.8;
  }
}

.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: -16px;
  margin-right: -16px;
}
.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(--primary);
  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: 9px;
  height: 9px;
  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: -16px;
}
.slick-next {
  right: -16px;
}
.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: -26px;
  width: 100%;
  text-align: center;
}
.slick-dots li {
  display: inline-block;
  margin: 0 6px;
  cursor: pointer;
}
.slick-dots li button {
  display: block;
  width: 14px;
  height: 14px;
  padding: 0;
  background-color: #f7aec3;
  border-radius: 50%;
  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: 70px 16px;
}
@media screen and (max-width: 768px) {
  .cont {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}
.cont_inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* ========================
Blocks
======================== */

.header {
  max-width: 1000px;
  width: fit-content;
  /* box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.3); */
  position: absolute;
  top: 0;
  left: 91px;
  background-color: #fff;
  box-sizing: border-box;
  z-index: 5;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: hidden;
  display: flex;
}

.header .header-logo {
  display: flex;
  gap: 35px;
  align-items: center;
  justify-content: space-between;
  padding: 13px 21px;
  position: relative;
}
.header .header-logo .header_brand-logo {
  width: 170px;
  display: inline-block;
}
.header .header-logo .header_fcs-logo {
  width: 160px;
  display: inline-block;
}
.header .header-logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 51%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #000;
  width: 18px;
  height: 2px;
}
.header .header-logo::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 51%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #000;
  width: 18px;
  height: 2px;
}
.header_tel {
  background: var(--primary);
  border-bottom-right-radius: 20px;
  display: none;
  place-items: center;
  padding-inline: 22px;
}
.header_tel-num {
  color: #fff;
  font-size: clamp(2.3rem, 3vw + 0.75rem, 4.8rem);
  padding-inline-start: 1.4em;
  position: relative;
  font-family: "Shippori Mincho", serif;
  margin-block-start: -4px;
  display: block;
}
.header_tel-num::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-45%);
  width: 1.1em;
  height: 1.1em;
  background: #fff;
  mask: url("../images/icon_tel.png") center/contain no-repeat;
  border-radius: 50%;
}
.header_tel-num span {
  translate: 0 -5px;
  line-height: 1;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .header {
    border-radius: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.2);
  }
  .header .header-logo {
    width: max-content;
    margin-inline: auto;
    gap: 16px;
    padding: 6px 9px 6px 7px;
  }

  .header .header-logo .header_brand-logo {
    width: 92px;
  }

  .header .header-logo .header_fcs-logo {
    width: 80px;
  }

  .header .header-logo::before {
    width: 8px;
    height: 1px;
    left: 52%;
  }

  .header .header-logo::after {
    width: 8px;
    height: 1px;
    left: 52%;
  }
  .header_tel {
    border-radius: 0;
    padding-inline: 8px 13px;
  }
  .header_tel-num {
    white-space: nowrap;
    padding-inline-start: 1em;
  }
  .header_tel-num::before {
    width: 0.8em;
    height: 0.8em;
  }
  .header_tel-num span {
    translate: 0 -3px;
  }
}

.hero {
  position: relative;
  padding-top: 24px;
  padding-bottom: 0;
  background: url("../images/hero_bg.jpg") center/cover no-repeat;
}
.hero_inner {
  max-width: 1100px;
}
.hero_main {
  width: 100%;
}
.hero_middle {
  background: var(--primary);
  padding-block: 27px 23px;
  margin-block-start: -2px;
  z-index: 5;
  position: relative;
}
.hero_list {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding-inline: 20px;
}

.hero_item {
  position: relative;
  padding-inline: 46px;
  color: #fff;
  font-family: var(--ff-serif);
  text-align: center;
  line-height: 1.2;
  font-size: clamp(1.35rem, 2vw + 0.25rem, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero_item::before,
.hero_item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 34px;
  aspect-ratio: 34 / 101;
  background: url("../images/hero_deco.png") center/contain no-repeat;
}
.hero_item::after {
  left: auto;
  right: 0;
  scale: -1 1;
}
.hero_item:nth-child(1) em {
  font-size: clamp(1.65rem, 2vw + 0.75rem, 3.6rem);
}
.hero_item:nth-child(1) strong {
  font-size: clamp(2.7rem, 3.5vw + 1.25rem, 5.9rem);
  line-height: 1;
}
.hero_item:nth-child(1) p + p {
  font-size: clamp(1.55rem, 2vw + 0.75rem, 3.4rem);
}
.hero_item:nth-child(2) strong {
  font-size: clamp(2.1rem, 2.5vw + 1rem, 4.6rem);
}
.hero_item:nth-child(3) p:first-child {
  font-size: clamp(1.8rem, 2.5vw + 0.75rem, 3.9rem);
}
@media screen and (max-width: 768px) {
  .hero {
    padding-top: 60px;
    padding-inline: 0;
    background: url("../images/hero_bg-sp.jpg") center bottom/cover no-repeat;
  }

  .hero_middle {
    box-sizing: border-box;
    padding-block: 20px;
    padding-inline: 8px;
  }

  .hero_list {
    gap: 4px;
    padding-inline: 0;
    justify-content: center;
  }

  .hero_item {
    padding-inline: 14px;
    line-height: 1.15;
  }

  .hero_item::before,
  .hero_item::after {
    width: 16px;
  }
}

.hero-bottom {
  padding-top: 18px;
  padding-bottom: 13px;
  background-color: var(--yellow-light);
}
.hero-bottom_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
}

.hero-bottom_text {
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  font-size: clamp(1.7rem, 1vw + 1.25rem, 2.6rem);
}
.hero-bottom_text em {
  font-size: clamp(1.6rem, 1vw + 1rem, 2.4rem);
}

.hero-bottom_btn {
  width: calc(383 / 1000 * 100%);
}

@media screen and (max-width: 768px) {
  .hero-bottom {
    padding-block: 25px 20px;
  }
  .hero-bottom_inner {
    flex-direction: column;
    gap: 0;
  }

  .hero-bottom_btn {
    width: 100%;
    max-width: 335px;
    margin-block-start: 12px;
  }
}

.about {
  padding-block: 52px 28px;
  background: url("../images/about_bg.jpg") center/cover no-repeat;
}
.about_inner {
  position: relative;
  max-width: 1100px;
}
.about_title {
  font-size: clamp(2rem, 2vw + 1.25rem, 4rem);
  font-family: var(--ff-serif);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-weight: 600;
}
.about_title strong {
  font-size: clamp(2.75rem, 2.5vw + 1.25rem, 4.6rem);
}

.about_title img {
  width: calc(309 / 1000 * 100%);
  aspect-ratio: 647 / 160;
  min-width: 228px;
}
.about_body {
  box-sizing: border-box;
  margin-block-start: 40px;
  display: flex;
  gap: 40px;
  padding-inline: 20px 10px;
}
.about_desc {
  display: block;
  font-size: clamp(1.5rem, 1vw + 0.75rem, 1.8rem);
  line-height: 2;
  width: calc(610 / 1100 * 100%);
}
.about_img {
  width: calc(400 / 1100 * 100%);
  margin-block-start: 68px;
}
.about_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about_img2 {
  position: absolute;
  aspect-ratio: 515 / 393;
  width: calc(255 / 1100 * 100%);
  top: 0;
  right: 9%;
  min-width: 145px;
}

@media screen and (max-width: 768px) {
  .about {
    padding-top: 30px;
    padding-bottom: 50px;
    background: url("../images/about_bg-sp.jpg") center/cover no-repeat;
  }
  .about_desc {
    margin-top: 24px;
    font-size: 1.6rem;
  }
  .about_body {
    flex-direction: column;
    gap: 35px;
    margin-block-start: 40px;
    padding: 0;
  }

  .about_desc {
    width: 100%;
    margin: 0;
  }

  .about_img {
    width: 100%;
    margin: 0;
  }
}

@media screen and (max-width: 540px) {
  .about_title {
    max-width: 330px;
    margin-inline: auto;
    gap: 43px;
  }
  .about_title span {
    align-self: start;
  }

  .about_desc {
    font-size: 1.5rem;
  }

  .about_img2 {
    rotate: -5deg;
    right: auto;
    left: 55%;
    top: 60px;
  }
}

.comparison {
  padding-block: 95px 72px;
  background: url("../images/comparison_deco.png") center 20px / 7px auto
    no-repeat;
  overflow: hidden;
}

.comparison_inner {
  max-width: 1100px;
}

.comparison_title {
  font-size: clamp(1.9rem, 2vw + 1rem, 3.6rem);
  font-family: var(--ff-serif);
  text-align: center;
  line-height: 1.25;
}
.comparison_title em {
  font-size: clamp(2.55rem, 3vw + 0.75rem, 4.6rem);
  font-weight: 600;
  line-height: 1;
}
.comparison_title span {
  font-style: italic;
  transform: skewX(345deg);
  display: inline-block;
  margin-inline-start: -6px;
}
.comparison_table {
  max-width: 924px;
  margin: 46px auto 0;
  padding-inline-end: 16px;
}
@media screen and (max-width: 768px) {
  .comparison_title {
    line-height: 1.75;
  }
  .comparison_table {
    margin-top: 16px;
    margin-right: -17px;
  }
}
.comparison_appeal {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 18px;
  margin: 30px auto 0;
  background-color: #d99506;
  border-radius: 4px;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .comparison_appeal {
    font-size: 1.6rem;
  }
}
.comparison_appeal::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 64px;
  width: 32px;
  height: 16px;
  -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background-color: #d99506;
}
@media screen and (max-width: 768px) {
  .comparison_appeal::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.table {
  overflow-x: auto;
  border-radius: 0;
  padding-block-end: 20px;
}
.table_inner {
  width: 100%;
  min-width: 100%;
  text-align: center;
  table-layout: fixed;
  border-collapse: separate;
}
@media screen and (max-width: 768px) {
  .table_inner {
    width: auto;
  }
}
.table_th {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 11px 7px;
  background-color: #fff3f7;
  border-top: 1px solid #fecedf;
  border-left: 1px solid #fecedf;
  vertical-align: middle;
  text-align: center;
  font-size: clamp(1.5rem, 1vw + 0.75rem, 1.8rem);

  font-weight: bold;
  line-height: 1.3;
  white-space: normal;
}
@media screen and (max-width: 768px) {
  .table_th {
    white-space: nowrap;
    font-size: 1.5rem;
  }
}
.table_th:first-child {
  text-align: left;
  font-size: clamp(1.5rem, 1vw + 0.75rem, 1.8rem);
}
.table_th:last-child {
  /* border-right: 1px solid #000; */
}
.table_th--top {
  height: 62px;
  background-color: #a9a9a9;
  text-align: center;
  color: #000;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-size: 2.2rem;
  border: none;
  border-inline-start: 4px solid #fff;
}
.table_th--primary {
  position: relative;
  height: 100%;
  background-color: var(--primary);
  color: #fff;
  height: 68px;
  font-size: clamp(2rem, 1vw + 1.25rem, 2.4rem);
  border: none;
}
.table_th--primary::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: 1px solid #fff;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.table_th--sp-sticky {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 0;
  border-block-start: 3px solid #fed3e2;
}
.table_th--sp-sticky--rt {
  border-top-left-radius: 10px;
}
.table_th--sp-sticky--rb {
  border-bottom-left-radius: 10px;
}
@media screen and (max-width: 768px) {
  .table_th:first-child {
    height: 55px;
  }
  .table_corner-cell {
    height: 55px;
  }
  .table_th--primary {
    height: 55px;
  }
  .table_th--sp-sticky {
    z-index: 1;
  }
}
.table_th--sp-sticky::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  z-index: 2;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: calc(100% + 3px);
  height: calc(100% + 3px);
}
@media screen and (max-width: 768px) {
  .table_th--sp-sticky:not(.table_corner-cell)::after {
    border-right: 1px solid #fed3e2;
  }
}
.table_sp-sticky-inner {
  text-align: center;
}
.table_td {
  padding: 9px 7px;
  background-color: #fff;
  border-top: 4px solid #fed3e2;
  border-left: 4px solid #fed3e2;
  vertical-align: middle;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.25;
  white-space: normal;
  letter-spacing: 0.02em;
}
.table_td span {
  padding-inline: 0.5em;
  display: inline-block;
  position: relative;
}
.table_td span::after,
.table_td span::before {
  content: "";
  position: absolute;
  height: 80%;
  top: 50%;
  width: 2px;
  background-color: var(--primary);
  left: 0;
  translate: 0 -50%;
  rotate: -10deg;
}
.table_td span::after {
  rotate: 10deg;
  right: 0;
  left: auto;
}

@media screen and (max-width: 768px) {
  .table_td {
    white-space: nowrap;
    font-size: 1.4rem;
    border-width: 2px;
  }
}
.table_td:last-child {
  border-right: 2px solid #fed3e2;
}
.table_td--primary {
  position: relative;
  background-color: #fdfbd9;
  border-top: 4px solid #fed3e2;
  border-left: 2px solid #fed3e2;
  color: var(--primary);
  font-size: clamp(1.5rem, 1vw + 0.75rem, 1.8rem);

  font-weight: bold;
  letter-spacing: 0;
}
.table_td--primary::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-left: 4px solid #fed3e2;
  border-right: 2px solid #fed3e2;
}
.table_body-tr:last-child .table_th,
.table_body-tr:last-child .table_td {
  border-bottom: 2px solid #fed3e2;
}
.table_body-tr:last-child .table_th--primary::after,
.table_body-tr:last-child .table_td--primary::after {
  /* border-bottom: 4px solid #fed3e2; */
}
.table_td--empty {
  position: relative;
}
.table_td--empty::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 52px;
  height: 3px;
  background-color: #000;
}
.s1 {
  font-size: clamp(1.2rem, 2vw, 2.3rem);
}

.s2 {
  font-size: clamp(2.75rem, 1vw + 2.25rem, 3.6rem);
  line-height: 1;
}
.s2 img {
  aspect-ratio: 112 / 52;
  width: 56px;
  padding-inline: 4px;
}

.s3 {
  font-size: clamp(2.75rem, 0.5vw + 2.5rem, 3rem);
}
.s3 img {
  padding-inline: 4px;
  aspect-ratio: 61 / 43;
  width: 30px;
}

.table_td--rb {
  border-bottom-right-radius: 10px;
}
.table_corner-cell {
  width: 130px;
  height: 65px;
  background: transparent;
  border: none;
}
@media screen and (max-width: 768px) {
  .table_td--primary {
    border-top-width: 2px;
  }
  .table_td--primary::after {
    border-left-width: 2px;
  }
  .s2 img {
    width: 40px;
  }
  .s3 img {
    width: 24px;
  }
  .table_corner-cell {
    width: 90px;
  }
}

.table_body-tr {
  height: 80px;
}
.table_body-tr:last-child .table_td:last-child {
  /* border-radius: 0 0 0 0; */
}
.table_body-tr .table_th::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background-color: #fed3e2;
}
.table_head-tr .table_th {
  border-top-width: 4px;
}
@media screen and (max-width: 768px) {
  .table_th--sp-sticky {
    border-width: 1px;
  }
  .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: 4px;
}
@media screen and (max-width: 768px) {
  .table_body-tr:last-child .table_th,
  .table_body-tr:last-child .table_td {
    border-bottom-width: 2px;
  }
}
.table_th:first-child {
  border-left-width: 4px;
}
@media screen and (max-width: 768px) {
  .table_th:first-child {
    border-left-width: 2px;
  }
}
.table_th:last-child {
  border-right-width: 4px;
}
@media screen and (max-width: 768px) {
  .table_th:last-child {
    border-right-width: 2px;
  }
}
.table_td:last-child {
  border-right-width: 4px;
}
@media screen and (max-width: 768px) {
  .table_td:last-child {
    border-right-width: 2px;
  }
}

.reasons {
  position: relative;
  padding-top: 120px;
  padding-bottom: 100px;
  background: url(../images/reasons_bg.png) center top/cover no-repeat,
    linear-gradient(to bottom, transparent 25%, #ffe6ef 100%);
}
.reasons_title {
  font-size: clamp(2.2rem, 2vw + 1.25rem, 3.8rem);
  font-family: var(--ff-serif);
  text-align: center;
  font-weight: 600;
  line-height: 1.25;
}
.reasons_title em {
  font-size: clamp(2.75rem, 2vw + 2rem, 4.6rem);
  color: #fff;
  display: inline-block;
  background: linear-gradient(to left, #edd2b0, #eb7ba7, #eb7ba7);
  padding-inline: 6px;
  padding-block: 3px;
}
.reasons_title-inner {
  margin-top: -16px;
  color: #fff;
  font-family: "Yu Mincho Pr6N", "Times New Roman", "YuMincho",
    "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
}

.reasons_list {
  display: grid;
  grid-template: auto auto/1fr 1fr;
  gap: 47px 58px;
  position: relative;
  margin-top: 58px;
}
.reasons_list-item {
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.reasons_item-index {
  aspect-ratio: 187 / 50;
  width: 187px;
}
.reasons_item-title {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 132px;
  text-align: center;
  color: #fff;
  font-size: clamp(2.2rem, 1vw + 1.75rem, 3rem);
  padding: 16px 43px;
  background: var(--primary);
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  font-weight: 700;
  line-height: 1.25;
  margin-block-start: 8px;
}
.reasons_item-title span {
  display: inline-block;
  font-size: clamp(1.7rem, 1vw + 1.25rem, 2.4rem);
}
.reasons_item-img {
  aspect-ratio: 690 / 328;
}
.reasons_item-desc {
  font-size: clamp(1.5rem, 1vw + 0.75rem, 1.8rem);
  line-height: calc(54 / 30);
  padding: 20px 34px;
  background: #fff;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .reasons {
    padding-block: 45px 50px;
    background: url("../images/reasons_bg-sp.png") center top/100% auto
        no-repeat,
      linear-gradient(to bottom, transparent 25%, #ffe6ef 25%, #ffe6ef 100%);
  }
  .reasons_title {
    line-height: 1.75;
  }
  .reasons_title em {
    padding: 0 3px;
  }
  .reasons_list {
    grid-template: repeat(4, auto) / auto;
    row-gap: 30px;
    margin-top: 26px;
  }
  .reasons_item-index {
    width: 140px;
  }
  .reasons_item-title {
    height: 100px;
    padding-inline: 16px;
  }
  .reasons_item-desc {
    padding: 14px 10px 22px;
    font-feature-settings: "palt" 1;
  }
}

.cta {
  background: url("../images/cta_bg.png") bottom center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 129px 57px;
  padding-inline: 16px;
  position: relative;
}

.cta_top {
  position: absolute;
  width: 267px;
  aspect-ratio: 89/28;
  top: 0;
  left: 50%;
  translate: -50% -37.5%;
}

.cta_list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cta_list-item {
  font-weight: 700;
  color: #fff;
  font-size: clamp(1.8rem, 2vw + 0.5rem, 3rem);
  position: relative;
  padding-block-end: 18px;
  line-height: 1.25;
  padding-inline-start: 60px;
}
.cta_list-item::before {
  content: "";
  position: absolute;
  top: 22%;
  left: 0;
  width: 38px;
  aspect-ratio: 77 /50;
  background: url("../images/icon_check.png") center / contain no-repeat;
}
.cta_list-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  translate: 0 -50%;
  width: 100%;
  height: 4px;
  background: url("../images/dots.png") center / 100% 4px no-repeat;
}
.cta_list-item em {
  background: #fff;
  display: inline-block;
  padding-block: 3px;
  color: var(--primary);
}

.cta_lead {
  font-size: clamp(1.8rem, 2vw + 0.5rem, 3rem);
  line-height: calc(50 / 30);
  color: #fff;
  text-align: center;
  font-weight: 700;
  margin-block-start: 30px;
}

.cta_arrow {
  aspect-ratio: 26/19;
  width: 53px;
  margin-block-start: 28px;
}

.cta_text {
  font-size: clamp(1.8rem, 2vw + 0.5rem, 3rem);
  color: #fff;
  font-weight: 700;
  margin-block-start: 22px;
}

.cta_btn {
  width: 100%;
  max-width: 415px;
  margin-block-start: 21px;
}

@media screen and (max-width: 768px) {
  .cta {
    background: url("../images/cta_bg-sp.png") center/cover no-repeat;
    padding-block: 57px 50px;
  }

  .cta_top {
    position: absolute;
    width: 167px;
  }

  .cta_list {
    gap: 18px;
  }

  .cta_list-item {
    padding-inline-start: 0;
    padding-block-end: 0;
  }
  .cta_list-item::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 20px;
  }
  .cta_list-item::after {
    display: none;
  }
  .cta_list-item span {
    background: url("../images/dots.png") center bottom / auto 2px no-repeat;
    display: block;
    padding-block: 3px 8px;
    padding-inline-start: 28px;
  }
  .cta_list-item span + span {
    margin-block-start: 8px;
  }

  .cta_list-item em {
    background: #fff;
    display: inline-block;
    padding-block: 3px;
    margin-block-end: 6px;
    color: var(--primary);
  }

  .cta_lead {
    margin-block-start: 18px;
  }

  .cta_arrow {
    width: 28px;
    margin-block-start: 13px;
  }

  .cta_text {
    margin-block-start: 15px;
  }

  .cta_btn {
    margin-block-start: 10px;
  }
}
.testimonials {
  background: url("../images/testimonials_bg.jpg") center/cover no-repeat;
  padding-block: 240px 100px;
  margin-block-start: -170px;
  overflow: hidden;
}

.testimonials_title {
  font-family: var(--ff-serif);
  font-weight: 600;
  text-align: center;
  font-size: clamp(2.7rem, 2vw + 1.75rem, 4.6rem);
}
.testimonials_list {
  display: flex;
  gap: 40px;
  margin-block-start: 43px;
}
.testimonials_list-item {
  background: #fff;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  padding: 21px 20px 33px 20px;
  flex-basis: calc(50% - 20px);
}

.testimonials_head {
  display: flex;
  position: relative;
  padding-block-end: 17px;
  justify-content: space-between;
}

.tstimonials_lead {
  color: #d74f76;
  font-family: var(--ff-serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 1vw + 1.25rem, 2.4rem);
  line-height: calc(36 / 24);
  padding-block-end: 43px;
  position: relative;
  letter-spacing: -0.05em;
  font-feature-settings: "palt" 1;
  white-space: nowrap;
}
.tstimonials_lead::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 6px;
  width: 86px;
  height: 3px;
  background: var(--primary);
}

.testimonials_portrait {
  width: 120px;
  flex-shrink: 0;
}

.testimonials_label {
  position: absolute;
  padding: 4px 17px 5px 12px;
  display: block;
  background: var(--primary);
  color: #fff;
  font-size: clamp(1.5rem, 1vw + 1rem, 2.2rem);
  position: absolute;
  bottom: 0;
  right: -20px;
  font-weight: 700;
}

.testimonials_desc {
  font-size: clamp(1.5rem, 1vw + 0.75rem, 1.8rem);
  line-height: 2;
  font-weight: 500;
  padding-block-start: 16px;
}
.testimonials_desc em {
  font-weight: 700;
  color: #b4973d;
}

@media screen and (max-width: 768px) {
  .testimonials {
    padding-top: 80px;
    padding-bottom: 25px;
    margin-block-start: -36px;
  }
  .testimonials_list {
    margin-block-start: 10px;
  }
  .testimonials_list-item {
    margin: 16px;
    box-sizing: border-box;
    padding: 25px 18px;
  }

  .testimonials_portrait {
    width: 86px;
  }

  .tstimonials_lead {
    padding-block-end: 35px;
  }

  .tstimonials_lead::after {
    width: 66px;
    height: 2px;
    left: 0;
  }

  .testimonials_label {
    right: -18px;
  }
}

.cta-btn {
  background: #fdfbd9;
  padding: 24px 16px;
}

.cta-btn a {
  max-width: 414px;
  margin-inline: auto;
}
.revenue * {
  box-sizing: border-box;
}

.revenue {
  background: url("../images/revenue_bg.jpg") center/cover no-repeat;
  overflow: hidden;
}
.revenue_inner {
  max-width: 1100px;
}
.revenue_title {
  font-family: var(--ff-serif);
  font-weight: 600;
  text-align: center;
  font-size: clamp(2.7rem, 2vw + 1.75rem, 4.6rem);
  padding-block-start: 50px;
  position: relative;
}
.revenue_title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 153px;
  height: 35px;
  background: url("../images/revenue_title-deco.png") center / contain no-repeat;
}
.revenue_list {
  margin-block-start: 45px;
  display: flex;
  gap: 33px;
  width: 100%;
}

.revenue_list-item {
  background: #fff;
  border-radius: 10px;
  padding-block-end: 20px;
  box-shadow: 0 0 16px 5px rgba(0, 0, 0, 0.25);
  border: 2px solid #b4973d;
}

.revenue_example {
  font-weight: 700;
  font-size: clamp(2.4rem, 1vw + 1.75rem, 2.8rem);
  color: #fff;
  background: #b4973d;
  text-align: center;
  padding: 16px 25px;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
}
.revenue_example span {
  font-size: clamp(1.8rem, 1vw + 1rem, 2.2rem);
  display: block;
  margin-block-start: 4px;
}

.revenue_achv-list {
  display: flex;
  flex-direction: column;
  gap: calc(24 / 1100 * 100%);
  width: max-content;
  margin-inline: auto;
  margin-block-start: 20px;
  gap: 24px;
}

.revenue_achv-item {
  display: flex;
  justify-content: space-between;
  gap: calc(26 / 270 * 100%);
}

.revenue_achv-text {
  color: #fff;
  background: var(--primary-light);
  font-size: clamp(1.8rem, 1vw + 1rem, 2.2rem);
  font-weight: 700;
  padding: 0 11px;
  width: max-content;
  height: 50px;
  display: grid;
  place-items: center;
  white-space: nowrap;
}
.revenue_achv-item:last-child .revenue_achv-text {
  background: transparent;
  height: auto;
  color: var(--primary-light);
  padding: 0;
}

.revenue_achv-num {
  zoom: 0.5;
  flex: 1;
  margin-inline-start: auto;
}
.revenue_achv-num img {
  display: block;
  margin-inline-start: auto;
}
.revenue_download {
  margin-block-start: 21px;
  width: calc(100% - 20px);
  margin-inline: auto;
  position: relative;
}

.revenue_mosaic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.revenue_supp {
  position: absolute;
  font-size: clamp(1.4rem, 1vw + 0.75rem, 1.6rem);
  text-align: center;
  font-weight: 700;
  line-height: calc(48 / 27);
  padding: 12px 8px;
  background: #fff;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 92%;
}

@media screen and (max-width: 768px) {
  .revenue_title {
    padding-block-start: 23px;
  }
  .revenue_title::after {
    width: 76px;
    height: 18px;
  }
  .revenue_list {
    display: block;
    margin-block-start: 12px;
  }
  .revenue_list-item {
    display: inline-block;
    width: 100%;
    margin: 16px 27px;
  }
  .revenue_achv-item {
  }

  .revenue .slick-next,
  .revenue .slick-prev {
    background: #b4973d;
  }

  .revenue .slick-dots li button {
    background: #fee390;
  }
  .revenue .slick-dots li.slick-active button {
    background: #b4973d;
  }
}

.plan {
  padding-block: 95px 72px;
  overflow: hidden;

  background: url("../images/plan_bg.png") center / cover no-repeat;
}

.plan_inner {
  position: relative;
  padding-inline-start: 16px;
}

.plan_table-label {
  font-size: 1.8rem;
  background: #eeeeee;
  font-weight: 700;
  text-align: center;
  padding-block: 6px;
  padding-inline: 34px;
  width: max-content;
  position: absolute;
  z-index: 1;
  top: 80px;
  left: 190px;
}

.plan_table img {
  zoom: 0.5;
}

.plan_title {
  font-size: clamp(1.9rem, 2vw + 1rem, 3.8rem);
  font-family: var(--ff-serif);
  text-align: center;
  line-height: 1.25;
}
.plan_title em {
  font-size: clamp(2.55rem, 3vw + 0.75rem, 4.6rem);
  font-weight: 600;
  line-height: 1;
}

.plan_table {
  max-width: 963px;
  margin: 27px auto 0;
  padding-inline-end: 16px;
}

.plan .table_body-tr {
  height: 92px;
}
.plan .table {
  overflow-x: auto;
  border-radius: 0;
  padding-block-end: 20px;
  padding-inline-end: 16px;
}
.plan .table_inner {
  width: 100%;
  min-width: 100%;
  text-align: center;
  table-layout: fixed;
  border-collapse: separate;
}
@media screen and (max-width: 768px) {
  .plan {
    padding-block: 43px 36px;
  }
  .plan_title {
    letter-spacing: -0.025em;
  }
  .plan .table_inner {
    width: auto;
  }

  .plan_table img {
    zoom: 0.4;
  }

  .plan_table-label {
    font-size: 1.2rem;
    padding-inline: 16px;
    padding-block: 2px;
    left: 120px;
    top: 46px;
  }
}
.plan .table_th {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 11px 7px;
  background-color: #c7b88e;
  border-top: 1px solid #c7b88e;
  border-left: 1px solid #c7b88e;
  vertical-align: middle;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  white-space: normal;
}
@media screen and (max-width: 768px) {
  .plan .table_th {
    white-space: nowrap;
    font-size: 1.5rem;
  }
}
.plan .table_th:first-child {
  text-align: left;
  font-size: 1.8rem;
}
.plan .table_th:last-child {
  /* border-right: 1px solid #000; */
  width: 405px;
}
.plan .table_th--top {
  height: 62px;
  text-align: center;
  color: #fff;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  font-size: 1.8rem;
  border: none;
  border-inline-start: 2px solid #fff;
}
.plan .table_th--primary {
  position: relative;
  height: 100%;
  background-color: var(--primary);
  color: #fff;
  height: 68px;
  font-size: 1.8rem;
  border: none;
  border-top-left-radius: 10px;
}
.plan .table_th--primary::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: 1px solid #fff;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-top-left-radius: 10px;
  border-top-right-radius: 0px;
}
.plan .table_th--sp-sticky {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 0;
  border-block-start: 1px solid #fff;
}
.plan .table_th--top-r {
  border-top-right-radius: 10px;
}

.plan .table_th--sp-sticky--rt {
  border-top-left-radius: 10px;
}
.plan .table_th--sp-sticky--rb {
  border-bottom-left-radius: 10px;
}
.plan .table_th--sp-sticky--rb + .table_td {
  line-height: 1.5;
}
.plan .table_body-tr:last-child .table_th,
.plan .table_body-tr:last-child .table_td {
  border-width: 2px;
}
@media screen and (max-width: 768px) {
  .plan .table_th--primary {
    border-top-left-radius: 7px;
  }

  .plan .table_th--primary::after {
    border-top-left-radius: 7px;
  }
  .plan .table_th--top {
    font-size: 1.2rem;
    height: 39px;
  }
  .plan .table_th--primary {
    font-size: 1.2rem;
  }
  .plan .table_th--sp-sticky {
    z-index: 1;
    font-size: 1.2rem;
  }
}
.plan .table_th--sp-sticky::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  z-index: 2;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: calc(100% + 3px);
  height: calc(100% + 3px);
}
@media screen and (max-width: 768px) {
  .plan .table_th--sp-sticky:not(.plan .table_corner-cell)::after {
    border-right: 2px solid #fff;
  }
}
.plan .table_sp-sticky-inner {
  text-align: center;
}
.plan .table_td {
  padding: 9px 7px;
  background-color: transparent;
  border-top: 2px solid #c7b88e;
  border-left: 2px solid #c7b88e;
  vertical-align: middle;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.25;
  white-space: normal;
  letter-spacing: 0.02em;
}
.plan .table_td span {
  padding-inline: 0.5em;
  display: inline-block;
  position: relative;
}
.plan .table_td span::after,
.plan .table_td span::before {
  content: "";
  position: absolute;
  height: 80%;
  top: 50%;
  width: 2px;
  background-color: var(--primary);
  left: 0;
  translate: 0 -50%;
  rotate: -10deg;
}
.plan .table_td span::after {
  rotate: 10deg;
  right: 0;
  left: auto;
}
.plan .table_body-tr:last-child .table_th,
.plan .table_body-tr:last-child .table_td {
  border-bottom: 2px solid #c7b88e;
}

.plan .table_td--special {
  padding: 0 5px;
}
.plan .table_td--special img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .plan .table_td {
    white-space: nowrap;
    font-size: 1.2rem;
  }
}
.plan .table_td:last-child {
  border-right: 2px solid #c7b88e;
}
.plan .table_td--primary {
  position: relative;
  background-color: transparent;
  border-top: 2px solid #c7b88e;
  border-left: 1px solid #c7b88e;
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0;
}
.plan .table_td--primary::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-left: 2px solid #c7b88e;
  border-right: 1px solid #c7b88e;
}
.plan .table_body-tr:last-child .plan .table_th,
.plan .table_body-tr:last-child .plan .table_td {
  border-bottom: 4px solid #c7b88e;
}
.plan .table_body-tr:last-child .plan .table_th--primary::after,
.plan .table_body-tr:last-child .plan .table_td--primary::after {
  /* border-bottom: 4px solid #fed3e2; */
}
.plan .table_td--empty {
  position: relative;
}
.plan .table_td--empty::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 52px;
  height: 3px;
  background-color: #000;
}
.plan .table_body-tr .table_th::before {
  background: #fff;
}
.plan .table_th--sp-sticky--rt {
  border-top-left-radius: 15px;
}
.plan .table_th--sp-sticky--rt::after {
  border-top-left-radius: 15px;
}

.s3 {
  font-size: clamp(2.75rem, 0.5vw + 2.5rem, 3rem);
}
.s3 img {
  padding-inline: 4px;
  aspect-ratio: 61 / 43;
  width: 30px;
}

.plan .table_td--rb {
  border-bottom-right-radius: 15px;
}
.plan .table_td--rb small {
  font-size: 1.2rem;
}
.plan .table_corner-cell {
  width: 130px;
  height: 65px;
  background: transparent;
  border: none;
}
@media screen and (max-width: 768px) {
  .plan .table_td--rb small {
    font-size: 0.8rem;
  }
  .plan .table_corner-cell {
    width: 80px;
    height: 39px;
  }

  .plan .table_th--sp-sticky--rt {
    border-top-left-radius: 7px;
  }
  .plan .table_th--sp-sticky--rt::after {
    border-top-left-radius: 7px;
  }
  .plan .table_body-tr .table_th::before {
    background: #fff;
  }
  .plan .table_th--sp-sticky--rt::before {
    border-color: #c7b88e !important;
  }
  .plan .table_td--rb {
    border-bottom-right-radius: 7px;
  }
}

.plan .table_body-tr {
  height: 80px;
}
.plan .table_body-tr:last-child .plan .table_td:last-child {
  /* border-radius: 0 0 0 0; */
}
.plan .table_body-tr .plan .table_th::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background-color: #fed3e2;
}
.plan .table_head-tr .plan .table_th {
  border-top-width: 4px;
}
@media screen and (max-width: 768px) {
  .plan .table_body-tr {
    height: 56px;
  }
  .plan .table_head-tr .plan .table_th {
    border-top-width: 4px;
  }
}
.plan .table_body-tr:last-child .plan .table_th,
.plan .table_body-tr:last-child .plan .table_td {
  border-bottom-width: 4px;
}
@media screen and (max-width: 768px) {
  .plan .table_body-tr:last-child .plan .table_th,
  .plan .table_body-tr:last-child .plan .table_td {
    border-bottom-width: 4px;
  }
}
.plan .table_th:first-child {
  border-left-width: 4px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .plan .table_th:first-child {
    border-left-width: 4px;
    font-size: 1.2rem;
  }
}
.plan .table_th:last-child {
  border-right-width: 4px;
}
@media screen and (max-width: 768px) {
  .plan .table_th:last-child {
    border-right-width: 2px;
  }
}
.plan .table_td:last-child {
  border-right-width: 2px;
}
@media screen and (max-width: 768px) {
  .plan .table_td:last-child {
    border-right-width: 2px;
  }
}

@media screen and (max-width: 768px) {
  .comparison_title {
    line-height: 1.75;
  }

  .comparison_table {
    margin-top: 16px;
    margin-right: -17px;
  }
}

.flow {
  padding-top: 40px;
  background-color: #e96f92;
  overflow: hidden;
}
.flow_title {
  font-family: var(--ff-serif);
  color: #fff;
  font-weight: 600;
  text-align: center;
  font-size: clamp(2.7rem, 2vw + 1.75rem, 4.6rem);
  padding-block-start: 50px;
  position: relative;
}
.flow_title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 153px;
  height: 35px;
  mask: url("../images/revenue_title-deco.png") center / contain no-repeat;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .flow {
    padding-block-end: 20px;
  }
  .flow_list-wrap {
    overflow-x: auto;
    padding-top: 0;
    margin-top: 18px;
    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: 70px;
  gap: 12px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .flow_list {
    width: 558px;
    margin-top: 16px;
    margin-bottom: 16px;
    gap: 26px;
  }
}
.flow_list-first {
  aspect-ratio: 1;
  width: 165px;
  margin-inline-end: 16px;
}
.flow_list-first a {
  text-decoration: none;
}

.flow_item {
  aspect-ratio: 226 / 106;
  width: 193px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.flow_item img {
  grid-area: 1/1;
}

.flow_item p {
  grid-area: 1/1;
  place-self: center;
  font-size: clamp(1.4rem, 1vw + 1rem, 2.2rem);
  color: var(--primary);
  font-weight: 700;
  translate: -5px;
}
@media screen and (max-width: 768px) {
  .flow_title {
    padding-block-start: 23px;
  }
  .flow_title::after {
    width: 76px;
    height: 18px;
  }
  .flow_list {
    gap: 0;
  }
  .flow_list-first {
    width: 92px;
    margin-inline-end: 9px;
  }

  .flow_item {
    width: 106px;
  }
  .flow_item p {
    translate: -2px 0;
  }
}

.push {
  padding-top: 97px;
  padding-bottom: 121px;
  background: url("../images/push_bg.jpg") center / cover no-repeat;
}
@media screen and (max-width: 768px) {
  .push {
    padding-top: 32px;
    padding-bottom: 90px;
  }
}
.push_title {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3vw + 0.25rem, 3.8rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding-inline: 72px;
  width: max-content;
  margin-inline: auto;
}
.push_title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  width: 85px;
  height: 85px;
  mask: url("../images/push_title-deco.png") center / contain no-repeat;
  background-color: var(--primary);
}
.push_title em {
  font-size: clamp(2.3rem, 3vw + 0.75rem, 4.6rem);
}
.push_title-em {
  font-size: 3.4rem;
  font-weight: bold;
}
.push_list {
  width: 100%;
  max-width: 700px;
  position: relative;
  margin: 50px auto 0;
}

.push_list-item {
  position: relative;
  padding-left: 36px;
  color: #fff;
  font-size: clamp(1.8rem, 1.5vw + 0.75rem, 2.6rem);
  line-height: 1.5;
  font-weight: 700;
  background: #c7b88e;
  padding-block: 21px;
  padding-inline-start: 107px;
  box-shadow: 10px 15px 11px 0 rgba(137, 145, 158, 0.2);
}
.push_list-item:not(:first-child) {
  margin-top: 18px;
}
.push_list-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 25px;
  translate: 0 -50%;
  width: 48px;
  height: 48px;
  background: url("../images/icon_push-check.png") center / contain no-repeat;
}

@media screen and (max-width: 768px) {
  .push {
    background: url("../images/push_bg-sp.jpg") center / cover no-repeat;
  }
  .push_title {
    padding: 0;
  }
  .push_title em {
    display: block;
    width: max-content;
    margin-inline: auto;
  }
  .push_title::after {
    width: 43px;
    height: 43px;
    top: 62%;
    right: 36px;
  }
  .push_list {
    margin-top: 30px;
  }
  .push_list-item {
    margin-block-start: 20px;
    padding-block: 4px;
    min-height: 41px;
    padding-inline-start: 45px;
    box-shadow: 0 5px 12px 0 rgba(137, 145, 158, 0.2);
    display: flex;
    align-items: center;
  }

  .push_list-item::before {
    width: 24px;
    height: 24px;
    top: 50%;
    left: 10px;
    translate: 0 -50%;
  }
}

.request {
  position: relative;
  padding-top: 157px;
  padding-bottom: 100px;
  background: #f3f3f3;
}
.request_title {
  position: absolute;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .request {
    padding: 100px 20px 55px;
    background: #f2f4f6;
  }
  .request_title {
    top: -42px;
    width: 100vw;
    overflow: hidden;
  }
}
.request_title-inner {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 20px 46px 46px;
  background: url("../images/request_title-bg.png") center / contain no-repeat;
  text-align: center;
  font-size: clamp(1.65rem, 2vw + 0.5rem, 2.8rem);
  font-weight: 500;
  line-height: 1.5;
  translate: 5px 0;
}
.request_title-inner strong {
  font-size: clamp(2.2rem, 2vw + 1.25rem, 4rem);
}
@media screen and (max-width: 768px) {
  .request_title-inner {
    box-sizing: border-box;
    background: url("../images/request_title-bg-sp.png") center / contain
      no-repeat;
    padding-left: 16px;
    padding-right: 16px;
    padding-block-start: 15px;
    line-height: 1.6;
    width: 100%;
  }
}

.request_note {
  text-align: center;
  font-size: clamp(1.6rem, 1vw + 0.75rem, 1.8rem);
}
.request_note-mail {
  display: inline;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .request_note-mail {
    display: block;
  }
}
.request_note-supp {
  display: inline;
}
@media screen and (max-width: 768px) {
  .request_note-supp {
    display: block;
  }
}
.request_panel {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 858px;
  padding: 29px 57px 53px 60px;
  margin: 28px auto 0;
  box-shadow: 0 10px 20px #c2c2c299;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .request_panel {
    padding: 0;
    margin-top: 12px;
    background: transparent;
    box-shadow: none;
  }
}
.request_appeal {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 10px 32px;
  margin: 0 auto;
  background-color: #b4973d;
  border-radius: 30px;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .request_appeal {
    padding: 6px 16px;
    font-size: 1.5rem;
  }
}
.request_appeal-em {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .request_appeal-em {
    font-size: 2rem;
  }
}
.request_require-note {
  text-align: right;
  font-size: clamp(1.3rem, 1vw + 0.75rem, 1.6rem);
  margin-block-start: -14px;
}
@media screen and (max-width: 768px) {
  .request_require-note {
    margin-top: 22px;
  }
}
.request_form {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .request_form {
    margin-top: 10px;
  }
}

.form * {
  font-family: var(--ff-sans);
  font-weight: 500;
}

.form .form-text {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 58px;
  padding: 10px 14px;
  background-color: #f1f1f1;
  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);
  color: var(--text);
  font-size: clamp(1.5rem, 1vw + 0.75rem, 1.8rem);
  line-height: 1.5;
}
.form .form-text::-webkit-input-placeholder {
  color: #acacac;
}
.form .form-text::-moz-placeholder {
  color: #acacac;
}
.form .form-text:-ms-input-placeholder {
  color: #acacac;
}
.form .form-text::-ms-input-placeholder {
  color: #acacac;
}
.form .form-text::placeholder {
  color: #acacac;
}
.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-textarea {
  height: 148px;
}
.form .form-select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 58px;
  padding: 10px 14px;
  background-color: #fff;
  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: clamp(1.5rem, 1vw + 0.75rem, 1.8rem);

  line-height: 1.5;
  width: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 2px solid var(--primary);
  color: var(--text);
}
.form .form-select--initial {
  background-color: #fff;
  color: #393939;
}
.form .form-zip-btn {
  padding: 15px 32px;
  background: none;
  border: 2px solid var(--primary);
  border-radius: 50px;
  color: var(--primary);
  font-size: clamp(1.5rem, 1vw + 0.75rem, 1.8rem);
  font-weight: bold;
  line-height: 1.1428571429;
  cursor: pointer;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .form .form-select {
    height: 46px;
  }
  .form .form-text {
    background: #fff;
    height: 46px;
  }
  .form .form-textarea {
    height: 148px;
  }
  .form .form-zip-btn {
    padding: 14px 14px;
    margin-inline-start: 6px;
  }
}
.form .wpcf7-form-control-wrap {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .form .wpcf7-form-control-wrap {
    margin-top: 7px;
  }
}
.form_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .form_item {
    display: block;
  }
}
.form_item:not(:first-child) {
  margin-top: 20px;
}
.form_item--short .wpcf7-form-control-wrap {
  max-width: 240px;
}
@media screen and (max-width: 768px) {
  .form_item--short .wpcf7-form-control-wrap {
    max-width: 168px;
  }
}
@media screen and (max-width: 768px) {
  .form_item--has-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
  }
}
@media screen and (max-width: 768px) {
  .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%;
}
@media screen and (max-width: 768px) {
  .form_item--has-btn .form-zip-btn {
    margin-top: 10px;
    margin-left: 0;
  }
}
.form_item--left {
  float: left;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .form_item--left {
    float: none;
    width: auto;
  }
}
.form_item--right {
  float: right;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .form_item--right {
    float: none;
    width: auto;
  }
}
.form_title {
  display: block;
  width: 132px;
  font-size: clamp(1.5rem, 1vw + 0.75rem, 1.8rem);
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .form_title {
    width: auto;
    text-align: left;
  }
}
.form_title--long {
  letter-spacing: -0.1em;
}
.form_required {
  color: #e42d2d;
}
.form_control {
  display: block;
  width: 100%;
}
.form .form_item--select .wpcf7-form-control-wrap {
  position: relative;
  max-width: 280px;
}
@media screen and (max-width: 768px) {
  .form .form_item--select .wpcf7-form-control-wrap {
    max-width: 235px;
  }
}
.form .form_item--select .wpcf7-form-control-wrap::after {
  content: "";
  display: block;
  position: absolute;
  top: 24px;
  right: 16px;
  width: 14px;
  height: 12px;
  background-color: #000;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  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 {
  margin-top: -12px;
  margin-left: -20px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .form .form_item--select .wpcf7-form-control-wrap::after {
    width: 10px;
    height: 8px;
    top: 19px;
  }
  .form .form_item--radio .wpcf7-radio {
    margin-top: 0;
    margin-left: 0;
  }
}
.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;
}
.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;
  margin-top: 12px;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .form .form_item--radio .wpcf7-radio {
    display: flex;
    gap: 25px;
  }
  .form .form_item--radio .wpcf7-list-item {
    margin-left: 0;
  }
}
.form .form_item--radio .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 34px;
  font-size: clamp(1.5rem, 1vw + 0.75rem, 1.8rem);
  line-height: 1.25;
  cursor: pointer;
}
.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: 23px;
  height: 23px;
  background-color: #fff;
  border: 2px solid #c7c7c7;
  border-radius: 50%;
  cursor: pointer;
}
.form .form_item--radio input:checked + .wpcf7-list-item-label::before {
  border-color: var(--primary);
}
.form .form_item--radio .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 6px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background-color: var(--primary);
  border-radius: 50%;
  opacity: 0;
  cursor: pointer;
}
.form .form_item--checkbox .wpcf7-checkbox {
  margin-top: -12px;
  margin-left: -36px;
}
@media screen and (max-width: 768px) {
  .form .form_item--radio .wpcf7-list-item-label::before {
    width: 17px;
    height: 17px;
  }
  .form .form_item--radio .wpcf7-list-item-label::after {
    width: 9px;
    height: 9px;
    left: 4px;
  }
  .form .form_item--radio .wpcf7-list-item-label {
    padding-left: 25px;
  }
  .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 {
  -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: inline-block;
  margin-top: 22px;
  margin-left: 36px;
}
@media screen and (max-width: 768px) {
  .form .form_item--checkbox .wpcf7-list-item {
    display: block;
    margin-top: 30px;
    margin-left: 0;
  }
}
.form .form_item--checkbox .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 36px;
  font-size: clamp(1.4rem, 1vw + 0.75rem, 1.6rem);
  line-height: 1.7857142857;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .form .form_item--checkbox .wpcf7-list-item-label {
    padding-left: 27px;
  }
}
.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: 25px;
  height: 25px;
  border: 2px solid #aaaaaa;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .form .form_item--checkbox .wpcf7-list-item-label::before {
    width: 20px;
    height: 20px;
  }
}
.form .form_item--checkbox .wpcf7-list-item-label::after {
  content: "";
  display: block;
  position: absolute;
  top: 45%;
  left: 6px;
  -webkit-transform: translateY(-60%) rotate(-45deg);
  transform: translateY(-60%) rotate(-45deg);
  width: 10px;
  height: 5px;
  border-bottom: 3px solid var(--primary);
  border-left: 3px solid var(--primary);
  opacity: 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .form .form_item--checkbox .wpcf7-list-item-label::after {
    left: 4px;
    width: 8px;
    height: 4px;
  }
}
.form .form_item--optional:not(._) {
  margin-top: 34px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .form .form_item--optional:not(._) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .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: #aaa;
}
@media screen and (max-width: 768px) {
  .form .form_item--optional:not(._) .wpcf7-list-item-label {
    text-align: left;
    font-size: 1.4rem;
  }
}
.form .wpcf7-not-valid:not(.wpcf7-radio) {
  background: #f6f6f6;
  color: #464646;
}
.form .wpcf7-not-valid-tip {
  margin-top: 4px;
}
.form_note {
  margin-top: 8px;
  margin-left: 148px;
  color: #8b8b8b;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .form_note {
    margin-left: 0;
    font-size: 1.3rem;
  }
}
.form_privacy-policy-wrap {
  margin-top: 38px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .form_privacy-policy-wrap {
    margin-top: 23px;
  }
}
/**
 * .form_privacy-policy
 *
 * display: inline-block;
 * font-size: 1.5rem;
 * line-height: 1.8;
 *
 * - display: inline-block;
 *   font-size: 1.5rem;
 *   line-height: 1.8;
 */
.form_privacy-policy {
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1.5;
}
.form_submit-wrap {
  margin-top: 31px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .form_submit-wrap {
    margin-top: 20px;
  }
}
.form_submit {
  position: relative;
  width: 410px;
  padding-top: 16px;
  padding-bottom: 16px;
  outline: none;
  border: none;
  border-radius: 40px;
  background-color: var(--primary);
  box-shadow: 0 5px 0 #c01c4b;
  color: #fff;
  font-size: clamp(1.9rem, 1vw + 1.25rem, 2.4rem);
  font-weight: bold;
  letter-spacing: 0.04em;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .form_submit {
    width: 284px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.form_submit::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 26px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 14px;
  height: 13px;
  clip-path: polygon(0 0, 100% 50%, 0% 100%);
  background: #fff;
}
@media screen and (max-width: 768px) {
  .form_submit::after {
    right: 20px;
    width: 10px;
    height: 10px;
  }
}

.footer {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #fff;
  color: #000;
  font-family: var(--ff-main);
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.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;
  padding: 14px 25px;
  margin: 0 auto;
  border-radius: 5px;
  background-color: #fff;
  color: #393939;
}
@media screen and (max-width: 768px) {
  .footer_about-franchise-salon {
    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-size: 2.1rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .footer_about-title {
    font-size: 1.6rem;
  }
}
.footer_about-logo {
  display: inline-block;
  width: 222px;
}
@media screen and (max-width: 768px) {
  .footer_about-logo {
    width: 172px;
  }
}
.footer_about-desc {
  margin-top: 4px;
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #393939;
}
@media screen and (max-width: 768px) {
  .footer_about-desc {
    font-size: 1.3rem;
    letter-spacing: -0.02em;
    line-height: 1.5;
  }
}
.footer_company-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto 0;
}
@media screen and (max-width: 768px) {
  .footer_company-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.footer_info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.footer_info + .footer_info {
  padding-inline-start: 62px;
  border-inline-start: 1px solid #e6e6e6;
  padding-block-end: 17px;
}
@media screen and (max-width: 768px) {
  .footer_info + .footer_info {
    padding-block-start: 28px;
    margin-top: 30px;
    padding-left: 0;
    border: none;
    margin-inline-start: 0;
    border-block-start: 1px solid #e6e6e6;
    padding-block-end: 0;
  }
}
.footer_company {
  font-size: 1.6rem;
  font-weight: 900;
}
.footer_head-office {
  margin-top: 16px;
  font-size: 1.6rem;
  font-weight: 500;
}
.footer_address {
  font-weight: 500;
  margin-top: 8px;
  font-size: 1.6rem;
  line-height: 1.5;
}
.footer_contact {
  margin-top: 19px;
  border: 2px solid #000;
  font-size: 1.3rem;
  border-radius: 999px;
  width: max-content;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .footer_contact {
    display: block;
    width: max-content;
    font-size: 1.25rem;
    width: 100%;
  }
}
.footer_contact-link {
  display: block;
  color: #000;
  line-height: 1.6;
  padding: 7px 12px 6px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.07em;
  position: relative;
}

.footer_copyright {
  display: block;
  text-align: center;
  color: #bababa;
  font-size: 1.4rem;
  font-weight: bold;
  margin-block-start: 30px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .footer_contact {
    margin-block-start: 17px;
    width: max-content;
  }
  .footer_contact-link {
    padding: 8px 9px 9px;
    white-space: nowrap;
  }
  .footer_copyright {
    font-size: 1rem;
    margin-block-start: 30px;
  }
}

/* ========================
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) 0,
    var(--yellow) 35%,
    transparent 35%
  );
}

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

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

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

.bold {
  font-weight: bold;
}

.red {
  color: #de1919;
}
