@charset "UTF-8";
/*共通*/
:root {
  --font-normal: 20px; /*PC用テキスト*/
  --font-normal-sp: 16px; /*スマホ用タイトル*/
  --font-big: 32px; /*スマホ用タイトル*/
  --font-navy: #004789; /*紺色フォントカラー*/
  --font-blue: #4d5ca6; /*青色フォントカラー*/
  --font-dark-navy: #03305f; /*濃い紺色フォントカラー*/
  --bg-navy:#032e5d; /*背景用紺色*/
  --dot-navy:#054b99; /*紺色装飾カラー*/
  --minion-font: "minion-pro", serif; /*サブタイトルフォント*/
  --font-mincho: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
  --font-gothic: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic", "游ゴシック体", sans-serif;
  font-weight: 400;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Yu Gothic", "游ゴシック体", sans-serif;
  color: #333;
}

body.home {
  background: #fff;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

a {
  display: inline-block;
  text-decoration: none;
  color: #333;
}

p {
  margin-top: 1em;
  margin-bottom: 1em;
  font-size: var(--font-normal);
}

h1 {
  margin-left: 40px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 45px;
  font-weight: normal;
  letter-spacing: 2px;
  font-family: var(--font-mincho);
}

h2 {
  font-size: var(--font-big);
  font-weight: normal;
  letter-spacing: 1px;
  font-family: var(--font-mincho);
  color: #333;
}

img {
  width: 100%;
  object-fit: contain;
  vertical-align: bottom;
}

section {
  margin: 0 auto;
}

.spNon {
  display: block;
}

.spOnly {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.font-brown {
  font-weight: 600;
  color: #ae8b14;
}

.font-beige {
  font-weight: 600;
  color: #f3cc6f;
}

.yellow__line {
  position: relative;
  display: inline-block;
}
.yellow__line:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #857942, #e8cb59, #857942);
}

/*pc*/
/*-----------------
fv
-----------------*/
#fv {
  position: relative;
  margin: 0 auto 120px;
  width: 100vw;
  height: 650px;
  overflow: hidden;
}
#fv .fv__inner {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding-bottom: 60px;
}
#fv .fv__inner .fv__bg {
  width: 100%;
  height: 100%;
}
#fv .fv__inner .fv__bg .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  opacity: 0;
  transition: opacity 1.5s ease;
}
#fv .fv__inner .fv__bg .slide.active {
  opacity: 1;
}
#fv .fv__inner .fv__logo {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 25%;
  z-index: 3;
}
#fv .fv__inner .fv__logo img {
  width: 100%;
  object-fit: contain;
}
#fv .fv__inner .fv__content {
  position: absolute;
  top: 27%;
  left: 5%;
  z-index: 2;
  text-align: center;
  font-family: var(--font-mincho);
}
#fv .fv__inner .fv__content h1 {
  font-size: 68px;
  margin-bottom: 30px;
}
#fv .fv__inner .fv__content .fv__copy--sub {
  margin-top: 20px;
  margin-left: 5px;
  margin-bottom: 40px;
  letter-spacing: 2px;
  font-size: 30px;
}
#fv .fv__inner .fv__cta {
  position: absolute;
  bottom: 10%;
  left: 8%;
  width: 400px;
  z-index: 10;
}
#fv .fv__inner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, rgb(255, 255, 255) 40%, rgba(255, 255, 255, 0.8) 60%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
#fv:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

/*-----------------
purpose
-----------------*/
#intro {
  background: #fff;
  /*ボディメイクの正しい順番*/
  /*スライダー*/
}
#intro .purpose__box {
  width: 800px;
  margin: 0 auto 90px;
  text-align: center;
  background-color: #fff;
  padding: 40px 0 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  /* タイトル */
  /* 本文 */
  /* ゴールド帯 */
}
#intro .purpose__box .purpose__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
#intro .purpose__box .purpose__header h2 {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #b8a46a;
}
#intro .purpose__box .purpose__header .line {
  flex: 1;
  height: 1px;
  background: #b8a46a;
  max-width: 100px;
}
#intro .purpose__box .purpose__text p {
  font-family: var(--font-mincho);
  line-height: 2;
  color: #333;
  margin: 8px 0;
}
#intro .purpose__box .purpose__highlight {
  margin-top: 60px;
  padding: 40px 20px;
  background: linear-gradient(to right, #b8a46a, #d6c28a);
}
#intro .purpose__box .purpose__highlight p {
  margin: 8px 0;
  font-family: var(--font-mincho);
  letter-spacing: 1px;
  line-height: 1.8;
  color: #fff;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
#intro .purpose__box .purpose__highlight p span {
  font-size: 30px;
}
#intro .purpose__box .purpose__highlight .accent {
  font-weight: bold;
}
#intro .intro__steps {
  padding: 0 20px 40px;
  max-width: 600px;
  margin: 0 auto;
  /* ===== リスト ===== */
  /* ===== フッター ===== */
}
#intro .intro__steps .intro__steps-header {
  text-align: center;
  margin-bottom: 20px;
}
#intro .intro__steps .intro__steps-header .intro__steps-label {
  display: inline-block;
  background: #b8a46a;
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: bold;
  letter-spacing: 2px;
}
#intro .intro__steps .intro__steps-header h2 {
  margin-top: 10px;
  margin-bottom: 30px;
  font-family: var(--font-gothic);
  font-weight: bold;
  letter-spacing: 5px;
  color: #b8a46a;
}
#intro .intro__steps .intro__steps-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 60px;
  max-width: 450px;
}
#intro .intro__steps .intro__steps-list .intro__steps-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0 0;
  border-bottom: 1px solid rgba(184, 164, 106, 0.4);
}
#intro .intro__steps .intro__steps-list .intro__steps-item .intro__steps-num {
  font-size: 22px;
  font-style: italic;
  font-weight: 600;
  padding-right: 3px;
  background: linear-gradient(to bottom, #d6c28a 0%, #b8a46a 40%, #8f7a3e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* 念のため */
  background-clip: text;
  color: transparent;
}
#intro .intro__steps .intro__steps-list .intro__steps-item .intro__steps-text {
  flex: 1;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
}
#intro .intro__steps .intro__steps-list .intro__steps-item .intro__steps-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
#intro .intro__steps .intro__steps-footer {
  margin-top: 40px;
  margin-bottom: 60px;
  text-align: center;
}
#intro .intro__steps .intro__steps-footer p {
  margin: 16px 0;
  font-family: var(--font-mincho);
  line-height: 1.9;
  letter-spacing: 3px;
}
#intro .intro-slider {
  position: relative;
  padding: 0 0 50px;
  /* ===== 下に向かって濃くなるグラデ ===== */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #e9e2d4 40%, #b9b192 100%);
  overflow: hidden;
  /* ===== 中央 ===== */
}
#intro .intro-slider .swiper {
  overflow: visible;
}
#intro .intro-slider .swiper-wrapper {
  align-items: center;
}
#intro .intro-slider .swiper-slide {
  transition: all 0.5s ease;
  opacity: 0.4;
  transform: scale(0.85);
}
#intro .intro-slider .swiper-slide img {
  width: 100%;
  display: block;
  border-radius: 8px;
}
#intro .intro-slider .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

#plan {
  background: #b9b192;
  padding: 80px 20px;
  text-align: center;
}
#plan .plan__header {
  /* ===== ここが本体 ===== */
  /* 二重線 */
}
#plan .plan__header .plan__badge {
  margin-bottom: 10px;
}
#plan .plan__header .plan__badge img {
  width: 300px;
  max-width: 80%;
}
#plan .plan__header .plan__title {
  margin-top: 0;
  font-family: var(--font-gothic);
  line-height: 1.6;
  color: #fff;
  font-weight: 600;
  letter-spacing: 3px;
}
#plan .plan__header .plan__underline {
  font-size: calc(var(--font-big) + 8px);
  position: relative;
  display: inline-block;
}
#plan .plan__header .plan__underline::before,
#plan .plan__header .plan__underline::after {
  content: "";
  position: absolute;
  left: 0;
  width: 90%;
  height: 2px;
  background: #fff;
}
#plan .plan__header .plan__underline::before {
  bottom: 4px;
}
#plan .plan__header .plan__underline::after {
  bottom: 0;
}
#plan .plan__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 90px;
  margin-top: 90px;
  padding: 0;
  list-style: none;
}
#plan .plan__item {
  width: 450px;
}
#plan .plan__item a {
  display: block;
}
#plan .plan__item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

#lim {
  padding-bottom: 60px;
  background: #f2ebdf;
  /* ===== 画像（画面いっぱい） ===== */
  /* ===== 下のコンテンツ ===== */
}
#lim .lim__kv {
  margin: 0 auto;
  width: 800px;
}
#lim .lim__kv img {
  width: 100%;
  height: auto;
  display: block;
}
#lim .lim__content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 20px;
  /*LIM恵比寿店、梅田店*/
}
#lim .lim__content .lim__list {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: 24px 45px;
  border: 2px solid #c88f86;
  border-radius: 16px;
  background: rgb(255, 255, 255);
  list-style: none;
  display: inline-block;
  text-align: left;
}
#lim .lim__content .lim__list-wrapper {
  text-align: center;
}
#lim .lim__content .lim__list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: bold;
  color: #ae716b;
  letter-spacing: 0.05em;
}
#lim .lim__content .lim__list li:last-child {
  margin-bottom: 0;
}
#lim .lim__content .lim__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("images/front_page/list_icon_pink.webp") no-repeat center / contain;
}
#lim .lim__content .shop-card-wrapper {
  display: flex;
  flex-direction: row;
  gap: 50px;
}
#lim .lim__content .shop-card-wrapper .shop-card {
  text-align: center;
  margin: 30px auto 60px;
  width: 100%;
  max-width: 400px;
}
#lim .lim__content .shop-card-wrapper .shop-card .shop-card__header {
  position: relative;
  left: 50%;
  transform: translateX(-50%) translateY(30%);
  width: 300px;
  height: 300px;
  padding: 30px 20px 80px;
  border-radius: 200px;
  background: #b4847f;
  color: #fff;
}
#lim .lim__content .shop-card-wrapper .shop-card .shop-card__header .shop-card__sub {
  margin: 0;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.2em;
}
#lim .lim__content .shop-card-wrapper .shop-card .shop-card__header .shop-card__title {
  font-size: 28px;
  margin: 0;
  letter-spacing: 3px;
}
#lim .lim__content .shop-card-wrapper .shop-card .shop-card__header .shop-card__access {
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 2px;
}
#lim .lim__content .shop-card-wrapper .shop-card .shop-card__body {
  background: #fff;
  border-radius: 20px;
  margin-top: -60px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}
#lim .lim__content .shop-card-wrapper .shop-card .shop-card__body .shop-card__slider {
  position: relative;
  /* ===== ナビボタン ===== */
  /* ===== 矢印 ===== */
}
#lim .lim__content .shop-card-wrapper .shop-card .shop-card__body .shop-card__slider .shop-card__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 3;
  cursor: pointer;
}
#lim .lim__content .shop-card-wrapper .shop-card .shop-card__body .shop-card__slider .shop-card__nav--prev {
  left: 10px;
}
#lim .lim__content .shop-card-wrapper .shop-card .shop-card__body .shop-card__slider .shop-card__nav--next {
  right: 10px;
}
#lim .lim__content .shop-card-wrapper .shop-card .shop-card__body .shop-card__slider .shop-card__nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
#lim .lim__content .shop-card-wrapper .shop-card .shop-card__body .shop-card__slider .shop-card__nav--prev::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}
#lim .lim__content .shop-card-wrapper .shop-card .shop-card__body .shop-card__slider .shop-card__nav--next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#lim .lim__content .shop-card-wrapper .shop-card .shop-card__body .shop-card__slider .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
#lim .lim__content .shop-card-wrapper .shop-card .shop-card__body .shop-card__tags {
  position: absolute;
  left: 16px;
  bottom: 80px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
#lim .lim__content .shop-card-wrapper .shop-card .shop-card__body .shop-card__tags span {
  background: rgb(255, 238, 238);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
#lim .lim__content .shop-card-wrapper .shop-card .shop-card__body .shop-card__cta {
  display: block;
  background: linear-gradient(90deg, #c97d63, #e0a35b);
  color: #fff;
  padding: 16px;
  font-size: 24px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 3px;
}

#sculpt {
  background: #222;
  /* ===== 画像（画面いっぱい） ===== */
  /* ===== 下のコンテンツ ===== */
}
#sculpt .sculpt__kv {
  margin: 0 auto;
  width: 800px;
}
#sculpt .sculpt__kv img {
  width: 100%;
  height: auto;
  display: block;
}
#sculpt .sculpt__content {
  margin: 0 auto;
  padding: 20px 0 0;
  /*sculpt店舗*/
}
#sculpt .sculpt__content .sculpt__list {
  position: relative;
  top: 20px;
  max-width: 600px;
  margin: 0 auto;
  padding: 24px 45px;
  border: 2px solid #fff;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0);
  list-style: none;
  display: inline-block;
  text-align: left;
}
#sculpt .sculpt__content .sculpt__list-wrapper {
  padding-bottom: 100px;
  text-align: center;
}
#sculpt .sculpt__content .sculpt__list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.05em;
}
#sculpt .sculpt__content .sculpt__list li:last-child {
  margin-bottom: 0;
}
#sculpt .sculpt__content .sculpt__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("images/front_page/list_icon_orange.webp") no-repeat center/contain;
}
#sculpt .sculpt__content .sculpt-shop {
  background: #333;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  /*店舗タイトル*/
  /*sculpt男女プラン*/
}
#sculpt .sculpt__content .sculpt-shop .sculpt-shop-hero {
  position: relative;
  text-align: center;
}
#sculpt .sculpt__content .sculpt-shop .sculpt-shop-hero .sculpt-hero__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 300px;
  z-index: 0;
  pointer-events: none;
}
#sculpt .sculpt__content .sculpt-shop .sculpt-shop-hero .sculpt-hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
}
#sculpt .sculpt__content .sculpt-shop .sculpt-shop-hero .sculpt-hero__content .sculpt-hero__sub {
  margin-bottom: 0;
  color: #fff;
  font-size: var(--font-big);
  letter-spacing: 0.2em;
  font-weight: bold;
}
#sculpt .sculpt__content .sculpt-shop .sculpt-shop-hero .sculpt-hero__content .sculpt-hero__sub span {
  color: #f0b37e;
}
#sculpt .sculpt__content .sculpt-shop .sculpt-shop-hero .sculpt-hero__content .sculpt-hero__title {
  margin-top: 10px;
  margin-bottom: 30px;
  font-family: var(--font-gothic);
  font-weight: bold;
  letter-spacing: 4px;
  color: #fff;
}
#sculpt .sculpt__content .sculpt-shop .sculpt-shop-hero .sculpt-hero__content .sculpt-hero__desc {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 3px;
  font-weight: bold;
  color: #fff;
}
#sculpt .sculpt__content .sculpt-shop .shop-card-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 150px;
}
#sculpt .sculpt__content .sculpt-shop .shop-card-wrapper .shop-card {
  text-align: center;
  margin-top: -30px;
  width: 100%;
  max-width: 400px;
}
#sculpt .sculpt__content .sculpt-shop .shop-card-wrapper .shop-card .shop-card__header {
  position: relative;
  left: 50%;
  transform: translateX(-50%) translateY(40%);
  width: 300px;
  height: 300px;
  padding: 30px 20px 80px;
  border-radius: 200px;
  background: #222222;
  color: #fff;
}
#sculpt .sculpt__content .sculpt-shop .shop-card-wrapper .shop-card .shop-card__header .shop-card__title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  margin: 0;
  letter-spacing: 3px;
  white-space: nowrap;
}
#sculpt .sculpt__content .sculpt-shop .shop-card-wrapper .shop-card .shop-card__header .shop-card__title span {
  color: #fcc28a;
}
#sculpt .sculpt__content .sculpt-shop .shop-card-wrapper .shop-card .shop-card__header .shop-card__desc {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 2px;
  white-space: nowrap;
}
#sculpt .sculpt__content .sculpt-shop .shop-card-wrapper .shop-card .shop-card__body {
  background: #fff;
  border-radius: 20px;
  margin-top: -60px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}
#sculpt .sculpt__content .sculpt-shop .shop-card-wrapper .shop-card .shop-card__body .shop-card__slider {
  position: relative;
  /* ===== ナビボタン ===== */
  /* ===== 矢印 ===== */
}
#sculpt .sculpt__content .sculpt-shop .shop-card-wrapper .shop-card .shop-card__body .shop-card__slider .shop-card__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 3;
  cursor: pointer;
}
#sculpt .sculpt__content .sculpt-shop .shop-card-wrapper .shop-card .shop-card__body .shop-card__slider .shop-card__nav--prev {
  left: 10px;
}
#sculpt .sculpt__content .sculpt-shop .shop-card-wrapper .shop-card .shop-card__body .shop-card__slider .shop-card__nav--next {
  right: 10px;
}
#sculpt .sculpt__content .sculpt-shop .shop-card-wrapper .shop-card .shop-card__body .shop-card__slider .shop-card__nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
#sculpt .sculpt__content .sculpt-shop .shop-card-wrapper .shop-card .shop-card__body .shop-card__slider .shop-card__nav--prev::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}
#sculpt .sculpt__content .sculpt-shop .shop-card-wrapper .shop-card .shop-card__body .shop-card__slider .shop-card__nav--next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#sculpt .sculpt__content .sculpt-shop .shop-card-wrapper .shop-card .shop-card__body .shop-card__slider .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
#sculpt .sculpt__content .sculpt-shop .shop-card-wrapper .shop-card .shop-card__body .shop-card__tags {
  position: absolute;
  left: 16px;
  bottom: 80px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
#sculpt .sculpt__content .sculpt-shop .shop-card-wrapper .shop-card .shop-card__body .shop-card__tags span {
  background: rgb(255, 238, 238);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
#sculpt .sculpt__content .sculpt-shop .shop-card-wrapper .shop-card .shop-card__body .shop-card__cta {
  display: block;
  background: linear-gradient(90deg, #c97d63, #e0a35b);
  color: #fff;
  padding: 16px;
  font-size: 24px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 3px;
}
#sculpt .sculpt__content .sculpt-shop .shop-card-wrapper .shop-card:nth-of-type(2) .shop-card__title span {
  color: #eaf6be;
}
#sculpt .sculpt__content .sculpt-shop .shop-card-wrapper .shop-card:nth-of-type(2) .shop-card__tags span {
  background: #eaf6be;
}
#sculpt .sculpt__content .sculpt-shop .shop-card-wrapper .shop-card:nth-of-type(2) .shop-card__cta {
  background: linear-gradient(90deg, #64a193, #79c26d);
}

#flow {
  padding: 80px 20px;
  text-align: center;
}
#flow .flow__header .flow__header-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
#flow .flow__header .flow__header-top .flow__header-text {
  font-size: 16px;
  letter-spacing: 0.2em;
  color: #b9a892;
  font-weight: 600;
}
#flow .flow__header .flow__header-top .flow__header-icon {
  width: 20px;
  height: auto;
}
#flow .flow__header .flow__title {
  margin-top: 0;
  margin-bottom: 40px;
  font-family: var(--font-gothic);
  font-size: 36px;
  color: #8b5e4f;
  letter-spacing: 0.1em;
  font-weight: 600;
}
#flow .flow__steps .flow__step {
  max-width: 500px;
  margin: 0 auto 60px;
  /* 色 */
}
#flow .flow__steps .flow__step .flow__step-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
#flow .flow__steps .flow__step .flow__step-number .flow__step-num {
  font-family: "Helvetica Neue Condensed Bold", "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-size: 72px;
  opacity: 0.6;
  line-height: 1;
  display: block;
  margin-top: 2px;
}
#flow .flow__steps .flow__step .flow__step-text {
  position: relative;
  padding-left: 15px;
  margin-top: 8px;
  margin-bottom: 20px;
  text-align: left;
  letter-spacing: 0px;
  /* 縦棒 */
}
#flow .flow__steps .flow__step .flow__step-text::before {
  content: "";
  position: absolute;
  top: 0; /* ←これで上揃う */
  left: 0;
  width: 1px;
  height: 100%;
  background: currentColor;
}
#flow .flow__steps .flow__step .flow__step-text .flow__step-title {
  font-weight: 100;
  font-size: 22px;
  margin: -4px 0 8px -1px;
}
#flow .flow__steps .flow__step .flow__step-text .flow__step-desc {
  margin: 0;
  font-size: 16px;
}
#flow .flow__steps .flow__step .flow__step-image {
  border-radius: 10px;
  overflow: hidden; /* ←これが重要 */
}
#flow .flow__steps .flow__step .flow__step-image img {
  width: 100%;
  display: block;
}
#flow .flow__steps .flow__step:nth-child(1) .flow__step-num,
#flow .flow__steps .flow__step:nth-child(1) .flow__step-text::before {
  color: #e3b5b5;
}
#flow .flow__steps .flow__step:nth-child(2) .flow__step-num,
#flow .flow__steps .flow__step:nth-child(2) .flow__step-text::before {
  color: #e5c79c;
}
#flow .flow__steps .flow__step:nth-child(3) .flow__step-num,
#flow .flow__steps .flow__step:nth-child(3) .flow__step-text::before {
  color: #a9c3a5;
}

#faq {
  margin-bottom: 60px;
  padding: 0 20px;
  text-align: center;
  /*質問リスト*/
  /* ===== Q ===== */
  /* ===== 区切り線 ===== */
  /* ===== A ===== */
}
#faq .faq__header {
  margin-bottom: 40px;
}
#faq .faq__header .faq__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
#faq .faq__header .faq__label .faq__line {
  width: 40px;
  height: 1px;
  background: #b9a892;
}
#faq .faq__header .faq__label .faq__label-text {
  font-size: 18px;
  letter-spacing: 0.2em;
  color: #b9a892;
  font-weight: 600;
}
#faq .faq__header .faq__title {
  margin-top: 0;
  font-size: 36px;
  font-family: var(--font-gothic);
  color: #8b5e4f;
  letter-spacing: 0.1em;
  font-weight: 600;
}
#faq .faq__list {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
#faq .faq__item {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
#faq .faq__question {
  display: flex;
  align-items: center;
  gap: 12px;
}
#faq .faq__question .faq__q-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}
#faq .faq__question .faq__text {
  margin: 5px 0 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
#faq .faq__divider {
  height: 1px;
  background: #d8a97e;
  margin: 16px 0;
}
#faq .faq__answer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
#faq .faq__answer .faq__a {
  position: relative;
  top: 4px;
  width: 26px;
  color: #d8a97e;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}
#faq .faq__answer .faq__text {
  margin: 0;
  text-align: left;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

#cta {
  background: #f2efe9;
  padding: 80px 20px;
}
#cta .cta__inner {
  max-width: 900px;
  margin: 0 auto;
}
#cta .cta__list {
  width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 50px;
}
#cta .cta__item {
  width: 400px;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}
#cta .cta__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: 0.4s ease;
}
#cta .cta__item:hover img {
  transform: scale(1.03);
}

.footer {
  background: #2e2e2e;
  color: #fff;
  /* ===== ロゴ ===== */
  /* ===== 店舗 ===== */
  /* ===== SNS ===== */
  /* ===== ナビ ===== */
  /* ===== ブランド（SCULPT） ===== */
  /* ===== コピーライト ===== */
}
.footer .footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  gap: 60px;
}
.footer .footer__col {
  flex: 1;
}
.footer .footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.footer .footer__logo .footer__logo-icon {
  width: 30px;
}
.footer .footer__logo .footer__logo-text {
  font-size: 20px;
  letter-spacing: 0.2em;
  color: #f3a3a3;
  font-weight: 600;
}
.footer .footer__stores {
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer .footer__stores p {
  margin-bottom: 12px;
}
.footer .footer__sns img {
  width: 24px;
}
.footer .footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer__nav li {
  margin-bottom: 12px;
}
.footer .footer__nav a {
  color: #ccc;
  text-decoration: none;
  font-size: 13px;
}
.footer .footer__nav a:hover {
  color: #fff;
}
.footer .footer__brand {
  margin-top: 30px;
}
.footer .footer__brand p {
  font-size: 12px;
  margin-bottom: 8px;
  color: #aaa;
}
.footer .footer__brand a {
  font-size: 13px;
  color: #f3a3a3;
  text-decoration: none;
}
.footer .footer__brand a:hover {
  opacity: 0.7;
}
.footer .footer__bottom {
  text-align: center;
  padding: 16px;
  font-size: 12px;
  background: #1f1f1f;
  color: #aaa;
}

/*----------------------------------------------------------
スマホ版
----------------------------------------------------------*/
@media all and (max-width: 700px) {
  /**/
  .spNon {
    display: none !important;
  }
  .spOnly {
    display: inline-block !important;
  }
  h2 {
    font-size: var(--font-big);
  }
  p {
    font-size: var(--font-normal-sp);
  }
  #fv {
    width: 100%;
    height: auto;
    max-height: none;
    background-image: none;
    margin-bottom: 30px;
  }
  #fv .fv__inner {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1300px;
    padding-bottom: 60px;
  }
  #fv .fv__inner .fv__bg {
    width: 100%;
    height: 100%;
  }
  #fv .fv__inner .fv__bg .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top;
    opacity: 0;
    transition: opacity 1.5s ease;
  }
  #fv .fv__inner .fv__bg .slide.active {
    opacity: 1;
  }
  #fv .fv__inner .fv__logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    z-index: 3;
  }
  #fv .fv__inner .fv__logo img {
    width: 100%;
    object-fit: contain;
  }
  #fv .fv__inner .fv__content {
    position: relative;
    left: 0;
    z-index: 2;
    text-align: center;
    padding-top: 80%;
    font-family: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
  }
  #fv .fv__inner .fv__content h1 {
    margin-left: 40px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 45px;
  }
  #fv .fv__inner .fv__content .fv__copy--sub {
    margin-top: 10px;
    margin-left: 10px;
    margin-bottom: 40px;
    letter-spacing: 2px;
    font-size: 20px;
  }
  #fv .fv__inner .fv__cta {
    position: relative;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 10;
  }
  #fv .fv__inner:after {
    content: "";
    position: absolute;
    top: auto;
    bottom: -17%; /* 下に少しはみ出す */
    left: 50%;
    transform: translateX(-50%);
    width: 130%;
    height: 77%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.8) 3%, #ffffff 20%);
    border-radius: 50%;
    z-index: 1;
  }
  #fv:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    pointer-events: none;
  }
  /*-----------------
  purpose
  -----------------*/
  #intro {
    background: #fff;
    /*ボディメイクの正しい順番*/
  }
  #intro .purpose__box {
    width: 90%;
    margin-bottom: 90px;
    padding: 20px 0 0;
    /* タイトル */
    /* 本文 */
    /* ゴールド帯 */
  }
  #intro .purpose__box .purpose__header {
    margin-bottom: 10px;
  }
  #intro .purpose__box .purpose__header h2 {
    font-size: 14px;
  }
  #intro .purpose__box .purpose__header .line {
    flex: 1;
    height: 1px;
    background: #b8a46a;
    max-width: 100px;
  }
  #intro .purpose__box .purpose__text p {
    line-height: 1.7;
  }
  #intro .purpose__box .purpose__highlight {
    margin-top: 30px;
    padding: 20px 20px;
  }
  #intro .purpose__box .purpose__highlight p {
    margin: 0;
    line-height: 2;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }
  #intro .purpose__box .purpose__highlight p span {
    font-size: 24px;
  }
  #intro .intro__steps {
    padding: 0 20px 40px;
    max-width: 600px;
    /* ===== リスト ===== */
    /* ===== 順番下メッセージ ===== */
  }
  #intro .intro__steps .intro__steps-header {
    margin-bottom: 20px;
  }
  #intro .intro__steps .intro__steps-header .intro__steps-label {
    padding: 6px 18px;
  }
  #intro .intro__steps .intro__steps-list {
    margin: 0 auto;
    max-width: 350px;
  }
  #intro .intro__steps .intro__steps-footer {
    margin-bottom: 0;
  }
  #plan .plan__list {
    flex-direction: column;
    gap: 60px;
    margin-top: 60px;
  }
  #plan .plan__item {
    flex: 1;
    width: 100%;
  }
  #lim {
    padding-bottom: 60px;
    /* ===== 画像（画面いっぱい） ===== */
    /* ===== 下のコンテンツ ===== */
  }
  #lim .lim__kv {
    width: 100%;
  }
  #lim .lim__content {
    /*LIM恵比寿店、梅田店*/
  }
  #lim .lim__content .shop-card-wrapper {
    margin-top: -20px;
    margin-bottom: 60px;
    flex-direction: column;
    gap: 0px;
  }
  #lim .lim__content .shop-card-wrapper .shop-card {
    margin: 0px auto;
  }
  #sculpt {
    /* ===== 下のコンテンツ ===== */
  }
  #sculpt .sculpt__kv {
    width: 100%;
  }
  #sculpt .sculpt__content {
    padding-top: 10px;
    /*sculpt店舗*/
  }
  #sculpt .sculpt__content .sculpt__list-wrapper {
    padding-bottom: 60px;
  }
  #sculpt .sculpt__content .sculpt__list-wrapper .sculpt__list {
    top: 0;
  }
  #sculpt .sculpt__content .sculpt-shop {
    padding-top: 30px;
    padding-bottom: 100px;
    /*店舗タイトル*/
    /*sculpt男女プラン*/
  }
  #sculpt .sculpt__content .sculpt-shop .sculpt-shop-hero .sculpt-hero__bg {
    width: 80%;
    max-width: 600px;
  }
  #sculpt .sculpt__content .sculpt-shop .sculpt-shop-hero .sculpt-hero__content .sculpt-hero__sub {
    margin-bottom: 0;
    font-size: calc(var(--font-big) - 4px);
    letter-spacing: 4px;
    white-space: nowrap;
  }
  #sculpt .sculpt__content .sculpt-shop .sculpt-shop-hero .sculpt-hero__content .sculpt-hero__title {
    margin-top: 10px;
    margin-bottom: 30px;
    font-family: var(--font-gothic);
    letter-spacing: 4px;
  }
  #sculpt .sculpt__content .sculpt-shop .sculpt-shop-hero .sculpt-hero__content .sculpt-hero__desc {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.5px;
    white-space: nowrap;
    color: #fff;
  }
  #sculpt .sculpt__content .sculpt-shop .shop-card-wrapper {
    flex-direction: column;
    gap: 0px;
  }
  #sculpt .sculpt__content .sculpt-shop .shop-card-wrapper .shop-card {
    margin: -50px auto 0;
    width: 100%;
    max-width: 400px;
  }
  #sculpt .sculpt__content .sculpt-shop .shop-card-wrapper .shop-card .shop-card__header {
    width: 300px;
    height: 300px;
  }
  #sculpt .sculpt__content .sculpt-shop .shop-card-wrapper .shop-card .shop-card__header .shop-card__title {
    font-size: 26px;
    letter-spacing: 3px;
    white-space: nowrap;
  }
  #sculpt .sculpt__content .sculpt-shop .shop-card-wrapper .shop-card .shop-card__header .shop-card__desc {
    font-size: 14px;
    letter-spacing: 0px;
    white-space: nowrap;
  }
  #sculpt .sculpt__content .sculpt-shop .shop-card-wrapper .shop-card .shop-card__body {
    margin-top: -60px;
  }
  #flow .flow__steps .flow__step {
    max-width: 350px;
    margin: 0 auto 40px;
  }
  #flow .flow__steps .flow__step .flow__step-text .flow__step-title {
    font-size: 22px;
  }
  #cta {
    padding: 60px 20px;
  }
  #cta .cta__list {
    width: 100%;
    flex-direction: column;
    gap: 28px;
  }
  #cta .cta__item {
    width: 100%;
  }
}
/*----------------------------------------------------------
スマホ版（極小サイズ）
----------------------------------------------------------*/
@media all and (max-width: 370px) {
  /*-----------------
  fv
  -----------------*/
  #fv .fv__inner .fv__content h1 {
    font-size: 38px;
  }
  #fv .fv__inner .fv__content .fv__copy--sub {
    font-size: 18px;
  }
  #lim .lim__content .lim__list {
    padding: 24px 30px;
  }
  #lim .lim__content .lim__list li {
    white-space: nowrap;
  }
}

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