@charset "UTF-8";

/* ベース設定 */
:root {
  --primary-color: #ff9900;
  --text-color: #333;
  --bg-color: #fff;
  --gray-bg: #f9f9f9;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-color);
  padding-top: 70px; /* ヘッダー固定分の余白 */
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

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

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

/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 100;
  height: 70px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  height: 100%;
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

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

/* 電話ボタン（ヘッダー用） */
.btn-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  padding: 5px 10px;
  line-height: 1;
}
.btn-tel svg {
  margin-bottom: 2px;
}

/* ハンバーガーメニューボタン */
.menu-trigger {
  position: relative;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  z-index: 101;
}

.menu-trigger span {
  position: absolute;
  left: 10px;
  width: 20px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.4s;
}

.menu-trigger span:nth-of-type(1) {
  top: 13px;
}
.menu-trigger span:nth-of-type(2) {
  top: 19px;
}
.menu-trigger span:nth-of-type(3) {
  top: 25px;
}

.menu-trigger.active span:nth-of-type(1) {
  top: 19px;
  transform: rotate(45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  top: 19px;
  transform: rotate(-45deg);
}

/* 全画面メニュー */
.global-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 153, 0, 0.95);
  color: #fff;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.global-nav.active {
  opacity: 1;
  visibility: visible;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.nav-list li {
  margin: 20px 0;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s,
    transform 0.4s;
}

.global-nav.active .nav-list li {
  opacity: 1;
  transform: translateY(0);
}
.global-nav.active .nav-list li:nth-child(1) {
  transition-delay: 0.1s;
}
.global-nav.active .nav-list li:nth-child(2) {
  transition-delay: 0.2s;
}
.global-nav.active .nav-list li:nth-child(3) {
  transition-delay: 0.3s;
}
.global-nav.active .nav-list li:nth-child(4) {
  transition-delay: 0.4s;
}
.global-nav.active .nav-list li:nth-child(5) {
  transition-delay: 0.5s;
}
.global-nav.active .nav-list li:nth-child(6) {
  transition-delay: 0.6s;
}
.global-nav.active .nav-list li:nth-child(7) {
  transition-delay: 0.7s;
}

.nav-list a {
  font-size: 1.2rem;
  font-weight: bold;
  display: block;
  padding: 10px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  width: 240px;
  margin: 0 auto;
}

/* --- 追加・変更箇所 --- */

/* ページタイトルバー（ヘッダー直下・オレンジ帯） */
.page-title-bar {
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 8px 0; /* 高さを抑えめに */
}

.page-title-bar h2 {
  margin: 0;
  font-size: 1rem; /* 文字サイズ小さめ */
  font-weight: bold;
}

/* 料金表セクション */
.price-section {
  padding: 30px 0;
  text-align: center;
}

.section-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 5px;
  letter-spacing: 0.05em;
  margin-top: 0;
}

.section-subtitle {
  font-size: 0.9rem;
  color: #888;
  margin-top: -15px;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}
.section-subtitle::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
  margin: 5px auto 0;
}

.price-img-wrapper {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 20px; /* 下の説明文との間隔 */
}

/* 説明文（料金表の下へ移動） */
.service-desc {
  font-size: 0.9rem;
  color: #555;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 6px;
  display: inline-block;
  text-align: left;
}

/* コンタクトセクション */
.contact-section {
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 30px 0;
}
.contact-section .section-title {
  color: #fff;
}
.contact-section .section-subtitle::after {
  background: #fff;
}

/* コンタクト電話ボタン */
.contact-tel {
  display: flex; /* アイコンと文字を横並びにするためflexに変更 */
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 20px auto 10px;
  background: #fff;
  color: var(--primary-color);
  width: fit-content;
  padding: 10px 30px;
  border-radius: 50px;
}

/* 営業時間 */
.business-hours {
  font-size: 1.2rem; /* 大きく */
  font-weight: bold; /* 太く */
  opacity: 1;
  margin-top: 10px;
}

/* フッター */
.footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 1rem;
}

.news-ticker {
  background: #f0f0f0;
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
  font-size: 0.9rem;
}
.news-ticker .container {
  display: flex;
  align-items: center;
}
.news-label {
  background: var(--primary-color);
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: 10px;
  font-weight: bold;
}
.news-text {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #333;
}

/* トップメインエリア（ここをクリーム色に変更） */
.top-hero {
  padding: 30px 0;
  text-align: center;
  background-color: #fff8e7; /* 薄いクリーム色 */
  border-bottom: 1px solid #eee; /* 下にうっすら線 */
}
.main-banner {
  margin-bottom: 20px;
}
.main-banner img {
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* 説明文（背景を白にして浮き立たせる修正） */
.service-desc {
  font-size: 0.9rem;
  color: #555;
  background: #fff; /* 背景を白に */
  padding: 15px;
  border-radius: 6px;
  display: inline-block;
  text-align: left;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* 軽く影を追加 */
}

/* Informationエリア（修正：タイトルをセンター寄せ） */
.info-section {
  padding: 40px 0 0;
  background-color: #fff;
  text-align: center; /* これでタイトル等はセンターになります */
}
/* リストの中身は左寄せのままにする */
.info-list {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}
.info-item {
  margin-bottom: 25px;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 15px;
}
.info-item:last-child {
  border-bottom: none;
}
.info-title {
  font-size: 1.1rem;
  color: #00bd0d;
  margin: 0 0 5px 0;
  font-weight: bold;
}

/* タイトルのアイコン調整 */
.info-icon {
  color: var(--primary-color); /* テーマカラーのオレンジを適用 */
  vertical-align: middle; /* 文字と高さを合わせる */
  margin-right: 5px; /* 文字との間隔 */
  position: relative;
  top: -2px; /* 微調整 */
}

/* 記事本文のスタイル強制統一 */
.info-body {
  margin-top: 10px;
}

/* 重要: エディタが勝手につけるスタイルを強制リセット 
.info-body の中の「すべての要素(*)」に対して指定します
*/
.info-body,
.info-body * {
  font-size: 15px !important; /* サイズを15pxに強制統一 */
  line-height: 1.6 !important; /* 行間も統一して読みやすく */
  font-family: inherit !important; /* フォントもサイト全体に合わせる */
  color: #444 !important; /* 色も統一したい場合は指定（任意） */
  background-color: transparent !important; /* 背景色がついている場合も透明に（任意） */
}

/* --- 以下、ボタンエリアなどは変更なし --- */
.top-buttons-section {
  padding: 0 0 50px;
  text-align: center;
}
/* (ボタンのCSSは前回のまま維持してください) */
.btn-link {
  display: block;
  max-width: 500px;
  margin: 0 auto 20px;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  text-align: left;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
}
.btn-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.btn-general {
  background: linear-gradient(135deg, #d4b068 0%, #c49a50 100%);
  border: 2px solid #b38b45;
}
.btn-corporate {
  background: linear-gradient(135deg, #a67c52 0%, #8a623a 100%);
  border: 2px solid #6e4e2e;
}
.btn-main-text {
  display: block;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 5px;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
}
.btn-sub-text {
  display: block;
  font-size: 0.85rem;
  opacity: 0.9;
}
.btn-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  opacity: 0.8;
}

/* --- アクセスセクション用スタイル --- */
.access-section {
  padding: 50px 0;
  background-color: #fff8e7; /* 薄いクリーム色 */
  text-align: center;
}

.access-info {
  margin-bottom: 20px;
}

.address {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
}

.zip {
  font-size: 0.9rem;
  color: var(--primary-color);
}

.map-wrapper {
  /* Bootstrapのshadowに近い影を設定 */
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  overflow: hidden;
  line-height: 0; /* 下の隙間を消す */
  border: 1px solid #eee;
}

/* モバイル対応：地図の高さを少し抑える */
@media (max-width: 767px) {
  .map-wrapper iframe {
    height: 300px;
  }
}

/* tohaページ専用スタイル（アップデート版） */
.toha-section {
  padding: 40px 0;
  text-align: center;
}

.concept-card {
  background: #fffcf0;
  border-radius: 12px;
  padding: 30px 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

/* 修正：下線を廃止し、背景塗りつぶしのアクセントに変更 */
.concept-card h3 {
  color: #fff;
  background-color: var(--primary-color); /* オレンジ背景 */
  margin-top: 0;
  font-size: 1.15rem;
  text-align: center;
  padding: 10px 15px;
  border-radius: 30px; /* 角丸で柔らかい印象に */
  margin-bottom: 25px;
  display: inline-block; /* 文字幅に合わせる */
  width: 100%; /* 横幅いっぱいにしたい場合はこちら */
  box-sizing: border-box;
}

.concept-list {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.concept-list li {
  position: relative;
  padding-left: 30px; /* アイコン分の余白 */
  margin-bottom: 18px;
  line-height: 1.6;
  color: #444;
}

/* 修正：文字化け対策。？を消してSVGアイコンを背景に配置 */
.concept-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  /* オレンジ色のチェックマークSVG */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff9900'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* nagareページ専用スタイル */
.flow-section {
  padding: 30px 0;
}

.flow-section .section-title {
  padding-bottom: 15px;
  text-align: center;
}
.flow-section .section-subtitle {
  display: block;
  text-align: center;
}
.flow-step {
  background: #fffcf0;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  border: 1px solid #eee;
}

/* ステップ番号バッジ */
.step-badge {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  font-weight: bold;
  padding: 2px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.flow-step h3 {
  color: var(--primary-color);
  margin: 0 0 15px 0;
  font-size: 1.2rem;
  font-weight: bold;
}

/* 重要書類のハイライトエリア */
.prepare-box {
  background: #fff5f5;
  border: 2px dashed #ff4d4d;
  border-radius: 8px;
  padding: 20px;
  margin: 15px 0;
}

.prepare-box h4 {
  color: #ff4d4d;
  margin-top: 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

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

.prepare-list li {
  font-weight: bold;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 5px;
  padding-left: 1.2em;
  text-indent: -1.2em;
}

.prepare-list li::before {
  content: "●";
  color: #ff4d4d;
  margin-right: 8px;
}

.flow-arrow {
  text-align: center;
  color: #ccc;
  font-size: 24px;
  margin-top: -15px;
  margin-bottom: 10px;
}

/* carderiページ専用スタイル */
.delivery-section {
  padding: 40px 0;
  text-align: center;
}

.delivery-card {
  background: #fffcf0; /* 薄いクリーム色 */
  border-radius: 12px;
  padding: 30px 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

/* 見出しをカプセル型に統一 */
.delivery-card h3 {
  color: #fff;
  background-color: var(--primary-color);
  margin-top: 0;
  font-size: 1.1rem;
  text-align: center;
  padding: 10px 15px;
  border-radius: 30px;
  margin-bottom: 25px;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
}

.delivery-price-box {
  background: #fff;
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  margin-top: 20px;
}

.city-name {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.price-value {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
}

.price-value span {
  font-size: 1rem;
  margin-left: 5px;
}

.delivery-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 15px;
  padding-left: 1.2em;
  text-indent: -1.2em;
}
