/* ========================================
   LUXLINE Official Website Styles
   ======================================== */
/* ※ meta viewportに viewport-fit=cover を必ず指定してください */

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  padding-top: env(safe-area-inset-top, 0px);
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #333;
  background-color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

ul, ol {
  list-style: none;
}

/* Layout */
.l-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
.c-section-title {
  text-align: center;
  margin-bottom: 60px;
}

.c-section-title__en {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #971D28;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

.c-section-title__ja {
  display: block;
  font-size: 3.2rem;
  font-weight: 700;
  color: #333;
}

/* Buttons */
.c-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1.6rem;
}

.c-btn--primary {
  background: linear-gradient(135deg, #971D28 0%, #C41E3A 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(151, 29, 40, 0.3);
}

.c-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(151, 29, 40, 0.4);
}

.c-btn--secondary {
  background: #fff;
  color: #971D28;
  border: 2px solid #971D28;
}

.c-btn--secondary:hover {
  background: #971D28;
  color: #fff;
}

.c-btn-reserve {
  background: linear-gradient(135deg, #971D28 0%, #C41E3A 100%);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.4rem;
}

.c-btn-reserve:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(151, 29, 40, 0.3);
}

/* Header */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}

.l-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

.l-header__logo img {
  height: 50px;
  width: auto;
  max-width: 200px;
}

.l-header__list {
  display: flex !important;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
}

.l-header__list-item {
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: inline-block !important;
}

.l-header__list-item a {
  font-weight: 500;
  font-size: 1.4rem;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block !important;
  padding: 10px 15px;
  white-space: nowrap;
}

.l-header__list-item a:hover {
  color: #971D28;
}

.c-btn-reserve {
  background: #971D28;
  color: white !important;
  padding: 12px 24px !important;
  border-radius: 25px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  display: inline-block;
}

.c-btn-reserve:hover {
  background: #C41E3A;
  color: white !important;
}

.l-header__ham--area {
  display: none;
  cursor: pointer;
}

.l-header__ham {
  width: 30px;
  height: 20px;
  position: relative;
}

.l-header__ham span {
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  position: absolute;
  transition: all 0.3s ease;
}

.l-header__ham span:nth-child(1) { top: 0; }
.l-header__ham span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.l-header__ham span:nth-child(3) { bottom: 0; }

.l-header__ham--inner {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: #fff;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.l-header__ham--inner.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.l-header__ham--list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.l-header__ham--list .l-header__list-item {
  margin: 0;
  padding: 0;
}

.l-header__ham--list .l-header__list-item a {
  display: block;
  padding: 10px 0;
  font-size: 1.6rem;
  border-bottom: 1px solid #eee;
  text-decoration: none;
}

/* mv */
#mv {
  background-image: url(../images/mv-back-black.jpg);
  background-size: cover;
  background-position: center top;
  margin-top: 1px;
  padding-top: env(safe-area-inset-top, 0px);
}

.mv-content {
  width: 100%;
  margin: 0 auto;
  padding-top: 50%;
  padding-bottom: 2.8vw;
}

.mv-left {
  width: 69%;
  padding-left: 4.5vw;
}

.mv-copy span {
  display: block;
  width: fit-content;
  background-color: #fff;
  font-size: 5.2vw;
  color: #971D28;
  line-height: 1;
  padding: 1vw;
  padding-bottom: 1.1vw;
  border-radius: 8px;
  white-space: nowrap;
  font-weight: 700;
}

.mv-copy span+span {
  margin-top: 1.3vw;
}

.mv-txt {
  font-size: 2.2vw;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 1.5vw;
}

.mv-txt .red {
  color: #971D28;
}

@media screen and (max-width:751px) {
  #mv {
    background-image: url(../images/mv-back-black-sp.jpg);
    background-size: cover;
    background-position: center top;
    height: 100%;
    margin-top: 6vw;
    min-height: 150vw;
    background-repeat: no-repeat;
    padding-top: env(safe-area-inset-top, 0px);
  }

  .mv-content {
    width: 100%;
    margin: 0 auto;
    padding-top: 0vw;
    padding-bottom: 2.8vw;
  }

  .mv-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 20vw;
    padding-bottom: 9vw;
    min-height: 100vw;
  }

  .mv-copy span {
    font-size: 8.2vw;
    padding-bottom: 1.1vw;
    border-radius: 0.8vw;
  }

  .mv-copy span+span {
    margin-top: 2vw;
  }

  .mv-txt {
    font-size: 3.5vw;
    margin-top: 5vw;
    text-shadow:
      0 0 5px #fff,
      0 0 10px #fff,
      0 0 15px #fff,
      0 0 20px #fff;
  }

  .mv-badges {
    margin-top: auto;
    height: fit-content;
  }
}

/* Service Section */
.p-service {
  padding: 80px 0;
  background: #fff;
}

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

.p-service__intro-text {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

.p-service__features {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 80px;
}

.p-service__feature {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-service__feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.p-service__feature-image {
  flex: 0 0 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.p-service__feature-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.p-service__feature:hover .p-service__feature-image img {
  transform: scale(1.05);
}

.p-service__feature-content {
  flex: 1;
}

.p-service__feature-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.4;
}

.p-service__feature-number {
  display: inline-block;
  background: linear-gradient(135deg, #971D28, #C41E3A);
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 25px;
  margin-right: 15px;
  margin-bottom: 10px;
}

.p-service__feature-text {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #666;
}

.p-service__flow {
  margin-bottom: 80px;
}

.p-service__flow-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
}

.p-service__flow-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.p-service__flow-step {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 40px;
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.p-service__flow-step:hover {
  border-color: #971D28;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.p-service__flow-image {
  flex: 0 0 200px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.p-service__flow-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.p-service__flow-step:hover .p-service__flow-image img {
  transform: scale(1.05);
}

.p-service__flow-icon {
  flex: 0 0 200px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #971D28 0%, #C41E3A 100%);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.p-service__flow-icon i {
  font-size: 4rem;
  color: white;
  transition: transform 0.3s ease;
}

.p-service__flow-step:hover .p-service__flow-icon {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.p-service__flow-step:hover .p-service__flow-icon i {
  transform: scale(1.1);
}

.p-service__flow-content {
  flex: 1;
}

.p-service__flow-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #971D28 0%, #C41E3A 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}

.p-service__flow-step h4 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.p-service__flow-step p {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #666;
}

.p-service__symptoms {
  margin-bottom: 0;
}

.p-service__symptoms-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
}

.p-service__symptoms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.p-service__symptom {
  padding: 15px 20px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 25px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
  transition: all 0.3s ease;
}

.p-service__symptom:hover {
  background: #971D28;
  color: #fff;
  border-color: #971D28;
}

.p-service__cta {
  text-align: center;
}

/* Shops Section */
.p-shops {
  padding: 80px 0;
  background: #f8f9fa;
}

.p-shops__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.p-shops__shop {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.p-shops__shop:hover {
  transform: translateY(-5px);
}

.p-shops__shop-image {
  height: 200px;
  overflow: hidden;
}

.p-shops__shop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.p-shops__shop:hover .p-shops__shop-image img {
  transform: scale(1.05);
}

.p-shops__shop-content {
  padding: 25px;
}

.p-shops__shop-name {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.p-shops__shop-address {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 5px;
}

.p-shops__shop-hours {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 20px;
}

.p-shops__shop-buttons {
  display: flex;
  gap: 10px;
}

.p-shops__shop-buttons .c-btn {
  flex: 1;
  padding: 12px 20px;
  font-size: 1.4rem;
}

/* Voice Section */
.p-voice {
  padding: 80px 0;
  background: #fff;
}

.p-voice__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.p-voice__item {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 30px;
  transition: transform 0.3s ease;
  text-align: center;
}

.p-voice__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.p-voice__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-voice__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #971D28;
  margin-bottom: 15px;
  line-height: 1.4;
}

.p-voice__item:hover {
  transform: translateY(-3px);
}

.p-voice__text {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  font-style: italic;
}

.p-voice__name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #971D28;
}

.p-voice__cta {
  text-align: center;
}

/* FAQ Section (共通) */
.p-faq {
  padding: 80px 0;
  background: #fff;
}

.p-faq__list {
  margin-bottom: 60px;
}

.faq-item {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden; /* はみ出し防止 */
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
  border-color: #971D28;
  box-shadow: 0 4px 20px rgba(151, 29, 40, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 25px 25px;
  min-height: 60px;
  background: #f8f9fa;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #e9ecef;
}

.faq-question h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.5;
  flex: 1;
  padding-right: 20px;
}

.faq-question i {
  font-size: 1.4rem;
  color: #971D28;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* display を使わず max-height で開閉。padding/opacity もアニメ */
.faq-answer {
  background: #f8f9fa;
  padding: 0 25px;          /* 閉時の左右パディング */
  max-height: 0;            /* 高さ制御 */
  overflow: hidden;         /* 中身のはみ出し防止 */
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.2s ease;
}

.faq-item.active .faq-answer {
  /* 開時は JS で max-height を実高さに設定。opacity/padding はCSSでON */
  padding: 20px 25px;
  opacity: 1;
}

.faq-answer p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #555;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  white-space: normal;
}

/* News Section */
.p-news {
  padding: 80px 0;
  background: #f8f9fa;
}

.p-news__list {
  margin-bottom: 60px;
}

.p-news__item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #e9ecef;
  transition: background-color 0.3s ease;
}

.p-news__item:hover {
  background-color: #fff;
  border-radius: 8px;
  padding-left: 20px;
  padding-right: 20px;
}

.p-news__date {
  font-size: 1.4rem;
  color: #666;
  min-width: 100px;
}

.p-news__title {
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
}

.p-news__cta {
  text-align: center;
}

/* Footer */
.l-footer {
  background: #333;
  color: #fff;
  padding: 60px 0 20px;
}

.l-footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.l-footer__title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.l-footer__description {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #ccc;
}

.l-footer__subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.l-footer__list li {
  margin-bottom: 10px;
}

.l-footer__list a {
  font-size: 1.4rem;
  color: #ccc;
  transition: color 0.3s ease;
}

.l-footer__list a:hover {
  color: #fff;
}

.l-footer__bottom {
  border-top: 1px solid #555;
  padding-top: 20px;
  text-align: center;
}

.l-footer__copyright {
  font-size: 1.2rem;
  color: #999;
}

/* Page Header */
.p-page-header {
  padding: 80px 0;
  background: linear-gradient(135deg, #971D28 0%, #C41E3A 100%);
  color: white;
  text-align: center;
}

.p-page-header__title {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.p-page-header__subtitle {
  font-size: 1.8rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.p-page-header__description {
  font-size: 1.6rem;
  opacity: 0.8;
}

/* CTA Section */
.p-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #971D28 0%, #C41E3A 100%);
  color: white;
  text-align: center;
}

.p-cta__content h2 {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.p-cta__content p {
  font-size: 1.8rem;
  margin-bottom: 4rem;
  opacity: 0.9;
}

.p-cta__buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .l-header__list.pc {
    display: none;
  }

  .l-header__ham--area {
    display: block;
  }

  .l-header__logo img {
    height: 40px;
  }

  .l-header__inner {
    flex-direction: row;
  }

  .p-mv__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .p-mv__title-main {
    font-size: 3.6rem;
  }

  .p-mv__title-sub {
    font-size: 2rem;
  }

  .p-mv__buttons {
    flex-direction: column;
    align-items: center;
  }

  .p-service__features {
    gap: 40px;
  }

  .p-service__feature {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 30px 20px;
  }

  .p-service__feature-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .p-service__feature-image img {
    height: 180px;
  }

  .p-service__feature-title {
    font-size: 2rem;
  }

  .p-service__feature-number {
    font-size: 1.6rem;
    padding: 6px 16px;
  }

  .p-service__feature-text {
    font-size: 1.4rem;
  }

  .p-shops__grid {
    grid-template-columns: 1fr;
  }

  .p-voice__grid {
    grid-template-columns: 1fr;
  }

  .l-footer__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .c-section-title__ja {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .l-container {
    padding: 0 15px;
  }

  .l-header__inner {
    padding: 0 15px;
  }

  .l-header__list-item a {
    font-size: 1.2rem;
    padding: 8px 10px;
  }

  .c-btn-reserve {
    padding: 10px 20px !important;
    font-size: 1.2rem;
  }

  .p-mv__title-main {
    font-size: 3rem;
  }

  .p-mv__title-sub {
    font-size: 1.8rem;
  }

  .p-mv__text {
    font-size: 1.6rem;
  }

  .c-section-title__ja {
    font-size: 2.4rem;
  }

  .p-service__feature {
    padding: 25px 15px;
    gap: 25px;
  }

  .p-service__feature-image img {
    height: 160px;
  }

  .p-service__feature-title {
    font-size: 1.8rem;
  }

  .p-service__feature-number {
    font-size: 1.4rem;
    padding: 5px 12px;
  }

  .p-service__feature-text {
    font-size: 1.3rem;
  }

  .p-service__flow-step {
    flex-direction: column;
    text-align: center;
    gap: 25px;
    padding: 30px 20px;
  }

  .p-service__flow-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

  .p-service__flow-image img {
    height: 180px;
  }

  .p-service__flow-step h4 {
    font-size: 1.8rem;
  }

  .p-service__flow-step p {
    font-size: 1.4rem;
  }

  .p-service__flow-icon {
    flex: 0 0 auto;
    width: 100%;
    max-width: 250px;
    height: 120px;
    margin: 0 auto;
  }

  .p-service__flow-icon i {
    font-size: 3rem;
  }

  .p-shops__shop-content {
    padding: 20px;
  }

  .p-voice__item {
    padding: 25px;
  }

  .p-voice__avatar {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .p-voice__title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .faq-item.active .faq-answer {
    /* JSでmax-height制御するため display指定はしない */
  }

  .p-page-header {
    padding: 80px 0;
  }

  .p-page-header__title {
    font-size: 3.2rem;
  }

  .p-page-header__subtitle {
    font-size: 1.6rem;
  }

  .p-cta {
    padding: 80px 0;
  }

  .p-cta__content h2 {
    font-size: 2.8rem;
  }

  .p-cta__content p {
    font-size: 1.6rem;
  }

  .p-cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .p-shop-intro,
  .p-shop-info,
  .p-access,
  .p-staff,
  .p-shop-features,
  .p-shop-voice {
    padding: 80px 0;
  }

  .p-shop-info__details {
    margin: 0 15px;
  }

  .p-shop-info__details th,
  .p-shop-info__details td {
    padding: 15px;
    font-size: 1.4rem;
  }

  .p-shop-info__details th {
    font-size: 1.3rem;
  }

  @media (max-width: 480px) {
    .p-shop-info__details th,
    .p-shop-info__details td {
      padding: 12px;
      font-size: 1.2rem;
    }

    .p-shop-info__details th {
      font-size: 1.1rem;
    }
  }
}

/* Utility Classes */
.sp {
  display: none !important;
}

.pc {
  display: block !important;
}

@media (max-width: 768px) {
  .sp {
    display: block !important;
  }

  .pc {
    display: none !important;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
  outline: 2px solid #971D28;
  outline-offset: 2px;
}

/* 麻布十番店専用メインビジュアル */
.p-mv--azabujuban {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: #000;
  overflow: hidden;
  padding-top: 0;
}

/* 店舗ページ共通セクション */
.p-shop-intro,
.p-shop-info,
.p-access,
.p-staff,
.p-shop-features,
.p-shop-voice {
  padding: 100px 0;
}

.p-shop-intro {
  background: #fff;
}

.p-shop-info {
  background: #f8f9fa;
}

.p-shop-info__details {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.p-shop-info__details table {
  width: 100%;
  border-collapse: collapse;
}

.p-shop-info__details th {
  background: #971D28;
  color: white;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid #C41E3A;
}

.p-shop-info__details td {
  padding: 20px;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #333;
  border-bottom: 1px solid #e9ecef;
  vertical-align: top;
}

.p-shop-info__details tr:last-child td {
  border-bottom: none;
}

.p-shop-info__details tr:hover {
  background: #f8f9fa;
}

.p-shop-info__details a {
  color: #971D28;
  text-decoration: none;
  transition: color 0.3s ease;
}

.p-shop-info__details a:hover {
  color: #C41E3A;
  text-decoration: underline;
}

.p-access {
  background: #fff;
}

.p-staff {
  background: #f8f9fa;
}

.p-shop-features {
  background: #fff;
}

.p-shop-voice {
  background: #f8f9fa;
}

/* 店舗の特徴セクション */
.p-shop-features {
  padding: 100px 0;
  background: #fff;
}

.p-shop-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.p-shop-features__feature {
  text-align: center;
  padding: 40px 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.p-shop-features__feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(151, 29, 40, 0.15);
  border-color: #971D28;
}

.p-shop-features__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #971D28 0%, #C41E3A 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.4rem;
  transition: transform 0.3s ease;
}

.p-shop-features__feature:hover .p-shop-features__icon {
  transform: scale(1.1);
}

.p-shop-features__feature h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.4;
}

.p-shop-features__feature p {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* 店舗の特徴 レスポンシブ対応 */
@media (max-width: 768px) {
  .p-shop-features {
    padding: 80px 0;
  }

  .p-shop-features__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  .p-shop-features__feature {
    padding: 30px 20px;
  }

  .p-shop-features__icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .p-shop-features__feature h3 {
    font-size: 1.8rem;
  }

  .p-shop-features__feature p {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .p-shop-features {
    padding: 60px 0;
  }

  .p-shop-features__grid {
    gap: 25px;
    margin-top: 30px;
  }

  .p-shop-features__feature {
    padding: 25px 15px;
  }

  .p-shop-features__icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .p-shop-features__feature h3 {
    font-size: 1.6rem;
  }

  .p-shop-features__feature p {
    font-size: 1.3rem;
  }
}

/* azabujuban.html専用スタイル */
.p-mv--azabujuban {
  position: relative;
  margin-top: 40px;
  background: #fff;
  height: 400px;
  overflow: hidden;
}

.p-mv--azabujuban .p-mv__image {
  width: 100%;
  height: 100%;
}

.p-mv--azabujuban .p-mv__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-shop-intro {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.p-shop-intro__content {
  max-width: 800px;
  margin: 0 auto;
}

.p-shop-intro__title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #971D28;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.p-shop-intro__description {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 3rem;
}

.p-shop-intro__buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.p-shop-intro__buttons .c-btn {
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* azabujuban.html レスポンシブ対応 */
@media (max-width: 768px) {
  .p-mv--azabujuban {
    height: 300px;
    margin-top: 10px;
  }

  .p-shop-intro {
    padding: 60px 0;
  }

  .p-shop-intro__title {
    font-size: 2.4rem;
  }

  .p-shop-intro__description {
    font-size: 1.6rem;
  }

  .p-shop-intro__buttons {
    flex-direction: column;
    align-items: center;
  }

  .p-shop-intro__buttons .c-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .p-mv--azabujuban {
    height: 250px;
  }

  .p-shop-intro {
    padding: 40px 0;
  }

  .p-shop-intro__title {
    font-size: 2rem;
  }

  .p-shop-intro__description {
    font-size: 1.4rem;
  }
}

.p-mv--azabujuban {
  background-image: url(../images/shop-azabujuban-main.jpg);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-top: 40px;
}

.p-mv--azabujuban::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

.p-mv--azabujuban .p-mv__content {
  position: relative;
  z-index: 2;
  width: 100%;
  color: white;
  text-align: center;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 100%;
  padding-bottom: 5vh;
}

.p-mv--azabujuban .p-mv__copy span {
  display: block;
  width: fit-content;
  background-color: #fff;
  font-size: 5.2vw;
  color: #971D28;
  line-height: 1;
  padding: 1vw;
  padding-bottom: 1.1vw;
  border-radius: 8px;
  white-space: nowrap;
  font-weight: 700;
  margin-bottom: 1.3vw;
}

.p-mv--azabujuban .p-mv__main-title {
  font-size: 8vw;
  font-weight: 900;
  color: white;
  margin-top: 3vw;
  margin-bottom: 4vw;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

/* 麻布十番店メインビジュアル レスポンシブ対応 */
@media (max-width: 768px) {
  .p-mv--azabujuban {
    background-image: url(../images/shop-azabujuban-main-sp.jpg);
    background-size: 100% 100%;
    background-position: center;
    min-height: 100vh;
    background-repeat: no-repeat;
    margin-top: 10px;
  }

  .p-mv--azabujuban .p-mv__content {
    padding: 0;
    text-align: center;
    padding-bottom: 10vh;
  }

  .p-mv--azabujuban .p-mv__copy span {
    font-size: 6vw;
    padding: 1.5vw;
    border-radius: 1vw;
    margin-bottom: 2vw;
    text-align: center;
  }

  .p-mv--azabujuban .p-mv__main-title {
    font-size: 10vw;
    margin-top: 4vw;
    margin-bottom: 6vw;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .p-mv--azabujuban {
    min-height: 100vh;
  }

  .p-mv--azabujuban .p-mv__content {
    padding-bottom: 8vh;
  }

  .p-mv--azabujuban .p-mv__copy span {
    font-size: 5.5vw;
    padding: 1.2vw;
  }

  .p-mv--azabujuban .p-mv__main-title {
    font-size: 9vw;
    margin-top: 3vw;
    margin-bottom: 5vw;
  }
}

/* スタッフ紹介セクション */
.p-staff__content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.p-staff__member {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  background: white;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.p-staff__photo {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.p-staff__info {
  flex: 1;
}

.p-staff__info h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #971D28;
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.p-staff__info p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.5rem;
}

.p-staff__info p:last-child {
  margin-bottom: 0;
}

/* スタッフ紹介 レスポンシブ対応 */
@media (max-width: 768px) {
  .p-staff__member {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    padding: 2rem;
  }

  .p-staff__photo {
    width: 150px;
    height: 150px;
  }

  .p-staff__info h3 {
    font-size: 2rem;
  }

  .p-staff__info p {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .p-staff__content {
    gap: 3rem;
  }

  .p-staff__member {
    padding: 1.5rem;
  }

  .p-staff__photo {
    width: 120px;
    height: 120px;
  }

  .p-staff__info h3 {
    font-size: 1.8rem;
  }

  .p-staff__info p {
    font-size: 1.3rem;
  }
}

/* 施術の特徴セクション */
.p-treatment-intro {
  padding: 60px 0;
  background: #fff;
}

.p-treatment-intro__content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.p-treatment-intro__title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #971D28;
  margin-bottom: 3rem;
  line-height: 1.4;
}

.p-treatment-intro__description {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 0;
}

/* 施術の特徴 レスポンシブ対応 */
@media (max-width: 768px) {
  .p-treatment-intro {
    padding: 50px 0;
  }

  .p-treatment-intro__title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }

  .p-treatment-intro__description {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .p-treatment-intro {
    padding: 40px 0;
  }

  .p-treatment-intro__title {
    font-size: 2rem;
  }

  .p-treatment-intro__description {
    font-size: 1.4rem;
  }
}

/* お客様の声ページ専用スタイル */
.p-voice-list {
  padding: 80px 0;
  background: #fff;
}

.p-voice-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-voice-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.p-voice-item__content {
  padding: 3rem;
}

.p-voice-item__header {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.p-voice-item__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.p-voice-item__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-voice-item__info {
  flex: 1;
}

.p-voice-item__name {
  font-size: 2rem;
  font-weight: 700;
  color: #971D28;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.p-voice-item__symptom {
  font-size: 1.6rem;
  color: #666;
  font-weight: 500;
  margin-bottom: 0;
}

.p-voice-item__text {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #971D28;
}

.p-voice-item__text p {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

/* お客様の声ページ レスポンシブ対応 */
@media (max-width: 768px) {
  .p-voice-list {
    padding: 60px 0;
  }

  .p-voice-item__content {
    padding: 2rem;
  }

  .p-voice-item__header {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .p-voice-item__avatar {
    width: 70px;
    height: 70px;
  }

  .p-voice-item__name {
    font-size: 1.8rem;
  }

  .p-voice-item__symptom {
    font-size: 1.4rem;
  }

  .p-voice-item__text {
    padding: 1.5rem;
  }

  .p-voice-item__text p {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .p-voice-list {
    padding: 40px 0;
  }

  .p-voice-item {
    margin-bottom: 2rem;
  }

  .p-voice-item__content {
    padding: 1.5rem;
  }

  .p-voice-item__avatar {
    width: 60px;
    height: 60px;
  }

  .p-voice-item__name {
    font-size: 1.6rem;
  }

  .p-voice-item__symptom {
    font-size: 1.3rem;
  }

  .p-voice-item__text {
    padding: 1.2rem;
  }

  .p-voice-item__text p {
    font-size: 1.3rem;
  }
}

/* FAQページ専用スタイル（共通と整合） */
.p-faq-search {
  padding: 40px 0;
  background: #f8f9fa;
}

.p-faq-search__box {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.p-faq-search__input {
  width: 100%;
  padding: 1.5rem 5rem 1.5rem 2rem;
  border: 2px solid #e9ecef;
  border-radius: 50px;
  font-size: 1.6rem;
  background: #fff;
  transition: border-color 0.3s ease;
}

.p-faq-search__input:focus {
  outline: none;
  border-color: #971D28;
}

.p-faq-search__button {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #971D28;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
}

.p-faq-categories {
  padding: 80px 0;
  background: #fff;
}

.p-faq-category {
  margin-bottom: 6rem;
}

.p-faq-category:last-child {
  margin-bottom: 0;
}

.p-faq-category__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #971D28;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.p-faq-category__title i {
  font-size: 2rem;
}

.p-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* ここでも overflow: hidden を保持して整合を取る */
.faq-item {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  border-color: #971D28;
  box-shadow: 0 4px 12px rgba(151, 29, 40, 0.1);
}

.faq-question {
  background: #fff;
  padding: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 60px;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

.faq-question i {
  color: #971D28;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* display は使用しない。max-height + opacity で統一 */
.faq-answer {
  background: #f8f9fa;
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.2s ease;
}

.faq-item.active .faq-answer {
  padding: 2rem;
  opacity: 1;
}

.faq-answer p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
  overflow: visible;
}

.faq-answer a {
  color: #971D28;
  text-decoration: underline;
}

.faq-answer a:hover {
  text-decoration: none;
}

.p-contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #971D28 0%, #C41E3A 100%);
  color: white;
}

.p-contact__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.p-contact__content h2 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.p-contact__content p {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.p-contact__buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.p-contact__buttons .c-btn {
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* FAQページ レスポンシブ対応 */
@media (max-width: 768px) {
  .p-faq-search {
    padding: 30px 0;
  }

  .p-faq-search__input {
    padding: 1.2rem 4rem 1.2rem 1.5rem;
    font-size: 1.4rem;
  }

  .p-faq-categories {
    padding: 60px 0;
  }

  .p-faq-category {
    margin-bottom: 4rem;
  }

  .p-faq-category__title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .faq-question {
    padding: 1.5rem;
    align-items: flex-start;
    min-height: 50px;
  }

  .faq-question h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    padding-right: 15px;
  }

  .faq-answer p {
    font-size: 1.3rem;
  }

  .p-contact {
    padding: 60px 0;
  }

  .p-contact__content h2 {
    font-size: 2.4rem;
  }

  .p-contact__content p {
    font-size: 1.6rem;
  }

  .p-contact__buttons {
    flex-direction: column;
    align-items: center;
  }

  .p-contact__buttons .c-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .p-faq-search {
    padding: 20px 0;
  }

  .p-faq-categories {
    padding: 40px 0;
  }

  .p-faq-category__title {
    font-size: 1.8rem;
  }

  .faq-question {
    padding: 1.2rem;
    align-items: flex-start;
    min-height: 45px;
  }

  .faq-question h3 {
    font-size: 1.3rem;
    line-height: 1.4;
    padding-right: 12px;
  }

  .faq-answer p {
    font-size: 1.2rem;
  }

  .p-contact {
    padding: 40px 0;
  }

  .p-contact__content h2 {
    font-size: 2rem;
  }

  .p-contact__content p {
    font-size: 1.4rem;
  }
}

@media (max-width: 751px) {
  .p-mv--azabujuban {
    min-height: 40vh !important;
    height: auto !important;
    background-size: cover !important;
    background-position: center top !important;
  }
  .p-mv__image img {
    width: 100% !important;
    height: auto !important;
    max-height: 40vh !important;
    object-fit: cover !important;
    display: block !important;
  }
}