/* ===== CSS Variables ===== */
:root {
  --primary-color: #E7C8C9;
  --secondary-color: #D4C4A8;
  --accent-color: #A0916C;
  --text-color: #333333;
  --text-light: #666666;
  --text-gray: #6f6f6f;
  --text-purple: #152C84;
  --bg-color: #FEFCF8;
  --white: #FFFFFF;
  --line-color: #00B900;
  --hotpepper-color: #FF6B9D;
  --hero-green: #BAD7E9;
  --hero-pink: #bd9382;
  --hero-brown: #F0DAB5;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.05);
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --header-height: 70px;
  --font-size-small: 0.95rem;
  --font-size-base: 1rem;
  --font-size-medium: 1.1rem;
}

/* ===== Base Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  font-family: "Yu Mincho", serif;
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
}

@media (max-width: 600px) {
  body {
    font-size: var(--font-size-small);
    line-height: 1.8;
  }
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1080px; /* サイト全体の基準幅に合わせて調整 */
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  padding: 0 16px; /* スマホ時の余白 */
}

/* ===== Section Styles ===== */
.section,
.about,
.menu,
.service,
.before-after,
.simple-faq,
.blog,
.partnership {
  padding-top: 40px;
  padding-bottom: 40px;
  margin-top: 0;
  margin-bottom: 0;
}
.welfare {
  padding-top: 28px;
  padding-bottom: 28px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.location {
  padding-top: 28px;
  padding-bottom: 28px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.section-title {
  font-size: 2em;
  font-weight: 700;
  margin: 2.5em 0 1.2em 0;
  text-align: center;
  letter-spacing: 0.05em;
  color: #4a5a56;
}

.section__title-gray {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-gray);
  text-align: center;
  margin-bottom: 20px;
}

#menu-normal {
  margin-top: 60px;
}

#femcare .section__title-gray:first-of-type {
  margin-top: 60px;
}

.section__title-gray-sm {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-gray);
  text-align: center;
  margin-bottom: 20px;
}

.section__title-purple {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-purple);
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

/* ===== Button Styles ===== */
.btn {
  font-family: "Yu Mincho", serif;
  font-size: 1.2rem;
  background: #9b8c6c;
  color: #fff;
  padding: 32px 0;
  width: 340px;
  max-width: 90vw;
  margin: 0 24px 24px 0;
  border: none;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
  transition: all 0.3s;
  box-shadow: none;
  display: block;
}

.btn--primary {
  background: var(--primary-color);
  color: var(--text-gray);
}

.btn--primary:hover {
  background: #e6b1a0;
  color: #fff;
  opacity: 0.85;
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(170,137,123,0.18), 0 2px 8px 0 rgba(0,0,0,0.10);
}

.btn--outline {
  background: var(--white);
  color: var(--text-color);
  border: 1px solid var(--text-color);
}

.btn--outline:hover {
  background: var(--primary-color);
  color: var(--text-gray);
}

/* LINEボタン専用スタイル */
.btn--line-header {
  background: var(--white);
  color: var(--accent-color) !important;
  border: 1px solid var(--accent-color) !important;
}

.btn--line-header:hover {
  background: #00b900;
  color: #fff !important;
  border-color: #00b900;
}

/* Hot Pepper Beautyボタン専用スタイル */
.btn--hotpepper-header {
  background: var(--white);
  color: var(--accent-color) !important;
  border: 1px solid var(--accent-color) !important;
}

.btn--hotpepper-header:hover {
  background: #FF6B9D;
  color: #fff !important;
  border-color: #FF6B9D;
}

.btn--line {
  background: var(--line-color);
  color: var(--white);
}

.btn--line:hover {
  background: #7a958f;
  color: #fff;
}

.btn--hotpepper {
  background: var(--hotpepper-color);
  color: var(--white);
}

.btn--hotpepper:hover {
  background: #e6b1a0;
  color: #fff;
}

.btn--large {
  padding: 16px 32px;
  font-size: 1.1rem;
  margin: 0 10px 10px 0;
}

/* ===== Header Styles ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: var(--header-height);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header__container {
  display: flex;
  width: 100%;
  padding: 17px 15px;
  justify-content: center;
  align-items: center;
  background: #FFF;
  margin: 0;
  box-sizing: border-box;
  position: relative;
}

.header__inner {
  display: flex;
  width: 100%;
  max-width: 1440px;
  justify-content: space-between;
  align-items: center;
}

.header__logo img {
  height: 35px;
  width: auto;
}

.header__nav {
  display: flex;
}

.nav__list {
  display: flex;
  align-items: center; /* これでliやaを中央揃え */
}

.nav__list a {
  position: relative;
  color: #998c72;
  text-decoration: none;
  padding: 0 6px;
  transition: color 0.2s;
  display: inline-block; /* 念のため */
  height: 40px; /* 必要に応じて高さを指定 */
  line-height: 40px; /* 必要に応じて */
}

.nav__list a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0; /* 下端に固定 */
  height: 2px;
  background: #998c72;
  border-radius: 1px;
  display: block;
}

.nav__list a:hover {
  color: var(--primary-color);
}

.header__buttons {
  display: flex;
  gap: 8px;
}

.header__buttons .btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: none;
  margin: 0;
  width: auto;
  min-width: 0;
  max-width: none;
  font-family: inherit;
  letter-spacing: normal;
  text-align: center;
  position: static;
  transition: var(--transition);
}

/* ===== Hamburger Menu ===== */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-gray);
  margin: 3px 0;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: -100%;
  width: 100%;
  height: calc(100vh - var(--header-height));
  max-height: calc(100vh - var(--header-height));
  background: var(--white);
  transition: var(--transition);
  z-index: 999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu__list {
  padding: 15px 20px 30px 20px;
}

.mobile-menu__list li {
  margin-bottom: 10px;
}

.mobile-menu__list a {
  display: block;
  padding: 10px 0;
  font-size: var(--font-size-base);
  color: var(--text-color);
  border-bottom: 1px solid #eee;
}

/* 最後のメニュー項目（店舗情報）の下に余白を追加 */
.mobile-menu__list li:last-child {
  margin-bottom: 60px;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: calc(100vh - var(--header-height));
  min-height: calc(600px - var(--header-height));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--header-height);
}

.hero__carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.carousel__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel__slide.active {
  opacity: 1;
}

.carousel__slide picture {
  width: 100%;
  height: 100%;
  display: block;
}

.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* カルーセルインジケーター（横棒デザイン） */
.carousel__indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}

.carousel__indicator {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  border: none;
  background: rgba(170, 137, 123, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.carousel__indicator.active,
.carousel__indicator:hover {
  background: var(--primary-color);
  color: var(--text-gray);
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}

.hero__text {
  flex: 1;
  text-align: left;
}

.hero__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0;
  text-shadow: 
    1px 1px 2px rgba(255, 255, 255, 0.85),
    2px 2px 4px rgba(255, 255, 255, 0.7),
    0 0 8px rgba(255, 255, 255, 0.5);
  color: #8B6F47;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
  margin-left: 40px;
  margin-top: 80px;
}

.hero__btn {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
  text-shadow: 0px 4px 12px rgba(0, 0, 0, 0.9), 0px 2px 8px rgba(0, 0, 0, 0.8), 0px 1px 4px rgba(0, 0, 0, 0.7);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.hero__btn:hover {
  opacity: 0.85;
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero__btn--green {
  background: var(--hero-green);
}

.hero__btn--pink {
  background: var(--primary-color);
  color: var(--white);
}

.hero__btn--brown {
  background: var(--hero-brown);
  color: var(--white);
}

/* ===== About Section ===== */
.about {
  padding: 80px 0;
  background: var(--white);
}

.about .container {
  max-width: 700px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

.about__header {
  text-align: center;
  margin-bottom: 60px;
}

.about__description {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 40px;
}

.about__image img {
  width: 300px;
  height: 400px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  margin: 0 auto;
  display: block;
}

.about__text p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.about__buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .about__buttons {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .btn {
    width: 90vw;
    margin: 0 0 16px 0;
    font-size: 1rem;
    padding: 24px 0;
  }
}

/* ===== Menu Section ===== */
.menu {
  padding: 80px 0;
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.menu__item {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: var(--shadow-light);
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
}

.menu__item:hover {
  box-shadow: 0 16px 48px 0 rgba(170,137,123,0.28), 0 2px 8px 0 rgba(0,0,0,0.10);
  background: #f7f3ec;
  transform: translateY(-16px) scale(1.06);
  z-index: 2;
}

.menu__item:active {
  transform: scale(0.97);
}

.menu__image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.menu__content {
  padding: 25px;
  text-align: center;
}

.menu__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-gray);
  margin-bottom: 10px;
}

.menu__description {
  color: var(--text-light);
  line-height: 1.6;
}

.menu__button .btn {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.menu__button .btn:hover,
.service__grid .btn:hover {
  opacity: 0.85;
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(170,137,123,0.18), 0 2px 8px 0 rgba(0,0,0,0.10);
  background: #e6b1a0;
  color: #fff;
}

/* ===== Before/After Section ===== */
.before-after {
  padding: 80px 0;
}

.before-after__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.before-after__item {
  text-align: center;
}

.before-after__item .btn {
  margin: 24px auto 0 auto;
  display: block;
}

.before-after__item img {
  width: 367px;
  height: 413px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  background: #fff;
}

.before-after__button-group .btn:hover {
  opacity: 0.85;
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(170,137,123,0.18), 0 2px 8px 0 rgba(0,0,0,0.10);
  background: #e6b1a0;
  color: #fff;
}

/* ===== FAQ Section ===== */
.faq {
  padding: 80px 0;
  background: var(--white);
}
.faq-item summary {
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  padding: 24px 0 16px 0;
  outline: none;
  list-style: none;
  position: relative;
  transition: color 0.2s;
  text-align: left;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::before {
  content: '\25B6'; /* ▶ */
  color: #aa897b;
  font-size: 1.1em;
  margin-right: 12px;
  display: inline-block;
  transition: transform 0.3s;
}
.faq-item[open] summary::before {
  transform: rotate(90deg);
}
.faq-answer {
  padding: 0 0 24px 32px;
  color: #444;
  font-size: 1rem;
  line-height: 1.8;
  background: none;
  text-align: left;
}

/* ===== Blog Section Styles ===== */
.blog__grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.blog__card {
  display: block;
  width: 320px;
  background: #fff;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
  overflow: hidden;
}
.blog__card:hover {
  box-shadow: 0 8px 32px rgba(170,137,123,0.18), 0 2px 8px 0 rgba(0,0,0,0.10);
  transform: translateY(-6px) scale(1.03);
}
.blog__image {
  width: 100%;
  height: 164px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  display: block;
}
.blog__content {
  padding: 24px 20px 20px 20px;
}
.blog__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-color);
}
.blog__excerpt {
  font-size: 0.98rem;
  color: #333;
  line-height: 1.7;
  margin: 0;
}
.blog__date {
  font-size: var(--font-size-small);
  color: #888;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.blog .btn {
  margin: 0 auto;
  display: block;
}
@media (max-width: 1024px) {
  .blog__grid {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .blog__card {
    width: 90vw;
    max-width: 400px;
  }
}

/* ===== Location Section ===== */
.location {
  padding: 80px 0;
  background: var(--bg-color);
}
.location__flex {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 32px;
  flex-wrap: wrap;
}
.location__left {
  flex: 1 1 340px;
  min-width: 300px;
  max-width: 420px;
  font-size: 1.05rem;
  color: #222;
}
.location__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.location__contact-btn {
  margin: 48px auto 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
}

.location__info h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.location__info p {
  margin-bottom: 10px;
  color: var(--text-light);
}

.location__shopname {
  color: var(--text-gray) !important;
  margin-bottom: 18px;
}
.location__address {
  margin-bottom: 12px;
  line-height: 1.7;
}
.location__desc {
  margin-bottom: 16px;
}
.location__reserve {
  margin-bottom: 18px;
  font-size: 1rem;
}
.location__hours, .location__holiday {
  margin-bottom: 8px;
  font-size: 1rem;
}
.location__right {
  flex: 2 1 480px;
  min-width: 320px;
  max-width: 700px;
}
.location__img-group {
  display: flex;
  gap: 24px;
  margin-bottom: 18px;
}
.location__img-item {
  flex: 1 1 180px;
  min-width: 140px;
  max-width: 240px;
  text-align: center;
}
.location__img-item img {
  width: 100%;
  aspect-ratio: 2.8 / 2;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 6px;
}
.location__img-caption {
  font-size: 0.98rem;
  color: #222;
  margin-bottom: 0;
}
.location__map-group {
  margin-top: 12px;
}
.location__map-group img {
  width: 100%;
  max-width: 480px;
  border-radius: 8px;
}
.map-placeholder {
  height: 300px;
  background: #f0f0f0;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

/* ===== Footer ===== */
.footer {
  background: var(--primary-color);
  color: var(--text-gray);
  padding: 40px 0;
  text-align: center;
}

.footer__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.footer__logo h3 {
  margin: 0 0 5px 0;
  font-size: 2rem;
  font-weight: bold;
}

.footer__logo a img {
  width: 32px;
  height: 32px;
  max-width: 32px;
  max-height: 32px;
  display: block;
  border-radius: 10px;
  object-fit: contain;
  aspect-ratio: 1 / 1;
}

.footer__logo p {
  margin-top: 8px;
  margin-bottom: 0;
  text-align: left;
  width: 100%;
}

.footer__info {
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex: 1;
}

.footer__right .nav__list {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 12px 32px;
  text-align: left;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__right .nav__list li {
  margin: 0;
  white-space: nowrap;
  text-align: left;
}

.footer__right .nav__list a {
  color: var(--text-gray);
}

/* フッターコピーライト */
.footer__copyright {
  font-size: 0.9rem;
  color: var(--text-gray);
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 900px) {
  .footer__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer__right {
    width: 100%;
    justify-content: flex-start;
    margin-top: 16px;
  }
  .footer__right .nav__list {
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .footer__copyright {
    font-size: 0.8rem;
  }
}

@media (max-width: 700px) {
  
  .footer {
    padding: 40px 0 90px 0 !important;
  }
  .footer__content {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 600px) {
  .footer__copyright {
    font-size: 0.75rem;
  }
}

/* ===== Scroll to Top Button ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border: 2px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}

/* ===== Fixed Buttons (Mobile) ===== */
.fixed-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  z-index: 1000;
}

@media (max-width: 599px) {
  .fixed-buttons {
    display: flex;
  }
  
  .scroll-top {
    bottom: 80px;
  }
}

.fixed-btn {
  display: block;
  width: 50%;
  padding: 15px;
  text-align: center;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  border: none;
}

.fixed-btn--line {
  background: var(--hero-green);
  color: var(--text-gray);
  border-right: 0.5px solid rgba(255, 255, 255, 0.2);
}

.fixed-btn--line:hover {
  background: #7a958f;
}

.fixed-btn--hotpepper {
  background: var(--hero-brown);
  color: var(--text-gray);
  border-left: 0.5px solid rgba(255, 255, 255, 0.2);
}

.fixed-btn--hotpepper:hover {
  background: #8a7c5c;
}

/* ===== Responsive Design ===== */
@media (max-width: 1440px) {
  .header__container {
    padding: 17px 20px;
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .nav__list {
    gap: 15px;
  }
  
  .nav__list a {
    font-size: 0.85rem;
  }
  
  .header__buttons .btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 1300px) {
  .header__container {
    padding: 15px 20px;
  }
  
  .header__inner {
    max-width: 100%;
    justify-content: space-between;
  }
  
  .header__nav {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .header__logo img {
    height: 40px;
  }
  

}

/* 1180px～600px間でヘッダーにボタンを表示 */
@media (min-width: 601px) {
  .header__buttons {
    display: flex;
    gap: 8px;
  }
  
  .header__buttons .btn {
    padding: 8px 12px;
    font-size: 0.75rem;
    white-space: nowrap;
  }
  
  /* ハンバーガーボタンと少し離す */
  .header__inner {
    gap: 15px;
  }
}
@media (max-width: 600px) {
  .header__buttons {
    display: none;
  }
}

@media (max-width: 428px) {
  .sp-only {
    display: inline;
  }
  
  .btn--hotpepper-header {
    font-size: 0.9rem;
    line-height: 1.3;
  }
}

@media (min-width: 429px) {
  .sp-only {
    display: none;
  }
}
@media (max-width: 1024px) {
  .menu__grid,
  .before-after__grid,
  .service__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .about__content,
  .location__content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hero__content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .hero__text {
    text-align: center;
  }
  
  /* ヒーローセクションのボタンを1024px以下で非表示 */
  .hero__buttons {
    display: none;
  }
}

@media (max-width: 768px) {
  .header__container {
    padding: 12px 15px;
  }
  
  .hero {
    height: calc(85vh - var(--header-height));
    min-height: calc(450px - var(--header-height));
    margin-top: var(--header-height);
  }
  
  .hero__title {
    font-size: 1.5rem;
    text-shadow: 
      1px 1px 2px rgba(255, 255, 255, 0.85),
      2px 2px 3px rgba(255, 255, 255, 0.7),
      0 0 5px rgba(255, 255, 255, 0.5);
  }
  
  .hero__buttons {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    gap: 15px;
  }
  
  .hero__btn {
    width: 110px;
    height: 110px;
    font-size: 0.75rem;
  }
  
  .section__title-purple {
    font-size: 1.3rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .about__buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .welfare__text,
  .welfare__text p {
    text-align: left !important;
  }
}

@media (max-width: 600px) {
  /* スマートフォンでヘッダーの高さを短くする */
  :root {
    --header-height: 55px;
  }
  
  .header {
    height: var(--header-height);
  }
  
  .header__container {
    padding: 8px 15px;
  }
  
  .header__logo img {
    height: 30px;
  }
  
  /* 3つ横並びを縦並びに変更 */
  .menu__grid,
  .before-after__grid,
  .service__grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  
  .hero {
    height: calc(80vh - var(--header-height));
    min-height: calc(400px - var(--header-height));
    margin-top: var(--header-height);
  }
  
  .hero__title {
    font-size: 1.3rem;
    text-shadow: 
      1px 1px 2px rgba(255, 255, 255, 0.85),
      2px 2px 3px rgba(255, 255, 255, 0.7),
      0 0 5px rgba(255, 255, 255, 0.5);
  }
  
  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero__btn {
    width: 120px;
    height: 120px;
    font-size: 0.8rem;
  }
  
  .section__title-purple {
    font-size: 1.2rem;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .about__description {
    font-size: var(--font-size-small);
    line-height: 1.8;
  }
  
  /* スマートフォンでオーナー画像を小さく */
  .about__image img {
    width: 200px;
    height: 280px;
  }
  
  /* スマートフォンでインジケーターを調整 */
  .carousel__indicators {
    bottom: 20px;
  }
  
  .carousel__indicator {
    width: 30px;
    height: 3px;
  }
  
  /* SP表示でbtn btn--primaryを角丸ボタンに変更 */
  .btn.btn--primary {
    border-radius: 50px;
  }
  
  /* SP表示でmenu-itemを小さくし、角丸にしてリンクボタン風に */
  .menu__item {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: scale(0.95);
    margin-bottom: 20px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  
  .menu__item:hover {
    transform: scale(0.98) translateY(-4px);
    box-shadow: 0 8px 24px rgba(170, 137, 123, 0.2);
  }
  
  .menu__image img {
    height: 180px;
    border-radius: 15px 15px 0 0;
    object-fit: contain;
    background: var(--white);
    width: 280px;
  }
  
  .menu__content {
    padding: 20px;
    width: 280px;
  }
  
  .menu__title {
    font-size: 1.2rem;
  }
  
  .welfare__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    background: #f5f5f5;
    padding: 40px 0;
  }
  .welfare__text {
    flex: 1;
    min-width: 260px;
    max-width: 420px;
  }
  .welfare__image {
    flex: 1;
    min-width: 220px;
    max-width: 320px;
  }
  .features-hero__text h1,
  .features-hero__text p {
    text-align: center;
  }
  .owner-concept__container {
    text-align: center;
  }
  .mobile-menu {
    padding-top: var(--header-height);
  }
}

@media (max-width: 480px) {
  .hero {
    height: calc(75vh - var(--header-height));
    min-height: calc(350px - var(--header-height));
    margin-top: var(--header-height);
  }
  
  .hero__title {
    font-size: 1rem;
    text-shadow: 
      1px 1px 2px rgba(255, 255, 255, 0.85),
      2px 2px 3px rgba(255, 255, 255, 0.7),
      0 0 5px rgba(255, 255, 255, 0.5);
  }
  
  .section__title-purple {
    font-size: 1.1rem;
  }
  
  .hero__btn {
    width: 100px;
    height: 100px;
    font-size: 0.7rem;
  }
  
  .feature,
  .service__item {
    margin-bottom: 20px;
  }
}

.menu__item:hover .menu__content {
  background: #e6b1a0;
  color: #fff;
}

.service__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
  max-width: 100%;
  overflow: hidden;
  width: 100%;
}
.service__item {
  overflow: hidden;  
  transition: all 0.3s;
  text-align: center;
  width: 100%;
  max-width: 100%;
}
.service__image {
  width: 100%;
  max-width: 300px;
  height: 300px;
  margin: 32px auto 16px auto;
  overflow: hidden;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.service__content {
  padding: 16px 0 32px 0;
}

.header__buttons .btn.btn--line-header:hover {
  background: #00b900;
  color: #fff;
  border-color: #00b900;
}
.header__buttons .btn.btn--hotpepper-header:hover {
  background: #FF6B9D;
  color: #fff;
  border-color: #FF6B9D;
}

.welfare__image-img {
  width: 100%;
  max-width: 220px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.welfare__caption {
  font-size: 0.9em;
  color: #444;
  margin-top: 4px;
}

.welfare {
  background: #f5f5f5;
  padding: 40px 0;
}

.welfare__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.welfare__text {
  flex: 1;
  min-width: 260px;
  max-width: 420px;
  text-align: center;
}
.welfare__image {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
}

.simple-faq {
  padding: 48px 0;
  text-align: center;
}

.simple-faq .container {
  max-width: 700px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}
.simple-faq__title {
  margin-bottom: 32px;
}

.welfare__text p {
  margin-bottom: 24px;
}
.welfare__text .btn {
  margin-top: 24px;
}



/* パートナーシップセクション */
.partnership {
  padding-top: 0px;
  padding-bottom: 16px;
  margin: 0px 0 32px 0; /* 48pxから24pxに変更 */
  text-align: center;
}
.partnership__row {
  display: block;
}
.partnership__img--pc, .partnership__img--sp {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 24px auto;
  height: auto;
  display: block;
}
.partnership__img--sp {
  display: none;
}

@media (max-width: 907px) and (min-width: 701px) {
  .location__flex {
    flex-direction: column;
    gap: 32px;
  }
  .location__right {
    max-width: 100%;
  }
  .location__img-group {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin: 0 auto;
  }
  .location__img-item {
    max-width: 420px;
    margin: 0 auto;
  }
  .location__img-item img {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 2.8 / 2;
    height: auto;
  }
  .location__map-group {
    margin: 32px auto 0 auto;
    max-width: 95vw;
    text-align: center;
  }
  .location__map-group iframe {
    width: 95vw !important;
    min-width: 0;
    height: 320px;
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .section,
  .about,
  .menu,
  .service,
  .before-after,
  .simple-faq,
  .blog,
  .partnership {
    padding-top: 32px;
    padding-bottom: 32px;
    margin-top: 0;
    margin-bottom: 0;
  }
  .location {
    padding-top: 24px;
    padding-bottom: 24px;
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .location__img-group {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin: 0 auto;
    text-align: center;
  }
  .location__img-item {
    max-width: 95vw;
    margin: 0 auto;
    text-align: center;
  }
  .location__img-item img {
    max-width: 95vw;
    width: 95vw;
    height: auto;
  }
  .location__map-group {
    margin: 24px auto 0 auto;
    max-width: 95vw;
    text-align: center;
  }
  .location__map-group iframe {
    width: 95vw !important;
    min-width: 0;
    height: 260px;
    display: block;
    margin: 0 auto;
  }
  /* 700px以下でpartnershipのaタグの横幅を280pxに統一 */
  .partnership__row a {
    width: 280px;
    margin: 0 auto 24px auto;
    display: block;
  }
  .partnership__img--pc {
    display: none;
  }
  .partnership__img--sp {
    width: 280px;
    max-width: 280px;
    margin: 0 auto 24px auto;
    height: auto;
    display: block;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    height: auto;
  }
  .welfare {
    padding-top: 24px;
    padding-bottom: 24px;
    margin-top: 16px;
    margin-bottom: 16px;
  }
}

.hero__buttons .hero__btn {
  text-shadow: 0 4px 8px rgba(0,0,0,0.25) !important;
}

/* ===== features.html専用 Heroセクション ===== */
.features-hero {
  position: relative;
  width: 100%;
  height: 340px;
  min-height: 180px;
  background: #fff;
  margin-bottom: 0;
  margin-top: var(--header-height);
}
.features-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.features-hero__text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  z-index: 2;
  padding-left: 24px;
  padding-right: 24px;
}
.features-hero__text h1, .features-hero__text p {
  color: #FFF;
  text-align: center;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: "Yu Mincho", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.05em;
  margin-bottom: 0.7em;
}
.features-hero__text h1 {
  margin-bottom: 18px;
}

@media (max-width: 600px) {
  .features-hero__text h1 {
    font-size: 1.2rem;
  }
  
  .section__title-gray {
    margin-bottom: 15px;
    line-height: 1.4;
    font-size: 1.5rem;
  }
  
  .section__title-gray-sm {
    margin-bottom: 15px;
    line-height: 1.4;
    font-size: 1rem;
  }
}

/* ===== オーナーの思いセクション ===== */
.owner-concept {
  background: #fff;
  padding: 48px 0 64px 0;
  position: relative;
  overflow: hidden;
}
.owner-concept::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../images/iyashinote3.png') center/cover no-repeat;
  opacity: 0.13;
  filter: blur(3px);
  z-index: 0;
}
.owner-concept > * {
  position: relative;
  z-index: 1;
}
.owner-concept__container {
  max-width: 900px;
}
.owner-concept__subtitle {
  margin-bottom: 24px;
}
.owner-concept__image {
  width: 100%;
  text-align: center;
  margin-bottom: 32px;
}
.owner-concept__image img {
  width: 100%;        /* 親要素の幅いっぱいに広げる */
  height: auto;       /* 縦横比は維持 */
  display: block;
  max-width: 100%;    /* 念のため */
}
.owner-concept__text {
  font-size: var(--font-size-small);
  color: var(--text-color);
  line-height: 2.4;
  text-align: left;
}

.owner-concept__text strong {
  display: block;
  font-size: 1.5rem;
  color: var(--text-gray);
  font-weight: 700;
  margin-bottom: 8px;
}

.features-detail__row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  margin-bottom: 48px;
}
.features-detail__img-col, .features-detail__text-col {
  flex: 1 1 0;
  max-width: 50%;
}
.features-detail__img-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
.features-detail__row--reverse {
  flex-direction: row-reverse;
}
.features-detail__serum-intro.features-detail__row {
  flex-direction: column;
  align-items: center;
}
.features-detail__serum-intro .features-detail__text-col,
.features-detail__serum-intro .menu__button {
  text-align: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 800px) {
  .features-detail__row {
    flex-direction: column;
    gap: 24px;
  }
  .features-detail__img-col, .features-detail__text-col {
    max-width: 100%;
  }
  .features-detail__text-col {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    text-align: center;
  }
}

.features-detail__text-col {
  line-height: 2.2;
}

/* ===== features-checklist（番号付きリスト） ===== */
.features-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}
.features-checklist li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  border-bottom: 1px solid #e5e5e5;
  padding: 18px 0 18px 0;
  margin: 0;
}
.features-checklist li:last-child {
  border-bottom: none;
}
.features-checklist__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f7d7db;
  color: #aa897b;
  font-weight: bold;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  margin-right: 18px;
  flex-shrink: 0;
}
.features-checklist__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.features-checklist__headline {
  font-weight: 700;
  font-size: 1.15rem;
  color: #aa897b;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  display: block;
  line-height: 1.5;
  text-align: left;
}
.features-checklist__desc {
  font-size: var(--font-size-small);
  line-height: 2.4;
  color: var(--text-color);
  text-align: left;
}

@media (max-width: 600px) {
  .faq-list {
    padding: 0 0 24px 0;
  }
  .faq-answer {
    padding-left: 12px;
    font-size: var(--font-size-small);
    line-height: 1.8;
  }
  .faq-item summary {
    font-size: 1rem;
    font-weight: bold;
    padding: 18px 0 12px 0;
  }
  .features-checklist__headline {
    font-size: 1.05rem;
  }
  .features-checklist__desc {
    font-size: var(--font-size-small);
    line-height: 1.8;
  }
}

/* features.html Heroキャッチコピー切り替え */
.features-hero__catch--sp {
  display: none;
}
@media (max-width: 1100px) {
  .features-hero__catch--pc {
    display: none;
  }
  .features-hero__catch--sp {
    display: block;
  }
}

.features-detail__serum-images {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin: 32px 0;
}

@media (max-width: 750px) {
  .features-detail__serum-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin: 32px 0;
  }
  
  /* 1番目のpicture（ホワイトハニー） */
  .features-detail__serum-images picture:nth-child(1) {
    order: 2;
  }
  
  /* 1番目のsample-skin-img（ニキビ・毛穴） */
  .features-detail__serum-images .sample-skin-img:nth-child(2) {
    order: 1;
  }
  
  /* 2番目のpicture（モーメント） */
  .features-detail__serum-images picture:nth-child(3) {
    order: 4;
  }
  
  /* 2番目のsample-skin-img（しわ・乾燥） */
  .features-detail__serum-images .sample-skin-img:nth-child(4) {
    order: 3;
  }
  
  /* 3番目のpicture（メラショット） */
  .features-detail__serum-images picture:nth-child(5) {
    order: 6;
  }
  
  /* 3番目のsample-skin-img（シミ・くすみ） */
  .features-detail__serum-images .sample-skin-img:nth-child(6) {
    order: 5;
  }
  
  /* 4番目のpicture（グレイスヘア） */
  .features-detail__serum-images picture:nth-child(7) {
    order: 8;
  }
  
  /* 4番目のsample-skin-img（抜け毛・薄毛） */
  .features-detail__serum-images .sample-skin-img:nth-child(8) {
    order: 7;
  }
  
  /* フェイシャルケアおすすめの受け方のタイトル */
  .features-detail__serum-images h3.section__title-purple {
    order: 9;
  }
  
  /* フェイシャルケアおすすめの受け方のコンテンツ */
  .features-detail__serum-images .features-detail__serum-intro {
    order: 10;
  }
}
.features-detail__serum-images .features-detail__sanmond {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-radius: 12px;
}
@media (max-width: 1000px) {
  .features-detail__serum-images .features-detail__sanmond {
    max-width: 98vw;
  }
}
@media (max-width: 800px) and (min-width: 501px) {
  .features-detail__img-col {
    max-width: 60vw;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 600px) {
  .features-detail__serum-images {
    gap: 16px;
    margin: 16px 0;
  }
}

/* sample-skin-imgはデフォルト非表示 */
.sample-skin-img {
  display: none;
}
@media (max-width: 750px) {
  .sample-skin-img {
    display: block;
    margin: 16px auto 24px auto;
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  .features-detail__block img.sample-skin-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
}

/* フェムケアhistoryテキスト strong の余白調整 */
.features-detail__femcare-history .about__description.owner-concept__text strong {
  display: block;
  font-size: 1.12rem;
  color: #aa897b;
  margin-bottom: 4px;
  margin-top: 0;
  line-height: 1.3;
}
.features-detail__femcare-history .about__description.owner-concept__text {
  line-height: 1.7;
  padding: 12px 18px;
  max-width: 600px;
  margin: 0 auto;
  background: #fcfcfa;
  border-radius: 10px;
  font-size: 1.02rem;
}
@media (max-width: 700px) {
  .features-detail__femcare-history .about__description.owner-concept__text {
    padding: 8px 4vw;
    font-size: 0.97rem;
    max-width: 98vw;
  }
}

@media (max-width: 600px) {
  .features-detail__text-col {
    max-width: 95vw;
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* ===== menu.html Heroセクション ===== */
.menu-hero {
  max-width: 100%;
  min-height: 220px; /* 必要に応じて調整 */
  background: var(--hero-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--header-height) auto 0px auto;
  box-sizing: border-box;
}
.menu-hero__text {
  width: 100%;
  text-align: center;
}
.menu-hero__text h1 {
  color: #fff;
  font-size: 2.5rem;
  font-family: 'Yu Mincho', serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 0;
  text-shadow: 0 3px 8px rgba(0,0,0,0.32), 0 1px 0 #000;
}
.menu-hero__text--sub {
  color: #fff;
  font-size: 1.5rem;
  font-family: 'Yu Mincho', serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 0;
  text-shadow: 0 3px 8px rgba(0,0,0,0.32), 0 1px 0 #000;
}
@media (max-width: 1440px) {
  .menu-hero {
    max-width: 100vw;
  }
}

@media (max-width: 1280px) {
  .menu-hero {
    min-height: 180px;
  }
  
  .menu-hero__text h1 {
    font-size: 2.2rem;
  }
  
  .menu-hero__text--sub {
    font-size: 1.3rem;
  }
}
@media (max-width: 900px) {
  .menu-hero {
    min-height: 150px;
    margin-bottom: 25px;
  }
  
  .menu-hero__text h1 {
    font-size: 2rem;
  }
  
  .menu-hero__text--sub {
    font-size: 1.2rem;
  }
}

@media (max-width: 600px) {
  .menu-hero {
    height: 140px;
    margin-bottom: 20px;
  }
  .menu-hero__text h1 {
    font-size: 1.8rem;
  }
  .menu-hero__text--sub {
    font-size: 1.1rem;
  }
}

/* ===== menu.html フェイシャルメニュー冒頭1枚画像 全画面表示用 ===== */
.menu-intro-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  width: 100vw;
  max-width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
  margin-bottom: 32px;
}
.menu-intro-img {
  width: 100vw;
  max-width: 100vw;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.menu-intro-img img {
  width: 100vw;
  max-width: 60vw;
  height: auto;
  object-fit: cover;
  box-shadow: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
}
.menu-intro-desc {
  text-align: center;
  font-size: 1rem;
  color: #333;
  margin-bottom: 32px;
  line-height: 1.7;
}
@media (max-width: 1000px) {
  .menu-intro-row {
    gap: 16px;
  }
  .menu-intro-img {
    width: 28vw;
    min-width: 120px;
  }
}
@media (max-width: 700px) {
  .menu-intro-row {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .menu-intro-img {
    width: 90vw;
    max-width: 95vw;
  }
}
.menu-price-card {
  background: #fffbe6;
  border: 3px solid #e0b800;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(224,184,0,0.10);
  padding: 16px;
  width: 80vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.08rem;
  margin: 0 auto 32px auto;
  max-width: 350px;
  position: relative;
}
.menu-price-card__title {
  font-weight: 700;
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 10px;
  color: #7a5c00;
  padding: 6px 0;
  display: inline-block;
}
.menu-price-card__row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  margin-bottom: 0;
  color: #b48a00;
  font-weight: 600;
}
.menu-price-card__price-old {
  text-decoration: line-through;
  color: #bbb;
  font-size: 1.35rem;
}
.menu-price-card__arrow {
  font-size: 1.2rem;
  margin: 0 8px;
  color: #b48a00;
}
.menu-price-card__special {
  font-weight: 700;
  color: #fff;
  background: var(--hero-brown);
  font-size: 1.1rem;
  margin: 12px 0 0 0;
  padding: 12px 24px;
  border-radius: 16px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(240,218,181,0.3);
  cursor: pointer;
}
.menu-price-card__special:hover,
.menu-price-card__special:focus {
  background: #E8D0A8;
  box-shadow: 0 4px 16px rgba(240,218,181,0.4);
  transform: translateY(-2px) scale(1.03);
  text-decoration: none;
  color: #fff;
}
.menu-price-card__price-new {
  color: #d20000;
  font-size: 1.8rem;
  font-weight: 800;
  margin-left: 0;
  margin-top: 18px;
  margin-bottom: 0;
  line-height: 1.1;
  letter-spacing: 0.04em;
  display: flex;
  align-items: flex-end;
  text-shadow: 0 2px 8px #fff, 0 0 2px #fff, 1px 1px 0 #fff;
}
.menu-price-card__tax {
  font-size: 0.95rem;
  color: #d20000;
  margin-left: 4px;
  font-weight: 500;
}
.menu-price-card__desc {
  max-width: 600px;
  margin: 0 auto;
  text-align: left; /* ← これだけ残す */
  /* 余白も調整 */
  padding: 0 16px;
  color: #333;
  font-size: 0.95rem;
  margin-top: 18px;
  line-height: 1.4;
}
.menu-price-card__note {
  color: #d20000;
  font-size: 0.92rem;
  display: block;
  margin-top: 8px;
}

/* 【初回限定】口コミ投稿で テキストの色設定 */
.menu-price-card__special span:first-child {
  color: #7a5c00;
}
.menu-arrow {
  display: flex;
  justify-content: center;
  margin: 16px 0 24px 0;
}
.menu-arrow img {
  width: 36px;
  height: 36px;
}
.menu-beforeafter-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}
.menu-beforeafter-card {
  background: #fff;
  padding: 18px 18px 12px 18px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.menu-beforeafter-card img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 12px;
  display: block;
}
.menu-beforeafter-card__desc {
  max-width: 420px;
  font-size: 0.92rem;
  color: #333;
  text-align: left;
}
.menu-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .menu-beforeafter-row {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .menu-beforeafter-card {
    max-width: 95vw;
    width: 100%;
  }
}

@media (max-width: 1000px) {
  .menu-intro-img img {
    max-width: 100vw;
  }
}

@media (min-width: 500px) {
  .menu-price-card {
    width: 750px;
    max-width: 90vw;
    min-width: 0;
    flex: 0 0 auto;
  }
}
@media (max-width: 499px) {
  .menu-price-card {
    width: 95vw;
    max-width: 100vw;
    box-sizing: border-box;
  }
}
@media (max-width: 650px) {
  .menu-price-card__row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  .menu-price-card__row-price {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
}

@media (min-width: 651px) {
  .menu-price-card__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
}

.menu-price-card__voice {
  margin: 18px 0 0 0;
  padding: 14px 16px;
  border: 2.5px solid #e0b800;
  border-radius: 12px;
  background: #fffbe6;
  color: #7a5c00;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: left;
}

@media (max-width: 600px) {
  .menu-beforeafter-card img {
    max-width: 95vw;
    margin-left: auto;
    margin-right: auto;
  }
}

.menu-card {
  background: #f5f5f5;
  border: 3px solid #cccccc;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(170,170,170,0.08);
  padding: 0 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.08rem;
  margin: 0 auto 32px auto;
  max-width: 350px;
  position: relative;
}
.menu-card__title {
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  color: #666;
  padding: 6px 0;
  display: inline-block;
}
.menu-card__price {
  font-weight: 800;
  color: #888;
  text-align: center;
}
.menu-card__price--new {
  color: #d20000;
  font-size: 1.8rem;
  font-weight: 800;
}
.menu-card__tax {
  font-size: 1rem;
  color: #888;
  margin-left: 4px;
  font-weight: 500;
}
.menu-card__desc {
  color: #333;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.7;
}
.menu-card__br {
  display: none;
}
@media (max-width: 600px) {
  .menu-card__br {
    display: inline;
  }
}

.menu-cards.menu-cards--normal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 95vw;
  margin: 0 auto 32px auto;
}
@media (max-width: 600px) {
  .menu-cards.menu-cards--normal {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1001px) {
  .menu-cards.menu-cards--normal {
    max-width: 1100px;
  }
  .menu-cards.menu-cards--normal .menu-card {
    max-width: 500px;
  }
}

.menu-price-card__desc--red {
  color: #d20000;
}

@media (max-width: 700px) {
  .footer__right .nav__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    align-items: flex-start;
    text-align: left;
    padding: 0;
  }
  .footer__right .nav__list li {
    text-align: left;
    width: 100%;
  }
}

.menu-section {
  margin: 50px 0;
}
@media (max-width: 700px) {
  .menu-section {
    margin: 20px 0;
  }
}

/* ===== FLOWページ用 flow-card（Figmaデザイン寄せ） ===== */
.flow-card {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 4px 24px rgba(170,137,123,0.08);
  overflow: visible;
  min-height: 220px;
  position: relative;
  margin-bottom: 56px;
  margin-top: 56px; /* 追加：上下の間隔を均等に */
  width: 80vw;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.flow-card:first-child {
  margin-top: 0; /* 最初のカードだけ上の余白をなくす */
}
.flow-card__label {
  position: absolute;
  top: -32px;
  left: 0;
  width: 100%;
  background: #b89587;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  text-align: left;
  padding: 14px 0 14px 32px;
  border-radius: 32px 32px 0 0;
  z-index: 2;
  letter-spacing: 0.04em;
  font-family: "Yu Mincho", serif;
}
.flow-card--step2 .flow-card__label {
  background: #98A7A3;
}
.flow-card--step3 .flow-card__label {
  background: #9B8C6C;
}
.flow-card--step4 .flow-card__label {
  background: #818286;
}
.flow-card--step5 .flow-card__label {
  background: #DAB370;
}
.flow-card__img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 260px;
  min-width: 180px;
  background: #f5f5f5;
  overflow: hidden;
}
.flow-card__img img {
  width: 100%;
  object-fit: contain;
  display: block;
  background: #fff;
}
.flow-card__body {
  flex: 1 1 0;
  padding: 40px 40px 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #F5F5F5;
}
.flow-card__desc {
  color: var(--text-color);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
}
.flow-card .btn {
  align-self: flex-end;
  margin-top: 18px;
  font-size: 1rem;
  padding: 10px 28px;
  border-radius: 18px;
  background: #b89587;
  color: #fff;
  box-shadow: none;
  width: auto;
  min-width: 0;
}
.flow-arrow {
  position: static;
  left: auto;
  bottom: auto;
  transform: none;
  margin: 0 auto;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: block;
}
#flow .section__title-gray-sm {
  margin-bottom: 60px;
}

.flow-card__body-center {
  text-align: center;
}
.flow-card__body-center .btn {
  display: inline-block;
  margin-left: 0;
  margin-right: 0;
}
.flow-card__body-center p {
  text-align: center;
  margin-top: 8px;
  margin-bottom: 0;
  display: block;
  width: 100%;
}

@media (max-width: 900px) {
  .flow-card {
    flex-direction: column;
    border-radius: 24px 24px 0 0;
  }
  .flow-card__label {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    border-radius: 24px 24px 0 0; /* 必要なら角丸も調整 */
    padding: 12px 0 12px 20px;    /* 必要に応じて調整 */
    z-index: auto;
  }
  .flow-card__img {
    aspect-ratio: 1 / 1;
    height: 250px;
    max-width: 100%;
    min-width: 0;
    padding: 0;         /* ← ここを0に */
    margin: 0;          /* ← ここも0に */
    box-sizing: border-box;
    display: flex;      /* 画像中央寄せ */
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #f5f5f5; /* カードと同じグレー背景 */
  }
  .flow-card__img img {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    margin: 0;          /* ← 画像自体のマージンも0に */
    background-color: #f5f5f5; /* 画像の背景色もグレーに */
  }
  .flow-card__body {
    padding: 24px 12px 20px 12px;
  }
  .flow-card .btn {
    width: auto;
    max-width: 360px;
    min-width: 240px;
    display: inline-block;
    margin: 18px auto 0 auto;
    font-size: 1rem;
    padding: 10px 28px;
    border-radius: 18px;
  }
  .flow-arrow {
    width: 32px;
    height: 32px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .flow-card .btn {
    max-width: 90vw;
    font-size: 0.98rem;
    padding: 10px 0;
  }
}

.flow-card__desc .desc-title {
  font-size: 1.15em;   /* 通常より少し大きく */
  font-weight: bold;   /* 太字 */
  display: block;
  margin-bottom: 0.3em;
  color: var(--text-purple);
}

/* アイテム案内用コンパクトテキスト */
.item-info-compact {
  max-width: 800px;
  margin: 40px auto 0 auto;
  padding: 20px 18px;
  font-size: 1rem;
  color: #333;
  text-align: left;
  line-height: 2;
}

.item-info-compact .insta-link-btn {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 14px;
  background: #e1306c;
  color: #fff;
  border-radius: 16px;
  font-size: 0.98em;
  text-decoration: none;
  transition: background 0.2s;
  vertical-align: middle;
}
.item-info-compact .insta-link-btn:hover {
  background: #b92d5e;
}

.item-info-bg {
  width: 100vw;
  background: #f9f6f2; /* お好みの薄い色 */
  padding: 40px 0;
  margin: 0 calc(50% - 50vw); /* 画面端まで色を広げる */
}
.instagram-embeds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0; /* 余白なし */
  width: 100%;
  justify-items: center;
}

.instagram-embeds blockquote.instagram-media {
  width: 340px !important;
  margin-top: 32px !important;
  padding: 0 !important;
}

@media (max-width: 900px) {
  .instagram-embeds {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .instagram-embeds {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 4px;
    margin-bottom: 16px;
  }
  .item-info-compact,
  .item-info-text {
    line-height: 1.5; /* 1.4～1.6くらいがスマホで読みやすい */
    font-size: 0.98rem; /* 必要なら少し小さく */
    padding: 12px 8px;  /* 左右の余白も減らす */
    margin: 16px auto 0 auto;
  }
  .flow-card,
  .instagram-embeds {
    margin-bottom: 16px !important;
  }
  .instagram-embeds {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .instagram-embeds blockquote.instagram-media {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
}
/* デフォルトはPC用 */
.only-sp { display: none; }
.only-pc { display: inline; }

/* 600px以下（スマホ）は逆にする */
@media (max-width: 600px) {
  .only-sp { display: inline; }
  .only-pc { display: none; }
}

.img-hover-link {
  display: block;
  position: relative;
  border-radius: 80px;
  overflow: hidden;
  transition: box-shadow 0.3s;
  background: transparent;
}

.img-hover-link img {
  display: block;
  width: 100%;
  height: auto;
  transition: 
    transform 0.4s cubic-bezier(.4,2,.6,1),
    filter 0.4s cubic-bezier(.4,2,.6,1);
  will-change: transform, filter;
}

.img-hover-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(170, 137, 123, 0.22); /* ふわっとしたベージュ系 */
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(.4,2,.6,1);
  pointer-events: none;
  border-radius: 12px;
}

.img-hover-link:hover img,
.img-hover-link:focus img {
  transform: scale(1.07) rotate(-1deg);
  filter: brightness(1.08) saturate(1.2);
}

.img-hover-link:hover .img-hover-overlay,
.img-hover-link:focus .img-hover-overlay {
  opacity: 1;
}

.img-hover-link:hover,
.img-hover-link:focus {
  box-shadow: 0 8px 32px rgba(170,137,123,0.18), 0 2px 8px 0 rgba(0,0,0,0.10);
}

.blog-list-center {
  text-align: center;
}
.blog-list-center .btn {
  margin: 0 auto 12px auto;
  display: inline-block;
}
.blog-list-center p {
  margin: 0 auto;
  font-size: 0.98em;
}

@media (max-width: 800px) {
  .features-checklist__desc {
    text-align: left !important;
  }
}

@media (max-width: 600px) {
  .owner-concept__container {
    padding-left: 0;  /* ここは0でもOK */
    padding-right: 0;
  }
  .about__description.owner-concept__text {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.flow-card__img--bottom {
  align-items: flex-end !important;
}

@media (max-width: 1000px) {
  .about__text,
  .about__description {
    max-width: 700px;      /* 1000px付近でも読みやすい幅を維持 */
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
}

@media (max-width: 900px) {
  .about__text,
  .about__description {
    max-width: 650px;      /* 900px以下では少し狭く */
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
}

@media (max-width: 800px) {
  .about__text,
  .about__description {
    max-width: 600px;      /* 800px以下ではさらに狭く */
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
}

@media (max-width: 700px) {
  .about__text,
  .about__description {
    max-width: 550px;      /* 700px以下ではタブレット向け */
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
}

@media (max-width: 600px) {
  .about__text,
  .about__description {
    max-width: 400px;      /* 600px以下ではSP向け */
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
  
  /* 全ページで1remのテキストを統一 */
  .about__description,
  .menu__description,
  .blog__excerpt,
  .location__desc,
  .welfare__text p,
  .flow-card__desc,
  .menu-card__desc,
  .menu-price-card__desc,
  .menu-price-card__note,
  .welfare-checklist__desc,
  .welfare-checklist__sublist li,
  .privacy-section .privacy-box p,
  .sitemap-col ul li a,
  p {
    font-size: 0.95rem;
    line-height: 1.8;
  }
}

@media (max-width: 600px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
}

/* 600px以上でabout__description.owner-concept__textのフォントサイズを1remに設定 */
@media (min-width: 601px) {
  .about__description.owner-concept__text {
    font-size: 1rem;
    line-height: 1.8;
  }
}

@media (max-width: 670px) {
  .welfare__content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .welfare__text,
  .welfare__image {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .welfare__text {
    text-align: center;
  }
  
  .welfare__text .btn {
    width: 100%;
    max-width: 300px;
    margin-top: 16px;
  }
  
  .welfare__image img {
    display: block;
    margin: 0 auto;
  }
}

/* プライバシーポリシー本文の行間調整 */
.privacy-section .container,
.privacy-section .privacy-box {
  line-height: 1.9;
}
.privacy-section .privacy-box {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 32px;
}
.privacy-section .privacy-box h4 {
  margin-top: 2.2em;
  margin-bottom: 0.3em;
}
.privacy-section .privacy-box b {
  display: inline-block;
  margin-top: 1em;
}

.privacy-section .privacy-return-btn {
  text-align: center;
  padding: 32px 0;
}
.privacy-section .privacy-return-btn .btn {
  display: inline-block;
  margin: 0 auto;
  width: auto;
  min-width: 220px;
}

/* サイトマップページ用レイアウト */
.sitemap-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0 60px 0;
}
.sitemap-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.sitemap-col {
  min-width: 180px;
  flex: 1 1 0;
}
.sitemap-col h3 {
  color: #fff;
  font-size: 1.1em;
  margin-bottom: 12px;
  font-weight: bold;
  letter-spacing: 0.04em;
}
.sitemap-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sitemap-col ul li {
  margin-bottom: 8px;
}
.sitemap-col ul li a {
  text-decoration: none;
  font-size: 1em;
  transition: text-decoration 0.2s;
}
.sitemap-col ul li a:hover {
  text-decoration: underline;
}
.sitemap-grid--main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
}
.sitemap-grid--main ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 48px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  justify-content: center;
}
.sitemap-grid--main ul li {
  font-size: 1.1em;
  min-width: 120px;
  text-align: left;
}
@media (max-width: 700px) {
  .sitemap-grid {
    flex-direction: column;
    gap: 24px;
  }
  .sitemap-col {
    min-width: 0;
  }
  .sitemap-section .container {
    padding: 24px 0 40px 0;
  }
  .sitemap-grid--main ul {
    gap: 12px 24px;
  }
}

/* Studio風サイトマップレイアウト */
.sitemap-flex {
  display: block;
}

.sitemap-col {
  width: 100%;
}

@media (min-width: 900px) {
  .sitemap-flex {
    display: flex;
    gap: 56px;
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 0 60px 0;
  }
  .sitemap-col {
    width: 50%;
  }
}

.sitemap-block {
  margin-bottom: 2em; /* 各ブロックの間に余白 */
}

.sitemap-title {
  display: block;
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 0.3em;
  color: #333;
}

.sitemap-block ul {
  margin: 0 0 0 1.5em; /* 右に1マス分ずらす */
  padding: 0;
  list-style: none;
}

.sitemap-block li {
  font-weight: normal;
  font-size: 1em;
  color: #555;
  margin-bottom: 0.2em;
  /* 必要ならテキストを細字に */
}

.sitemap-block li a {
  color: #555;
  text-decoration: none;
}

.sitemap-block li a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .sitemap-flex {
    gap: 32px 24px;
    padding: 32px 0 40px 0;
  }
  .sitemap-block {
    min-width: 140px;
    flex: 1 1 140px;
  }
}
@media (max-width: 600px) {
  .sitemap-flex {
    flex-direction: column;
    gap: 18px;
    padding: 18px 0 24px 0;
  }
  .sitemap-block {
    min-width: 0;
    flex: 1 1 100%;
  }
}

@media (max-width: 1000px) {
  .sitemap-section {
    background: #f7f7f7;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
}

.sitemap-section {
  background: #f7f7f7;
}
#sitemap.menu-hero {
  margin-bottom: 0 !important;
}

.privacy-section {
  background: #f7f7f7;
}

#privacy.menu-hero {
  margin-bottom: 0 !important;
}

.sitemap-title:hover {
  text-decoration: underline;
}

.menu-card__body {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.menu-card__img {
  width: 100%;
  max-width: 200px;
  height: 150px;
  margin: 20px auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-card__img img {
  width: 100%;
  height: auto;
  max-height: 150px;
  object-fit: contain;
  display: block;
  border-radius: 0;
}

/* フェイシャルメニューセクションの画像のみ正円にする */
#facial .menu-card__img img {
  border-radius: 50%;
}

@media (max-width: 750px) {
  .features-detail__block img.sample-skin-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
}

/* ===== 法人会員ページ Hero ===== */
.welfare-hero {
  background: #bdb1a3 url('../images/welfare-bg.png') no-repeat center/cover;
  color: #fff;
  padding: 48px 0 24px 0;
  text-align: center;
  position: relative;
}
.welfare-hero__title {
  font-size: 2.4rem;
  font-family: "Yu Mincho", serif;
  font-weight: bold;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.welfare-hero__catch {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===== 法人会員ページ 本文 ===== */
.welfare-section {
  background: #f7f7f7;
  padding: 40px 0 32px 0;
}
.welfare-lead {
  text-align: center;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 32px;
  line-height: 2;
}
.welfare-features {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.welfare-feature {
  background: #fff;
  border: 2px solid #d4c4a8;
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 1rem;
  color: #7a5c00;
  min-width: 180px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.welfare-plans {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.welfare-plan {
  background: #fff;
  border: 2px solid #bdb1a3;
  border-radius: 16px;
  padding: 24px 32px;
  min-width: 220px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.welfare-plan__title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #aa897b;
  margin-bottom: 8px;
}
.welfare-plan__desc {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
}
.welfare-note {
  text-align: center;
  color: #666;
  font-size: 0.95rem;
  margin-top: 16px;
}

/* レスポンシブ対応 */
@media (max-width: 800px) {
  .welfare-features, .welfare-plans {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .welfare-plan, .welfare-feature {
    min-width: 0;
    width: 90vw;
    max-width: 350px;
  }
  .welfare-hero__title {
    font-size: 1.5rem;
  }
}

/* --- 法人会員ページ用 --- */
.menu-hero__catch {
  margin-top: 1em;
  font-size: 1.1em;
  color: #fff;
  text-shadow: 0 2px 8px #7a8a86;
  text-align: center;
}



.welfare-about__row {
  display: flex;
  align-items: center; /* これで親要素で中央揃え */
  gap: 3em;
  justify-content: center;
  margin: 2em 0;
}
.welfare-about__icon img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
}
.welfare-about__card {
  background: #f6f8f7;
  border-radius: 16px;
  padding: 2em 1.5em;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 2px 12px rgba(152,167,163,0.08);
  /* display: flex; align-items: center; ←削除 */
}
@media (max-width: 900px) {
  .welfare-about__row {
    flex-direction: column;
    gap: 1.5em;
    margin: 1.5em 0;
  }
  .welfare-about__icon img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
  .welfare-about__card {
    max-width: 100%;
    padding: 1.2em 0.8em;
  }
}

.welfare-merits__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  justify-content: center;
  margin-bottom: 2em;
  padding: 0;
  list-style: none;
}
.welfare-merits__list li {
  flex: 1 1 260px;
  max-width: 300px;
  min-width: 220px;
}
.merit-card {
  background: #f6ecd9;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(152,167,163,0.10);
  padding: 1.5em 1em 1.2em 1em;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.merit-card img {
  width: 160px;
  object-fit: contain;
  margin-bottom: 0.7em;
}
.merit-card h4 {
  font-size: 1.1em;
  margin-bottom: 0.5em;
  color: #5a6a66;
  font-weight: bold;
}
.merit-card p {
  font-size: 0.98em;
  color: #444;
  flex: 1;
}

.welfare-plans__cards {
  display: flex;
  gap: 2em;
  justify-content: center;
  margin-bottom: 1.5em;
  flex-wrap: wrap;
  align-items: stretch;
}
.plan-card {
  background: #f6f8f7;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(152,167,163,0.10);
  padding: 2em 1.5em 1.5em 1.5em;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 260px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.plan-card__price {
  font-size: 1.3em;
  color: #98A7A3;
  font-weight: bold;
  margin: 0.7em 0 1em 0;
}
.plan-card__price span {
  font-size: 1.5em;
}
.plan-card ul {
  list-style: disc inside;
  text-align: left;
  margin: 0 auto;
  padding-left: 0;
  color: #444;
}
.plan-card--simple {
  background: #fff;
  border: 1.5px solid #98A7A3;
  height: 100%;
}
.welfare-note {
  text-align: center;
  color: #666;
  margin-bottom: 1.5em;
  font-size: 0.95em;
}
.welfare-contact {
  text-align: center;
  margin-bottom: 2em;
}
.welfare-contact .btn--line {
  background: #06c755;
  color: #fff;
  padding: 0.9em 2.5em;
  border-radius: 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.welfare-contact .btn--line:hover {
  background: #059e44;
}

/* レスポンシブ */
@media (max-width: 900px) {
  .welfare-about__card {
    flex-direction: column;
    text-align: center;
    padding: 1.5em 1em;
  }
  .welfare-about__icon {
    margin: 0 0 1em 0;
  }
  .welfare-merits__list {
    flex-direction: column;
    gap: 1em;
  }
  .welfare-plans__cards {
    flex-direction: column;
    gap: 1em;
  }
}

@media (max-width: 900px) {
  .welfare-about__icon,
  .welfare-about__icon img {
    margin-right: 0 !important;
    margin-bottom: 1.5em;
    width: 100% !important;
    max-width: 350px;
  }
}

.plan-card--gold {
  background: #fff5f8;
  border: 3px solid #e0b800;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(224,184,0,0.10);
  padding: 16px;
  max-width: 350px;
  margin: 0 auto 32px auto;
  position: relative;
}
.plan-card--gold .plan-card__price span {
  color: #d20000;
  font-size: 2.2rem;
  font-weight: 800;
}

.plan-card,
.plan-card--gold,
.plan-card--simple {
  min-width: 320px;
  max-width: 400px;
  min-height: 320px;
  box-sizing: border-box;
  padding: 2em 1.5em 1.5em 1.5em;
}

@media (max-width: 900px) {
  .welfare-plans__cards {
    flex-direction: column;
    gap: 1em;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .plan-card,
  .plan-card--gold,
  .plan-card--simple {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .welfare-merits__list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1em;
  }
  .merit-card {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

.welfare-contact {
  text-align: center;
}
.welfare-contact .btn {
  display: inline-block;
  float: none;
  margin-left: auto;
  margin-right: auto;
}

.welfare-catch-section {
  padding-bottom: 2em;
  background: #fff; /* 必要に応じて背景色を調整 */
  text-align: center;
}

.welfare-catch-copy {
  font-size: 1.3em;
  font-weight: bold;
  color: #d20000; /* 赤字 */
  margin-bottom: 1em;
  line-height: 1.7;
  display: block;
  position: relative;
  z-index: 1;
  background: none;
}
.welfare-catch-copy::before {
  content: none; /* 背景を消す */
}

.welfare-catch-images {
  display: flex;
  justify-content: center;
  gap: 2.5em;
}

.circle-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(152,167,163,0.10);
  background: #f6ecd9;
}
@media (max-width: 600px) {
  .welfare-catch-images {
    gap: 1.2em;
  }
  .circle-img {
    width: 120px;
    height: 120px;
  }
}

.img-caption {
  text-align: center;
  font-size: 0.95em;
  color: #888;
  margin-top: 0.3em;
  letter-spacing: 0.02em;
}

.item-info-text__main {
  margin-bottom: 2em; /* ここで余白を調整 */
}

.welfare-catch-container {
  max-width: 500px; /* コンテンツ幅を小さくして中央に配置 */
  margin: 0 auto;
}

.welfare-catch-desc {
  font-size: 1em;         /* 通常の本文サイズ */
  font-weight: normal;    /* 通常のウェイト */
  color: #444;
  line-height: 1.8;
  margin-bottom: 2em;
  text-align: left;       /* 左寄せ */
}

.welfare-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.welfare-checklist > li {
  margin-bottom: 1.2em;
  padding-left: 0;
}

.welfare-checklist__title {
  font-weight: bold;
  color: #4a5a56;
  display: block;
  margin-bottom: 1em;
  font-size: 1.08em;
  padding-top: 1.2em; /* 上に余白を追加 */
  border-top: 2px solid #e0e6e3; /* 上にボーダーを追加 */
}

.welfare-checklist__desc {
  font-size: 1em;
  color: #444;
  line-height: 1.7;
  text-align: left;
}

.welfare-checklist__subtitle {
  font-weight: bold;
  color: #4a5a56; /* より濃い色に変更 */
  margin-bottom: 0.2em;
  display: block;
  text-align: left;
}

.welfare-checklist__sublist {
  list-style: none;
  margin: 0.3em 0 0.5em 1.2em;
  padding: 0;
  text-align: left;
}

.welfare-checklist__sublist li {
  font-size: 0.98em;
  color: #555;
  margin-bottom: 0.2em;
  letter-spacing: 0.02em;
}

.welfare-checklist > li:first-child .welfare-checklist__title {
  border-top: none;   /* 最初のタイトルには線をつけない */
  padding-top: 0;
}

@media (max-width: 600px) {
  .section-title {
    font-size: 1.3em;
  }
}

@media (max-width: 600px) {
  .welfare-catch-section,
  .welfare-catch-container {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
}

.footer-company {
  font-size: 0.85em;   /* お好みで0.8emや0.9emなど */
  color: var(--text-gray);         /* 薄めのグレーにしたい場合 */
  line-height: 1.5;
}

@media (max-width: 900px) {
  .flow-card .flow-card__img {
    padding-top: 2.2em; /* ラベルの高さ分スペースを作る */
  }
}

@media (min-width: 900px) {
  .img-hover-link {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}

@media (max-width: 900px) {
  .welfare-about__card {
    max-width: 600px;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }
}

@media (max-width: 600px) {
  .container,
  .container > *:last-child,
  .welfare-catch-section,
  .privacy-back-btn,
  .footer {
    margin-bottom: 0 !important;
  }
}

.item-instagram-text {
  margin-bottom: 1.2em; /* テキストとボタンの間の余白 */
}

.item-instagram-info {
  text-align: center;
}

.item-instagram-btn .btn {
  display: inline-block;   /* インライン要素として中央寄せ可能に */
  margin: 0 auto;          /* 念のため中央寄せ */
}

/* ===== welfare.html専用 menu-hero 背景色 ===== */
.menu-hero.menu-hero--welfare {
  background: var(--hero-green);
}

/* ===== sitemap.html専用 menu-hero 背景色 ===== */
.menu-hero#sitemap {
  background: var(--primary-color);
  color: var(--text-gray);
}

/* ===== privacy.html専用 menu-hero 背景色 ===== */
.menu-hero#privacy {
  background: var(--primary-color);
  color: var(--text-gray);
}

/* ===== privacy.html 制定日テキスト ===== */
.privacy-section .privacy-date {
  font-size: 0.95em;
  color: #888;
}

/* ===== privacy.html トップページに戻るボタン ===== */
.privacy-return-btn .btn {
  background: #b89587;
  color: #fff;
  min-width: 220px;
}

/* ===== index.html専用 Welfareセクション中央寄せ ===== */
.welfare .container {
  text-align: center;
}

/* ===== index.html 店舗情報 Hot Pepper/LINEリンク色・下線 ===== */
.location__reserve .hotpepper-link {
  color: #e96b6b;
  text-decoration: underline;
}
.location__reserve .line-link {
  color: #00b900;
  text-decoration: underline;
}

/* ===== index.html Google Map iframe枠線なし ===== */
.location__map-group iframe {
  border: 0;
}

/* サービスセクションのレスポンシブ設定を強制適用 */
@media (max-width: 1024px) {
  .service__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .service__grid {
    grid-template-columns: 1fr;
  }
  
  .service__image {
    max-width: 300px;
    width: 100%;
  }
  
  .service__image img {
    object-fit: cover;
  }
  .menu-price-card__title {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 10px;
    padding: 0 0 2px 0;
  }
}

/* 1024px以下でボタンを中央揃えに */
@media (max-width: 1024px) {
  .service__item .btn {
    margin: 0 auto !important;
    display: block !important;
    text-align: center !important;
  }
}

.menu-cards.menu-cards--normal .menu-card {
  margin-bottom: 0px; /* 例：今より狭くしたい場合 */
}

/* オシャレなチェックマークスタイル */
.welfare-checklist__sublist li {
  position: relative;
  padding: 12px 16px 12px 30px;
  margin-bottom: 8px;
  background-color: #fef8e6;
  border-radius: 8px;
  color: #4a4a4a;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.welfare-checklist__sublist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #9b8c6c, #e6b1a0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(155, 140, 108, 0.3);
}

.welfare-checklist__sublist li::after {
  content: "✓";
  position: absolute;
  left: 3px;
  top: 0px;
  color: white;
  font-size: 12px;
  font-weight: bold;
  line-height: 18px;
}

/* ホバー効果 */
.welfare-checklist__sublist li:hover::before {
  background: linear-gradient(135deg, #e6b1a0, #9b8c6c);
  transform: scale(1.1);
  transition: all 0.3s ease;
}

/* items.html用のオシャレなチェックマークスタイル */
.flow-card__desc li {
  position: relative;
  padding: 12px 16px 12px 30px;
  margin-bottom: 8px;
  list-style: none;
  background-color: #fef8e6;
  border-radius: 8px;
  color: #4a4a4a;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.flow-card__desc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #9b8c6c, #e6b1a0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(155, 140, 108, 0.3);
}

.flow-card__desc li::after {
  content: "✓";
  position: absolute;
  left: 3px;
  top: 0px;
  color: white;
  font-size: 12px;
  font-weight: bold;
  line-height: 18px;
}

/* ホバー効果 */
.flow-card__desc li:hover::before {
  background: linear-gradient(135deg, #e6b1a0, #9b8c6c);
  transform: scale(1.1);
  transition: all 0.3s ease;
}

/* 500px以上でsample-skin-imgのサイズを制限 */
@media (min-width: 500px) {
  .sample-skin-img {
    max-width: 200px;
    width: 100%;
    height: auto;
  }
}

/* 500px～700pxの間でsample-skin-imgのサイズを調整 */
@media (min-width: 500px) and (max-width: 750px) {
  .sample-skin-img,
  .features-detail__block img.sample-skin-img {
    max-width: 65vw; /* 画面幅の65% */
    width: 65vw;
    height: auto;
    margin: 16px auto 24px auto;
  }
}

/* レスポンシブ表示時のカテゴリ分けの余白調整 */
@media (max-width: 750px) {
  .features-detail__serum-images picture {
    margin-bottom: 40px;
  }
  
  .features-detail__serum-images .sample-skin-img {
    margin-top: 20px;
  }
}

/* 1000px以上でabout__textのコンテンツ幅を広げる */
@media (min-width: 1000px) {
  .about .container {
    max-width: 1200px;
  }
  
  .about__text {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* 800px以上でボタンを横並びにする */
@media (min-width: 800px) {
  .menu__buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .menu__buttons-container .menu__button {
    margin: 0;
    width: auto;
    text-align: center;
  }
  
  .about__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .about__buttons .btn {
    margin: 0;
    width: 300px;
    text-align: center;
    min-width: 200px;
  }
}