:root {
  /* Colors for Care Taxi YELL */
  --primary-color: #7ED957;
  --light-green: #E8F7F2;
  --accent-green: #CFF3A2;
  --text-dark: #333333;
  --white: #FFFFFF;
  --light-gray: #D9D9D9;
  --green-fade: rgba(232, 247, 242, 0.6);
  --overlay-dark: rgba(136, 136, 136, 0.2);
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-dark: rgba(0, 0, 0, 0.25);

  /* Font Sizes */
  --font-size-48: clamp(32px, 4vw, 48px);
  --font-size-40: clamp(28px, 3.5vw, 40px);
  --font-size-32: clamp(24px, 2.8vw, 32px);
  --font-size-28: clamp(20px, 2.4vw, 28px);
  --font-size-24: clamp(18px, 2vw, 24px);
  --font-size-20: clamp(16px, 1.8vw, 20px);
  --font-size-18: clamp(16px, 1.6vw, 18px);
  --font-size-16: clamp(14px, 1.4vw, 16px);
  --font-size-15: clamp(13px, 1.3vw, 15px);
  --font-size-14: clamp(12px, 1.2vw, 14px);
  --font-size-12: 12px;

  /* Font Families */
  --font-zen-kurenaido: 'Zen Kurenaido', serif;
  --font-zen-maru: 'Zen Maru Gothic', sans-serif;
  --font-poppins: 'Poppins', sans-serif;
  --font-noto-sans: 'Noto Sans JP', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-zen-maru);
  color: var(--text-dark);
  line-height: 1.7;
  letter-spacing: 0.04em;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}
b{
  font-weight: 700;
}
.primary-color{
  color: var(--primary-color);
}

/* Header */
.header {
  background-color: var(--white);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 50px;
}

.header-logo {
  width: 6rem;
  height: 6rem;
  flex-shrink: 0;
}

.header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-list a {
  font-family: var(--font-zen-maru);
  font-weight: 700;
  font-size: var(--font-size-16);
  color: var(--text-dark);
  line-height: 1.7;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
  white-space: nowrap;
}

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

.header-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}

.contact-line {
  width: 2px;
  height: 56px;
  background-color: var(--light-gray);
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.phone-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  white-space: nowrap;
}

.phone-wrapper img {
  width: 24px;
  height: 26px;
}

.phone-number {
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: var(--font-size-32);
  color: var(--primary-color);
  line-height: 1;
}

.office-hours {
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: var(--font-size-16);
  color: var(--text-dark);
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: right;
}

/* Mobile Menu */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  margin-right: 10px;
}

.hamburger-line {
  width: 24px;
  height: 3px;
  background: var(--text-dark);
  margin: 2px 0;
  transition: all 0.3s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* モバイルメニューオーバーレイ */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* モバイルメニューが開いているときはハンバーガーボタンを隠す */
body.menu-open .hamburger-btn {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--light-gray);
  line-height: 1;
}

.mobile-menu-logo img {
  height: 4rem;
  object-fit: contain;
}

.mobile-menu-close {
  position: relative;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.close-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 3px;
  background: var(--text-dark);
  transition: all 0.3s ease;
}

.close-line:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-line:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav {
  padding: 40px 20px;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.mobile-nav-list li {
  margin-bottom: 20px;
}

.mobile-nav-link {
  display: block;
  font-family: var(--font-zen-maru);
  font-weight: 700;
  font-size: var(--font-size-18);
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  text-decoration: none;
  padding: 15px 0;
  border-bottom: 1px solid var(--light-gray);
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--primary-color);
}

.mobile-contact {
  padding-top: 20px;
  border-top: 2px solid var(--primary-color);
}

.mobile-contact-info {
  text-align: center;
}

.mobile-phone-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.mobile-phone-wrapper:hover {
  background-color: rgba(126, 217, 87, 0.1);
}

.mobile-phone-wrapper img {
  width: 20px;
  height: 20px;
}

.mobile-phone-number {
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: var(--font-size-18);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--primary-color);
}

.phone-overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mobile-office-hours {
  font-family: var(--font-zen-maru);
  font-weight: 500;
  font-size: var(--font-size-14);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  margin: 0;
}

.section-title-line {
  width: 64px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 0 auto;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100vw;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 6rem;
  aspect-ratio: 1440 / 700;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(136, 136, 136, 0.2);
}

.hero-inner {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin: 7rem auto 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.hero-message {
  display: flex;
  flex-direction: column;
}

.hero-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-title {
  font-family: var(--font-zen-maru);
  font-weight: 700;
  font-size: var(--font-size-48);
  color: var(--white);
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-family: var(--font-zen-maru);
  font-weight: 700;
  font-size: var(--font-size-18);
  color: var(--white);
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}

.hero-contact-btn {
  position: relative;
  width: fit-content;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.contact-label {
  background-color: var(--white);
  border-radius: 999px;
  padding: 4px 12px;
  font-family: var(--font-zen-maru);
  font-weight: 500;
  font-size: var(--font-size-16);
  color: var(--text-dark);
  width: fit-content;
  margin: 0 auto;
  position: relative;
}

.contact-label::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-top: .4rem solid var(--white);
  border-right: .4rem solid transparent;
  border-left: .4rem solid transparent;
}

.contact-label span {
  font-family: var(--font-zen-maru);
  font-weight: 500;
  font-size: var(--font-size-14);
  color: var(--primary-color);
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  z-index: 1;
}

.hero-contact-btn .phone-icon-wrapper {
  background-color: var(--primary-color);
  border-radius: 999px;
  padding: 16px 48px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  flex-direction: column;
}

.phone-icon-wrapper-inner {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.hero-contact-btn .phone-icon-wrapper img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.hero-contact-btn .phone-number {
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: var(--font-size-28);
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.04em;
}

.hero-contact-btn .office-hours {
  font-family: var(--font-zen-maru);
  font-weight: 700;
  font-size: var(--font-size-14);
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
}

/* メッセージセクション */
.message-section {
  background-color: var(--white);
  padding: 3rem 0;
}

.message-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
}

.message-image {
  width: 608px;
  height: 586px;
  border-radius: 24px;
  overflow: hidden;
}

.message-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 2rem;
  margin-left: -2rem;
  position: relative;
  z-index: 2;
  width: 60%;
}

.message-content::before {
  content: '';
  position: absolute;
  top: -4rem;
  left: -80px;
  right: -24px;
  bottom: -24px;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, .8) 0%, 
    rgba(255, 255, 255, .8) 60.69%, 
    rgba(255, 255, 255, 0) 104.28%);
  border-radius: 24px;
  z-index: -1;
  pointer-events: none;
  filter: blur(20px);
}

.message-title {
  font-family: var(--font-zen-kurenaido);
  font-weight: 400;
  font-size: var(--font-size-40);
  color: var(--text-dark);
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.message-text {
  font-family: var(--font-zen-maru);
  font-weight: 500;
  font-size: var(--font-size-15);
  color: var(--text-dark);
  line-height: 2.5;
  letter-spacing: 0.04em;
}

.message-author {
  font-family: var(--font-zen-kurenaido);
  font-weight: 400;
  font-size: var(--font-size-15);
  color: var(--text-dark);
  line-height: 1.7;
  letter-spacing: 0.04em;
}

/* 経営理念セクション */
.philosophy-section {
  position: relative;
  padding: 0 170px;
  background: var(--light-green);
}

.philosophy-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  padding: 88px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.section-title {
  font-family: var(--font-zen-maru);
  font-weight: 700;
  font-size: var(--font-size-40);
  color: var(--text-dark);
  text-align: center;
}

.title-underline {
  width: 64px;
  height: 4px;
  background: var(--primary-color);
}

.philosophy-content {
  background: var(--white);
  border-radius: 8px;
  padding: 56px 80px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.philosophy-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.philosophy-header {
  position: relative;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  border-bottom: 1.5px solid var(--primary-color);
}

.philosophy-label {
  font-family: var(--font-zen-maru);
  font-weight: 700;
  font-size: var(--font-size-24);
  line-height: 1.7;
  color: var(--text-dark);
}

.sub-label {
  font-family: var(--font-zen-maru);
  font-weight: 700;
  font-size: var(--font-size-16);
  color: var(--text-dark);
  margin-left: .5rem;
}

.philosophy-badge {
  display: flex;
  justify-content: center;
  padding: .4rem 1.4rem;
  background: var(--white);
  border: 1.5px solid var(--primary-color);
  border-bottom: none;
}

.philosophy-badge span {
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: var(--font-size-20);
  color: var(--primary-color);
}

.philosophy-text {
  font-family: var(--font-zen-maru);
  font-weight: 500;
  font-size: var(--font-size-16);
  line-height: 1.7;
  color: var(--text-dark);
}

/* サービス内容セクション */
.service-section {
  padding: 0 170px;
  background: var(--white);
}

.service-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 56px;
  padding: 88px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.service-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.service-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 5rem;
  padding: 48px 80px;
  background: var(--green-fade);
  border-radius: 8px;
  width: 100%;
  position: relative;
}

.service-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 12rem;
}

.service-number {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: var(--font-size-16);
  background: var(--primary-color);
  color: var(--white);
  padding: 4px;
  text-align: center;
  width: fit-content;
}

.service-title {
  font-family: var(--font-zen-maru);
  font-weight: 700;
  font-size: var(--font-size-32);
  line-height: 1.7;
  color: var(--text-dark);
  position: relative;
  width: fit-content;
}

.service-title span {
  position: relative;
  z-index: 2;
}

.service-title::after {
  content: '';
  position: absolute;
  bottom: .4rem;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 4px;
  z-index: 0;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-item img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.service-item span {
  font-family: var(--font-zen-maru);
  font-weight: 500;
  font-size: var(--font-size-16);
  line-height: 1.7;
  color: var(--text-dark);
}

.service-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  width: 100%;
}

.service-info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 40px 56px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0px 0px 20px var(--shadow-light);
  flex: 1;
}

.info-title {
  font-family: var(--font-zen-maru);
  font-weight: 700;
  font-size: var(--font-size-32);
  line-height: 1.7;
  color: var(--text-dark);
  text-align: center;
  position: relative;
  width: fit-content;
  z-index: 2;
}

.info-title span {
  position: relative;
  z-index: 2;
}

.info-title::after {
  content: '';
  position: absolute;
  bottom: .4rem;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 4px;
  z-index: 0;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px dashed var(--light-gray);
  padding-bottom: .8rem;
}

.dot {
  width: 4px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 50%;
  flex-shrink: 0;
}

.area-info {
  width: 100%;
}

.area-label {
  font-family: var(--font-zen-maru);
  font-weight: 700;
  font-size: var(--font-size-18);
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--light-green);
  padding: 0 24px;
  text-align: center;
  margin-bottom: 12px;
  border-radius: 8px;
}

.area-text {
  font-family: var(--font-zen-maru);
  font-weight: 500;
  font-size: var(--font-size-16);
  line-height: 1.7;
  color: var(--text-dark);
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-label {
  font-family: var(--font-zen-maru);
  font-weight: 700;
  font-size: var(--font-size-18);
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--light-green);
  padding: 0 12px;
  text-align: center;
  border-radius: 8px;
}

.pricing-detail {
  font-family: var(--font-noto-sans);
  font-weight: 400;
  font-size: var(--font-size-16);
  line-height: 1.7;
  color: var(--text-dark);
}

/* ご利用の流れセクション */
.flow-section {
  padding: 0 170px;
  background: var(--white);
}

.flow-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 56px;
  padding: 40px 0 88px;
  max-width: 1200px;
  margin: 0 auto;
}

.flow-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 4rem;
  background: var(--light-green);
  border-radius: 24px;
  width: 100%;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
}

.step-item::after {
  content: '';
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 28px solid transparent;
  border-right: 28px solid transparent;
  border-top: 24px solid var(--primary-color);
}

.step-item:last-child::after {
  display: none;
}

.step-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--white);
  border-radius: 8px;
  width: 100%;
}

.step-number {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  border-radius: 8px 0px 0px 8px;
  height: 100%;
  padding: 5rem 2rem;
  width: 10%;
}

.step-label {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: var(--font-size-16);
  color: var(--white);
}

.step-num {
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: var(--font-size-40);
  color: var(--white);
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  padding: 24px 0;
}

.step-title {
  font-family: var(--font-zen-maru);
  font-weight: 700;
  font-size: var(--font-size-24);
  line-height: 1.7;
  color: var(--text-dark);
  position: relative;
  margin-bottom: 16px;
  width: fit-content;
}

.step-title span {
  position: relative;
  z-index: 2;
}

.step-title::after {
  content: '';
  position: absolute;
  bottom: .4rem;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 4px;
  z-index: 0;
}

.step-text {
  font-family: var(--font-zen-maru);
  font-weight: 500;
  font-size: var(--font-size-16);
  line-height: 1.7;
  color: var(--text-dark);
}

.step-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.step-phone {
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-phone img {
  width: 24px;
  height: 26px;
}

.step-phone span {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: var(--font-size-28);
  line-height: 1.7;
  color: var(--text-dark);
}

.step-hours {
  font-family: var(--font-zen-maru);
  font-weight: 500;
  font-size: var(--font-size-16);
  line-height: 1.7;
  color: var(--text-dark);
}



/* よくある質問セクション */
.qa-section {
  background: var(--light-green);
  padding: 88px 0;
}

.qa-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.qa-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.qa-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.qa-item {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
}

.qa-question {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 32px 56px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.qa-question:hover {
  background: rgba(232, 247, 242, 0.3);
}

.qa-q-icon {
  background: var(--primary-color);
  color: var(--white);
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: var(--font-size-20);
  line-height: 1;
  letter-spacing: 0.04em;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qa-q-text {
  font-family: var(--font-zen-maru);
  font-weight: 700;
  font-size: var(--font-size-20);
  color: var(--text-dark);
  line-height: 1.7;
  letter-spacing: 0.04em;
  flex: 1;
}

.qa-toggle {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.qa-toggle::before,
.qa-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--text-dark);
  transition: transform 0.3s ease;
}

.qa-toggle::before {
  width: 20px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.qa-toggle::after {
  width: 2px;
  height: 20px;
  transform: translate(-50%, -50%);
}

.qa-item--open .qa-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.qa-answer {
  display: none;
  border-top: 1px solid var(--light-gray);
  padding: 32px 56px;
}

.qa-item--open .qa-answer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.qa-a-icon {
  background: var(--white);
  border: 1px solid var(--light-gray);
  color: var(--primary-color);
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: var(--font-size-20);
  line-height: 1;
  letter-spacing: 0.04em;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qa-a-text {
  font-family: var(--font-zen-maru);
  font-weight: 500;
  font-size: var(--font-size-16);
  color: var(--text-dark);
  line-height: 1.7;
  letter-spacing: 0.04em;
  flex: 1;
}

/* 事業概要セクション */
.company-section {
  background: var(--white);
  padding: 88px 0;
}

.company-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.company-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.company-content {
  max-width: 1200px;
  width: 100%;
  position: relative;
}

.company-row {
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid var(--light-gray);
  padding: 1.5rem 0;
  position: relative;
}

.company-row::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 9rem;
  height: 1px;
  background: var(--primary-color);
}

.company-label {
  font-family: var(--font-zen-maru);
  font-weight: 700;
  font-size: var(--font-size-16);
  color: var(--text-dark);
  line-height: 1.7;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  padding: 0 1.5rem;
  width: 10rem;
}

.company-value {
  font-family: var(--font-zen-maru);
  font-weight: 500;
  font-size: var(--font-size-15);
  color: var(--text-dark);
  line-height: 1.7;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  margin-left: 5rem;
}

/* お問い合わせセクション */
.contact-section {
  position: relative;
  width: 100%;
  margin: 0 auto 100px;
  max-width: 1200px;
  padding: 0 20px;
}

.contact-bg-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
}

.contact-bg-image {
  position: absolute;
  top: 24px;
  right: 0;
  width: 768px;
  height: 460px;
  z-index: -1;
}

.contact-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.contact-content {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 24px;
  padding: 64px 44px;
  display: flex;
  flex-direction: column;
  gap: 56px;
  width: 48%;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-title-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  height: 40px;
  width: 334px;
}

.contact-main-title {
  font-family: var(--font-zen-maru);
  font-weight: 700;
  font-size: var(--font-size-40);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--primary-color);
  white-space: nowrap;
}

.contact-description {
  font-family: var(--font-zen-maru);
  font-weight: 500;
  font-size: var(--font-size-16);
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--text-dark);
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.contact-phone-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 16px 48px;
  border-radius: 999px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  width: 100%;
  cursor: pointer;
  border: 2px solid var(--primary-color);
}

.contact-phone-wrapper .phone-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.contact-phone-wrapper .phone-icon-wrapper img {
  width: 28px;
  height: 28px;
}

.contact-phone-wrapper .phone-number {
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: var(--font-size-28);
  line-height: 1;
  color: var(--primary-color);
}

.contact-phone-wrapper .office-hours {
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: var(--font-size-14);
  line-height: 1;
  text-align: center;
  color: var(--primary-color);
}

.contact-note {
  font-family: var(--font-zen-maru);
  font-weight: 500;
  font-size: var(--font-size-14);
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--text-dark);
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  padding: 56px 170px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 80px;
}

.footer-nav-list {
  display: flex;
  align-items: center;
  gap: 80px;
}

.footer-nav-list a {
  font-family: var(--font-zen-maru);
  font-weight: 700;
  font-size: var(--font-size-15);
  color: var(--white);
  line-height: 1.7;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.footer-nav-list a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-nav-link {
  font-family: var(--font-zen-maru);
  font-weight: 700;
  font-size: var(--font-size-15);
  color: var(--white);
  line-height: 1.7;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.footer-nav-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-line {
  width: 1100px;
  height: 0.5px;
  background-color: var(--white);
}

.footer-copyright {
  font-family: var(--font-zen-maru);
  font-weight: 500;
  font-size: var(--font-size-12);
  color: var(--white);
  line-height: 1;
}

/* レスポンシブデザイン */
@media (max-width: 1024px) {
  .pc-only {
    display: none;
  }
  
  /* ハンバーガーメニューを表示 */
  .hamburger-btn {
    display: flex;
  }
  
  /* 通常のナビゲーションと電話番号を非表示 */
  .header-nav,
  .header-contact {
    display: none;
  }
  
  .header-inner {
    justify-content: space-between;
  }
}

@media (max-width: 1200px) {
  .hero-inner {
    padding: 0 20px;
    margin: 5rem auto 0;
  }
  
  .message-section,
  .philosophy-section,
  .service-section,
  .flow-section,
  .qa-section,
  .company-section {
    padding: 3rem 0;
  }
  
  .company-container {
    padding: 0 20px;
  }
  
  .footer {
    padding: 40px 20px;
  }
}

@media (max-width: 767px) {
  .footer-nav-list {
    flex-direction: column;
  }
}

@media (min-width: 481px) {
  br.sp-only{
    display: none;
  }
}
@media (max-width: 480px) {
  .header-inner {
    gap: 60px;
  }
  
  .header-logo {
    width: 5rem;
    height: 5rem;
  }
  
  .hero-section {
    min-height: 80vh;
    margin-top: 5rem;
  }
  .hero-bg,
  .hero-overlay{
    top: -3.6rem;
  }
  
  .hero-content {
    padding: 1rem;
    align-items: center;
    margin: 0 auto -15rem;
    gap: 1.4rem;
  }
  
  .hero-title {
    font-size: var(--font-size-32);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-16);
  }
  .message-container,
  .philosophy-container,
  .service-container,
  .flow-container,
  .qa-container,
  .company-container{
    padding: 0 1.4rem;
  }
  .message-container {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  
  .message-image {
    position: relative;
    width: 100%;
    height: 400px;
    left: 0;
    top: 0;
  }

  .message-title{
    white-space: nowrap;
    font-size: var(--font-size-32);
  }
  .message-content {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin-left: 0;
    margin-top: 0;
  }

  .message-content::before {
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(90deg, 
      rgba(255, 255, 255, 0.95) 0%, 
      rgba(255, 255, 255, 0.8) 50%, 
      rgba(255, 255, 255, 0) 100%);
  }
  
  .philosophy-content {
    padding: 40px 20px;
  }
  
  .service-card {
    flex-direction: column;
    gap: 24px;
    padding: 32px 20px;
  }
  
  .service-info {
    flex-direction: column;
  }
  .service-info-card{
    padding: 2rem 1rem;
  }
  .info-title{
    font-size: var(--font-size-28);
  }
  
  .flow-container{
    padding: 0;
  }
  .flow-steps {
    padding: 2rem 1.4rem;
    border-radius: 0;
  }
  
  .step-item {
    width: 100%;
  }
  
  .step-card {
    flex-direction: column;
    gap: 24px;
    min-height: auto;
  }
  .step-content{
    padding: 1rem;
  }
  .step-contact{
    flex-direction: column;
    align-items: center;
  }
  .step-title{
    white-space: nowrap;
  }
  
  .step-number {
    flex-direction: row;
    width: 100%;
    padding: 16px 20px;
    border-radius: 8px 8px 0 0;
  }
  
  .qa-container {
    padding: 0 20px;
  }
  
  .qa-question,
  .qa-answer {
    padding: 24px 20px;
  }
  
  .company-container {
    padding: 0 20px;
  }
  
  .company-content {
    width: 100%;
    height: auto;
  }
  
  .company-row::after {
    width: 6rem;
  }
  
  .company-label {
    width: 7rem;
    padding: 0;
  }
  
  .company-value {
    margin-left: 0;
    flex-shrink: unset;
  }

  
  .contact-bg-image {
    position: relative;
    top: 0;
    right: auto;
    width: 100%;
    height: 200px;
    margin-bottom: 24px;
    z-index: 1;
  }
  
  .contact-bg-image img {
    border-radius: 16px;
    object-position: center 30%;
  }
  
  .contact-content {
    position: relative;
    z-index: 2;
    background: var(--white);
    border-radius: 16px;
    padding: 32px 24px;
    gap: 32px;
    width: 100%;
    margin-top: -40px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
  }
  
  .footer {
    padding: 56px 40px;
  }
  
  .footer-nav {
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }
  
  .footer-nav-list {
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }
}