/* 
beflexベビーシッター
整理されたスタイルシート（最終版）
*/

/* ===== 変数定義・基本設定 ===== */
:root {
  /* カラー変数 */
  --primary-color: #79c8c7;
  /* 水色（ロゴと同じ） */
  --primary-light: #a9e0df;
  /* 明るい水色 */
  --secondary-color: #b8e0d2;
  /* 薄い黄緑 */
  --accent-color: #8fd3b0;
  /* 明るい黄緑 */
  --accent-color2: #FFA07A;
  /*オレンジ */
  --line-color: #06C755;
  /* LINE緑 */
  --text-color: #4A4A4A;
  /* 主要テキスト色 */
  --light-text: #6A6A6A;
  /* 薄いテキスト色 */
  --light-bg: #f0f9f9;
  /* 薄い水色の背景 */
  --yellow-bg: #fff4d6;
  /* 薄い黄色の背景 */
  --white: #FFFFFF;
  /* 白 */
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* 標準シャドウ */
  --radius: 10px;
  /* 標準の角丸 */
}

/* 全体のリセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', sans-serif;
}

body {
  background-color: var(--white);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

/* リンクスタイル */
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* 画像スタイル */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* スクロールスタイル */
html {
  scroll-behavior: smooth;
}


/* ===== レイアウト ===== */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 60px 0;
}

/* ===== ヘッダー ===== */
header {
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.logo {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-color);
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--text-color);
  font-size: 0.8em;
  margin-left: 5px;
}

/* ===== ナビゲーション ===== */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  font-weight: 500;
  position: relative;
  white-space: nowrap;
  font-size: 12px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a.active {
  color: var(--primary-color);
}

/* モバイルメニューボタン */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-color);
}

/* モバイルナビゲーション */
.mobile-nav {
  display: block;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav.active {
  padding: 20px 0;
  height: auto;
  opacity: 1;
  visibility: visible;
}

.mobile-nav-menu {
  list-style: none;
}

.mobile-nav-menu li {
  margin: 15px 0;
  text-align: center;
}

.mobile-nav-menu a {
  display: block;
  padding: 8px 0;
  font-weight: 500;
}

/* ===== ヒーローセクション ===== */
.hero {
  padding: 0;
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  color: var(--white);
  max-width: 600px;
  padding: 0;
  margin-top: 60px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero h1 strong {
  display: block;
  color: #FFFFFF;
  font-size: 1.2em;
  margin-top: 10px;
  position: relative;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* ===== ボタンスタイル ===== */
.cta-button {
  display: inline-block;
  background-color: var(--accent-color2);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: var(--shadow);
  margin-top: 20px;
  text-align: center;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-button.large {
  padding: 15px 35px;
  font-size: 1.2rem;
}

/* LINEボタン */
.cta-button.line-button {
  background-color: var(--line-color);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-button.line-button:hover {
  background-color: #00b046;
  color: white;
}

.cta-content .cta-button {
  background-color: var(--accent-color2);
  color: var(--white);
}

.cta-content .cta-button.line-button {
  background-color: var(--line-color);
  color: var(--white);
}

.cta-content .cta-button.line-button:hover {
  background-color: #00b046;
}

/* ===== 予約可能状況 ===== */
.availability {
  padding: 80px 0;
  background-color: var(--white);
}

.availability-cards-container {
  max-width: 700px;
  margin: 0 auto;
}

.availability-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px auto;
  width: 100%;
  max-width: 600px;
}

.availability-card {
  flex: 1;
  background-color: var(--yellow-bg);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  min-width: 150px;
  max-width: 250px;
}

.availability-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.availability-card h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--text-color);
}

.status-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 25px 0;
}

.status {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  color: var(--white);
  margin-bottom: 10px;
}

.status-text {
  font-size: 1.1rem;
  font-weight: 500;
}

.status.available {
  background-color: #36b37e;
  /* 緑 - 空きあり */
}

.status.limited {
  background-color: #ffab00;
  /* オレンジ - 残りわずか */
}

.status.unavailable {
  background-color: #ff5630;
  /* 赤 - 予約不可 */
}

.availability-note {
  font-size: 0.95rem;
  color: var(--light-text);
  margin-top: 15px;
  line-height: 1.6;
  text-align: center;
}

.availability-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===== セクションタイトル ===== */
.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 2rem;
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color2);
}

.section-title p {
  color: var(--light-text);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 15px auto 0;
}

/* ===== 特徴セクション ===== */
.features {
  background-color: var(--white);
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: var(--yellow-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon i {
  font-size: 32px;
  color: var(--accent-color2);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.feature-card p {
  color: var(--light-text);
  font-size: 0.95rem;
}

/* ===== 特徴ショーケース ===== */
.features-showcase {
  padding: 80px 0;
  background-color: var(--white);
}

.feature-showcase-item {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  border-radius: var(--radius);
  overflow: hidden;
}

.feature-showcase-item:last-child {
  margin-bottom: 30px;
}

.feature-showcase-item:nth-child(odd) {
  flex-direction: row;
}

.feature-showcase-item:nth-child(even) {
  flex-direction: row-reverse;
}

.feature-image {
  flex: 0 0 45%;
  max-width: 45%;
  height: 320px;
  position: relative;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.feature-showcase-item:hover .feature-image img {
  transform: scale(1.02);
}

.feature-content {
  flex: 0 0 55%;
  max-width: 55%;
  padding: 0 40px;
}

.feature-content h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--text-color);
  line-height: 1.4;
}

.feature-content p {
  line-height: 1.7;
  color: var(--light-text);
}

/* ===== サービスの流れ ===== */
.service-flow {
  background-color: var(--yellow-bg);
  padding: 80px 0;
}

.flow-steps {
  max-width: 800px;
  margin: 0 auto;
}

.flow-step {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  left: 20px;
  width: 2px;
  height: calc(100% + 10px);
  background-color: var(--accent-color2);
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--accent-color2);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 20px;
  position: relative;
  z-index: 1;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.flow-cta {
  text-align: center;
  margin-top: 50px;
}

/* ===== 料金プラン ===== */
.price-plan {
  padding: 80px 0;
  background-color: var(--yellow-bg);
}

.price-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.price-card {
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  width: 100%;
  max-width: 350px;
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-card.featured {
  border: 2px solid var(--primary-color);
  position: relative;
}

.price-header {
  padding: 20px;
  background-color: var(--yellow-bg);
  text-align: center;
  position: relative;
}

.price-header h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.recommended {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 5px 10px;
  font-size: 0.8rem;
  border-bottom-left-radius: 8px;
}

.price-content {
  padding: 30px 20px;
  text-align: center;
}

.price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 20px;
}

.price span {
  font-size: 1rem;
  color: var(--light-text);
  font-weight: normal;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
}

.price-features li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
}

.price-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--accent-color2);
  position: absolute;
  left: 0;
}

.price-notes {
  max-width: 800px;
  margin: 40px auto 0;
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 30px;
}

.price-notes h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.price-notes ul {
  list-style: none;
  margin-bottom: 15px;
}

.price-notes li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.price-notes li:before {
  content: '\f0da';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--accent-color2);
  position: absolute;
  left: 0;
}

/* ===== FAQ ===== */
.faq {
  background-color: var(--white);
  padding: 80px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--yellow-bg);
  border-radius: var(--radius);
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  padding: 20px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 1000px;
}

/* ===== 対応エリア ===== */
.service-area {
  padding: 80px 0;
  background-color: var(--white);
}

.area-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.area-box {
  background-color: var(--yellow-bg);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  width: 100%;
  margin-bottom: 0;
}

.area-box h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--accent-color2);
  display: flex;
  align-items: center;
}

.area-box h3 i {
  margin-right: 10px;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin: 20px 0;
}

.area-column {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 15px;
  box-shadow: var(--shadow);
}

.area-column h4 {
  color: var(--accent-color2);
  font-size: 1rem;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--accent-color2);
  padding-bottom: 5px;
}

.area-column p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--light-text);
}

.area-note {
  font-size: 0.9rem;
  color: var(--light-text);
  margin-top: 15px;
}

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 80px 0;
  color: var(--white);
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta-content p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* ===== 固定CTAボタン ===== */
.fixed-cta-pc {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  display: block;
}

.fixed-cta-sp {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: none;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.fixed-cta-buttons {
  display: flex;
  justify-content: center;
}

.cta-button.full-width {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 0;
  background-color: var(--line-color);
  color: white;
}

/* ===== ページヘッダー ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--light-bg) 100%);
  padding: 120px 0 60px;
  text-align: center;
}

.page-title {
  margin-bottom: 20px;
}

.page-title h1 {
  font-size: 2.0rem;
  color: var(--text-color);
  position: relative;
  display: inline-block;
}

.page-title h1::after {
  content: '';
  position: absolute;
  width: 60%;
  height: 8px;
  bottom: 0;
  left: 20%;
  background-color: rgba(169, 224, 223, 0.6);
  z-index: -1;
}

/* ===== お問い合わせフォーム ===== */
.contact-form-section {
  padding: 60px 0;
  background-color: var(--yellow-bg);
}

.form-container {
  max-width: 800px;
  margin: 40px auto 0;
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 25px;
  width: 100%;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 1rem;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--accent-color2);
  background-color: var(--white);
  outline: none;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.required {
  color: #ff0000;
  margin-left: 5px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
  margin-right: 10px;
  transform: scale(1.2);
}

.checkbox-label a {
  color: var(--accent-color2);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

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

.form-button {
  background-color: var(--accent-color2);
  color: var(--white);
  border: none;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-button:hover {
  background-color: #68afae;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* ===== お問い合わせ方法 ===== */
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
}

.contact-method {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 320px;
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background-color: var(--yellow-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-icon i {
  font-size: 32px;
  color: var(--accent-color2);
}

.contact-method h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.contact-method p {
  color: var(--light-text);
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.contact-email,
.contact-phone {
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--text-color);
  margin: 15px 0;
}

.reception-hours {
  font-size: 0.9rem;
  color: var(--light-text);
  margin-bottom: 15px;
}

.line-qr {
  width: 120px;
  height: 120px;
  margin: 15px auto;
  background-color: #f5f5f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.line-qr img {
  width: 100px;
  height: 100px;
}

.contact-link {
  display: inline-block;
  color: var(--accent-color2);
  font-weight: 500;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--accent-color);
}

.contact-link i {
  margin-left: 5px;
}

.phone-link {
  margin-top: 5px;
}

/* ===== 企業向け出張託児サービス ===== */
.corporate-intro {
  padding: 80px 0;
}

.intro-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.intro-image {
  flex: 0 0 450px;
  margin-right: 50px;
  margin-bottom: 30px;
}

.intro-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
}

.intro-content {
  flex: 1;
  min-width: 300px;
}

.intro-content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

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

.service-types {
  background-color: var(--light-bg);
  padding: 80px 0;
}

.type-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.type-card {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.type-card:hover {
  transform: translateY(-5px);
}

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

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

.type-card:hover .type-image img {
  transform: scale(1.05);
}

.type-content {
  padding: 25px;
  flex-grow: 1;
}

.type-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.type-content p {
  color: var(--light-text);
  margin-bottom: 20px;
}

/* ===== 会社概要ページ ===== */
.company-info-section {
  background-color: var(--yellow-bg);
  padding: 60px 0;
}

.company-info-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.company-info-table {
  width: 100%;
  border-collapse: collapse;
}

.company-info-table th,
.company-info-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.company-info-table th {
  width: 30%;
  min-width: 120px;
  font-weight: 600;
  color: var(--text-color);
  vertical-align: top;
}

.company-info-table td {
  color: var(--light-text);
}

/* 企業向けページのメリット部分修正 */
.benefit-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.benefit-item {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.benefit-icon i {
  font-size: 32px;
  color: var(--primary-color);
}

.benefit-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.benefit-item p {
  color: var(--light-text);
  flex-grow: 1;
}

/* 料金について部分 */
.price-info {
  padding: 80px 0;
}

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

.price-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.price-note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--light-text);
  text-align: left;
  background-color: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price-note p {
  margin-bottom: 5px;
}

.price-info .cta-button {
  text-align: center;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
  .intro-image {
    margin-bottom: 40px;
    /* 画像下の余白を増やす */
    height: auto !important;
    /* 高さ制限を解除 */
  }

  .intro-image img {
    height: auto;
    /* 画像の高さを自動調整 */
  }

  .sp-margin-top {
    margin-top: 30px;
    /* 見出しの上部に余白を追加 */
    padding-top: 20px;
    /* さらにパディングも追加 */
    clear: both;
    /* フロートをクリア */
  }
}

/* 代表者プロフィール */
.ceo-profile {
  background-color: var(--yellow-bg);
  padding: 60px 0;
}

.ceo-profile-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  align-items: flex-start;
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.ceo-image {
  flex: 0 0 300px;
}

.ceo-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.ceo-info {
  flex: 1;
  min-width: 300px;
}

.ceo-info h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--text-color);
}

.ceo-info .position {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--accent-color2);
}

.ceo-info p {
  margin-bottom: 15px;
  line-height: 1.8;
}



/* 創業ストーリー */
.founder-story .story-content {
  max-width: 800px;
  margin: 0 auto;
}

.founder-story h3 {
  font-size: 1.4rem;
  color: var(--text-color);
  margin-bottom: 30px;
  text-align: center;
}

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

.founder-story .highlight {
  background-color: var(--yellow-bg);
  padding: 2px 5px;
  font-weight: bold;
}

/* 企業理念 */
.philosophy-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.philosophy-box {
  flex: 0 0 calc(50% - 15px);
  min-width: 300px;
  padding: 30px;
  background-color: var(--yellow-bg);
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.philosophy-box h3 {
  font-size: 1.4rem;
  color: var(--accent-color2);
  margin-bottom: 15px;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-color2);
}

.philosophy-box p {
  line-height: 1.8;
  text-align: center;
  font-weight: bold;
}

/* ===== フッター ===== */
.simple-footer {
  background-color: var(--text-color);
  color: #f5f5f5;
  padding: 30px 0;
  font-size: 14px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

/* フッターのブランド部分 */
.footer-brand {
  flex: 0 0 300px;
  margin-bottom: 20px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  display: inline-block;
  margin-bottom: 15px;
}

.footer-logo span {
  display: block;
  color: #f5f5f5;
  font-size: 15px;
  margin-top: 5px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.5;
  margin-top: 10px;
  max-width: 280px;
}

/* フッターメニュー部分 */
.footer-menus {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.footer-menu-column {
  min-width: 140px;
}

.footer-menu-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-menu-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu-list li {
  margin-bottom: 10px;
}

.footer-menu-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 14px;
}

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

/* 区切り線 */
.footer-divider {
  border: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 0 0 20px;
}

/* フッターボトム部分 */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
}

.social-icon.line {
  background-color: rgba(0, 185, 0, 0.2);
}

.social-icon.line:hover {
  background-color: #00b900;
}

.social-icon.instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.x:hover {
  background-color: #000;
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

/* フッターのモバイル最適化 */
@media (max-width: 768px) {

  /* フッターメニューをより効率的に横並びにする */
  .footer-menus {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 15px;
    width: 100%;
  }

  .footer-menu-column {
    width: 30%;
    /* 3カラム程度に */
    min-width: auto;
    margin-bottom: 15px;
  }

  .footer-menu-title {
    font-size: 14px;
    margin-bottom: 8px;
    text-align: center;
  }

  .footer-menu-list {
    text-align: center;
  }

  .footer-menu-list li {
    margin-bottom: 5px;
  }

  /* ブランド部分も短くする */
  .footer-brand {
    margin-bottom: 10px;
  }

  .footer-tagline {
    display: none;
    /* モバイルではタグラインを非表示に */
  }

  /* 全体的な余白調整 */
  .simple-footer {
    padding: 20px 0 70px;
  }

  .footer-content {
    margin-bottom: 10px;
  }
}

/* さらに小さい画面サイズでの調整 */
@media (max-width: 480px) {
  .footer-menu-column {
    width: 45%;
    /* 2カラムに */
  }

  .footer-menu-title {
    font-size: 12px;
  }

  .footer-menu-list a {
    font-size: 10px;
  }
}

/* タイトルとリストのスタイル縮小 */
.footer-menu-title {
  font-size: 11px;
  margin-bottom: 3px;
  text-align: center;
}

.footer-menu-list {
  text-align: center;
}

.footer-menu-list li {
  margin-bottom: 2px;
}

.footer-menu-list a {
  font-size: 10px;
  line-height: 1.2;
}

/* ブランド部分とコピーライトを並べて表示 */
.footer-brand {
  width: 100%;
  text-align: center;
  margin-bottom: 5px;
}

.footer-logo {
  font-size: 16px;
  margin-bottom: 0;
}

.footer-logo span {
  display: inline;
  margin-left: 3px;
  font-size: 12px;
}

.footer-tagline {
  display: none;
}

/* 区切り線と下部の調整 */
.footer-divider {
  margin: 5px 0;
}

.footer-bottom {
  padding: 0;
  flex-direction: row;
  justify-content: space-between;
}

.social-icons {
  gap: 5px;
  margin: 0;
}

.social-icon {
  width: 24px;
  height: 24px;
}

.copyright {
  font-size: 10px;
}


/* ===== サンクスページ ===== */
.thanks-section {
  padding: 60px 0 80px;
  background-color: var(--white);
}

.thanks-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.thanks-icon {
  font-size: 60px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.thanks-content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--text-color);
}

.thanks-content p {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--light-text);
  line-height: 1.6;
}

.thanks-note {
  margin: 40px auto;
  padding: 20px;
  background-color: var(--light-bg);
  border-radius: var(--radius);
  max-width: 500px;
  text-align: left;
}

.thanks-note p {
  font-weight: 500;
  color: var(--text-color);
}

.thanks-note i {
  color: var(--primary-color);
  margin-right: 10px;
}

.thanks-contact-info {
  margin-top: 15px;
  padding-left: 25px;
}

.thanks-contact-info p {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.thanks-contact-info a {
  color: var(--primary-color);
  font-weight: 500;
}

.thanks-contact-info a:hover {
  text-decoration: underline;
}

.thanks-buttons {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.thanks-buttons .cta-button {
  margin-top: 0;
}

/* チャットボタン関連は非表示に */
.chat-button,
.chat-window {
  display: none !important;
}

/* エラーページ用スタイル */
.error-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.error-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.error-icon {
  font-size: 64px;
  color: #e74c3c;
  margin-bottom: 20px;
  display: block;
}

.error-content h1 {
  color: #333;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 600;
}

.error-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.error-contact-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
}

.error-contact-method {
  background-color: #f2f6f9;
  border-radius: 8px;
  padding: 25px;
  flex: 1 0 250px;
  max-width: 300px;
  text-align: center;
}

.error-contact-method i {
  font-size: 36px;
  color: #2c9676;
  margin-bottom: 15px;
  display: block;
}

.error-contact-method h3 {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.error-contact-method p {
  font-size: 16px;
  color: #555;
  margin-bottom: 5px;
}

.error-contact-method .reception-hours {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.error-contact-method .line-button {
  background-color: #06c755;
  color: white;
  font-weight: 500;
}

.error-contact-method .line-button:hover {
  background-color: #05a847;
}

.secondary-button {
  background-color: #e6e6e6;
  color: #333;
  border: none;
  padding: 12px 24px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: background-color 0.3s;
  margin-top: 20px;
}

.secondary-button:hover {
  background-color: #d9d9d9;
  text-decoration: none;
  color: #333;
}

.secondary-button i {
  margin-right: 8px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .error-section {
    padding: 60px 15px;
  }

  .error-content {
    padding: 30px 20px;
  }

  .error-icon {
    font-size: 50px;
  }

  .error-content h1 {
    font-size: 24px;
  }

  .error-contact-methods {
    flex-direction: column;
    align-items: center;
  }

  .error-contact-method {
    width: 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }
}

/* ===== ニュース関連（非表示設定） ===== */
section.latest-news,
a[href="news.html"],
a[href*="news-detail.html"],
.nav-menu li a[href="news.html"],
.mobile-nav-menu li a[href="news.html"] {
  display: none !important;
}

/* ===== レスポンシブ対応 ===== */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .area-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {

  .features-grid,
  .benefit-list,
  .type-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-image {
    flex: 0 0 400px;
  }

  .footer-content {
    gap: 30px;
  }

  .footer-brand {
    flex: 0 0 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .footer-menus {
    width: 100%;
    justify-content: space-around;
  }
}

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

  .section-title {
    margin-bottom: 30px;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  /* ハンバーガーメニューの幅と位置を調整 - 画面の右半分に表示 */
  .mobile-nav {
    width: 50%;
    /* 画面の半分の幅に設定 */
    right: 0;
    /* 右側に配置 */
    left: auto;
    /* 左側の自動配置を解除 */
    position: fixed;
    top: 60px;
    /* ヘッダーの高さに合わせて調整 */
    height: calc(100vh - 60px);
    /* ビューポートの高さからヘッダー分を引く */
    overflow-y: auto;
    /* 内容が多い場合にスクロール可能に */
    background-color: var(--white);
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    /* 左側にシャドウを追加 */
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    /* 初期状態では右側から出てくるように */
  }

  .mobile-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    /* アクティブ時は表示位置に */
  }

  /* モバイルメニュー内の項目の配置調整 */
  .mobile-nav-menu {
    padding: 20px;
  }

  .mobile-nav-menu li {
    margin: 15px 0;
    text-align: left;
    /* 左寄せに変更 */
    padding-left: 20px;
    /* 左側に余白を追加 */
  }

  .mobile-nav-menu a {
    display: block;
    padding: 10px 0;
    font-size: 16px;
    /* フォントサイズを大きめに */
    font-weight: 500;
  }

  /* ヘッダーとハンバーガーメニューの隙間を消す */
  .mobile-nav {
    top: 60px;
    /* ヘッダーの高さに合わせて調整 */
    margin-top: 0;
    /* 上部のマージンを削除 */
    border-top: none;
    /* 上部のボーダーも削除 */
    padding-top: 0;
    /* 上部のパディングも削除 */
  }

  .mobile-nav.active {
    padding-top: 0;
    /* アクティブ時のパディングも調整 */
    border-top: none;
  }

  /* ヘッダーのスタイルも合わせて調整 */
  header {
    margin-bottom: 0;
    /* 下部マージンを削除 */
    border-bottom: none;
    /* 下部のボーダーを削除 */
  }

  .header-container {
    margin-bottom: 0;
    /* コンテナの下部マージンも削除 */
  }

  /* ヘッダーとハンバーガーメニューの隙間を強制的に消す */
  .mobile-nav {
    top: 60px !important;
    /* ヘッダーの実際の高さに合わせて調整 */
    margin-top: 0 !important;
    padding-top: 0 !important;
    position: fixed !important;
    border-top: 0 !important;
  }

  /* モバイルナビゲーションの上部スタイルリセット */
  .mobile-nav.active {
    padding-top: 0 !important;
  }

  /* もしヘッダーの下に線や余白がある場合 */
  header {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  /* モバイルナビのコンテンツもピッタリと配置 */
  .mobile-nav-menu {
    margin-top: 0 !important;
    padding-top: 10px !important;
    /* 必要に応じて適切な値に調整 */
  }

  /* 小さい画面サイズでは全幅に */
  @media (max-width: 480px) {
    .mobile-nav {
      width: 70%;
      /* より小さい画面では70%幅に */
    }
  }

  /* モバイルメニューボタン位置調整 */
  .mobile-menu-btn {
    margin-left: auto;
    /* 右寄せ */
  }

  /* ヘッダー下のコンテンツがヘッダーに隠れないように */
  .hero,
  .page-header {
    padding-top: 70px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    padding: 0 20px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .features-grid,
  .benefit-list,
  .type-cards,
  .area-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .feature-showcase-item,
  .feature-showcase-item:nth-child(odd),
  .feature-showcase-item:nth-child(even) {
    flex-direction: column;
    margin-bottom: 40px;
  }

  .feature-image,
  .feature-content,
  .intro-image,
  .intro-content {
    flex: 0 0 100%;
    max-width: 100%;
    margin-right: 0;
  }

  .feature-image,
  .intro-image {
    height: 200px;
    margin-bottom: 15px;
  }

  .feature-content,
  .intro-content {
    text-align: center;
    padding: 0 15px;
  }

  .price-cards {
    flex-direction: column;
    align-items: center;
  }

  .price-card {
    margin-bottom: 20px;
    max-width: 100%;
  }

  .contact-methods {
    flex-direction: column;
    align-items: center;
  }

  .contact-method {
    max-width: 100%;
  }

  .company-info-container {
    padding: 20px;
  }

  .company-info-table th,
  .company-info-table td {
    display: block;
    width: 100%;
  }

  .company-info-table th {
    padding-bottom: 5px;
    border-bottom: none;
  }

  .company-info-table td {
    padding-top: 5px;
    padding-bottom: 15px;
  }

  .form-container {
    padding: 25px 20px;
  }

  .ceo-profile-container {
    flex-direction: column;
    align-items: center;
  }

  .ceo-image {
    flex: 0 0 100%;
    max-width: 300px;
    margin-bottom: 20px;
  }

  .ceo-info {
    text-align: center;
  }

  .philosophy-box {
    flex: 0 0 100%;
  }

  /* モバイルフッター関連 */
  .simple-footer {
    padding-bottom: 70px;
    /* LINE CTAボタン用のスペース */
  }

  /* モバイルナビゲーション調整 */
  .mobile-nav {
    max-height: 80vh;
    overflow-y: auto;
  }

  .mobile-nav.active {
    height: auto;
    max-height: 80vh;
  }

  /* フッターメニュー調整 */
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 15px;
  }

  .footer-brand {
    margin-bottom: 20px;
  }

  .footer-menus {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer-menu-column {
    flex: 0 0 auto;
    min-width: auto;
    width: auto;
    padding: 0 10px;
    text-align: center;
  }

  .footer-menu-title {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .footer-menu-list li {
    margin-bottom: 6px;
  }

  .footer-menu-list a {
    font-size: 12px;
  }

  .footer-bottom {
    margin-top: 10px;
  }

  /* 固定CTAボタンのスマホ表示 */
  .fixed-cta-pc {
    display: none;
  }

  .fixed-cta-sp {
    display: block;
  }

  /* 予約状況カードのスマホ調整 */
  .availability-cards {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }

  .availability-card {
    flex: 0 0 calc(50% - 10px);
    min-width: 140px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  /* ボタンサイズ調整 */
  .cta-button {
    padding: 10px 20px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
  }

  .contact-icon i {
    font-size: 24px;
  }

  .contact-method {
    padding: 20px;
  }

  .contact-method h3 {
    font-size: 1.2rem;
  }

  .line-qr {
    width: 100px;
    height: 100px;
  }

  .line-qr img {
    width: 80px;
    height: 80px;
  }

  .form-button {
    width: 100%;
    padding: 12px 20px;
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .section-title p {
    font-size: 0.9rem;
  }

  .feature-card,
  .benefit-item {
    padding: 15px;
  }

  .flow-step {
    flex-direction: column;
  }

  .step-number {
    margin-bottom: 10px;
  }

  .flow-step:not(:last-child)::after {
    display: none;
  }

  .area-column {
    padding: 8px;
  }

  .area-column h4 {
    font-size: 0.9rem;
  }

  .area-column p {
    font-size: 0.75rem;
  }

  .footer-menus {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer-menu-column {
    width: 100%;
    max-width: 200px;
    text-align: center;
  }

  .footer-menu-title {
    font-size: 14px;
  }

  .footer-menu-list {
    column-count: 1;
  }

  .footer-menu-list li {
    margin-bottom: 6px;
  }

  .footer-menu-list a {
    font-size: 12px;
  }

  .social-icon {
    width: 32px;
    height: 32px;
  }

  /* 予約状況カードのさらなる調整 */
  .availability-card {
    flex: 0 0 calc(50% - 10px);
    min-width: 130px;
    padding: 15px;
  }
}