@charset "UTF-8";
@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 680px) {
  .is-sp {
    display: none !important;
  }
}
@media screen and (max-width: 679.5px) and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 200px;
}

/* ハンバーガーメニューのCSS */
body {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  line-height: 2;
  font-weight: 600;
  text-align: center;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
  padding-top: 80px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*========================
common
========================*/
.inner {
  margin: 0 auto;
  padding: 0 30px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  max-width: 680px;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}

.container {
  padding: 32px 0;
}

.sec-title {
  background: rgba(201, 160, 99, 0.5019607843);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.5em;
  line-height: 1.4;
  padding: 10px 0;
  text-align: center;
}
.sec-title.sec-title--2 {
  letter-spacing: 0.15em;
}

.trim-photo img {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.top-text {
  margin: 24px 0;
}

.price h3 {
  font-size: 20px;
  color: #2c1e4a;
}
.price h4 {
  font-size: 18px;
  color: #2c1e4a;
}

.photos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.photos .img {
  width: 50%;
}
.photos .img img {
  height: 362px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .photos .img img {
    height: 160px;
  }
}

/*========================
header
========================*/
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  background-color: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 80px;
  -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.4);
}

/* PC用ナビゲーション（デフォルト表示） */
.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 20px;
  /* 右側に20pxの余白を追加 */
}

.nav ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.nav ul li {
  display: inline;
}

.nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.2em;
  padding: 10px 15px;
}

/* 疑似要素で背景の線を作成（テキストの長さに合わせる） */
.nav ul li a {
  position: relative;
  /* 親要素として基準を設定 */
  display: inline-block;
  /* インライン要素のまま、幅をテキストの長さに調整 */
}

/* テキストの長さに合わせて線を引く */
.nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  /* 下側に配置 */
  left: 50%;
  /* 中央からスタート */
  width: 0;
  /* 初期幅を0に */
  height: 2px;
  /* 線の太さ */
  background-color: #C9A063;
  /* 線の色 */
  -webkit-transition: width 0.4s ease-in-out, left 0.4s ease-in-out;
  transition: width 0.4s ease-in-out, left 0.4s ease-in-out;
}

/* ホバー時に線がテキストの長さに合わせて伸びる */
.nav ul li a:hover::after {
  width: 100%;
  /* テキストの長さに広がる */
  left: 0;
  /* 開始位置を左端に */
}

.menu-button-container {
  position: relative;
  text-align: center;
  top: 30px;
}

.menu-button-container {
  margin-top: 20px;
  /* スライドの下に余白を空けて自然な位置に */
  text-align: center;
}

.menu-button {
  background-color: #2c1e4a;
  color: white;
  padding: 12px 100px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.menu-button:hover {
  background-color: #3d2d60;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

/* PC用ナビゲーション（デフォルト表示） */
.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.nav ul li {
  display: inline;
}

.nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.2em;
  padding: 10px 15px;
}

/* ハンバーガーメニューの設定（スマホのみ表示） */
.hamburger-menu {
  display: none;
}

.mobile-nav {
  display: none;
}

@media screen and (max-width: 768px) {
  /* PC用ナビゲーションを非表示 */
  .nav {
    display: none;
  }
  /* スマホ用ハンバーガーメニューを表示 */
  .hamburger-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 20px;
    /* 右側に20pxの余白を追加 */
    top: 20px;
    z-index: 2000;
    width: 40px;
    height: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .hamburger-menu span {
    display: block;
    width: 30px;
    height: 3px;
    background: #c9a063;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  }
  /* ハンバーガーメニューが開いたときのバツアイコン変形 */
  .hamburger-menu.open span:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
  .hamburger-menu.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-menu.open span:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
  /* スマホ用ナビゲーション */
  .mobile-nav {
    display: none;
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    max-width: 100%;
    background: white;
    -webkit-box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.4);
            box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.4);
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.5s ease-in-out;
    transition: max-height 0.5s ease-in-out;
    padding: 30px;
    /* 高さを大きくするためにpaddingを増やす */
  }
  .mobile-nav.active {
    display: block;
    max-height: 900px;
    /* 高さを大きくする */
  }
  .mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .mobile-nav ul li {
    padding: 15px;
    /* 高さを大きくする */
    border-bottom: 1px solid #ddd;
    white-space: nowrap;
  }
  .mobile-nav ul li a {
    text-decoration: none;
    color: #333;
    display: block;
    font-size: 16px;
  }
  /* スマホ時はナビゲーションの疑似要素（下線）を非表示 */
  .mobile-nav ul li a::after {
    display: none !important;
  }
}
/*========================
hero
========================*/
.hero {
  position: relative;
  text-align: center;
  width: 100%;
  height: 400px;
  /* 画像の高さを調整 */
  overflow: hidden;
  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;
  /* 垂直中央揃え */
}

.slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  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;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-transition: opacity 2s ease-in-out;
  transition: opacity 2s ease-in-out;
  /* 2秒かけてフェード */
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: white;
  padding: 10px 20px;
  text-align: left;
  width: 100%;
  max-width: 352px;
  text-shadow: 0px 0px 5px rgb(0, 0, 0);
  /* ぼかしシャドウを追加 */
  font-size: 13px;
  /* フォントサイズを指定 */
  font-weight: bold;
  letter-spacing: 0.2em;
  /* 文字間を150%に */
  line-height: 1.8;
  /* 行間を広げる */
}

/*========================
hair-removal
========================*/
.hair-removal .price {
  font-size: 16px;
  color: #2c1e4a;
}
.hair-removal h3 {
  font-size: 20px;
  margin-top: 20px;
  font-weight: 600;
}
.hair-removal .items {
  max-width: 560px;
  margin: 16px auto 0;
}
.hair-removal .items .item {
  background: #c9a063;
  color: white;
  border-radius: 16px;
  padding: 16px;
}
.hair-removal .items .item:not(:last-child) {
  margin-bottom: 20px;
}
.hair-removal .items .item h4 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}
.hair-removal .items .item p {
  max-width: 370px;
  margin: 0 auto;
  text-align: left;
  line-height: 1.5;
  margin-top: 8px;
}
.hair-removal .items .item p.center {
  text-align: center;
}

/*========================
benefits
========================*/
.benefits {
  background: rgba(201, 160, 99, 0.1960784314);
}
.benefits h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.benefits .item:not(:last-child) {
  margin-bottom: 20px;
}

/*========================
lymph
========================*/
.lymph h3 {
  margin-top: 24px;
}

/*========================
photo-facial
========================*/
.photo-facial-2 {
  background: rgba(201, 160, 99, 0.1960784314);
  margin-bottom: 32px;
}
.photo-facial-2 h2 {
  font-size: 18px;
}
.photo-facial-2 p {
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
}

/*========================
profile
========================*/
.profile .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .profile .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.profile .flex .content {
  text-align: left;
}
.profile .flex .name {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.3em;
}
.profile .flex .img {
  max-width: 200px;
}

/*========================
profile-2
========================*/
.profile-2 {
  background: rgba(201, 160, 99, 0.1960784314);
}
.profile-2 h3 {
  font-size: 20px;
  letter-spacing: 0.2em;
  color: #2c1e4a;
  margin-top: 8px;
  font-weight: 600;
}
.profile-2 p {
  max-width: 470px;
  margin: 0 auto;
  text-align: left;
}

/*========================
map
========================*/
.map .sec-title {
  letter-spacing: 0.15em;
}
.map .iframe {
  margin: 0 auto;
}
.map .iframe iframe {
  width: 100%;
  height: 400px;
}

/*========================
info
========================*/
.info {
  color: #2c1e4a;
  font-size: 15pt;
  /* h3のフォントサイズを16ptに */
  letter-spacing: 0.2em;
  /* 文字間を150%に */
  /* 行間を広げる */
}

.info p {
  color: rgb(33, 33, 33);
  font-size: 15px;
  /* フォントサイズを指定 */
  letter-spacing: 0.2em;
  /* 文字間を150%に */
  /* 行間を広げる */
}

@media screen and (max-width: 768px) {
  .info-container {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
    /* 子要素を中央揃え */
    text-align: center !important;
  }
  .info,
  .sns-block {
    width: 100% !important;
    margin-bottom: 20px !important;
  }
  .sns-block {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    /* SNSアイコンを中央揃え */
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
    width: auto !important;
    /* アイコンの幅に合わせる */
    gap: 15px !important;
  }
  .sns-block img {
    width: 40px !important;
    /* SNSアイコンのサイズ */
    height: 40px !important;
  }
}
.info-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* 左にINFO、右にSNS */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 800px;
  /* セクションの最大幅を設定 */
  margin: 0 auto;
  /* センター配置 */
  padding: 20px;
}

.info {
  width: 60%;
  /* INFOセクションを60% */
}

.sns-block {
  width: 40%;
  /* SNSブロックを40% */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  /* SNSアイコンを右寄せ */
  gap: 20px;
  /* アイコンの間隔を調整 */
}

.sns-block img {
  width: 40px;
  /* アイコンのサイズ */
  height: 40px;
}

.info {
  text-align: left;
  padding: 50px 20px;
}
.info a {
  color: #0000ee;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .info {
    padding: 50px 0;
  }
}

/*========================
footer
========================*/
footer {
  text-align: center;
  padding: 5px;
  background-color: #2c1e4a;
  color: white;
  margin-top: 0px;
}

footer p {
  color: #C9A063;
  font-size: 13px;
  letter-spacing: 0.1em;
  /* 文字間を150%に */
}