@charset "utf-8";
.no-gutter > [class*='col-'] {
	padding-right: 0;
	padding-left: 0;
}
.bg-lightgreen {
	background-color: #e5fff2;
}
.jumbotron {
	background-image: url('../img/top-image.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 500px;
	position: relative;
  z-index: 0;
}
.heading {
	border-left: 6px solid #aaa;
	padding: 0 0 0 10px;
}
.breadcrumb-item + .breadcrumb-item::before {
	content: ">"
}

.map iframe {
	width: 100%;
	height: 450px;
}

/* 大デバイス（デスクトップ, 992px 未満）
============================================== */
@media screen and (max-width: 991.98px) {
.footer-logo {
	width: 100%;
}
} /* END */

/* 中デバイス（タブレット, 768px 未満）
============================================== */
@media screen and (max-width: 780px) {
.gnav-item {
	display: block;
	width: 100%;
	border: none;
}
.gnav-item+ .gnav-item {
	border: none;
}
table th, table td {
	padding: .15rem !important;
}
table th:first-child {
	width: 25%;
}
} /* END */

/* 小デバイス（縦向きモバイル, 576px 以上 デスクトップ, 992px 未満）
============================================== */
@media screen and (min-width: 576px) and (max-width: 991.98px) {
 #sec2  {
     height: 500px;
 } 
} /* END */

/* 小デバイス（縦向きモバイル, 576px 以上）
============================================== */
@media screen and (min-width: 576px) {
 #sec2 .message {
    position: absolute;
     left: 0;
 } 
} /* END */

/* 背景色を薄い黄色に */
.header-container {
  background-color: #fff9e6; /* 柔らかいクリーム色 */
}

/* 電話番号を赤く */
.hotline-number {
  color: #e60000; /* 鮮やかな赤 */
}

/* 無料査定・買取相談ボタンを赤く */
.hotline-btn {
  background-color: #e60000;
  color: #fff;
  border: none;
  font-size: 16.5px;
}

.hotline-btn:hover {
  background-color: #c00000; /* 濃い赤（ホバー時） */
  color: #fff;
  border: none;
}
/* 背景を全幅で薄い黄色に */
.header-wrapper {
  width: 100%;
  background-color: #fffdf4; /* やさしい黄色 */
}

/* 電話番号を赤く */
.hotline-number {
  color: #e60000;
}

/* ボタンを赤く */
.hotline-btn {
  background-color: #e60000;
  color: #fff;
  border: none;
}

.hotline-btn:hover {
  background-color: #c00000;
  color: #fff;
}

/* 背景を全幅で薄い緑に */
.navbar-wrapper {
  width: 100%;
  background-color: #00a19b; /* 薄いグリーン */
}

/* ナビゲーション全体の文字色 */
.navbar-nav .nav-link {
  color: #ffffff !important; /* 白文字 */
  font-weight: 600;
  white-space: nowrap; /* 折り返さない */
  padding: 10px 12px;
  transition: background-color 0.3s, color 0.3s;
}

/* ホバー時（濃い緑のアクセント） */
.navbar-nav .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
}


/* ナビ全体を中央寄せ＆最大幅を制御 */
.navbar-wrapper .container {
  max-width: 1200px; /* ← 好みで 1100 / 1000 にもできます */
  margin: 0 auto;
}

/* ナビの幅調整と中央揃え */
.navbar-nav {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap; /* ← PCでは折り返さない */
  gap: 14px; /* ← 項目間のバランス（空きを均等にする一番重要な設定） */
}

/* 各項目（縦線＋余白） */
.navbar-nav .nav-item {
  position: relative;
  padding: 0 8px; /* ← 横幅が大きくなる場合は 6px に */
}

/* 縦線 （最後の項目には表示しない） */
.navbar-nav .nav-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  width: 1px;
  background-color: rgba(255,255,255,0.5);
}

/* スマホでは自然な縦並びにして縦線を消す */
@media (max-width: 767.98px) {
  .navbar-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0;
  }
  .navbar-nav .nav-item {
    padding: 6px 0;
  }
  .navbar-nav .nav-item::after {
    display: none;
  }
}

/* ナビを中央に、かつ折り返し可能にする */
.navbar-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* ← 重要、これで2段になる */
  gap: 8px 18px;   /* ← 上下8px / 左右18px の余白を均等に */
  padding: 8px 0;
}

/* 各ナビ項目のレイアウト */
.navbar-nav .nav-item {
  position: relative;
  padding: 0 6px;
  white-space: nowrap; /* ← 改行させない */
}

/* 縦線（最後以外） */
.navbar-nav .nav-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  width: 1px;
  background-color: rgba(255,255,255,0.5);
}

/* スマホでは縦並び & 縦線削除 */
@media (max-width: 767.98px) {
  .navbar-nav {
    justify-content: flex-start;
    gap: 0;
  }
  .navbar-nav .nav-item {
    padding: 6px 0;
  }
  .navbar-nav .nav-item::after {
    display: none;
  }
}
/* ---------------------------
   PC：2段で中央に美しく整列
--------------------------- */
.navbar-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 20px; /* ← 横の間隔を適度に確保 */
  padding: 10px 0;
}

/* 各ナビ項目 */
.navbar-nav .nav-item {
  position: relative;
  padding: 0 4px;
  white-space: nowrap;
}

/* リンク文字の見た目（上品に揃えるポイント） */
.navbar-nav .nav-link {
  font-size: 14.5px;   /* ← 大人っぽくシャープに */
  font-weight: 600;
  line-height: 1.3;    /* ← 行間を詰めて均整よく */
  color: #ffffff !important;
  padding: 6px 0;      /* ← 上下の余白だけ残してスッキリ */
}

/* 縦線（最後以外） */
.navbar-nav .nav-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 50%;
  transform: translateY(-50%);
  height: 16px;        /* ← 小さめで上品 */
  width: 1px;
  background-color: rgba(255,255,255,0.45); /* ← 主張しすぎない白 */
}

/* ---------------------------
   スマホ：縦並び・縦線なし
--------------------------- */
@media (max-width: 767.98px) {
  .navbar-nav {
    justify-content: flex-start;
    gap: 0;
  }
  .navbar-nav .nav-item {
    padding: 6px 0;
  }
  .navbar-nav .nav-item::after {
    display: none;
  }
  .navbar-nav .nav-link {
    font-size: 16px;  /* ← スマホは少し大きく */
    padding: 8px 0;
  }
}

/* スマホ時の背景とトグル色を整える */
.navbar {
  background-color: transparent !important;
}

.navbar-toggler {
  border-color: #ffffff;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30'
  xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1)'
  stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4
  15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ------------------------------
   フッター全体：薄緑＋白文字
--------------------------------- */
.footer-section {
    background-color: #a8d5b9; /* 薄緑 */
    color: #ffffff;
    padding: 60px 0;
    font-family: "Noto Serif", "メイリオ", "Meiryo", sans-serif;
}

/* フッター内の見出し */
.footer-section .footer-title {
    color: #ffffff;
    font-weight: bold;
}

/* フッター内のリンク */
.footer-section a,
.footer-section a:visited {
    color: #ffffff;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* サイトマップ2列化 */
.footer-nav-columns {
    display: flex;
    width: 100%;
    gap: 60px; /* 列間の余白 */
    flex-wrap: wrap; /* モバイルでは折り返し */
}

.footer-nav-columns .footer-nav {
    flex: 1;
    min-width: 120px; /* モバイルでの最小幅 */
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-columns .footer-nav li {
    margin-bottom: 8px;
}

/* コピーライト部分 */
.footer-copyright {
    background-color: #92c598; /* 少し濃い薄緑 */
    color: #ffffff;
    padding: 15px 0;
    font-size: 0.875rem;
    position: relative;
}

/* トップへ戻るボタン */
.footer-copyright .float-right {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright .float-right a {
    color: #ffffff;
    font-size: 16px;
}

.card-text {
  font-size: 1.3rem !important;
  color: #007a33;
  font-weight: bold;
}
#sec2 {
    background-color: #fff8e1 !important; /* 淡いクリーム色 */
}

/* スマホ画面（幅576px以下）のときだけ、<p>の文字サイズを大きく */
@media screen and (max-width: 576px) {
  p {
    font-size: 1.6rem !important; /* ←お好みで 1.3〜1.6rem くらいに調整可能 */
    line-height: 1.8;             /* 読みやすさ向上（任意） */
  }
}
/* スマホ時にはさらに大きく */
@media screen and (max-width: 768px) {
  p.d-block.d-md-inline-block.text-secondary {
    font-size: 1.4rem !important;
  }
}

@media screen and (max-width: 576px) {
  .hotline-btn {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
  }
}

.table-wrap {
  overflow-x: auto; /* 横スクロール対応 */
  margin: 30px 0;
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff; /* 背景を白に */
  font-family: 'Noto Sans', sans-serif;
  text-align: center;
}

.table-wrap th,
.table-wrap td {
  border: 1px solid #ddd;
  padding: 12px 10px;
}

.table-wrap thead th {
  background-color: #4CAF50;
  color: #fff;
  font-size: 16px;
}

.table-wrap tbody th {
  background-color: #f5f5f5;
  color: #333;
  font-weight: bold;
  text-align: center;
}

.table-wrap tbody td {
  font-size: 14px;
  color: #333;
}

/* 当社（直接買取）のメリットを強調 */
.table-wrap tbody td:first-child {
  color: #1b5e20; /* 緑色 */
  font-weight: bold;
}

/* 他社（仲介業者）のデメリットを強調 */
.table-wrap tbody td:last-child {
  color: #b71c1c; /* 赤色 */
}

/* スマホ対応 */
@media (max-width: 768px) {
  .table-wrap th,
  .table-wrap td {
    font-size: 12px;
    padding: 8px 6px;
  }
  .sp_only {
    display: inline; /* スマホ用改行 */
  }
}


/* PC時：ナビ項目の間に縦線 */
@media (min-width: 768px) {
  .navbar-nav .nav-item {
    border-right: 1px solid rgba(255,255,255,0.6); /* 線の色 */
    padding: 0 12px; /* 文字の左右余白 */
  }

  /* 最後の項目だけ縦線を消す */
  .navbar-nav .nav-item:last-child {
    border-right: none;
  }
}

/* スマホ時は縦線を消す */
@media (max-width: 767.98px) {
  .navbar-nav .nav-item {
    border-right: none;
  }
}