@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=M+PLUS+Rounded+1c:wght@800&display=swap');

:root {
  --base-beige: #F7F4EF;
  --light-sage: #EAF4E9;
  --accent-pink: #D8B4B4;
  --cta-green: #84A98C;
  --cta-green-hover: #6C8C74;
  --text-dark: #4A4E69;
  --gray-900: #1c263d;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-200: #e5e7eb;
  --gray-700: #374151;
  --gray-100-rgb: 243, 244, 246;
  --gray-100: #f3f4f6;

  --base-beige-rgb: 247, 244, 239;
  --light-sage-rgb: 234, 244, 233;
  --accent-pink-rgb: 216, 180, 180;
  --cta-green-rgb: 132, 169, 140;
  --text-dark-rgb: 74, 78, 105;

  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', '繝偵Λ繧ｮ繝手ｧ偵ざ Pro W3', 'Hiragino Kaku Gothic Pro', '繝｡繧､繝ｪ繧ｪ', Meiryo, sans-serif;
  background-color: var(--base-beige);
  color: var(--text-dark);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

}


a {
  text-decoration: none;
}


.accordion-icon {
  transition: transform 0.3s ease;
  width: 1.25rem;
  height: 1.25rem;
}

.expanded .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.accordion-item.expanded .accordion-content {
  max-height: 500px;
  padding-top: 1rem;
  padding-bottom: 1rem;
}


.price-card:hover {
  box-shadow: 0 20px 25px -5px rgba(132, 169, 140, 0.2), 0 10px 10px -5px rgba(132, 169, 140, 0.08);
  transform: scale(1.02);
}


.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1024px;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (max-width: 1023px) {
  .container {
    max-width: 640px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 639px) {
  .container {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-header {
    padding: 3rem 0.5rem 1rem 0.5rem;
  }
}

/* ヘッダー -----------------------------------------------------------------

---------------------------------------------------------------------------*/


#navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(var(--base-beige-rgb), 0.9);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  transition: all 0.3s;
}

/* 制作サンプルサイト用固定ヘッダーがある場合の調整 */
body.has-sample-header #navbar {
  top: 45px;
}

@media (max-width: 768px) {
  body.has-sample-header #navbar {
    top: 40px;
  }
}

#navbar.shadow-xl {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

#navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  padding-top: 1rem;
  padding-bottom: 1rem;
}


#navbar .logo {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--cta-green);
  transition: color 0.15s ease-in-out;
  display: flex;
  align-items: center;
}

#navbar .logo:hover {
  color: var(--cta-green-hover);
}

#navbar .logo img,
.footer-logo-area .logo img {
  height: 2.25rem;
  margin-right: 0.5rem;
}

#navbar .logo span {
  color: var(--gray-600);
  font-weight: 500;
  margin-left: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding-top: 0.25rem;
}

#navbar .nav-menu {
  display: flex;
  align-items: center;
}

#navbar .nav-menu>*:not([hidden])~*:not([hidden]) {
  margin-left: 2rem;
}

#navbar .nav-menu a {
  color: var(--text-dark);
  transition: color 0.15s ease-in-out;
  font-weight: 500;
}

#navbar .nav-menu a:hover {
  color: var(--cta-green);
}


#navbar .nav-menu .cta-button-header {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  color: white;
  background-color: var(--cta-green);
  border-radius: 9999px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  transition: all 0.3s ease-in-out;
}

#navbar .nav-menu .cta-button-header:hover {
  background-color: var(--cta-green-hover);
}

#navbar .mobile-menu-button {
  display: none;
  padding: 0.5rem;
  color: var(--text-dark);
  border-radius: 0.5rem;
  transition: all 0.15s ease-in-out;

}

#navbar .mobile-menu-button:hover {
  color: var(--cta-green);
}

/* レスポンシブ */
@media (max-width: 768px) {
  #navbar .nav-menu {
    display: none;
  }

  #navbar .mobile-menu-button {
    display: block;
  }
}


#mobile-menu {
  background-color: rgba(var(--base-beige-rgb), 0.95);
  display: none;
}


/* レスポンシブ */


@media (max-width: 1099px) {

  /* Keeping the toggle logic (it is JS controlled via .open class), but ensuring it's valid */
  /* The media query essentially restricts where it CAN be shown if JS toggles it */
  #mobile-menu.open {
    display: block;
  }
}


#mobile-menu .sm\:px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

#mobile-menu .space-y-1>*:not([hidden])~*:not([hidden]) {
  margin-top: 0.25rem;
}

#mobile-menu a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

#mobile-menu a:hover {
  color: var(--cta-green);
  background-color: rgba(var(--cta-green-rgb), 0.1);
}

.hidden {
  display: none;
}


/* HEROセクション -------------------------------------------------

------------------------------------------------------------------*/


.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  /* Desktop */
  padding-bottom: 9rem;
  /* Desktop */
  min-height: 70vh;
}

.hero-section .container {
  max-width: 1280px;
}


/* レスポンシブ */
@media (max-width: 1279px) {
  .hero-section .container {
    max-width: 92%;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding-top: 2rem;
    padding-bottom: 6rem;
  }

  .hero-section h1 {
    text-align: center;
  }


}




.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  z-index: -1;
}

.hero-section .bg-gradient-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom right, rgba(var(--base-beige-rgb), 0.7), rgba(var(--light-sage-rgb), 0.4));
  opacity: 1;
}

.hero-section .shape-pink {
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  /* Desktop */
  height: 24rem;
  /* Desktop */
  border-radius: 9999px;
  background-color: rgba(var(--accent-pink-rgb), 0.3);
  filter: blur(48px);
  opacity: 0.4;
  transform: translateX(50%) translateY(-25%);
}

/* レスポンシブ */
@media (max-width: 767px) {
  .hero-section .shape-pink {
    width: 16rem;
    height: 16rem;
  }
}



.hero-section .shape-sage {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 16rem;
  /* Desktop */
  height: 16rem;
  /* Desktop */
  border-radius: 9999px;
  background-color: rgba(var(--light-sage-rgb), 0.8);
  filter: blur(48px);
  opacity: 0.6;
  transform: translateX(-33.333333%) translateY(33.333333%);
}


/* レスポンシブ */
@media (max-width: 767px) {
  .hero-section .shape-sage {
    width: 12rem;
    height: 12rem;
  }
}



.hero-section .content-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  /* Desktop */
  gap: 3rem;
  align-items: center;
  /* text-align: center; */
}




/* レスポンシブ */

@media (max-width: 767px) {
  .hero-section .content-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}


.hero-section .text-content {
  grid-column: span 7 / span 7;
  /* Desktop */
}

@media (max-width: 767px) {
  .hero-section .text-content {
    grid-column: span 1 / span 1;
  }
}

.hero-section h1 {
  font-size: clamp(1.5rem, 2.5vw + 1rem, 3rem);
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
  letter-spacing: 0.06em;
}

.hero-section h1 .text-accent-pink {
  color: var(--accent-pink);
}

.hero-section h1 br {
  display: inline;
}


/* レスポンシブ */

@media (max-width: 767px) {
  .hero-section h1 br {
    display: none;
  }
}




.hero-section p.subtitle {
  font-size: clamp(1rem, 1vw + 0.8rem, 1.25rem);
  line-height: 2rem;
  color: rgba(var(--text-dark-rgb), 0.8);
  margin-bottom: clamp(2rem, 3vw, 3rem);
  max-width: 35rem;
  padding-right: 2rem;
}




/* レスポンシブ */

@media (max-width: 639px) {
  .hero-section p.subtitle {
    line-height: 1.75rem;
    padding-left: 1rem;
    padding-right: 0;
  }
}





.cta-button-hero {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  color: white;
  background-color: var(--cta-green);
  border-radius: 9999px;
  box-shadow: 0 20px 25px -5px rgba(var(--cta-green-rgb), 0.5), 0 8px 10px -6px rgba(var(--cta-green-rgb), 0.5);
  transition: all 0.3s ease-in-out;
}

.cta-button-hero:hover {
  background-color: var(--cta-green-hover);
  transform: scale(1.05);
}

.cta-button-hero:active {
  transform: scale(0.95);
}

.hero-section .trust-info {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--gray-500);
}

.hero-section .image-content {
  grid-column: span 5 / span 5;
  /* Desktop */
  display: flex;
  justify-content: flex-end;
  /* Desktop */
  order: 0;
  /* Desktop */
}




/* レスポンシブ */

@media (max-width: 767px) {
  .hero-section .image-content {
    grid-column: span 1 / span 1;
    justify-content: center;
    order: -1;
  }

  .hero-section .trust-info {
    text-align: center; 
  }

  .cta-button-hero {
 
  padding: 1rem 1.8rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  text-align: center;
  border-radius: 9999px
}

}




.hero-section .image-card {
  width: 100%;
  max-width: clamp(300px, 45vw, 450px);
  background-color: white;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  padding: 1rem;
  border: 1px solid rgba(var(--base-beige-rgb), 0.5);
  transform: rotate(1deg);
}




/* レスポンシブ */

@media (max-width: 767px) {
  .hero-section .image-card {
    padding: 0.5rem;
    transform: rotate(0deg);
  }
}




.hero-section .image-card img {
  border-radius: 1rem;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-section .image-card p {
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--gray-500);
  margin-top: 0.75rem;
}



/* 問題提起 --------------------------------------------------------

----------------------------------------------------------------*/



#empathy {
  padding-top: 8rem;
  /* Desktop */
  padding-bottom: 8rem;
  /* Desktop */
  background-color: white;
}

@media (max-width: 767px) {
  #empathy {
    padding: 5rem 0.5rem;
    

  }
}

.section-header {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.6rem, calc(1.533rem + 0.019vw), 1.8rem);
  line-height: 2.5rem;
  /* Desktop */
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

@media (max-width: 639px) {
  .section-header h2 {
    line-height: 2rem;
  }
}

.section-header h2 .text-accent-pink {
  color: var(--accent-pink);
}

.section-header p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: rgba(var(--text-dark-rgb), 0.8);
  margin-top: 1.5rem;
}


.empathy-points {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.empathy-points>*:not([hidden])~*:not([hidden]) {
  margin-top: 5rem;
}

.empathy-item {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  /* Desktop */
  /* gap: clamp(2.5rem, 4vw + 1rem, 4rem); */
  align-items: center;
}



@media (max-width: 767px) {
  .empathy-item {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}



.empathy-item .text-card {
  padding: clamp(2rem, 3vw + 1rem, 3rem);
  background-color: rgba(var(--light-sage-rgb), 0.5);
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  transition: box-shadow 0.3s ease-in-out;
  order: 1;
  /* Desktop */
}



@media (max-width: 767px) {
  .empathy-item .text-card {
    order: 2;
  }
}



.empathy-item .text-card:hover {
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.empathy-item .text-card.bg-base-beige-70 {
  background-color: rgba(var(--base-beige-rgb), 0.7);
}

.empathy-item .text-card .icon-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--cta-green);
}

.empathy-item .text-card .icon-wrapper.text-accent-pink {
  color: var(--accent-pink);
}

.empathy-item .text-card .icon-wrapper svg {
  width: 2rem;
  height: 2rem;
}

.empathy-item .text-card h3 {
  line-height: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

.empathy-item .text-card p {
  color: rgba(var(--text-dark-rgb), 0.9);
}

.empathy-item .visual-element {
  display: flex;
  justify-content: center;
  /* Default */
  order: 2;
  /* Desktop (reversed from mobile) - or matches md-order-2? */
  /* Original: mobile order=1, md order=2. So Desktop is 2. */
}

/* Specific Justification classes from original */
.empathy-item .visual-element.md-justify-end {
  justify-content: flex-end;
  /* Desktop */
  order: 2;
  /* Desktop */
}

.empathy-item .visual-element.md-justify-start {
  justify-content: flex-start;
  /* Desktop */
  order: 1;
  /* Desktop */
}



@media (max-width: 767px) {
  .empathy-item .visual-element {
    order: 1;
    justify-content: center;
    /* Reset justification on mobile */
  }

  .empathy-item .visual-element.md-justify-end,
  .empathy-item .visual-element.md-justify-start {
    order: 1;
    justify-content: center;
  }
}



.empathy-item .visual-element .placeholder-box {
  width: 100%;
  max-width: 24rem;
  height: 16rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border: 4px solid rgba(var(--accent-pink-rgb), 0.4);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.empathy-item .visual-element .placeholder-box.bg-accent-pink-20 {
  background-color: rgba(var(--accent-pink-rgb), 0.2);
}

.empathy-item .visual-element .placeholder-box.bg-cta-green-20 {
  background-color: rgba(var(--cta-green-rgb), 0.2);
  border-color: rgba(var(--cta-green-rgb), 0.4);
}

.empathy-item .visual-element .placeholder-box p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  color: var(--accent-pink);
}

.empathy-item .visual-element .placeholder-box.bg-cta-green-20 p {
  color: var(--cta-green);
}

#empathy .visual-element img,
#services .visual-element img {
  width: 100%;
  max-width: 24rem;
  height: 16rem;
  border-radius: 1.5rem;
  object-fit: cover;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  border-width: 4px;
  border-style: solid;
}

.border-accent-pink\/40 {
  border-color: rgba(var(--accent-pink-rgb), 0.4);
}

.border-cta-green\/40,
.border-light-sage\/80 {
  border-color: rgba(var(--cta-green-rgb), 0.4);
}

.cta-after-empathy {
  text-align: center;
  margin-top: 5rem;
}

.cta-after-empathy p {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 500;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}


/* サービスセクション ------------------------------------------------

-------------------------------------------------------------------*/


#services {
  padding-top: 8rem;
  /* Desktop */
  padding-bottom: 8rem;
  /* Desktop */
  background-color: var(--base-beige);
}


@media (max-width: 767px) {
  #services {
    padding: 5rem 0.5rem 0;
    /* padding-bottom: 5rem; commented out in original too? */
  }
}



.section-header h2 .text-cta-green {
  color: var(--cta-green);
}

.section-header p {
  max-width: 47rem;
  margin-left: auto;
  margin-right: auto;
}

.service-points {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.service-points>*:not([hidden])~*:not([hidden]) {
  margin-top: 5rem;
}

.service-item {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  /* Desktop */
  gap: 2.5rem;
  align-items: center;
}



@media (max-width: 767px) {
  .service-item {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}



.service-item .visual-element {
  display: flex;
  grid-column: span 5;
  /* Desktop Default */
}

.service-item .text-card {
  padding: clamp(2rem, 3vw + 1rem, 3rem);
  background-color: white;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  transition: box-shadow 0.3s ease-in-out;
  z-index: 10;
  grid-column: span 7;
  /* Desktop Default */
  transform: translateY(-1.25rem);
}

.service-item .text-card:hover {
  box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
}

/* Odd Items (1, 3, etc.) - Image Left, Text Right */
.service-item:nth-child(odd) .visual-element {
  justify-content: flex-start;
  order: 1;
}

.service-item:nth-child(odd) .text-card {
  margin-left: -5rem;
  order: 2;
}

/* Even Items (2, 4, etc.) - Text Left, Image Right */
.service-item:nth-child(even) .visual-element {
  justify-content: flex-end;
  order: 2;
}

.service-item:nth-child(even) .text-card {
  margin-right: -5rem;
  order: 1;
}


@media (max-width: 767px) {
  .service-item {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0rem;
    /* Reduced gap on mobile */
  }

  .service-item .visual-element {
    grid-column: span 1;
    justify-content: center !important;
    order: 1 !important;
  }

  .service-item .text-card {
    grid-column: span 1;
    order: 2 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    transform: none;
    margin-top: -1.5rem;
    /* Pull text up slightly to overlap image bottom or close gap */
    position: relative;
    /* Ensure z-index works */
    width: 90%;
    /* slightly smaller width for card effect */
    margin-left: auto !important;
    margin-right: auto !important;
  }
}




.service-item .text-card .icon-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.service-item .text-card .icon-wrapper svg {
  width: 2.25rem;
  height: 2.25rem;
}

.service-item .text-card .icon-wrapper span {
  font-size: 1.2rem;
  line-height: 2.25rem;
  font-weight: 700;
  color: var(--gray-900);
}

.service-item .text-card p {
  line-height: 1.75rem;
  color: rgba(var(--text-dark-rgb), 0.9);
  margin-top: 1rem;
}

.service-item .text-card a {
  margin-top: 1rem;
  display: inline-block;
  color: var(--cta-green);
  font-weight: 600;
  transition: color 0.3s ease-in-out;
}

.service-item .text-card a:hover {
  color: var(--cta-green-hover);
}

.cta-after-services {
  text-align: center;
  margin-top: 5rem;
}

.cta-after-services p {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 500;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}


/* 私について -------------------------------------------------------

-------------------------------------------------------------------*/


.about-section {
  padding: 5rem 0;
  background-color: var(--base-beige);
}

.profile-card-container {
  max-width: 64rem;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border: 1px solid #f3f4f6;
  transition: box-shadow 0.5s;
}

.profile-card-container:hover {
  box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
}

.profile-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Desktop */
}



@media (max-width: 1023px) {
  .profile-card-grid {
    grid-template-columns: 1fr;
    padding: 0 0.5rem;
  }
}



.profile-image-area {
  padding: 2rem;
  background-color: rgba(167, 199, 186, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column: span 1 / span 1;
  /* Desktop */
}



@media (max-width: 1023px) {
  .profile-image-area {
    grid-column: span 1;
  }
}



.profile-image-wrapper {
  width: 100%;
  max-width: none;
  /* Desktop */
}



@media (max-width: 1023px) {
  .profile-image-wrapper {
    max-width: 280px;
  }
}



.profile-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 4px solid rgba(255, 255, 255, 0.5);
}

.profile-name {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--text-dark);
  margin-top: 1rem;
}

.profile-title {
  text-align: center;
  font-size: 0.875rem;
  color: var(--cta-green);
  font-weight: 500;
}

.profile-text-area {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  grid-column: span 2 / span 2;
  /* Desktop */
}



@media (max-width: 1023px) {
  .profile-text-area {
    grid-column: span 1;
  }
}



.philosophy-header {
  display: flex;
  align-items: center;
  color: var(--accent-pink);
}

.philosophy-header h3 {
  margin-left: 0.75rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-dark);
}

.leading-relaxed {
  line-height: 1.625;
}

.quote-box {
  background-color: var(--base-beige);
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
}

.quote-text {
  color: var(--text-dark);
  font-weight: 500;
  font-style: italic;
}

.skills-section {
  padding-top: 0.5rem;
}

.skills-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.skills-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
}

.badge-green {
  background-color: rgba(167, 199, 186, 0.2);
  color: var(--cta-green);
}

.badge-pink {
  background-color: rgba(216, 180, 180, 0.2);
  color: var(--accent-pink);
}

.cta-link {
  margin-top: 1.5rem;
  display: inline-block;
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--accent-pink);
  transition: color 0.3s;
}

.cta-link:hover {
  color: var(--cta-green);
}


/* お客様の声セクション -------------------------------------------------------

----------------------------------------------------------------------------*/


.testimonials-section {
  position: relative;
  padding: 5rem 0;
  background-image: url('../images/testimonials-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--base-beige-rgb), 0.85);
  z-index: -1;
}

.testimonials-stack {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6rem;
  /* Desktop */
  padding: 0 0.5rem;
}



@media (max-width: 767px) {
  .testimonials-stack {
    gap: 4rem;
  }
}



.testimonial-card {
  padding: clamp(1.5rem, 3vw + 1rem, 2.5rem);
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s;
  border: 1px solid rgba(243, 244, 246, 0.5);
  max-width: 48rem;
}

.testimonial-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.testimonial-card.bg-base-beige-80 {
  background-color: rgba(247, 244, 239, 0.8);
}

.testimonial-card.bg-light-sage-80 {
  background-color: rgba(234, 244, 233, 0.8);
  margin-left: auto;
}

.testimonial-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.testimonial-avatar-wrapper {
  flex-shrink: 0;
  position: relative;
}

.quote-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: rgba(216, 180, 180, 0.5);
  opacity: 0.7;
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
}

.quote-icon.text-cta-green {
  color: rgba(132, 169, 140, 0.5);
}

.avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  border: 2px solid #fff;
  position: relative;
  z-index: 10;
}

.avatar.bg-accent-pink-40 {
  background-color: rgba(216, 180, 180, 0.4);
}

.avatar.bg-cta-green-40 {
  background-color: rgba(132, 169, 140, 0.4);
}

.testimonial-text {
  flex-grow: 1;
}

.testimonial-text blockquote {
  font-size: 1.5rem;
  /* Desktop */
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.625;
  margin-bottom: 1rem;
}



@media (max-width: 767px) {
  .testimonial-text blockquote {
    font-size: 1.25rem;
  }
}



.attribution {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-600);
}

.cta-after-section {
  text-align: center;
  margin-top: 5rem;
}

.cta-after-section p {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}


/* 流れセクション -------------------------------------------------------

-----------------------------------------------------------------------*/


.flow-section {
  padding: 5rem 0;
  background-color: var(--light-sage);
}

.flow-stack {
  max-width: 80rem;
  /* Desktop */
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  /* Desktop */
  gap: 2rem;
}



@media (max-width: 1023px) {
  .flow-stack {
    max-width: 72rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /* Tablet */
    padding: 0 0.5rem;
  }
}

@media (max-width: 767px) {
  .flow-stack {
    max-width: 48rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    /* Mobile */
  }
}




.flow-step {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.5rem 2rem 1.5rem;
  background-color: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s;
  border: 1px solid rgba(var(--gray-100-rgb), 0.7);
  height: 100%;
  padding-top: 2.5rem;
}

.flow-step:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.flow-step.step-right {
  background-color: var(--base-beige);
}

.step-number {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  position: absolute;
  top: -1.5rem;
  left: 1.5rem;
}

.step-number.bg-accent-pink-70 {
  background-color: rgba(216, 180, 180, 0.7);
}

.step-number.bg-cta-green-70 {
  background-color: rgba(132, 169, 140, 0.7);
}

.step-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.75rem;
}

.step-header svg {
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.75rem;
  color: var(--accent-pink);
}

.step-header h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--text-dark);
}

.step-content p {
  color: rgba(74, 78, 105, 0.9);
}

.flow-step:not(:last-child)::after {
  content: '竊・;
 font-family: sans-serif;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  font-size: 2rem;
  color: var(--cta-green);
  opacity: 0.25;
  font-weight: 100;
  z-index: 0;
}




/* Tablet: Remove arrow for 2nd and 4th items (right side of grid) */
@media (max-width: 1023px) {
  .flow-step:nth-child(2n)::after {
    content: '';
  }
}

/* Mobile: Remove all arrows */
@media (max-width: 767px) {
  .flow-step:not(:last-child)::after {
    content: '';
  }
}




/* FAQセクション -------------------------------------------------------

--------------------------------------------------------------------*/



.faq-section {
  position: relative;
  padding: 5rem 0;
  background-image: url('../images/faq-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: -1;
}

.faq-section p {
  color: rgba(29, 29, 29, 0.9);
}

.faq-stack {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
}

.accordion-item {
  background-color: rgba(var(--base-beige-rgb), 0.8);
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  transition: box-shadow 0.3s ease-in-out;
  /* Desktop */
  max-width: 95%;
  margin-left: 1rem;
  margin-right: 1rem;
}

.accordion-item:hover {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.accordion-item:nth-child(odd) {
  background-color: rgba(var(--base-beige-rgb), 0.8);
  align-self: flex-end;
  /* Desktop */
}

.accordion-item:nth-child(even) {
  background-color: rgba(var(--light-sage-rgb), 0.8);
  align-self: flex-start;
  /* Desktop */
}



@media (max-width: 767px) {
  .accordion-item {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .faq-section .container {
    padding: 0 0.5rem 2rem;
  }

  .accordion-item:nth-child(odd),
  .accordion-item:nth-child(even) {
    align-self: auto;
  }

  .faq-section {
    padding: 0 0.5rem;
  }
}




.accordion-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

.accordion-title {
  display: flex;
  align-items: center;
}

.accordion-title svg {
  margin-right: 0.75rem;
  color: var(--accent-pink);
}

.accordion-item:nth-child(even) .accordion-title svg,
.accordion-item:nth-child(even) .accordion-icon {
  color: var(--cta-green);
}

.accordion-title span {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
}

.accordion-content {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

.accordion-item:nth-child(odd) .accordion-content {
  background-color: rgba(var(--base-beige-rgb), 0.5);
}

.accordion-item:nth-child(even) .accordion-content {
  background-color: rgba(var(--light-sage-rgb), 0.5);
}

.accordion-content p {
  color: rgba(var(--text-dark-rgb), 0.9);
  line-height: 1.75;
}


/* 料金セクション -------------------------------------------------------

-----------------------------------------------------------------------*/


.pricing-section {
  padding: 8rem 0;
  /* Desktop */
  background-color: rgba(var(--light-sage-rgb), 0.5);
}



@media (max-width: 767px) {
  .pricing-section {
    padding: 2rem 0.5rem;
  }
}



.pricing-stack {
  max-width: 80rem;
  /* Desktop */
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  /* Desktop */
  gap: 1.5rem;
  /* Desktop */
  align-items: stretch;
  /* Desktop */
  justify-items: center;
}



@media (max-width: 1023px) {
  .pricing-stack {
    max-width: 64rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
    align-items: normal;
  }
}



.price-card {
  width: 100%;
  max-width: 28rem;
  padding: clamp(1.5rem, 3vw + 0.5rem, 2rem);
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  transition: all 0.5s;
  border: 1px solid rgba(var(--gray-100-rgb), 0.5);
}

.price-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.price-title-wrapper {
  display: flex;
  align-items: center;
}

.price-title-wrapper svg {
  margin-right: 0.75rem;
}

.price-title-wrapper h3 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  color: var(--gray-900);
}

.price {
  font-weight: 800;
  color: var(--gray-900);
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.price-card.recommended .price {
  font-size: 3rem;
  line-height: 1;
}

.price span {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-left: 0.5rem;
}

.price-description {
  font-size: 1rem;
  line-height: 1.5rem;
  color: rgba(var(--text-dark-rgb), 0.9);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-100);
}

.price-card.recommended .price-description {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.features-list {
  color: var(--text-dark);
}

.features-list>*:not([hidden])~*:not([hidden]) {
  margin-top: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
}

.feature-item.disabled {
  text-decoration: line-through;
  color: var(--gray-500);
}

.feature-item svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.25rem;
  margin-right: 0.5rem;
}

.cta-button-price {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 2rem;
  padding: 0.75rem 1.25rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  transition: all 0.3s;
  color: var(--accent-pink);
  background-color: rgba(var(--accent-pink-rgb), 0.2);
}

.cta-button-price:hover {
  background-color: rgba(var(--accent-pink-rgb), 0.3);
}

.cta-button-price.recommended {
  color: white;
  background-color: var(--cta-green);
}

.cta-button-price.recommended:hover {
  background-color: var(--cta-green-hover);
}

.price-card.recommended {
  background-color: rgba(var(--cta-green-rgb), 0.1);
  border: 4px solid rgba(var(--cta-green-rgb), 0.5);
  position: relative;
  /* Desktop */
  transform: translateY(-1.5rem);
}



@media (max-width: 1023px) {
  .price-card.recommended {
    transform: none;
  }
}




.badge-popular {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background-color: var(--cta-green);
  color: white;
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  transform: rotate(3deg);
}

.pricing-note {
  text-align: center;
  margin-top: 4rem;
  max-width: 57rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem;
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
  border: 1px solid var(--gray-100);
}

.pricing-note p {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--gray-600);
}

.pricing-note p span {
  font-weight: 700;
  color: var(--cta-green);
  margin-right: 0.25rem;
}


/* お問い合わせセクション -------------------------------------------------------

-----------------------------------------------------------------------------*/


.reservation-section {
  padding: 8rem 0;
  /* Desktop */
  background-color: white;
}



@media (max-width: 767px) {
  .reservation-section {
    padding: 2rem 0;
  }
}



.reservation-grid {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

#reservation .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  /* Desktop */
  gap: 4rem;
  align-items: center;
}



@media (max-width: 1023px) {
  #reservation .form-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}


.reservation-section h2 {
  text-align: center;
}

.reservation-section p {
  text-align: center;
}


/* .reservation-text .text-content>*:not([hidden])~*:not([hidden]) { */
/* margin-top: 1rem; */
/* } */

.benefits-list {
  display: flex;
  padding: 0 3rem 3rem;

}

/* .benefits-list>*:not([hidden])~*:not([hidden]) { */
/* margin-top: 1rem; */
/* } */

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

.benefit-item svg {
  flex-shrink: 0;
  width: 3rem;
  height: auto;
  margin-top: 0.25rem;
  margin-right: 0.75rem;
  color: var(--cta-green);
  padding: 0.5rem;
}

.benefit-item span {
  
  
  
  text-align: left;
  padding: 0 2rem;
}


@media (max-width: 767px) {
  .benefits-list {
    flex-direction: column;  
    padding: 0 0.5rem 0.5rem;
  }
  .benefit-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  /* justify-content: center; */
}

.benefit-item span {
  width: 270px;
  text-align: left;
  padding: 0 1rem 1rem 1rem;
  
}

.benefit-item svg {
  
  width: 3rem;
  height: auto;
  margin-bottom: 1rem;
}

}




.form-container {
  background-color: rgba(var(--base-beige-rgb), 0.7);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  border: 1px solid var(--gray-100);
}

form>*:not([hidden])~*:not([hidden]) {
  margin-top: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: var(--gray-700);
}

form input,
form textarea {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  transition: all 0.15s ease-in-out;
}

form input:focus,
form textarea:focus {
  border-color: var(--cta-green);
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-color: rgba(var(--cta-green-rgb), 0.5);
  box-shadow: 0 0 0 3px var(--tw-ring-color);
}

.cta-button-form {
  width: 100%;
  padding: 0.75rem 1.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  color: white;
  background-color: var(--cta-green);
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  transition: all 0.3s;
}

.cta-button-form:hover {
  background-color: var(--cta-green-hover);
  transform: scale(1.05);
}

.cta-button-form:active {
  transform: scale(0.95);
}

#form-success-message {
  margin-top: 1rem;
  padding: 1rem;
  background-color: rgba(var(--cta-green-rgb), 0.2);
  color: var(--cta-green);
  border-radius: 0.5rem;
  text-align: center;
}



/* フッター -------------------------------------------------------

--------------------------------------------------------------------*/


#main-footer {
  background-color: var(--base-beige);
  border-top: 1px solid var(--gray-100);
}

#main-footer .container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

#main-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  /* Desktop */
  gap: 2rem;
  text-align: left;
  /* Desktop */
}



@media (max-width: 767px) {
  #main-footer .footer-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    text-align: center;
  }
}



/* .footer-logo-area>*:not([hidden])~*:not([hidden]) { */
/* margin-top: 1rem; */
/* } */


.footer-logo-area {
  margin-right: 3rem;
}

.footer-logo-area .logo img {
  justify-content: flex-start;
  margin-bottom: 1rem;
  /* Desktop */
}



@media (max-width: 767px) {
  .footer-logo-area .logo {
    justify-content: center;
  }

  .footer-logo-area p {
   padding-left: 1.4rem;
   font-weight: 600;  
  }
}



.footer-links h4 {
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.footer-links ul>*:not([hidden])~*:not([hidden]) {
  margin-top: 0.5rem;
}

.footer-links ul a {
  color: var(--gray-500);
}

.footer-links ul a:hover {
  color: var(--cta-green);
}

.social-icons {
  display: flex;
  justify-content: flex-start;
  /* Desktop */
  gap: 1rem;
}



@media (max-width: 767px) {
  .social-icons {
    justify-content: center;
  }
}



.social-icons a {
  color: var(--gray-400);
}

.social-icons a:hover {
  color: var(--accent-pink);
}

.footer-copyright {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
  text-align: center;
}

.footer-copyright p {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--gray-500);
}