@charset "UTF-8";
/* 全体の基本設定 */
body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  color: #333333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f8fafc;
}

/* メインコンテンツエリア */
.container, main {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 16px;
}

/* 見出しのデザイン調整 */
h1 {
  font-size: 28px;
  color: #1a365d;
  margin-bottom: 4px;
}

.subtitle {
  color: #718096;
  font-size: 14px;
  margin-bottom: 24px;
}

h2 {
  font-size: 20px;
  color: #2b6cb0;
  border-left: 4px solid #3182ce;
  padding-left: 10px;
  margin-top: 32px;
  margin-bottom: 16px;
}

/* アクセスマップ（Google Map）の調整 */
iframe {
  width: 100%;
  max-width: 100%;
  height: 300px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* お問い合わせ・連絡先ボックス */
.contact-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.tel-link {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  color: #2b6cb0;
  text-decoration: none;
  margin-top: 8px;
}

/* LINEボタンの配置調整 */
.line-btn-wrapper {
  margin-top: 12px;
}

.line-btn-wrapper img {
  vertical-align: middle;
  transition: opacity 0.2s;
}

.line-btn-wrapper img:hover {
  opacity: 0.8;
}

/* フッター（青色エリア）のレイアウト調整 */
footer {
  background-color: #2b5797;
  color: #ffffff;
  text-align: center;
  padding: 40px 16px 20px;
  margin-top: 60px;
}

footer a {
  color: #ffffff;
  text-decoration: none;
}

footer .company-name {
  font-size: 20px;
  font-weight: bold;
  margin: 16px 0;
}

footer .tel-number {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 16px;
}

footer .business-hours {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.8;
}

footer .copyright {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 30px;
}

/* ==========================================
   スマホ・タブレット向けスタイル (800px以下)
   ========================================== */
@media (max-width: 800px) {

  

  /* 画面全体の左右余白を調整 */
  body {
    padding: 10px;
  }

  /* メインコンテンツ容器 */
  .container, main {
    padding: 16px 12px;
  }

  /* 固定ヘッダーによる見出し隠れ（かぶり）を防止 */
  h1 {
    font-size: 22px;
    margin-top: 50px; /* ヘッダー下の余白調整 */
    margin-bottom: 8px;
  }

  /* 見出し（H2）のフォント・余白をスマホサイズに最適化 */
  h2 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
  }

  /* 地図（Google Map）のサイズ・角丸調整 */
  iframe {
    height: 220px; /* スマホでスクロールの邪魔になりにくい高さ */
    border-radius: 6px;
  }

  /* お問い合わせボックスをスマホで押しやすい大きさに */
  .contact-box {
    padding: 16px;
    margin-bottom: 16px;
    text-align: center; /* スマホでは中央寄せが見やすい */
  }

  /* 電話番号をスマホで押しやすい巨大ボタン風にデザイン */
  .tel-link {
    display: block;
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    background-color: #2b6cb0; /* ボタン風の青色背景 */
    padding: 12px 16px;
    border-radius: 30px; /* 丸みのあるボタン */
    text-decoration: none;
    margin: 12px auto 0;
    max-width: 280px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .tel-link:active {
    transform: translateY(2px); /* タップしたときの凹み効果 */
  }

  /* LINEボタンの表示サイズ調整 */
  .line-btn-wrapper img {
    height: 44px; /* 指でタップしやすい少し大きめのサイズ */
  }

  /* フッターのレイアウト調整 */
  footer {
    padding: 24px 12px 16px;
    font-size: 13px;
  }

  footer .company-name {
    font-size: 18px;
  }

  footer .tel-number {
    font-size: 20px;
  }
}