@charset "utf-8";

/*
  Theme Name: maintenanceyoga
  Theme URL: テーマのサイトのURI
  */



.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

.logo-image {
  height: 50px;
  width: auto;
}

.site-title-text {
  font-family: 'Lavishly Yours', cursive;
  font-size: 44px;
  color: #3A607F;
  line-height: 1;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: white;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}

/* ハンバーガーメニュー用チェックボックス*/
.nav-toggle {
  display: none;
}

/* ハンバーガーアイコンのラベル */
.nav-toggle-label {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background-color: #333;
  height: 3px;
  width: 100%;
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.nav-toggle-label span::before {
  content: "";
  top: -8px;
}
.nav-toggle-label span::after {
  content: "";
  top: 8px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
  padding: 0;
  margin: 0;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  padding: 8px 0;
  display: block;
}
.main-nav a:hover {
  color: #3A607F;
}

/* ==============================
   レスポンシブ対応
============================== */
@media (max-width: 768px) {
  .site-header {
    padding: 15px 20px;
  }

  .nav-toggle-label {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    gap: 0;
  }

  .main-nav li {
    width: 100%;
  }
  
  .main-nav a {
    padding: 15px 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #f0f0f0;
  }
  .main-nav li:last-child a {
      border-bottom: none;
  }

  .nav-toggle:checked ~ .main-nav {
    max-height: 500px;
  }

  .nav-toggle:checked ~ .nav-toggle-label span {
    background-color: transparent;
  }
  .nav-toggle:checked ~ .nav-toggle-label span::before {
    transform: rotate(45deg);
    top: 0;
  }
  .nav-toggle:checked ~ .nav-toggle-label span::after {
    transform: rotate(-45deg);
    top: 0;
  }

  .site-logo {
    margin-bottom: 0;
  }
}

/* ==============================
  ヒーローセクション (基本スタイル)
============================== */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 80px 60px;
  background: radial-gradient(ellipse at left top, #E1FFDF 0%, #8DD2DA 37%, #92D9E1 100%);
  color: white;
  position: relative;
  overflow: hidden;
  font-family: 'Noto Sans JP', sans-serif;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  background-repeat: no-repeat;
  z-index: 1;
  background-color: transparent;
  bottom: -25px;
  height: 121px;
  background-image: url('images/wave-bottom-white.svg');
  background-size: 100% 100%;
}

.hero:not(.hero-pricing) {
  padding-bottom: calc(121px + 60px - 1px);
}
.hero-pricing {
  padding-bottom: calc(100px + 60px);
}

.hero-text,
.hero-image {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: 25px;
  line-height: 1.4;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-family: 'Noto Sans JP', sans-serif; 
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 400;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  background-color: white;
}

.btn-phone {
  color: #92D9E1;
  border-color: #92D9E1;
}

.btn-line {
  color: #00B900;
  border-color: #00B900;
}

.btn-instagram {
  color: #E34E4E;
  border-color: #E34E4E;
}

.btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.hero-image {
  flex: 1;
  text-align: right;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

/* レスポンシブスタイル */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 60px;
    overflow: hidden;
    position: relative;
  }

  /* モバイルでの白い波 */
  .hero:not(.hero-pricing)::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    background-image: url('images/wave-bottom-white.svg');
    height: 70px; 
    background-size: 100% 100%;
    background-repeat: no-repeat; 
    z-index: 1;
    background-color: transparent;
  }

  .hero:not(.hero-pricing) {
    padding-bottom: calc(80px + 40px);
  }

  .hero-text,
  .hero-image {
    position: relative;
    z-index: 2;
  }
  
  .hero-text {
    order: 2;
  }

  .hero-image {
    order: 1;
    text-align: center;
    margin-bottom: 30px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

/* ==============================
  headspa_herosection
============================== */
.headspa { 
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 80px 60px;
  background: radial-gradient(ellipse at left top, #E1FFDF 0%, #8DD2DA 37%, #92D9E1 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding-bottom: calc(121px + 60px - 1px);
  font-family: 'Noto Sans JP', sans-serif;
}

.headspa-text h1 {
  font-family: 'Inter', sans-serif;
  font-size: 25px;
  line-height: 1.4;
  margin-bottom: 20px;
  font-weight: 700;
}

.headspa-text p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 400;
}

.headspa-text,
.headspa-image {
  position: relative;
  z-index: 2;
}

.headspa-image {
  flex: 1;
  text-align: right;
}

.headspa-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

/* PC版の波のスタイル */
.headspa::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  background-repeat: no-repeat;
  z-index: 1;
  background-color: transparent;
  bottom: -25px;
  height: 121px;
  background-image: url('images/wave-bottom-white.svg');
  background-size: 100% 100%;
}

/* ==============================
  レスポンシブスタイル for .headspa
============================== */
@media (max-width: 768px) {
  .headspa {
    flex-direction: column;
    text-align: center;
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: calc(70px + 40px);
  }

  /* SP版の波のスタイル */
  .headspa::after {
    height: 70px;
  }

  .headspa-text { 
    order: 2;
  }

  .headspa-text h1 {
    font-family: 'Noto Sans JP', sans-serif;
  }
  
  .headspa-text p {
    font-family: 'Noto Sans JP', sans-serif;
  }

  .headspa-image {
    order: 1;
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
    max-width: none;
    flex: none;
  }

  .headspa-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
  }

  .headspa-text .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

/* ==============================
  blog_herosection
============================== */
.blog { 
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 80px 60px;
  background: radial-gradient(ellipse at left top, #E1FFDF 0%, #8DD2DA 37%, #92D9E1 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding-bottom: calc(121px + 60px - 1px);
  font-family: 'Noto Sans JP', sans-serif;
}

.blog-text h1 {
  font-family: 'Inter', sans-serif; 
  font-size: 25px;
  line-height: 1.4;
  margin-bottom: 20px;
  font-weight: 700;
}

.blog-text p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 400;
}

.blog-text,
.blog-image {
  position: relative;
  z-index: 2;
}

.blog-image {
  flex: 1;
  text-align: right;
}

.blog-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

/* PC版の波のスタイル */
.blog::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  background-repeat: no-repeat;
  z-index: 1;
  background-color: transparent;
  bottom: -25px;
  height: 121px;
  background-image: url('images/wave-bottom-white.svg');
  background-size: 100% 100%;
}

/* ==============================
  レスポンシブスタイル for blog
============================== */
@media (max-width: 768px) {
  .blog {
    flex-direction: column;
    text-align: center;
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: calc(70px + 40px);
  }

  /* SP版の波のスタイル */
  .blog::after {
    height: 70px;
  }

  .blog-text { 
    order: 2;
  }

  .blog-text h1 {
    font-family: 'Noto Sans JP', sans-serif; 
  }
  
  .blog-text p {
    font-family: 'Noto Sans JP', sans-serif; 
  }

  .blog-image {
    order: 1;
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
    max-width: none;
    flex: none;
  }

  .blog-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
  }

  .blog-text .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

/* ==============================
  price_herosection
============================== */
.price { 
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 80px 60px;
  background: radial-gradient(ellipse at left top, #E1FFDF 0%, #8DD2DA 37%, #92D9E1 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding-bottom: calc(121px + 60px - 1px);
  font-family: 'Noto Sans JP', sans-serif;
}

.price-text h1 {
  font-family: 'Inter', sans-serif; 
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 20px;
  font-weight: 700;
}

.price-text p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 400;
}

.price-text,
.price-image {
  position: relative;
  z-index: 2;
}

.price-image {
  flex: 1;
  text-align: right;
}

.price-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

/* PC版の波のスタイル */
.price::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  background-repeat: no-repeat;
  z-index: 1;
  background-color: transparent;
  bottom: -25px;
  height: 121px;
  background-image: url('images/wave-bottom-eaf6ff.svg'); 
  background-size: 100% 100%;
}

/* ==============================
  レスポンシブスタイル for price
============================== */
@media (max-width: 768px) {
  .price {
    flex-direction: column;
    text-align: center;
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: calc(70px + 40px);
  }

  /* SP版の波のスタイル */
  .price::after {
    height: 70px;
  }

  .price-text { 
    order: 2;
  }

  .price-text h1 {
    font-family: 'Noto Sans JP', sans-serif;
  }
  
  .price-text p {
    font-family: 'Noto Sans JP', sans-serif;
  }

  .price-image {
    order: 1;
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
    max-width: none;
    flex: none;
  }

  .price-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
  }

  .price-text .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

/* ==============================
  コンセプトセクション
============================== */
.concept { 
  background-color: white;
  padding-top: 100px;
  padding-bottom: 100px;
  color: #000;
}

.concept-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; 
  gap: 40px;
}

.concept-text {
  flex: 1;
  min-width: 280px;
}

.concept-image {
  flex: 1;
  min-width: 280px;
}

.concept-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
}

/* PC版タイトルスタイル */
.concept .concept-title {
  color: #3A607F;
  font-family: "Lavishly Yours", cursive;
  font-size: 61px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  margin-top: 0;
  margin-bottom: 30px;
}

.concept p {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 23px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.8; 
  letter-spacing: -0.92px;
  margin-top: 0;
  margin-bottom: 1em;
  text-align: left;
}
.concept p:last-child {
    margin-bottom: 0;
}

/* タブレットレスポンシブ対応 */
@media (max-width: 992px) { 
  .concept-container {
    gap: 30px;
  }
  .concept .concept-title {
    font-size: 52px;
  }
  .concept p {
    font-size: 20px;
  }
}

/* spレスポンシブ対応 */
@media (max-width: 768px) {
  .concept { 
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .concept-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .concept-text {
    width: 100%; 
    text-align: left;
    margin-bottom: 30px;
  }
  
  .concept-image {
    width: 100%;
    max-width: 450px;
  }

  /* SP版タイトルスタイル - HTMLのクラス名に合わせ、!importantで強制 */
  .concept .concept-title {
    font-size: 42px;
    text-align: left !important;
    margin-bottom: 20px;
    width: 100% !important;
  }

  .concept .section-title {
      text-align: left !important;
      width: 100% !important;
  }

  .concept p {
    font-size: 18px;
    line-height: 1.7;
    text-align: left;
  }
}

/* ==============================
  STEPセクション
============================== */
.steps { 
  padding: 80px 0;
}

.step-list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap; 
}

.step {
  width: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-circle {
  width: 310px;
  height: 400px;
  flex-shrink: 0;
  border-radius: 180px;
  background: linear-gradient(180deg, #E5EEEA 0%, #F9F4E5 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  color: #3A607F;
}

.step-circle img {
  width: 209px;
  height: auto;
  display: block;
}

.step-number {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.2;
  color: #3A607F;
}

.step-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  line-height: 1.4;
  color: #3A607F;
  text-align: center;
  margin-top: 10px;
}

.step-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  line-height: 1.7;
  color: #3A607F;
  text-align: center;
  padding: 0 10px;
  max-width: 100%;
}

.steps-wave {
  margin-top: 60px;
  width: 100%;
  overflow: hidden;
}
.steps-wave img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==============================
  ステップセクション レスポンシブ対応
============================== */

/* タブレットサイズ */
@media (max-width: 992px) {
  .steps {
    padding: 60px 0;
  }
  .step-list {
    gap: 30px;
    padding: 0 20px;
  }
  .step {
    width: 300px;
  }
  .step-circle {
    width: 100%;
    max-width: 280px;
    height: 360px;
  }
  .step-circle img {
    width: 60%;
    max-width: 180px;
  }
  .step-number { font-size: 32px; }
  .step-title { font-size: 24px; line-height: 1.3; }
  .step-desc { font-size: 18px; line-height: 1.6; }
}

/* スマートフォンサイズ*/
@media (max-width: 768px) {
  .steps {
    padding: 40px 0;
  }
  .step-list {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .step {
    width: 90%;
    max-width: 360px;
  }
  .step-circle {
    width: 100%;
    max-width: 300px;
    height: 330px;
  }
  .step-circle img {
    width: 65%;
    max-width: 190px;
  }
  .step-number { font-size: 28px; }
  .step-title { font-size: 22px; line-height: 1.4; }
  .step-desc { font-size: 16px; line-height: 1.7; }
}

/* ==============================
  2benefits
============================== */

.lesson-feature-section {
  position: relative;
  width: 1440px;
  height: 1255px;
  margin: 0 auto;
  background: #fff;
  overflow: hidden;
  font-family: 'Noto Sans JP', sans-serif;
  color: #3A607F;
}

.feature-img {
  position: absolute;
  width: 617.69px;
  height: 412px;
  border-radius: 16px;
  object-fit: cover;
}

.img-1 {
  left: 64px;
  top: 121px;
}

.img-2 {
  left: 752px;
  top: 722px;
}

.feature-heading {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: 300;
  color: #3A607F;
}

.heading-1 {
  left: 799px;
  top: 137px;
  font-size: 45px;
  line-height: 38px;
  width: 444px;
  height: 63px;
}

.heading-2 {
  left: 82px;
  top: 661px;
  font-size: 40px;
  line-height: 56px;
}

.feature-text {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: 300;
  font-size: 20px;
  line-height: 38px;
  word-wrap: break-word;
}

.text-1 {
  left: 788px;
  top: 230px;
  width: 600px;
}

.text-2 {
  left: 64px;
  top: 813px;
  width: 650px;
}

.note {
  font-size: 18px;
  line-height: 31px;
  width: 584px;
  height: 145px;
  left: 64px;
  top: 954px;
}

.line {
  position: absolute;
  height: 0;
  border-top: 3px solid #3A607F;
  transform: rotate(90deg);
  transform-origin: top left;
  outline-offset: -1.5px;
}

.line-1 {
  width: 67px;
  left: 770px;
  top: 137px;
}

.line-2 {
  width: 123px;
  left: 64px;
  top: 655px;
}

/* ==============================
  レスポンシブ
============================== */
@media (max-width: 768px) {
  .lesson-feature-section {
    width: 100%;
    height: auto;
    padding: 40px 20px;
    position: relative;
    box-sizing: border-box;
  }

  .feature-img {
    position: static;
    width: 100%;
    height: auto;
    margin-bottom: 24px;
    display: block;
  }

  .feature-heading {
    position: static;
    font-size: 28px;
    line-height: 1.4;
    margin: 24px 0 8px;
    width: 100%;
  }

  .heading-1,
  .heading-2 {
    font-size: 24px;
    line-height: 1.4;
    width: 100%;
    height: auto;
  }

  .feature-text {
    position: static;
    width: 100%;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 20px;
  }

  .text-1,
  .text-2,
  .note {
    width: 100%;
  }

  .note {
    font-size: 15px;
    line-height: 28px;
    margin-top: 16px;
  }

  .line {
    display: none;
  }
}

/* ==============================
  5 reasons
============================== */
.why-choose-us-section {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: 883px;
  margin: 0 auto;
  background: white;
  overflow: hidden;
  font-family: 'Noto Sans JP', sans-serif;
  color: #3A607F;
  z-index: 0;
  box-sizing: border-box;
}

.reasons-heading {
  position: absolute;
  top: 48px;
  left: 38px;
  font-family: 'Lavishly Yours', cursive;
  display: flex;
  align-items: flex-end;
  z-index: 4;
}

.reasons-heading .dash {
  font-size: 61px;
  line-height: 48px;
}

.reasons-heading .number {
  font-size: 84px;
  line-height: 48px;
  margin: 0 6px;
}

.reasons-heading .text {
  font-size: 61px;
  line-height: 48px;
}

.footer-wave {
  width: 100vw;
  height: auto;
  display: block;
  position: relative;
  top: 0;
  left: 0;
  z-index: 0;
}

.decor-left,
.decor-right {
  position: absolute;
  z-index: 5;
}

.decor-left {
  width: 272.6px;
  height: 287px;
  left: 26px;
  top: 371px;
}

.decor-right {
  width: 229.83px;
  height: 262px;
  left: 1165px;
  top: 396px;
}

.reason-box {
  position: absolute;
  width: 413px;
  height: auto;
  min-height: 271px;
  background: #FFFBEC;
  border-radius: 65px;
  padding: 24px 20px;
  box-sizing: border-box;
  z-index: 2;
  overflow-wrap: break-word;
}

.box-1 { left: 73px; top: 155px; }
.box-2 { left: 507px; top: 155px; }
.box-3 { left: 953px; top: 155px; }
.box-4 { left: 295px; top: 444px; }
.box-5 { left: 731px; top: 444px; }

.dot {
  width: 47px;
  height: 47px;
  background: #3A607F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: white;
  font-size: 24px;
  font-weight: 700;
}

.dot-number {
  color: white; /* 念のため再指定 */
  font-family: 'Roboto', sans-serif;
}

/* ==============================
  5 reasons (レスポンシブ対応追加)
============================== */
@media (max-width: 992px) {
  .why-choose-us-section {
    height: auto;
    padding: 60px 20px;
  }

  .reasons-heading {
    position: static;
    text-align: center;
    margin-bottom: 40px;
  }

  .decor-left,
  .decor-right {
    display: none;
  }

  .reason-box {
    position: static;
    width: 80%;
    max-width: 450px;
    margin: 0 auto 30px auto;
    height: auto;
    min-height: 0;
  }

  .box-1, .box-2, .box-3, .box-4, .box-5 {
    left: auto;
    top: auto;
  }
}

@media (max-width: 768px) {
  .why-choose-us-section {
    padding: 40px 15px;
  }

  .reasons-heading .dash,
  .reasons-heading .text {
    font-size: 25px;
    line-height: 1.2;
  }
  .reasons-heading .number {
    font-size: 25px;
    line-height: 1.2;
  }

  .reason-box {
    width: 95%;  
    padding: 20px 15px;
  }

  .dot {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .reason-box .reason-title {
    font-size: 22px;
  }
  .reason-box .reason-text {
    font-size: 16px; 
    line-height: 1.7;
  }
}

/* ==============================
  初めての方へ
============================== */
.intro-cta {
  position: relative;
  padding-top: 80px;
  overflow: hidden;
  font-family: 'Noto Sans JP', sans-serif;
}

.intro-cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 768px;
  background: linear-gradient(180deg, white 0%, #DCF1FF 100%);
  z-index: -1;
}

.intro-main-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.intro-text-area {
  flex: 1;
}

.intro-text-area h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 70px;
  color: #3A607F;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 7px;
  margin-top: 0;
  margin-bottom: 15px;
}

.intro-text-area .intro-subheading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 45px;
  color: #3A607F;
  font-weight: 400; 
  line-height: 1.3;
  margin-bottom: 0;
}

.intro-image-area {
  flex: 1.2;
  text-align: right;
}

.intro-image-area img {
  max-width: 100%;
  height: auto;
}
.intro-text-area {
  flex: 1;
  text-align: left;
}

.intro-text-area h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 70px;
  color: #3A607F;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 7px;
  margin-top: 0;
  margin-bottom: 15px;
}

.intro-text-area .intro-subheading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 45px;
  color: #3A607F;
  font-weight: 400; 
  line-height: 1.3;
  margin-bottom: 0;
}

.cta-banner {
  background: rgba(255, 255, 255, 0.76);
  border-radius: 60px;
  padding: 30px 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1348px;
  width: 95%;
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 80px;
}

.cta-banner-message {
  color: #3A607F;
  font-size: 27px;
  font-family: 'Noto Sans JP', sans-serif; 
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 1.89px;
  margin-top: 0;
  margin-bottom: 25px;
}

.cta-banner-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn.btn-contact {
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  background-color: white;
  border-width: 1px;
  border-style: solid;
}

.btn-phone-contact {
  color: #92D9E1;
  border-color: #92D9E1;
}

.btn-line-contact {
  color: #00B900;
  border-color: #00B900;
  font-weight: 500;
}
.btn-insta-contact {
  color: #E34E4E;
  border-color: #E34E4E;
  font-weight: 500;
}

.btn.btn-contact {
  font-family: 'Noto Sans JP', sans-serif;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  background-color: white;
  border-width: 1px;
  border-style: solid;
}

/* ==============================
  初めての方へ (レスポンシブ)
============================== */
@media (max-width: 768px) {
  .intro-cta {
      padding-top: 40px;
  }

  .intro-cta-background {
      min-height: auto;
  }

  .intro-main-content {
      flex-direction: column;
      gap: 20px;
      margin-bottom: 30px;
  }

  .intro-text-area {
    width: 100%;
    text-align: center;
  }

  .intro-text-area h2 {
      font-size: 32px; 
      letter-spacing: 1px;
      line-height: 1.3;
  }

  .intro-text-area .intro-subheading {
      font-size: 22px; 
      line-height: 1.4; 
  }

  .intro-image-area {
      order: -1;
      text-align: center;
      width: 90%;
      margin: 0 auto 20px auto; 
  }

  .intro-image-area img {
      max-width: 100%;
      height: auto;
  }

  .cta-banner {
      padding: 20px 15px;
      border-radius: 30px;
      margin-bottom: 40px;
      width: 90%; 
  }

  .cta-banner-message {
      font-size: 14px;
      letter-spacing: 0.5px;
      line-height: 1.6;
  }

  .cta-banner-buttons {
      flex-direction: column;
      align-items: center;
      gap: 12px;
  }

  .btn.btn-contact {
      width: 90%;
      max-width: 280px;
      font-size: 15px; 
      padding: 10px 15px;
  }
}

/* ==============================
  アクセス
============================== */
.access-section {
  background-color: #DCF1FF;
  padding: 80px 0;
}

.access-title {
  color: #3A607F;
  font-family: 'Lavishly Yours', cursive;
  font-size: 61px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  margin-top: 0;
  margin-bottom: 40px;
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 825px;
  height: 0;
  padding-bottom: 54.54%;
  margin: 0 auto 40px auto;
  overflow: hidden;
  border-radius: 8px;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.address-banner {
  background: #FFFBFB;
  border-radius: 60px;
  padding: 30px 40px;
  max-width: 1130px;
  width: 90%;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
}

.address-banner p {
  color: #3A607F;
  font-family: 'Noto Sans JP', sans-serif;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1.7;
}

.address-banner .address-line1 {
  font-size: 20px;
  font-weight: 700;
}

.address-banner .address-line2 {
  font-size: 20px;
  font-weight: 700;
}

.address-banner .address-note {
  font-size: 16px;
  font-weight: 400;
  color: #555;
  margin-bottom: 0;
}

/* ==============================
  アクセス (レスポンシブ)
============================== */
@media (max-width: 768px) {
  .access-section {
      padding: 40px 0;
  }

  .access-title {
      font-size: 48px;
      margin-bottom: 30px;
  }

  .map-container {
      max-width: 90%;
  }

  .address-banner {
      padding: 10px;
      border-radius: 30px;
  }

  .address-banner .address-line1,
  .address-banner .address-line2 {
      font-size: 14px;
  }

  .address-banner .address-note {
      font-size: 12px;
  }
}

.site-footer {
    background-color: white;
    padding: 60px 0;
    text-align: center;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    gap: 40px;
}

.footer-nav a {
    color: black;
    font-size: 20px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    line-height: 28px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #3A607F;
}

.copyright {
    font-size: 14px;
    color: #777;
    font-family: 'Noto Sans JP', sans-serif;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0;
    }

    .footer-nav ul {
        gap: 20px 30px;
        margin-bottom: 20px;
    }

    .footer-nav a {
        font-size: 18px;
    }

    .copyright {
        font-size: 13px;
    }
}

/* ==============================
  サイトフッター
============================== */
.site-footer {
  background-color: white;
  padding: 60px 0;
  text-align: center;
}

.footer-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  gap: 40px;
}

.footer-nav a {
  color: black;
  font-size: 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #3A607F;
}

.copyright {
  font-size: 14px;
  color: #777;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ==============================
  サイトフッター レスポンシブ対応
============================== */
@media (max-width: 768px) {
  .site-footer {
      padding: 40px 0;
  }

  .footer-nav ul {
      flex-direction: column;
      align-items: center; 
      gap: 15px;
      margin-bottom: 25px; 
      max-width: 100%;
  }

  .footer-nav li { 
      width: 100%;
      text-align: center;
  }

  .footer-nav a {
      font-size: 18px;
      display: block;
      width: 100%;
      padding: 10px 0;
  }

  .copyright {
      font-size: 13px;
  }
}

/* ==============================
  headspa_herosection
============================== */
.hero-headspa .hero-image {
  max-width: 50%;
  flex-shrink: 0;
}

.hero-headspa .hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

/* ==============================
  concept_section
============================== */
.concept-section {
  background-color: white;
  padding: 80px 0;
}

.concept-content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.concept-image-area {
  flex: 1;
}

.concept-image-area img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.concept-text-area {
  flex: 1;
}

.concept-title {
  font-family: 'Lavishly Yours', cursive;
  font-size: 61px;
  color: #3A607F;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 0;
}

.concept-text-area p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  text-align: left;
  color: #333333;
  line-height: 1.8;
  margin-top: 0;
  margin-bottom: 20px;
}

.concept-text-area p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .concept-section {
    padding: 60px 0;
  }

  .concept-content-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .concept-image-area {
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
  }
  
  .concept-image-area img {
    max-width: 90%;
  }

  .concept-text-area {
    text-align: left;
  }

  .concept-title {
    font-size: 40px;
    text-align: left;
    margin-bottom: 20px;
  }

  .concept-text-area p {
    font-size: 14px;
  }
}

/* ==============================
  benefits_section
============================== */

.benefits-section {
  background-color: #FFFBEC;
  padding: 80px 0;
  text-align: left;
}

.benefits-title {
  font-family: 'Lavishly Yours', cursive;
  font-size: 61px;
  color: #3A607F;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px 15px;
  max-width: 1100px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefit-item:nth-child(-n+3) { 
  grid-column: auto / span 4;
}

.benefit-item:nth-child(4) {
  grid-column-start: 1;
  grid-column: auto / span 3;
}

.benefit-item:nth-child(n+5):nth-child(-n+7) {
  grid-column: auto / span 3;
}

.benefit-icon-background {
  width: 189px;
  height: 189px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.benefit-icon-background img {
  max-width: 60%;
  max-height: 60%;
  height: auto;
}

.benefit-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  color: #3A607F;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 30px 15px;
    max-width: 700px;
  }
  /* 全てのアイテムを3カラム分に */
  .benefit-item,
  .benefit-item:nth-child(-n+3),
  .benefit-item:nth-child(4),
  .benefit-item:nth-child(n+5):nth-child(-n+7) {
    grid-column: auto / span 3; 
  }
  /* 3番目のアイテムと5番目のアイテム、7番目のアイテムを新しい行の先頭に */
  .benefit-item:nth-child(3),
  .benefit-item:nth-child(5),
  .benefit-item:nth-child(7) {
    grid-column-start: 1;
  }

  .benefit-icon-background {
    width: 160px;
    height: 160px;
  }
  .benefit-text {
    font-size: 18px;
  }
}

@media (max-width: 576px) { 
  .benefits-section {
    padding: 60px 0;
  }
  .benefits-title {
    font-size: 40px;
    margin-bottom: 40px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 300px;
  }
  /* 全てのアイテムを1列全体に */
  .benefit-item,
  .benefit-item:nth-child(-n+3),
  .benefit-item:nth-child(4),
  .benefit-item:nth-child(n+5):nth-child(-n+7) {
    grid-column: 1 / -1;
  }
  /* 行開始の指定をリセット */
  .benefit-item:nth-child(3),
  .benefit-item:nth-child(4),
  .benefit-item:nth-child(5),
  .benefit-item:nth-child(7) {
    grid-column-start: auto;
  }

  .benefit-icon-background {
    width: 140px;
    height: 140px;
  }
  .benefit-text {
    font-size: 16px;
  }
}

/* ==============================
  effects-brush-section
============================== */

.effects-brush-section {
  background: linear-gradient(180deg, #FFFBEC 0%, #CCE3F3 100%);
  padding: 80px 0;
  overflow: hidden;
}

.effects-brush-content-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
}

.effects-brush-text-area {
  flex: 1;
  color: #3A607F;
}

.effects-brush-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 43px;
  font-weight: 700;
  color: #3A607F;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 30px;
}

.effects-list {
  list-style: none;
  margin: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 2;
}

.effects-list li {
  margin-bottom: 10px;
  padding-left: 1.5em;
  position: relative;
}

.effects-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.effects-brush-image-area {
  flex: 1;
  text-align: center;
}

.effects-brush-image-area img {
  max-width: 100%;
  height: auto;
  border-radius: 60px;
  display: block;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .effects-brush-content-wrapper {
    flex-direction: column;
    text-align: left;
  }
  .effects-brush-text-area {
    margin-bottom: 40px;
  }
  .effects-list li {
    padding-left: 0;
    text-align: left;
    display: inline-block;
  }
  .effects-list li::before {
    left: -1.5em;
  }
}

@media (max-width: 768px) {
  .effects-brush-section {
    padding: 60px 0;
  }
  .effects-brush-title {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .effects-list {
    font-size: 14px;
    line-height: 1.8;
  }
  .effects-list li {
    margin-bottom: 8px;
  }
  .effects-brush-image-area img {
    border-radius: 30px;
  }
}

/* ==============================
  about by myself
============================== */
.self-introduction-section {
  background-color: white;
  padding: 80px 0;
  overflow: hidden;
}

.self-intro-title {
  font-family: 'Lavishly Yours', cursive;
  font-size: 61px;
  color: #3A607F;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 40px;
  text-align: left;
  margin-left: -30px;
}

.self-intro-text-area .self-intro-name { 
  font-family: 'Zen Kurenaido', cursive;
  font-size: 24px;
  color: black;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 40px;
  text-align: right;
}

.self-intro-content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.self-intro-text-area {
  flex: 1;
}

.self-intro-text-area p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  color: black;
  font-weight: 300;
  line-height: 1.8;
  margin-top: 0;
  margin-bottom: 1.5em;
}

.self-intro-name {
  font-family: 'Zen Kurenaido', cursive;
  font-size: 16px;
  color: black;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 40px;
  text-align: right;
}

.self-intro-image-area {
  flex: 1;
  text-align: center;
}

.self-intro-image-area img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .self-intro-content-wrapper {
    gap: 30px;
  }
  .self-intro-title {
    font-size: 52px;
    margin-bottom: 30px;
  }
  .self-intro-text-area p {
    font-size: 20px;
  }
  .self-intro-name {
    font-size: 16px;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .self-introduction-section {
    padding: 60px 0;
  }
  .self-intro-title {
    text-align: left;
    font-size: 42px;
  }
  .self-intro-content-wrapper {
    flex-direction: column;
  }
  .self-intro-text-area {
    order: 2;
    width: 100%;
  }
  .self-intro-image-area {
    order: 1;
    width: 80%;
    margin: 0 auto 30px auto;
  }
  .self-intro-text-area p {
    font-size: 16px;
    text-align: left;
  }
  .self-intro-name {
    font-size: 14px;
    text-align: center;
  }
}

/* ==============================
  blog section
============================== */
.blog-preview-section {
  background: linear-gradient(0deg, #FFFEFA 0%, #FFFBEC 42%, #D2E6F2 100%);
  padding: 80px 0;
  overflow: hidden;
}

.blog-section-title {
  font-family: 'Lavishly Yours', cursive;
  font-size: 61px;
  color: #3A607F;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 40px;
  text-align: left;
  margin-left: -30px;
}

.blog-preview-wrapper {
  /* display: flex;
  align-items: stretch;
  justify-content: center; 
  gap: 20px;*/
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
}

.blog-navigation {
  /* display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 50px; */
  cursor: pointer;
}

.blog-navigation img {
  width: 100px;
  height: auto;
}

.blog-card {
  background-color: white;
  border-radius: 60px;
  border: 1px solid #C6C6C6;
  overflow: hidden;
  margin: 0 24px;
  /* display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 438px; */
  box-shadow: 0 6px 15px rgba(0,0,0,0.07);
}

.card-thumbnail-link {
  display: block;
}

.card-thumbnail {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  transition: opacity 0.3s ease;
}
.card-thumbnail-link:hover .card-thumbnail {
  opacity: 0.85;
}

.card-content {
  padding: 25px 30px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  font-family: 'Noto Sans JP', sans-serif;
}

.card-date {
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.5;
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 15px;
  flex-grow: 1;
}

.card-title a {
  text-decoration: none;
  color: #333;
}
.card-title a:hover {
  color: #3A607F;
}

.card-tags {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  font-size: 15px;
  padding: 6px 12px;
  border-radius: 10px;
  color: #333;
  font-weight: 300;
  line-height: 1.5;
}
.tag-yoga { background-color: #FFE3E3; }
.tag-menopause { background-color: #DEF7C0; }
.tag-stiff-shoulders { background-color: #FFF9C6; }

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  background-color: white;
}

.prev-arrow,
.next-arrow {
    display: block;
    width:  100px;
    height: 100px;
    border-radius: 50%;
    transition: all .3s ease;
    cursor: pointer;
}
.slide-arrow{
  position: absolute;
  top: 50%;
  /* left: 0; */
  transform: translate(0 , -50%);
  z-index: 2;
}
.next-arrow{
  right: -100px;
  background: url(./images/arrow-right.svg) no-repeat center center / contain;
}
.prev-arrow{
  left: -100px;
  background: url(./images/arrow-left.svg) no-repeat center center / contain;
}
@media (max-width: 992px) {
  .blog-preview-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .blog-navigation {
    transform: rotate(90deg);
    margin: 15px 0;
    flex: 0 0 auto;
  }
  .prev-nav { order: -1; }
  .next-nav { order: 1; }
  .blog-card {
    max-width: 500px;
  }
  .prev-arrow,
.next-arrow {
    width:  80px;
    height: 80px;
    cursor: pointer;
}

.next-arrow{
  right: -50px;
}
.prev-arrow{
  left: -50px;
  
}
}

@media (max-width: 576px) {
  .blog-section-title {
    font-size: 48px;
    margin-bottom: 30px;
  }
  .card-title {
    font-size: 20px;
  }
  .tag {
    font-size: 14px;
    padding: 5px 10px;
  }
  .blog-card {
    border-radius: 30px;
  }
  .card-thumbnail {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    height: 180px;
  }
}

/* ==============================
  voc section
============================== */
.customer-voice-section {
  background: linear-gradient(180deg, #FFFEFA 0%, #FFFBEE 100%);
  padding: 80px 0;
  overflow: hidden; 
}

.voice-section-title {
  font-family: 'Lavishly Yours', cursive;
  font-size: 61px;
  color: #3A607F;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 40px;
  text-align: left;
  margin-left: -30px;
}

.voice-slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px; 
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
}

.voice-navigation {
  flex: 0 0 auto;
  padding: 0 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.voice-navigation img {
  width: 100px;
  height: auto;
  display: block;
}

.voice-card-container {
  /* display: flex;
  gap: 40px;
  justify-content: center;
  flex-grow: 1 */
  padding: 10px;
  max-width: 1000px;
}

.voice-card {
  background-color: white;
  border-radius: 25px;
  border: 1px solid #C6C6C6;
  padding: 25px 20px;
  width: 100%;
  max-width: 450px;
  min-width: 300px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  box-sizing: border-box;
  flex-shrink: 0;
  margin: 0 4px;
}

.voice-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.customer-name {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: black;
  margin: 0;
}

.star-rating {
  color: #FFC700;
  font-size: 18px;
}

.customer-testimonial {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: black;
  margin: 0;
}

/* タブレット対応 */
@media (max-width: 992px) {
  .customer-voice-section {
    padding: 60px 15px; 
  }

  .voice-section-title {
    font-size: 54px; 
    text-align: left;
    margin-left: 0; 
    margin-bottom: 30px;
  }
  
  .voice-slider-wrapper {
    flex-direction: column; 
    align-items: left;
  }

  .voice-navigation {
    padding: 15px 0;
    transform: rotate(90deg);
    margin: 15px 0;
  }

  .voice-navigation img {
    width: 60px;
  }

  .prev-voice { 
    order: -1;
  }

  .next-voice { 
    order: 1; 
  }

  .voice-card-container {
    flex-direction: column; 
    align-items: center; 
    overflow-x: visible; 
    width: 100%; 
    gap: 20px; 
    padding: 0; 
  }

  .voice-card {
    max-width: 500px; 
    min-width: auto; 
    width: 100%; 
  }
}

/* sp対応 */
@media (max-width: 576px) {
  .customer-voice-section {
    padding: 40px 15px;
  }

  .voice-section-title {
    font-size: 36px; 
    margin-bottom: 20px;
  }

  .voice-navigation {
    padding: 10px 0;
    transform: rotate(90deg);
    margin: 10px 0;
  }
  
  .voice-navigation img {
    width: 100px;
  }
  
  .prev-voice { 
    order: -1;
  }
  .next-voice { 
    order: 1;
  }

  .voice-card-container {
    gap: 15px;
  }

  .voice-card {
    padding: 20px;
    border-radius: 20px;
  }
  
  .customer-name {
    font-size: 16px;
  }
  .star-rating {
    font-size: 16px;
  }
  .customer-testimonial {
    font-size: 14px; 
    line-height: 1.6;
  }
}

/* ==============================
   Single Post Page
============================== */
.single-post-page {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  font-family: 'Noto Sans JP', sans-serif;
}

.single-post-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #D4E7F2 0%, #FFFBEC 100%);
  z-index: -1;
}

.post-full-content {
  background-color: white;
  border-radius: 30px;
  padding: 40px 50px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.07);
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 60px;
  margin-left: auto;
  max-width: 800px;
}

.post-featured-image {
  margin: 0 0 30px 0;
}

.post-featured-image img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 15px;
  display: block;
}

.post-full-header {
  margin-bottom: 40px;
  text-align: left;
}

.post-full-tags {
  margin-bottom: 15px;
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  gap: 10px;
}

.post-full-tags .tag {
  font-family: 'Noto Sans JP', sans-serif;
}

.post-full-date {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 10px;
  font-family: 'Noto Sans JP', sans-serif;
}

.post-full-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px; 
  color: #333;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 0;
}

.post-full-body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  line-height: 2;
  color: #333;
}

.post-full-body p {
  margin-top: 0;
  margin-bottom: 1.5em;
}

.post-full-body p:last-of-type {
  margin-bottom: 1.5em;
}

.post-full-body p:last-child {
  text-align: right;
  font-weight: 500;
  margin-bottom: 0;
}

/* Related Posts Section */
.related-posts-section {
  background-color: white;
  border-radius: 30px;
  padding: 40px 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.07);
  text-align: center;
  margin-top: 60px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1140px;
  width: 95%;
}

.related-posts-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 28px;
  color: #3A607F;
  margin-top: 0;
  margin-bottom: 40px;
}

.related-posts-slider-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center; 
  gap: 20px;               
}

.related-posts-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 120px; 
}

.related-posts-navigation img {
  width: 100%; 
  max-width: 80px;
  height: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.related-posts-navigation:hover img {
  opacity: 1;
}

.blog-posts-grid.related-posts-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-grow: 1;
  overflow-x: auto;
  padding: 10px 0; 
}

/* 関連記事カードのスタイル調整 */
.related-posts-grid .blog-card {
  max-width: 335px;
  display: flex;
  flex-direction: column;
  font-family: 'Noto Sans JP', sans-serif;
}

.related-posts-grid .card-content-summary {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 20px 25px 25px;
}

.related-posts-grid .card-date {
  font-size: 0.85em;
  color: #777;
  margin-bottom: 8px;
}

.related-posts-grid .card-title-related {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 10px;
}

.related-posts-grid .card-title-related a {
  color: #3A607F;
  text-decoration: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: calc(1.4em * 2);
}
.related-posts-grid .card-title-related a:hover {
  text-decoration: underline;
}

.related-posts-grid .card-tags {
  margin-top: auto;
  padding-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  min-height: 30px;
}
.related-posts-grid .card-tags .tag {
  font-family: 'Noto Sans JP', sans-serif;
}


/* ==============================
   タブレット対応 (max-width: 992px)
============================== */
@media (max-width: 992px) {
  .single-post-page {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .post-full-content {
    padding: 30px 35px;
    margin-bottom: 50px;
    border-radius: 20px;
    max-width: 90%;
  }

  .post-featured-image img {
    max-height: 400px;
    border-radius: 10px;
  }

  .post-full-header {
    margin-bottom: 30px;
  }

  .post-full-tags .tag { 
    font-size: 14px;
    padding: 6px 12px;
  }

  .post-full-title {
    font-size: 26px;
    line-height: 1.45;
  }

  .post-full-body {
    font-size: 17px;
    line-height: 1.9;
  }

  .related-posts-section {
    padding: 30px 25px;
    margin-top: 50px;
    border-radius: 20px;
    max-width: 90%; 
  }

  .related-posts-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .related-posts-slider-wrapper {
    gap: 15px;
  }

  .related-posts-navigation {
    width: 100px;
  }
  .related-posts-navigation img {
    width: 100%;
    max-width: 60px;
  }

  .blog-posts-grid.related-posts-grid {
    gap: 20px;
    overflow-x: auto; 
    padding-bottom: 10px;
  }

  .related-posts-grid .blog-card {
    max-width: 300px;
  }
  
  .related-posts-grid .card-title-related {
    font-size: 17px;
  }
  .related-posts-grid .card-tags .tag {
    font-size: 13px;
    padding: 5px 10px;
  }
}

 /* ==============================
   SP対応 (max-width: 768px)
============================== */
@media (max-width: 768px) {
  .single-post-page {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .post-full-content {
    padding: 20px 15px;
    border-radius: 15px;
    margin-bottom: 30px;
    max-width: 95%;
  }

  .post-featured-image {
    margin: 0 0 20px 0;
  }

  .post-featured-image img {
    max-height: 280px;
    border-radius: 8px;
  }

  .post-full-header {
    margin-bottom: 20px;
  }

  .post-full-tags {
    margin-bottom: 10px;
    gap: 8px;
  }
  .post-full-tags .tag {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 8px;
  }

  .post-full-date {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .post-full-title {
    font-size: 20px;
    line-height: 1.4;
  }

  .post-full-body {
    font-size: 14px;
    line-height: 1.8;
  }
  .post-full-body p {
    margin-bottom: 1.2em;
  }

  .related-posts-section {
    padding: 25px 15px;
    margin-top: 40px;
    border-radius: 15px;
    max-width: 95%;
  }

  .related-posts-title {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .related-posts-slider-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .related-posts-navigation { 
    transform: rotate(90deg);
    margin: 10px 0;
    width: auto;
  }
  .related-posts-navigation img {
    width: 90px;
    max-width: 90px;
    height: auto;
  }

  .blog-posts-grid.related-posts-grid {
    flex-direction: column;
    align-items: center; 
    gap: 15px;
    width: 100%;
    overflow-x: visible; 
  }

  .related-posts-grid .blog-card {
    max-width: 90%; 
    width: 100%; 
    border-radius: 20px;
  }
  
  .related-posts-grid .blog-card .card-thumbnail {
    height: 180px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }


  .related-posts-grid .card-content-summary {
    padding: 15px 20px 20px;
  }

  .related-posts-grid .card-date {
    font-size: 12px;
  }

  .related-posts-grid .card-title-related {
    font-size: 16px;
    line-height: 1.45;
  }

  .related-posts-grid .card-tags {
    min-height: auto;
  }
  .related-posts-grid .card-tags .tag {
    font-size: 11px; 
    padding: 3px 7px;
    border-radius: 6px;
  }
}

/* ==============================
  price section
============================== */
.pricing-details-section {
  background-color: #EAF6FF;
  padding: 60px 0 80px;
  font-family: 'Noto Sans JP', sans-serif;
}

.pricing-page-title {
  font-family: 'Lavishly Yours', cursive;
  font-size: 61px;
  color: #3A607F;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 40px;
  text-align: left;
  margin-left: -30px;
}

.pricing-content-area { 
  background-color: white;
  border-radius: 60px;
  padding: 40px 50px; 
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: auto;  
  max-width: 1140px;
  width: 80%;
}

.price-category {
  margin-bottom: 60px;
}

.price-category:last-child {
  margin-bottom: 30px;
}

.price-category-title {
  font-family: 'Noto Sans JP', sans-serif; 
  font-size: 20px;
  color: #3A607F;
  font-weight: 700; 
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 1px solid #B0D8F1;
  display: flex;
  align-items: center;
}

.category-icon {
  width: 60px;
  height: 60px;
  margin-right: 15px;
}

.price-table-wrapper {
  overflow-x: auto;
}

.pricing-details-section table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  color: #3A607F;
  table-layout: fixed; 
}

.pricing-details-section .col-course-pc { width: 35%; }
.pricing-details-section .col-period-time-pc { width: 15%; text-align: center;}
.pricing-details-section .col-price-pc { width: 20%; text-align: center;}
.pricing-details-section .col-details-pc { width: 30%; }


.pricing-details-section th,
.pricing-details-section td {
  border-bottom: 1px solid #D2E0E9;
  padding: 15px 10px;
  vertical-align: middle;
  word-break: break-word;
}

.pricing-details-section tr:last-child td {
  border-bottom: none;
}

.pricing-details-section thead th {
  font-weight: 700; 
  color: #3A607F;
  font-size: 16px;
  border-bottom: 2px solid #B0D8F1;
  padding-bottom: 12px;
  white-space: nowrap;
  text-align: left;
}

.pricing-details-section thead th.col-period-time-pc,
.pricing-details-section thead th.col-price-pc {
  text-align: center;
}


.pricing-details-section td {
  line-height: 1.7;
}

.pricing-details-section td br {
  display: block;
  margin-bottom: 0.3em;
}

.price-note {
  margin-top: 20px;
  font-size: 14px;
  color: #555660;
  line-height: 1.6;
  background-color: #FDF5E1;
  padding: 12px 20px;
  border-radius: 8px;
  display: block;
  text-align: center;
  box-sizing: border-box;
}

.price-note.highlighted-note {
  background-color: #FDF5E1;
}

.note-icon {
  margin-right: 8px;
  font-style: normal;
}

.note-icon.check-mark {
  color: #509E2E;
}

.payment-info-box {
  background-color: #FFFBEC;
  border-radius: 60px;
  padding: 30px 40px;
  max-width: 1176px;
  width: 95%;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.payment-icon-standalone {
  width: 85px;
  height: 85px;
  flex-shrink: 0;
}

.payment-info-box p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 26px; 
  color: black;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.error{
  text-align: center;
  margin: 40px 0;
  h2{
    font-size: 24px;
  }
  
}

/* ==============================
  レスポンシブスタイル (SP版: max-width: 768px)
============================== */
@media (max-width: 768px) {
  .pricing-details-section {
    padding: 30px 0 50px;
  }
  .pricing-page-title {
    font-size: 36px; 
    text-align: left; 
    margin-left: 0; 
    margin-bottom: 30px;
  }
  .pricing-content-area {
    padding: 20px 10px;
    border-radius: 30px;
    margin-bottom: 30px;
    width: 90%;
  }
  .price-category {
    margin-bottom: 30px;
  }
  .price-category-title {
    font-size: 16px;
  }
  .category-icon {
    width: 24px; 
    height: 24px;
    margin-right: 8px;
  }

  .pricing-details-section table {
    table-layout: fixed; 
    font-size: 12px;
    width: 100%;         
  }

  .pricing-details-section .col-course,
  .pricing-details-section th.col-course-pc,
  .pricing-details-section td.col-course-pc {
    width: 30%; /* ★ コース */
    text-align: left;
    font-size: 10px;
  }
  .pricing-details-section .col-period-time,
  .pricing-details-section th.col-period-time-pc,
  .pricing-details-section td.col-period-time-pc {
    width: 20%; /* ★ 期間 */
    text-align: left; 
    font-size: 10px;
  }
  .pricing-details-section .col-price,
  .pricing-details-section th.col-price-pc,
  .pricing-details-section td.col-price-pc {
    width: 20%; /* ★ 料金 */
    text-align: left; 
    font-size: 10px;
  }
  .pricing-details-section .col-details,
  .pricing-details-section th.col-details-pc,
  .pricing-details-section td.col-details-pc {
    width: 40%; /* ★ 内容 */
    text-align: left;
    font-size: 10px;
    line-height: 1.4;
  }

  .pricing-details-section th,
  .pricing-details-section td {
    padding: 10px 8px;
    vertical-align: top;
    word-break: break-word; 
  }

  .pricing-details-section thead th {
    font-size: 12px; 
    white-space: normal;
    text-align: center; 
    vertical-align: middle;
  }
  /* SP版で個別に揃えたいヘッダー */
  .pricing-details-section thead th.col-course,
  .pricing-details-section thead th.col-course-pc {
    text-align: left;
  }
  .pricing-details-section thead th.col-details,
  .pricing-details-section thead th.col-details-pc {
    text-align: left;
  }
  .pricing-details-section thead th.col-price,
  .pricing-details-section thead th.col-price-pc {
    text-align: left;
  }

  .price-note {
    font-size: 10px; 
    padding: 8px 10px;
    width: 100%; 
    line-height: 1.5;
  }
  .payment-info-box {
    flex-direction: column;
    padding: 14px;
    gap: 10px;
    border-radius: 30px;
    width: 90%;
  }
  .payment-icon-standalone {
    width: 36px; 
    height: 36px;
  }
  .payment-info-box p {
    font-size: 12px; 
    text-align: center;
  }
  .error{
  text-align: center;
  margin: 40px 0;
  h2{
    font-size: 18px;
  }
  
}
}


