/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
  background: none;
  border: none;
  color: inherit;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  background: white;
  color: #403430;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font: inherit;
  font-weight: inherit;
  font-size: 100%;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 40px);
}

.hero {
  background: url("../images/fv_pc.jpg") center/cover no-repeat;
}
@media (max-width: 768px) {
  .hero {
    overflow-x: hidden;
  }
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 240px 18px 180px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .hero__inner {
    padding: 80px 18px 128px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.hero__left {
  flex: 0 1 38%;
  min-width: 0;
  display: grid;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .hero__left {
    align-items: flex-start;
    justify-items: flex-start;
  }
}
.hero__right {
  flex: 0 1 62%;
  min-width: 0;
  display: flex;
  justify-content: center;
}
.hero__image {
  max-width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .hero__logo img {
    width: 224px;
    height: auto;
  }
}
.hero__copy {
  font-size: 30px;
  letter-spacing: 6px;
}
@media (max-width: 768px) {
  .hero__copy {
    font-size: 16px;
    letter-spacing: 3px;
  }
}
.hero__stats {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}
.hero__stat {
  font-size: 36px;
  color: #BA6271;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .hero__stat {
    font-size: 16px;
  }
}
.hero__stat-bg {
  background: url("../images/underline.svg") center bottom no-repeat;
  background-size: contain;
  padding-bottom: 28px;
}
@media (max-width: 768px) {
  .hero__stat-bg {
    padding-bottom: 20px;
  }
}
.hero__stat-value {
  font-size: 55px;
}
@media (max-width: 768px) {
  .hero__stat-value {
    font-size: 24px;
    margin-left: 10px;
  }
}
.hero__summary {
  font-size: 20px;
}
@media (max-width: 768px) {
  .hero__summary {
    font-size: 12px;
    margin-top: 24px;
  }
}
.hero__summary-br-sp {
  display: none;
}
@media (max-width: 768px) {
  .hero__summary-br-sp {
    display: block;
  }
}

.problem {
  padding: 200px 0 260px;
  background: #fff url("../images/fv_parts.jpg") top/contain no-repeat;
}
@media (max-width: 768px) {
  .problem {
    padding: 80px 0;
    overflow-x: hidden;
  }
}
.problem__logo {
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .problem__logo {
    width: 172px;
    margin-top: 10px;
  }
}
.problem__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 120px;
}
@media (max-width: 768px) {
  .problem__inner {
    padding: 0 18px;
    display: flex;
    flex-direction: column;
    gap: 46px;
  }
}
.problem__cards {
  display: grid;
  gap: clamp(16px, 3vw, 24px);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
@media (max-width: 768px) {
  .problem__cards {
    gap: 30px;
  }
}
.problem__card {
  position: relative;
  background: #f6f6f6;
  width: 100%;
  max-width: 500px;
  justify-self: center;
  padding: 100px 60px 80px;
}
@media (max-width: 768px) {
  .problem__card {
    padding: 28px 40px;
  }
}
.problem__card--ladies {
  justify-self: end;
}
.problem__card--mens {
  justify-self: start;
}
.problem__label-ladies {
  position: absolute;
  top: -60px;
  left: 0;
  font-size: 108px;
  font-family: "mrsheffield-pro", "Inspiration", cursive;
  transform: rotate(-18deg);
  color: #B99C37;
  opacity: 0.3;
}
@media (max-width: 768px) {
  .problem__label-ladies {
    font-size: 40px;
    top: -10px;
  }
}
.problem__label-mens {
  position: absolute;
  top: -60px;
  left: 0;
  font-size: 108px;
  font-family: "mrsheffield-pro", "Inspiration", cursive;
  transform: rotate(-18deg);
  color: #B99C37;
  opacity: 0.3;
}
@media (max-width: 768px) {
  .problem__label-mens {
    font-size: 40px;
    top: -10px;
  }
}
.problem__title {
  font-size: 30px;
  color: #B99C37;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .problem__title {
    font-size: 20px;
    text-align: left;
  }
}
.problem__head {
  text-align: center;
}
.problem__text {
  line-height: 2;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .problem__text {
    font-size: 12px;
  }
}
.problem__highlight {
  width: 100%;
  display: block;
  background-color: white;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .problem__highlight {
    border-radius: 999px;
  }
}
.problem__highlight-text {
  text-align: center;
  color: #c46868;
  font-size: 28px;
}
@media (max-width: 768px) {
  .problem__highlight-text {
    font-size: 18px;
  }
}
.problem__solution-title {
  text-align: center;
}
.problem__solution-title strong {
  font-size: 36px;
  color: #c46868;
}
@media (max-width: 768px) {
  .problem__solution-title strong {
    font-size: 20px;
  }
}
.problem__solution-title span {
  font-size: 24px;
}
@media (max-width: 768px) {
  .problem__solution-title span {
    font-size: 16px;
  }
}
.problem__solution-logo {
  display: block;
  margin: 40px auto;
}
@media (max-width: 768px) {
  .problem__solution-logo {
    width: 200px;
  }
}
.problem__solution-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}
@media (max-width: 768px) {
  .problem__solution-list {
    gap: 12px;
  }
}
.problem__solution-item {
  font-size: 28px;
  color: white;
  background-color: #c46868;
  padding: 4px 30px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .problem__solution-item {
    font-size: 18px;
    padding: 4px 12px;
  }
}
.problem__solution-text {
  font-size: 24px;
  margin-top: 32px;
  text-align: center;
}
@media (max-width: 768px) {
  .problem__solution-text {
    font-size: 14px;
  }
}
.problem__heading {
  font-size: 50px;
  color: #BA6271;
  letter-spacing: 4px;
}
@media (max-width: 768px) {
  .problem__heading {
    font-size: 18px;
  }
}
.problem__heading-border {
  border: 4px solid #B99C37;
  font-size: 80px;
  padding: 4px 8px;
}
@media (max-width: 768px) {
  .problem__heading-border {
    font-size: 24px;
    border: 2px solid #B99C37;
  }
}
.problem__heading-m {
  font-size: 50px;
}
@media (max-width: 768px) {
  .problem__heading-m {
    font-size: 18px;
  }
}

.cta {
  background: url("../images/cta_bg.jpg") bottom/cover no-repeat;
}
@media (max-width: 768px) {
  .cta {
    overflow-x: hidden;
  }
}
.cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .cta__inner {
    display: block;
    padding: 0 44px;
  }
}
.cta__body {
  flex: 1 1 55%;
  display: grid;
  gap: 12px;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.cta__eyebrow {
  font-size: 34px;
  letter-spacing: 6px;
  color: #c46868;
}
@media (max-width: 768px) {
  .cta__eyebrow {
    font-size: 22px;
    white-space: nowrap;
    letter-spacing: 3px;
  }
}
.cta__copy {
  font-size: 30px;
  line-height: 1.6;
  letter-spacing: 6px;
  color: #B99C37;
}
@media (max-width: 768px) {
  .cta__copy {
    font-size: 26px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.2em;
    align-self: flex-start;
    justify-self: flex-start;
    text-align: left;
    margin-top: 40px;
  }
}
.cta__em {
  position: relative;
  display: inline-block;
  line-height: 1.2;
  letter-spacing: 0;
  background: none;
  z-index: 1;
}
.cta__em::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  width: 100%;
  height: 100%;
  background: url("../images/underline.svg") center/cover no-repeat;
  pointer-events: none;
  z-index: -1;
  display: block;
}
@media (max-width: 768px) {
  .cta__em::before {
    display: none;
  }
}
.cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  font-size: 32px;
  border-radius: 999px;
  background: #B99C37;
  color: #fff;
  width: fit-content;
  margin-top: 32px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .cta__button {
    width: 100%;
    font-size: 20px;
  }
}
.cta__visual {
  position: relative;
  flex: 0 1 45%;
  display: flex;
  justify-content: center;
  min-height: 320px;
  height: auto;
}
@media (max-width: 768px) {
  .cta__visual {
    min-height: 0;
    height: auto;
  }
}
.cta__image {
  position: absolute;
  bottom: -154px;
  right: 0;
  max-width: 90%;
  height: auto;
  transform: none;
  z-index: 0;
}
@media (max-width: 768px) {
  .cta__image {
    height: auto;
    bottom: 0;
    right: -74px;
    width: 300px;
  }
}

.service {
  position: relative;
  padding: 200px 0 100px;
  background: none;
}
@media (max-width: 768px) {
  .service {
    padding: 160px 0 80px;
    overflow-x: hidden;
  }
}
.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/cta_bg.jpg") bottom/cover no-repeat;
  transform: scale(-1, -1);
  transform-origin: center;
  z-index: 0;
  pointer-events: none;
}
.service__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(20px, 5vw, 32px);
}
.service__block {
  text-align: center;
}
.service__heading-q {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-83%) rotate(-18deg);
  font-size: 108px;
  color: #c46868;
  font-family: "mrsheffield-pro", "Inspiration", cursive;
  opacity: 0.3;
}
@media (max-width: 768px) {
  .service__heading-q {
    font-size: 50px;
    top: -50px;
  }
}
.service__heading-a {
  position: absolute;
  top: 134px;
  left: 50%;
  transform: translateX(-83%) rotate(-18deg);
  font-size: 108px;
  color: #B99C37;
  font-family: "mrsheffield-pro", "Inspiration", cursive;
  opacity: 0.3;
}
@media (max-width: 768px) {
  .service__heading-a {
    font-size: 50px;
  }
}
.service__text {
  margin: 0;
  font-size: 32px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .service__text {
    font-size: 24px;
  }
}
.service__text-question {
  color: #c46868;
}
.service__text-answer {
  color: #B99C37;
  text-align: right;
}
.service__number {
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .service__number {
    font-size: 26px;
  }
}
.service__stroke {
  width: 1px;
  height: 60px;
  margin: 0 auto;
  background: #c46868;
}
.service__summary {
  grid-column: 1/-1;
  text-align: center;
  font-size: 20px;
  color: #7d6f6d;
  margin: 0;
}
@media (max-width: 768px) {
  .service__summary {
    font-size: 14px;
  }
}

.concept {
  background: #faf3f2;
  padding: 200px 0 100px;
}
@media (max-width: 768px) {
  .concept {
    padding: 80px 0;
    overflow-x: hidden;
  }
}
.concept__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 40px);
  display: grid;
  gap: clamp(20px, 4vw, 32px);
}
.concept__table {
  width: 100%;
  border-collapse: separate;
  table-layout: fixed;
  border-spacing: 8px 10px;
  background: none;
}
@media (max-width: 768px) {
  .concept__table {
    border-spacing: 2px;
  }
}
.concept__row {
  border: none;
}
.concept__heading, .concept__label, .concept__cell {
  padding: clamp(14px, 3vw, 18px);
  vertical-align: middle;
  text-align: left;
}
@media (max-width: 768px) {
  .concept__heading, .concept__label, .concept__cell {
    padding: 6px;
  }
}
.concept__heading {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
}
.concept__heading--blank {
  width: 26%;
  background: transparent;
  color: #403430;
}
@media (max-width: 768px) {
  .concept__heading--blank {
    width: 22%;
  }
}
.concept__heading--salon {
  font-size: 24px;
  width: 37%;
  background: #486986;
  text-align: center;
  border-top-left-radius: 10px;
}
@media (max-width: 768px) {
  .concept__heading--salon {
    font-size: 10px;
    width: 44%;
  }
}
@media (max-width: 768px) {
  .concept__heading--salon span {
    display: none;
  }
}
.concept__heading--online {
  font-size: 24px;
  width: 37%;
  background: #BA6271;
  text-align: center;
  border-top-right-radius: 10px;
}
@media (max-width: 768px) {
  .concept__heading--online {
    font-size: 10px;
    width: 45%;
  }
}
@media (max-width: 768px) {
  .concept__heading--online span {
    display: none;
  }
}
.concept__label {
  width: 26%;
  background: #fff;
  font-size: 20px;
  border: none;
}
@media (max-width: 768px) {
  .concept__label {
    font-size: 8px;
    width: 10%;
  }
}
.concept__cell {
  font-size: 18px;
  width: 37%;
  background: #fdfdfd;
  border: none;
}
@media (max-width: 768px) {
  .concept__cell {
    font-size: 8px;
    width: 45%;
  }
}
.concept__title {
  margin: 0 0 6px;
  font-weight: 700;
}
.concept__list {
  margin: 0;
}
.concept__item {
  margin: 4px 0;
  line-height: 1.4;
  position: relative;
  padding-left: 16px;
}
@media (max-width: 768px) {
  .concept__item {
    padding-left: 8px;
  }
}
.concept__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 2px;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .concept__item::before {
    width: 6px;
    height: 6px;
    top: 5px;
  }
}
.concept__panel {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
}
.concept__question {
  position: relative;
  font-size: 36px;
  display: inline-flex;
  align-items: center;
  padding: 100px 140px;
  z-index: 1;
}
@media (max-width: 768px) {
  .concept__question {
    padding: 60px 0 60px 50px;
    font-size: 16px;
  }
}
.concept__question::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/q.svg") left center no-repeat;
  background-size: 230px 230px;
  z-index: 0;
}
@media (max-width: 768px) {
  .concept__question::before {
    background-size: 80px 80px;
  }
}
.concept__text {
  line-height: 1.6;
}
.concept__row td:nth-child(2) {
  background: #486986;
  color: #fff;
}
.concept__row td:nth-child(2) .concept__item {
  color: #fff;
}
.concept__row td:nth-child(3) {
  background: #BA6271;
  color: #fff;
}
.concept__row td:nth-child(3) .concept__item {
  color: #fff;
}
.concept__row:last-child td:last-child {
  border-bottom-right-radius: 10px;
}
.concept__row:first-child .concept__label {
  border-top-left-radius: 10px;
}
.concept__row:last-child .concept__label {
  border-bottom-left-radius: 10px;
}

.concept-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
  position: relative;
  padding: 0 0 0 140px;
  z-index: 1;
}
@media (max-width: 768px) {
  .concept-panel__list {
    padding: 0 0 0 50px;
    gap: 6px;
  }
}
.concept-panel__list::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/a.svg") left 40% no-repeat;
  background-size: 200px 200px;
  z-index: 0;
}
@media (max-width: 768px) {
  .concept-panel__list::before {
    top: -84px;
    left: 0;
    background-size: 80px 80px;
  }
}
.concept-panel__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
  font-size: 30px;
  color: #c46868;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .concept-panel__item {
    font-size: 16px;
  }
}
.concept-panel__icon {
  margin-top: 4px;
}
@media (max-width: 768px) {
  .concept-panel__icon {
    width: 16px;
    height: 16px;
  }
}
.concept-panel__text {
  display: inline-block;
}

.feeling {
  width: 100%;
  position: relative;
  background: #faf3f2;
}
@media (max-width: 768px) {
  .feeling {
    overflow-x: hidden;
  }
}
.feeling__inner {
  display: flex;
  width: 100%;
  min-height: 600px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .feeling__inner {
    flex-direction: column;
    min-height: auto;
    padding: 0 18px;
    gap: 24px;
  }
}
.feeling__inner::after {
  content: "";
  position: absolute;
  left: 44%;
  top: 42%;
  height: 1px;
  width: 160px;
  background: rgb(255, 255, 255);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 768px) {
  .feeling__inner::after {
    width: 1px;
    height: 50px;
    left: 24%;
  }
}
.feeling__left {
  flex: 0 0 44%;
  background: #BC7B84;
  color: #fff;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 0 100px 0 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .feeling__left {
    width: 74%;
    padding: 0;
  }
}
.feeling__left::before {
  content: "Feeling";
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "mrsheffield-pro", "Inspiration", cursive;
  font-size: 320px;
  color: rgba(255, 255, 255, 0.08);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 768px) {
  .feeling__left::before {
    font-size: 130px;
  }
}
.feeling__left > * {
  position: relative;
  z-index: 1;
}
.feeling__right {
  flex: 0 0 56%;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 120px 0 0 100px;
}
@media (max-width: 768px) {
  .feeling__right {
    width: 100%;
    padding: 20px 0 40px 24px;
    gap: 18px;
  }
}
.feeling__title {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  margin-top: -40px;
  text-align: right;
  font-size: 40px;
}
@media (max-width: 768px) {
  .feeling__title {
    padding: 0;
    font-size: 18px;
    gap: 4px;
    text-align: left;
    align-items: flex-start;
    margin: 84px 24px 50px;
  }
}
.feeling__logo {
  max-width: 360px;
}
@media (max-width: 768px) {
  .feeling__logo {
    width: 180px;
  }
}
.feeling__lead {
  font-size: 30px;
  color: #B99C37;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .feeling__lead {
    font-size: 16px;
    line-height: 1.6;
  }
}
.feeling__text {
  margin: 32px 0 0;
  font-size: 22px;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .feeling__text {
    font-size: 12px;
    margin-top: 16px;
  }
}

.repeat {
  width: 100%;
  background: #faf3f2;
}
@media (max-width: 768px) {
  .repeat {
    overflow-x: hidden;
  }
}
.repeat__inner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 530px;
  padding: 180px 0 120px;
}
@media (max-width: 768px) {
  .repeat__inner {
    flex-direction: column;
    min-height: auto;
    gap: 24px;
    padding: 40px 0;
  }
}
.repeat__left {
  flex: 1 1 50%;
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 530px;
}
@media (max-width: 768px) {
  .repeat__left {
    order: 2;
    min-height: auto;
    padding: 0 18px 24px;
    gap: 26px;
  }
}
.repeat__left-text {
  display: none;
}
@media (max-width: 768px) {
  .repeat__left-text {
    font-size: 20px;
    color: #B99C37;
  }
}
.repeat__right {
  flex: 1 1 50%;
  position: relative;
  color: #fff;
  display: grid;
  align-content: end;
  justify-items: center;
  gap: 8px;
  min-height: 530px;
}
@media (max-width: 768px) {
  .repeat__right {
    order: 1;
    padding: 0;
    min-height: auto;
    height: auto;
    justify-items: flex-start;
    align-items: start;
    text-align: left;
    gap: 12px;
    overflow: visible;
  }
}
.repeat__lead {
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.5;
  color: #B99C37;
}
@media (max-width: 768px) {
  .repeat__lead {
    font-size: 18px;
  }
}
.repeat__text {
  margin: 0;
  line-height: 1.7;
  color: #403430;
}
@media (max-width: 768px) {
  .repeat__text {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .repeat__text-br-pc {
    display: none;
  }
}
.repeat__proof {
  font-size: clamp(22px, 3vw, 26px);
  line-height: 1.4;
  color: #B99C37;
}
@media (max-width: 768px) {
  .repeat__proof {
    font-size: 16px;
  }
}
.repeat__proof-sub {
  display: block;
  font-size: 18px;
  color: #B99C37;
}
.repeat__image {
  width: 100%;
  min-height: 400px;
  background: #eedfdf url("../images/suzukimari-bg.jpg") center bottom/auto 500px no-repeat;
  position: relative;
}
@media (max-width: 768px) {
  .repeat__image {
    max-width: 70%;
    min-height: auto;
    height: 168px;
    margin-left: auto;
    background-size: cover;
    background-position: right bottom;
    overflow: visible;
  }
}
.repeat__photo {
  position: absolute;
  bottom: 0;
  left: 58%;
  transform: translateX(-50%);
  max-height: 500px;
  width: auto;
  display: block;
  z-index: 1;
}
@media (max-width: 768px) {
  .repeat__photo {
    position: absolute;
    width: 170px;
    height: 212px;
    overflow: visible;
  }
}
.repeat__role, .repeat__name {
  color: #c46868;
  font-size: 24px;
  font-weight: 700;
  text-align: right;
  width: 100%;
}
@media (max-width: 768px) {
  .repeat__role, .repeat__name {
    text-align: left;
    font-size: 16px;
    position: absolute;
    left: 18px;
  }
}
@media (max-width: 768px) {
  .repeat__role {
    bottom: 20px;
  }
}
@media (max-width: 768px) {
  .repeat__name {
    bottom: 0px;
  }
}

.book {
  width: 100%;
  padding: 80px 0 200px;
  background: #faf3f2;
}
@media (max-width: 768px) {
  .book {
    padding: 0 0 80px;
    overflow-x: hidden;
  }
}
.book__inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: clamp(20px, 5vw, 40px);
}
@media (max-width: 768px) {
  .book__inner {
    flex-direction: column;
    padding: 0 18px;
    align-items: stretch;
    gap: 32px;
  }
}
.book__left {
  flex: 0 0 32%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .book__left {
    gap: 20px;
  }
}
.book__left-text {
  display: none;
}
@media (max-width: 768px) {
  .book__left-text {
    display: flex;
    justify-content: center;
    writing-mode: vertical-rl;
    letter-spacing: 4px;
    font-size: 22px;
    color: #B99C37;
  }
}
.book__image {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .book__image {
    width: 164px;
  }
}
.book__right {
  flex: 1 1 68%;
  display: grid;
  gap: 40px;
  align-content: center;
}
@media (max-width: 768px) {
  .book__right {
    width: 100%;
    padding: 0 6px;
    gap: 8px;
  }
}
.book__title {
  margin: 0;
  font-size: 28px;
  line-height: 1.4;
  color: #B99C37;
}
.book__intro, .book__text {
  margin: 0;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .book__intro, .book__text {
    font-size: 12px;
  }
}
.book__intro-br-sp {
  display: none;
}
@media (max-width: 768px) {
  .book__intro-br-sp {
    display: block;
  }
}
.book__intro-br-pc {
  display: block;
}
@media (max-width: 768px) {
  .book__intro-br-pc {
    display: none;
  }
}
.book__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
@media (max-width: 768px) {
  .book__points {
    gap: 4px;
    font-size: 10px;
  }
}
.book__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #B99C37;
  color: #fff;
  font-weight: 700;
  width: 100%;
  max-width: 430px;
  font-size: 32px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .book__button {
    font-size: 24px;
    justify-self: center;
    margin-top: 24px;
  }
}

.cta2 {
  width: 100%;
  padding: 80px 0;
  position: relative;
  background: none;
}
@media (max-width: 768px) {
  .cta2 {
    overflow-x: hidden;
  }
}
.cta2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/cta_bg.jpg") bottom/cover no-repeat;
  transform: scaleX(-1);
  transform-origin: center;
  z-index: 0;
  pointer-events: none;
}
.cta2__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(20px, 5vw, 40px);
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .cta2__inner {
    display: block;
    padding: 0 44px;
  }
}
.cta2__visual {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  position: relative;
  min-height: 320px;
}
@media (max-width: 768px) {
  .cta2__visual {
    min-height: 0;
    height: auto;
  }
}
.cta2__image {
  position: absolute;
  bottom: -108px;
  left: 0;
  max-width: 90%;
  height: auto;
  transform: scaleX(-1);
}
@media (max-width: 768px) {
  .cta2__image {
    top: 136px;
    left: -70px;
    width: 290px;
    z-index: 0;
  }
}
.cta2__desc {
  flex: 1 1 55%;
  display: grid;
  gap: 12px;
}
@media (max-width: 768px) {
  .cta2__desc {
    position: relative;
    z-index: 10;
  }
}
.cta2__eyebrow {
  margin: 0;
  color: #c46868;
  font-size: 40px;
  letter-spacing: 6px;
}
@media (max-width: 768px) {
  .cta2__eyebrow {
    font-size: 22px;
    white-space: nowrap;
    letter-spacing: 3px;
  }
}
.cta2__copy {
  margin: 0;
  font-size: 30px;
  line-height: 1.5;
  color: #B99C37;
  letter-spacing: 6px;
}
@media (max-width: 768px) {
  .cta2__copy {
    font-size: 26px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.2em;
    align-self: flex-end;
    justify-self: flex-end;
    text-align: left;
    margin-top: 40px;
  }
}
.cta2__em {
  position: relative;
  display: inline-block;
  line-height: 1.2;
  letter-spacing: 0;
  background: none;
  z-index: 1;
}
.cta2__em::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  width: 100%;
  height: 100%;
  background: url("../images/underline.svg") center/cover no-repeat;
  pointer-events: none;
  z-index: -1;
  display: block;
}
@media (max-width: 768px) {
  .cta2__em::before {
    display: none;
  }
}
.cta2__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  border-radius: 999px;
  background: #B99C37;
  color: #fff;
  font-size: 32px;
  width: fit-content;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  margin-top: 32px;
}
@media (max-width: 768px) {
  .cta2__button {
    width: 100%;
    font-size: 20px;
  }
}

.point {
  width: 100%;
  padding: 200px 0 100px;
  position: relative;
}
@media (max-width: 768px) {
  .point {
    padding: 80px 0;
    overflow-x: hidden;
  }
}
.point::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/fv_parts.jpg) top/contain no-repeat;
  transform: scaleX(-1);
  z-index: 0;
  pointer-events: none;
}
.point__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  gap: clamp(20px, 5vw, 40px);
  position: relative;
  z-index: 1;
}
.point__feature {
  position: relative;
  display: grid;
  grid-template-columns: 44% 56%;
  gap: clamp(16px, 4vw, 32px);
  align-items: center;
  height: 100%;
}
@media (max-width: 768px) {
  .point__feature {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.point__feature-text {
  display: grid;
  gap: 12px;
  position: relative;
  z-index: 2;
  padding-right: clamp(24px, 6vw, 80px);
}
@media (max-width: 768px) {
  .point__feature-text {
    order: 2;
    padding: 0 18px;
  }
}
.point__paragraph {
  margin: 0;
  line-height: 1.7;
  color: #c46868;
  font-size: 20px;
  white-space: nowrap;
  padding-bottom: 64px;
  border-bottom: 1px dashed #B99C37;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .point__paragraph {
    white-space: normal;
    font-size: 14px;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
}
.point__desc {
  font-size: 18px;
  color: black;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .point__desc {
    white-space: normal;
    font-size: 12px;
  }
}
.point__feature-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .point__feature-img {
    order: 1;
    height: auto;
    object-fit: contain;
    width: 80%;
    margin-left: auto;
    margin-right: 0;
    justify-self: flex-end;
  }
}
.point__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  transform: scaleX(-1);
}
@media (max-width: 768px) {
  .point__image {
    height: auto;
    object-fit: contain;
  }
}
@media (max-width: 768px) {
  .point__exercise {
    padding: 0 18px;
  }
}
.point__exercise-title {
  font-size: 26px;
  color: #c46868;
}
@media (max-width: 768px) {
  .point__exercise-title {
    font-size: 18px;
    margin-top: 24px;
  }
}
.point__exercise-list {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .point__exercise-list {
    margin-top: 12px;
    font-size: 12px;
  }
}
.point__heading {
  font-size: 40px;
  color: #c46868;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .point__heading {
    font-size: 22px;
    text-align: right;
    padding: 0 18px;
  }
}
.point__heading-br-sp {
  display: none;
}
@media (max-width: 768px) {
  .point__heading-br-sp {
    display: block;
  }
}
.point__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: clamp(24px, 5vw, 80px);
}
@media (max-width: 768px) {
  .point__cards {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 18px;
  }
}
.point__card {
  position: relative;
  border: 1px solid #486986;
  display: grid;
  gap: 10px;
}
.point__label {
  position: absolute;
  top: -100px;
  left: 0;
  color: #B99C37;
  font-family: "mrsheffield-pro", "Inspiration", cursive;
  font-size: 98px;
  opacity: 0.3;
  transform: rotate(-18deg);
  font-weight: 100;
}
@media (max-width: 768px) {
  .point__label {
    font-size: 56px;
    top: -50px;
  }
}
@media (max-width: 768px) {
  .point__card:nth-of-type(2) .point__label {
    left: auto;
    right: 0;
    text-align: right;
  }
}
.point__title {
  margin: 0;
  font-size: 20px;
  width: 100%;
  background: #486986;
  padding: 16px 0;
  text-align: center;
  color: #fff;
}
@media (max-width: 768px) {
  .point__title {
    font-size: 16px;
  }
}
.point__list {
  margin: 0;
  padding: 20px 0 20px 16px;
  display: grid;
  gap: 8px;
}
@media (max-width: 768px) {
  .point__list {
    padding: 8px 0 8px 8px;
  }
}
.point__item {
  position: relative;
  line-height: 1.6;
  color: #c46868;
  font-size: 18px;
  padding-left: 16px;
}
@media (max-width: 768px) {
  .point__item {
    font-size: 12px;
    padding-left: 8px;
  }
}
.point__item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  background: #c46868;
}
@media (max-width: 768px) {
  .point__item::before {
    height: 6px;
    width: 6px;
    top: 6px;
  }
}
@media (max-width: 768px) {
  .point__item-br-pc {
    display: none;
  }
}

.feature {
  width: 100%;
  padding: clamp(48px, 8vw, 96px) 0;
  background: #faf3f2;
}
@media (max-width: 768px) {
  .feature {
    overflow-x: hidden;
  }
}
.feature__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}
@media (max-width: 768px) {
  .feature__inner {
    display: block;
  }
}
.feature__heading {
  position: relative;
  font-size: 40px;
  color: #B99C37;
  margin: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .feature__heading {
    font-size: 22px;
  }
}
.feature__heading::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -62px;
  width: 100%;
  height: 110px;
  margin: 0 auto;
  display: block;
  background: url("../images/underline-l.svg") center bottom/contain no-repeat;
  pointer-events: none;
}
@media (max-width: 768px) {
  .feature__heading::before {
    bottom: -36px;
    height: 62px;
  }
}
.feature__number {
  font-size: 80px;
}
@media (max-width: 768px) {
  .feature__number {
    font-size: 44px;
  }
}
.feature__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .feature__cards {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 18px;
  }
}
.feature__card {
  position: relative;
  background: #f3ece9;
  padding: 50px;
  display: grid;
  gap: 12px;
}
@media (max-width: 768px) {
  .feature__card {
    padding: 10px;
  }
}
.feature__card-merit {
  display: none;
}
@media (max-width: 768px) {
  .feature__card-merit {
    display: inline-block;
    position: absolute;
    font-family: "mrsheffield-pro", "Inspiration", cursive;
    color: #B99C37;
    font-size: 76px;
    transform: rotate(-18deg);
    right: 0;
    top: -30px;
    opacity: 0.3;
    font-weight: 400;
  }
}
.feature__title {
  margin: 0;
  font-size: 28px;
  color: #486986;
}
@media (max-width: 768px) {
  .feature__title {
    font-size: 14px;
  }
}
.feature__subtitle {
  margin: 0;
  color: #486986;
  font-size: 22px;
}
@media (max-width: 768px) {
  .feature__subtitle {
    font-size: 14px;
  }
}
.feature__label {
  margin: 0;
  color: #c46868;
  font-size: 20px;
}
@media (max-width: 768px) {
  .feature__label {
    font-size: 14px;
  }
}
.feature__list {
  margin: 0;
  display: grid;
  gap: 6px;
  color: #c46868;
}
@media (max-width: 768px) {
  .feature__list {
    font-size: 12px;
  }
}

.step {
  width: 100%;
  padding: clamp(48px, 8vw, 96px) 0;
  background: #faf3f2;
}
@media (max-width: 768px) {
  .step {
    padding: 0;
    overflow-x: hidden;
  }
}
.step__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 100px;
}
@media (max-width: 768px) {
  .step__inner {
    gap: 20px;
  }
}
.step__title {
  font-size: 58px;
  color: #B99C37;
  text-align: center;
  margin: 0;
}
@media (max-width: 768px) {
  .step__title {
    font-size: 24px;
  }
}
.step__intro {
  margin: 0;
  font-size: 24px;
  color: #000;
  line-height: 1.7;
  text-align: center;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .step__intro {
    font-size: 12px;
    margin-top: 12px;
  }
}
.step__flows {
  position: relative;
  display: grid;
  gap: clamp(18px, 3vw, 24px);
  z-index: 2;
}
@media (max-width: 768px) {
  .step__flows {
    margin-top: 36px;
  }
}
@media (max-width: 768px) {
  .step__flow:nth-of-type(2) {
    background: transparent;
  }
}
.step__flow {
  position: relative;
  display: grid;
  gap: 16px;
  background: #f0e0e1;
  padding: 60px 40px;
  color: #c46868;
  height: auto;
}
@media (max-width: 768px) {
  .step__flow {
    padding: 32px 18px;
  }
}
.step__flow-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 768px) {
  .step__flow-content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .step__flow:nth-of-type(2) {
    background: transparent;
  }
}
.step__badge {
  position: absolute;
  top: -90px;
  left: 20px;
  transform: rotate(-18deg);
  font-size: 98px;
  color: #B99C37;
  padding: 6px 10px;
  font-family: "mrsheffield-pro", "Inspiration", cursive;
  opacity: 0.4;
}
@media (max-width: 768px) {
  .step__badge {
    font-size: 50px;
    top: -50px;
  }
}
.step__flow-head {
  display: grid;
  gap: 8px;
  margin-bottom: 8px;
}
.step__flow-title {
  margin: 0;
  font-size: 20px;
  color: #c46868;
}
.step__flow-lead {
  margin: 0;
  font-size: 14px;
  color: #c46868;
}
.step__flow-text {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 12px;
  color: #c46868;
  width: 100%;
  height: auto;
  word-break: break-word;
}
@media (max-width: 768px) {
  .step__flow-text {
    grid-template-columns: 3fr 7fr;
  }
}
.step__label {
  margin: 0;
  min-width: 180px;
  color: #c46868;
  font-weight: 700;
  font-size: 14px;
  position: relative;
}
@media (max-width: 768px) {
  .step__label {
    min-width: auto;
    font-size: 12px;
  }
}
.step__label::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -26px;
  width: 40px;
  height: 1px;
  background: #c46868;
  transform: translateY(-50%);
}
.step__list {
  margin: 0;
  padding-left: 26px;
  color: #c46868;
  display: grid;
  gap: 6px;
  white-space: normal;
  font-size: 14px;
}
@media (max-width: 768px) {
  .step__list {
    font-size: 12px;
  }
}
.step__improvement {
  padding: clamp(16px, 3vw, 24px);
  color: #c46868;
  text-align: center;
}
.step__improvement-title {
  color: #B99C37;
  font-size: 42px;
  line-height: 1.76;
  white-space: nowrap;
  position: relative;
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .step__improvement-title {
    font-size: 22px;
  }
}
.step__improvement-title::before, .step__improvement-title::after {
  content: "";
  flex: 0 0 70%;
  height: 1px;
  background: #B99C37;
}
@media (max-width: 768px) {
  .step__improvement-title::before, .step__improvement-title::after {
    display: none;
  }
}
.step__improvement-text {
  margin-top: 80px;
  font-size: 30px;
  color: #000;
}
@media (max-width: 768px) {
  .step__improvement-text {
    font-size: 14px;
    margin-top: 24px;
  }
}
.step__improvement-note {
  display: block;
  margin-top: 60px;
  color: #000;
  font-size: 26px;
}
@media (max-width: 768px) {
  .step__improvement-note {
    font-size: 14px;
    margin-top: 24px;
  }
}

.qa {
  width: 100%;
  padding: 100px 0 260px;
  background: #faf3f2;
}
@media (max-width: 768px) {
  .qa {
    padding: 80px 0;
    overflow-x: hidden;
  }
}
.qa__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .qa__inner {
    padding: 0 18px;
  }
}
.qa__header {
  color: #c46868;
  font-size: 38px;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .qa__header {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
.qa__header::before {
  position: absolute;
  top: -30px;
  left: 30%;
  transform: translateX(-50%);
  content: "";
  width: 120px;
  height: 120px;
  background: url("../images/q.svg") center/contain no-repeat;
}
@media (max-width: 768px) {
  .qa__header::before {
    width: 54px;
    height: 54px;
    top: -16px;
    left: 24%;
  }
}
.qa__header::after {
  position: absolute;
  top: -30px;
  left: 40%;
  transform: translateX(-50%);
  content: "";
  width: 120px;
  height: 120px;
  background: url("../images/a.svg") center/contain no-repeat;
}
@media (max-width: 768px) {
  .qa__header::after {
    width: 54px;
    height: 54px;
    top: -16px;
    left: 36%;
  }
}
.qa__list {
  border-bottom: 1px dashed #c46868;
  padding: 32px 0;
  display: grid;
  gap: 20px;
}
@media (max-width: 768px) {
  .qa__list {
    padding: 12px 0;
    gap: 12px;
  }
}
.qa__q, .qa__a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
}
.qa__q {
  color: #486986;
  font-size: 24px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .qa__q {
    font-size: 14px;
  }
}
.qa__q-br-sp {
  display: none;
}
@media (max-width: 768px) {
  .qa__q-br-sp {
    display: block;
  }
}
@media (max-width: 768px) {
  .qa__q-br-pc {
    display: none;
  }
}
.qa__a {
  color: #c46868;
  line-height: 1.7;
  font-size: 20px;
  display: flex;
}
@media (max-width: 768px) {
  .qa__a {
    font-size: 12px;
  }
}
.qa__q img, .qa__a img {
  flex: 0 0 auto;
  width: auto;
  height: auto;
}
@media (max-width: 768px) {
  .qa__q img, .qa__a img {
    width: 14px;
    height: 14px;
  }
}

.space {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../images/section-bg.jpg") center/cover no-repeat;
  position: relative;
}
@media (max-width: 768px) {
  .space {
    height: 70vh;
    background-position: 62% center;
    overflow-x: hidden;
  }
}
.space::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/fv_parts.jpg") top/contain no-repeat;
  z-index: 2;
  pointer-events: none;
}
.space__text {
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: clamp(22px, 3vw, 28px);
  max-width: 960px;
}
.space__text-br-sp {
  display: none;
}
@media (max-width: 768px) {
  .space__text-br-sp {
    display: block;
  }
}

.salon {
  width: 100%;
  padding: 200px 0 260px;
  background: url(../images/salon-bg.jpg) center/cover no-repeat;
}
@media (max-width: 768px) {
  .salon {
    padding: 80px 0 0;
    overflow-x: hidden;
  }
}
.salon__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 24px);
  display: flex;
  align-items: center;
  gap: clamp(24px, 5vw, 48px);
}
@media (max-width: 768px) {
  .salon__inner {
    display: block;
    padding: 0;
  }
}
.salon__left {
  flex: 0 0 40%;
  display: grid;
  gap: clamp(16px, 3vw, 24px);
}
@media (max-width: 768px) {
  .salon__left {
    padding: 0 18px;
  }
}
.salon__right {
  flex: 0 0 60%;
}
@media (max-width: 768px) {
  .salon__right {
    margin-top: 32px;
  }
}
.salon__logo {
  width: auto;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .salon__logo {
    width: 224px;
    margin: 0 auto;
  }
}
.salon__text {
  margin: 0;
  font-size: 30px;
  line-height: 1.6;
  color: #B99C37;
}
@media (max-width: 768px) {
  .salon__text {
    font-size: 20px;
    text-align: center;
  }
}
.salon__desc {
  margin: 0;
  font-size: 30px;
  line-height: 1.6;
  color: #486986;
}
@media (max-width: 768px) {
  .salon__desc {
    font-size: 16px;
    text-align: center;
  }
}
.salon__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/*# sourceMappingURL=main.css.map */
