@import url("https://fonts.googleapis.com/css2?family=Yuji+Syuku&display=swap");
/* 基本設定とリセット */
:root {
  --primary-color: #2c3e50; /* 濃紺 */
  --secondary-color: #34495e; /* やや明るい紺 */
  --accent-color: #c5a059; /* ゴールド */
  --background-color: #ffffff;
  --light-gray-bg: #f8f9fa;
  --text-color: #333333;
  --text-light: #ffffff;
  --font-family: "Noto Sans JP", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Yuji Syuku", "ヒラギノ行書体", "HG行書体", serif;

  line-height: 1.8;
  color: var(--text-color);
  background-color: var(--background-color);
}

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

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

.content-section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px auto;
  font-size: 1rem;
}

.bg-light {
  background-color: var(--light-gray-bg);
}

/* ヘッダー */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.header-logo img {
  height: 40px;
}

.header-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-nav a {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 0.9rem;
}

.header-nav .contact-button {
  background-color: var(--accent-color);
  color: var(--text-light);
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: 700;
}
.header-nav .contact-button:hover {
  background-color: var(--primary-color);
  opacity: 1;
}

.menu-toggle {
  display: none;
}

/* ヒーローセクション */
.hero {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
}
.hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.5);
}

/* ご挨拶 */
.greeting-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
.representative {
  text-align: right;
  font-weight: 700;
  margin-top: 20px;
}

/* 選ばれる理由 */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.reason-item {
  background-color: var(--background-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.reason-icon {
  margin-bottom: 20px;
}
.reason-icon img {
  height: 50px;
}
.reason-item h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.reason-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
  margin-top: 20px;
}
.reason-gallery img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

/* 買取実績 */
.achievements-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.achievement-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.achievement-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.achievement-item span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(44, 62, 80, 0.8);
  color: var(--text-light);
  padding: 10px;
  font-weight: 700;
  text-align: center;
  font-size: 0.9rem;
}

/* ご依頼の流れ */
.flow-steps {
  list-style: none;
  max-width: 800px;
  margin: 50px auto 0 auto;
}
.flow-step {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-bottom: 50px;
}
.flow-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 50px;
  width: 2px;
  height: 100%;
  background-color: #ddd;
}
.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 30px;
}
.step-content h4 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

/* 料金表 */
.price-table-wrapper {
  overflow-x: auto;
  margin: 50px 0 20px 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
table th,
table td {
  padding: 15px;
  text-align: center;
  border: 1px solid #e0e0e0;
}
table thead th {
  background-color: var(--secondary-color);
  color: var(--text-light);
  font-weight: 700;
}
table tbody tr:nth-child(even) {
  background-color: var(--light-gray-bg);
}
.price-note {
  text-align: center;
  font-size: 0.9rem;
}

/* お客様の声 */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.testimonial-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  border-left: 5px solid var(--accent-color);
}
.testimonial-item footer {
  margin-top: 15px;
  font-weight: 700;
  color: #555;
  text-align: right;
}

/* お問い合わせ */
.contact-section {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 80px 20px;
}
.contact-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.contact-section .section-title {
  color: var(--text-light);
}
.contact-methods {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.contact-method-item {
  text-align: center;
}
.contact-tel {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light);
  display: block;
}
.line-button img {
  height: 48px;
}

.contact-form-wrapper {
  background-color: #fff;
  color: var(--text-color);
  padding: 40px;
  border-radius: 8px;
  text-align: left;
}
.contact-form-wrapper h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.5rem;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
}
.form-group label span {
  background-color: var(--accent-color);
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-family);
}
.submit-btn {
  width: 100%;
  padding: 15px;
  background-color: var(--accent-color);
  color: var(--text-light);
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s;
}
.submit-btn:hover {
  background-color: var(--primary-color);
}

/* フッター */
.footer {
  background-color: var(--secondary-color);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 20px 0 20px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo {
  height: 40px;
  margin-bottom: 15px;
}
.footer-info {
  font-size: 0.9rem;
}
.footer-nav ul {
  list-style: none;
}
.footer-nav a {
  color: var(--text-light);
}
.copyright {
  text-align: center;
  font-size: 0.8rem;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.copyright a {
  color: rgba(255, 255, 255, 0.8);
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
  .reasons-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #eee;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .header-nav.show {
    display: block;
  }
  .header-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 20px;
  }
  .header-nav li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }
  .header-nav li:last-child {
    border-bottom: none;
  }
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 101;
  }
  .menu-toggle span {
    display: block;
    background: var(--primary-color);
    height: 2px;
    width: 100%;
    position: absolute;
    left: 0;
    transition: all 0.3s;
  }
  .menu-toggle span:nth-child(1) {
    top: 6px;
  }
  .menu-toggle span:nth-child(2) {
    top: 14px;
  }
  .menu-toggle span:nth-child(3) {
    top: 22px;
  }

  .hero {
    height: 400px;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }
  .content-section {
    padding: 60px 15px;
  }

  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
  }
  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  tr {
    border: 1px solid #ddd;
    margin-bottom: 10px;
  }
  td {
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
    text-align: right;
  }
  td:before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
  }
}

.line-button-custom {
  display: inline-block;
  background: #000;
  color: #fff;
  border: 2px solid #000;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  margin-top: 1rem;
  transition: all 0.3s;
}

.line-button-custom:hover {
  background: #fff;
  color: #000;
}

.greeting-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.greeting-image img {
  max-width: 300px;
  border-radius: 8px;
}
.greeting-text {
  max-width: 800px;
}
@media (min-width: 768px) {
  .greeting-flex {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
}

.store-icon-link {
  margin-left: auto;
  padding-left: 1rem;
}
.store-icon {
  height: 40px;
  width: auto;
  vertical-align: middle;
}

/* ご挨拶：代表写真横並び */
.greeting-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.greeting-photo img {
  width: 280px;
  border-radius: 8px;
}
.greeting-text {
  max-width: 800px;
  text-align: center;
}
@media (min-width: 768px) {
  .greeting-wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
  }
  .greeting-text {
    padding-left: 30px;
  }
}

/* 8610STORE バナー */
#store-banner {
  background-color: #f2f2f2;
  text-align: center;
  padding: 1rem 0.5rem;
}
.store-banner-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
}
.store-banner-link img {
  height: 48px;
  width: auto;
}
.store-banner-text {
  font-weight: bold;
  font-size: 1.1rem;
  color: #333;
}

.download-button {
  background-color: #f0f0f0;
  color: #333;
  font-weight: bold;
  padding: 0.6em 1em;
  margin-left: 10px;
  border-radius: 5px;
  text-decoration: none;
  border: 1px solid #ccc;
  transition: background-color 0.3s ease;
}

.download-button:hover {
  background-color: #ddd;
}

/* ハンバーガーメニューが開いたときに表示 */
.nav-menu {
  display: none;
  flex-direction: column;
  background-color: #fff;
  position: absolute;
  top: 60px;
  right: 10px;
  width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}
.nav-menu.active {
  display: flex;
}
.hamburger {
  display: block;
  cursor: pointer;
}

/* ▼ お悩みカード表示 */
.worry-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 20px;
}
.worry-card {
  background-color: #fefefe;
  border-left: 5px solid #c5a059;
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .worry-cards {
    grid-template-columns: 1fr 1fr;
  }
}

/* ▼ よくある質問（アコーディオン形式） */
.faq-accordion details {
  margin-bottom: 15px;
  background-color: #fefefe;
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #ddd;
}
.faq-accordion summary {
  font-weight: bold;
  cursor: pointer;
}
.staff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.staff-card {
  text-align: center;
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.staff-card img {
  width: 100%;
  max-width: 250px;
  height: 320px; /* 固定の高さに統一 */
  object-fit: cover; /* 中央トリミングで見栄え良く */
  border-radius: 8px;
}
.staff-card h3 {
  font-size: 1.5rem;
  margin: 10px 0 5px;
}
.staff-card .staff-title {
  color: #555;
  margin-bottom: 10px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.back-button {
  display: inline-block;
  background-color: #d4af37;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}
.back-button:hover {
  background-color: #b1902d;
}
.back-button-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #d4af37;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: background-color 0.3s;
}
.back-button-fixed:hover {
  background-color: #b1902d;
}
.works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: 520px;
  margin: 0 auto;
}
.works-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  padding: 22px;
  margin-bottom: 32px;
}
.works-desc {
  margin-bottom: 10px;
  text-align: center;
}
.works-area {
  font-weight: bold;
  font-size: 1.1em;
}
.works-price {
  color: #b1902d;
  font-weight: bold;
  margin: 4px 0 8px;
}
.works-image-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.works-image-vertical img {
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: 6px;
  border: 1px solid #eee;
  display: block;
}
.img-label {
  text-align: center;
  font-size: 0.85em;
  font-weight: bold;
  margin: 2px 0 10px 0;
  color: #777;
}
.img-label.after {
  color: #3d8e35;
}
@media (max-width: 600px) {
  .works-card {
    padding: 12px;
  }
  .works-grid {
    max-width: 100vw;
    padding: 0 2vw;
  }
  .works-image-vertical img {
    max-width: 100vw;
  }
}
/* 金色戻るボタン */
.back-button-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #d4af37;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: background-color 0.3s;
}
.back-button-fixed:hover {
  background-color: #b1902d;
}
.community-section {
  max-width: 980px;
  margin: 0 auto;
  padding: 30px 10px;
}
.community-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #2c2c2c;
  margin-bottom: 2.2em;
  letter-spacing: 0.06em;
}
.community-block {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  margin-bottom: 42px;
  padding: 30px 20px 16px 20px;
}
.community-block h3 {
  font-size: 1.3rem;
  color: #b1902d;
  margin-bottom: 1em;
  letter-spacing: 0.04em;
  text-align: left;
  font-weight: bold;
}
.community-block p {
  margin-bottom: 1.3em;
  font-size: 1rem;
}
.carousel {
  width: 100%;
  max-width: 580px;
  margin: 0 auto 12px auto;
  position: relative;
}
.carousel-images {
  width: 100%;
  height: 370px;
  position: relative;
  overflow: hidden;
}
.carousel-images img {
  width: 100%;
  height: 370px;
  object-fit: contain;
  background: #eee;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 0.6s;
}
.carousel-images img.active {
  opacity: 1;
  position: relative;
  z-index: 1;
}
@media (max-width: 700px) {
  .carousel,
  .carousel-images {
    max-width: 99vw;
    height: 54vw;
    min-height: 230px;
  }
  .carousel-images img {
    height: 54vw;
    min-height: 230px;
  }
}
.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  gap: 7px;
}
.carousel-indicators span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  transition: background 0.2s;
  cursor: pointer;
}
.carousel-indicators span.active {
  background: #4169e1;
}
@media (max-width: 700px) {
  .community-block {
    padding: 18px 5px 10px 5px;
  }
  .community-title {
    font-size: 1.35rem;
  }
  .community-block h3 {
    font-size: 1.08rem;
  }
  .carousel,
  .carousel-images {
    max-width: 98vw;
    height: 38vw;
    min-height: 180px;
  }
  .carousel-images img {
    height: 38vw;
    min-height: 180px;
  }
}
/* 戻るボタン */
.back-button-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #d4af37;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: background-color 0.3s;
}
.back-button-fixed:hover {
  background-color: #b1902d;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  min-width: 0;
  gap: 18px;
  overflow: hidden;
}

.header-logo {
  flex-shrink: 0;
  white-space: nowrap;
}

.header-nav {
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
}

.header-nav ul {
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 0;
  margin: 0;
  list-style: none;
}

.header-nav li {
  min-width: 0;
}

.header-nav a,
.header-nav .contact-button,
.header-nav .btn-download {
  display: inline-block;
  padding: 0.5em 1em;
  white-space: nowrap;
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
}

.header-nav .btn-download {
  background: #d4af37;
  color: #fff;
  border-radius: 20px;
  font-weight: bold;
}

.header-nav .btn-download:hover {
  background: #b1902d;
}
.header-nav .contact-button:focus,
.header-nav .contact-button:hover {
  background: none !important;
  box-shadow: none !important;
}

.seo-btn-wrap {
  text-align: center;
}
.seo-btn {
  display: inline-block;
  width: 100%;
  max-width: 350px;
  margin-top: 30px;
  background-color: #d4af37;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}
.seo-btn:hover {
  opacity: 0.8;
  background-color: rgb(177, 144, 45);
}

/* ▼ エリア一覧（スマホ〜PCまで安定） */
.area-links .area-list{
  list-style: none;
  margin: 20px auto 0;
  padding: 0;
  max-width: 1100px;
  display: grid;
  /* スマホ基準：まずは2列に固定して見栄えを作る */
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

/* 横幅が広がるにつれて列数を増やす */
@media (min-width: 480px){
  .area-links .area-list{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 768px){
  .area-links .area-list{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1024px){
  .area-links .area-list{ grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

.area-links .area-list li{
  margin: 0; /* Gridで余白管理 */
}

.area-links .area-list a{
  display: block;               /* タップ領域を広く */
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;           /* 見た目を整える */
  line-height: 1.35;
}

/* 視認性を少し上げる（任意） */
@media (hover: hover){
  .area-links .area-list a:hover{
    background: rgba(0,0,0,0.04);
  }
}

/* 箇条書きの点が出る場合の保険（別CSSが強い時用） */
.area-links .area-list{ list-style: none !important; }
.area-links .area-list li{ list-style: none !important; }


/* 県ブロックの共通枠（pref-block） */
.pref-block{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 16px 16px 12px;
  margin: 28px auto 0;
  max-width: 1100px;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,.04);
}
.pref-badge{
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-weight: 700;
  letter-spacing: .02em;
  margin: -6px 0 10px;
  padding: 6px 10px;
  border-radius: 999px;
  line-height: 1;
}
.pref--saitama .pref-badge{
  color: #0b5e40;
  background: #e7f5ef;
  border: 1px solid #cde9df;
}
.pref--tokyo .pref-badge{
  color: #0b3d8a;
  background: #e7f0fb;
  border: 1px solid #cfe0f8;
}
.pref-block .area-links{ margin-top: 10px; }
.pref-block .area-list a{ padding: 8px 10px; }
.pref-separator { height: 12px; }
.section-title + .section-subline{
  max-width: 1100px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0,0,0,.12), rgba(0,0,0,0));
  margin: 8px auto 0;
}


/* ===== CV改善用追記 ===== */
.hero-points-section {
  padding: 28px 20px 10px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}
.hero-points-wrap {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 26px 22px;
}
.hero-points {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.hero-points li,
.price-top-points li {
  background: #f7f4ed;
  border: 1px solid rgba(197, 160, 89, 0.35);
  color: var(--primary-color);
  border-radius: 999px;
  padding: 10px 14px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.hero-action-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
.hero-action-btn.primary {
  background: #d4af37;
  color: #fff;
}
.hero-action-btn.primary:hover {
  background: #b1902d;
  opacity: 1;
}
.hero-action-btn.secondary {
  background: #fff;
  color: var(--primary-color);
  border: 1px solid #d7d7d7;
}
.hero-action-btn.secondary:hover {
  background: #f8f9fa;
  opacity: 1;
}
.line-banner-section {
  padding: 10px 20px 20px;
}
.line-banner-top {
  padding-top: 0;
}
.line-banner-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.line-banner-image {
  width: min(100%, 760px);
  height: auto;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.line-banner-caption {
  margin-top: 12px;
  font-size: 0.98rem;
}
.visual-banner-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 24px;
}
.visual-banner-section--tight {
  padding-top: 10px;
}
.visual-banner-section--campaign {
  padding-top: 8px;
  padding-bottom: 8px;
}
.visual-banner-section--inside {
  padding-left: 0;
  padding-right: 0;
}
.visual-banner-image {
  display: block;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.worries-lead {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 1rem;
}
.price-top-appeal {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 22px;
}
.price-top-points {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}
.floating-contact-bar {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: min(96vw, 720px);
  display: none;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #e6e6e6;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  z-index: 1500;
}
.floating-contact-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.floating-contact-btn--tel {
  background: #2c3e50;
}
.floating-contact-btn--line {
  background: #06c755;
}
.floating-contact-btn--mail {
  background: #d4af37;
}
.floating-contact-btn:hover {
  opacity: 0.92;
}
@media (max-width: 992px) {
  .hero-points {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-top-appeal {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .hero-points-section {
    padding: 18px 14px 6px;
  }
  .hero-points-wrap {
    padding: 18px 14px;
    border-radius: 14px;
  }
  .hero-points {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
  }
  .hero-points li,
  .price-top-points li {
    font-size: 0.85rem;
    line-height: 1.4;
    border-radius: 14px;
    padding: 10px 8px;
  }
  .hero-action-buttons {
    flex-direction: column;
  }
  .hero-action-btn {
    width: 100%;
    min-width: 0;
    padding: 14px 18px;
  }
  .line-banner-section {
    padding: 6px 14px 18px;
  }
  .visual-banner-section {
    padding: 0 14px 18px;
  }
  .visual-banner-image,
  .line-banner-image {
    border-radius: 14px;
  }
  .line-banner-caption {
    font-size: 0.92rem;
  }
  .floating-contact-bar {
    display: flex;
    width: calc(100vw - 16px);
    bottom: 8px;
    padding: 8px;
    gap: 8px;
  }
  .floating-contact-btn {
    min-height: 44px;
    font-size: 0.82rem;
    padding: 0 6px;
  }
  .back-button-fixed {
    bottom: 78px;
  }
}
/* ===== ヘッダー横並び崩れ対策（PC用） ===== */
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 70px;
}

.header-logo {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 0;
}

.header-nav {
  min-width: 0;
  overflow: hidden;
}

.header-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.header-nav li {
  flex: 0 1 auto;
  min-width: 0;
}

.header-nav a {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.92rem;
  line-height: 1.2;
  padding: 8px 0;
}

.header-nav .contact-button {
  padding: 9px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.header-nav .btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  background: #d4af37;
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: bold;
  font-size: 0.9rem;
  line-height: 1;
  margin-left: 4px;
}

.header-nav .btn-download:hover {
  background: #b1902d;
  color: #fff;
  opacity: 1;
}

/* 少し狭いPC幅でさらに詰める */
@media (max-width: 1200px) {
  .header-inner {
    gap: 12px;
    padding: 0 14px;
  }

  .header-nav ul {
    gap: 10px;
  }

  .header-nav a {
    font-size: 0.84rem;
  }

  .header-nav .contact-button {
    padding: 8px 12px;
  }

  .header-nav .btn-download {
    padding: 9px 12px;
    font-size: 0.82rem;
  }
}

/* タブレット以下は既存のハンバーガーを優先 */
@media (max-width: 768px) {
  .header-inner {
    display: flex;
    min-height: 70px;
  }

  .header-nav ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
  }

  .header-nav .btn-download {
    width: 100%;
    justify-content: center;
    border-radius: 12px;
    margin-left: 0;
  }
}

/* ===== region pages redesign auto patch ===== */
.region-top-cta {
  padding-top: 34px;
  padding-bottom: 10px;
}
.region-top-cta-box {
  background: linear-gradient(135deg, #fffdf7 0%, #f7f2e7 100%);
  border: 1px solid #eadfca;
  border-radius: 20px;
  padding: 28px 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  text-align: center;
}
.region-top-cta-lead {
  font-size: 1.15rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 1em;
}
.region-top-cta-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1.2em;
}
.region-top-cta-points span {
  background: #fff;
  border: 1px solid #eadfca;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: bold;
  font-size: 0.95rem;
}
.region-top-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.region-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  transition: transform .2s ease, opacity .2s ease;
}
.region-cta-btn:hover {
  transform: translateY(-1px);
  opacity: .95;
}
.region-cta-btn.tel { background: #2c3e50; }
.region-cta-btn.line { background: #06c755; }
.region-cta-btn.mail { background: #d4af37; }

.region-line-banner,
.region-reason-banner,
.region-flow-banner,
.region-price-banner,
.region-discount-banner {
  max-width: 1100px;
  margin: 28px auto;
  padding: 0 20px;
}
.region-line-banner img,
.region-reason-banner img,
.region-flow-banner img,
.region-price-banner img,
.region-discount-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.region-sticky-cta {
  display: none;
}

/* PCヘッダーの詰まり対策 */
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 70px;
}
.header-logo {
  flex-shrink: 0;
  white-space: nowrap;
}
.header-nav {
  min-width: 0;
  overflow: hidden;
}
.header-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}
.header-nav li {
  min-width: 0;
}
.header-nav a {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.92rem;
  line-height: 1.2;
  padding: 8px 0;
}
.header-nav .contact-button {
  padding: 9px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.header-nav .btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  background: #d4af37;
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: bold;
  font-size: 0.9rem;
  line-height: 1;
  margin-left: 4px;
}
.header-nav .btn-download:hover {
  background: #b1902d;
  color: #fff;
  opacity: 1;
}

@media (max-width: 1200px) {
  .header-inner {
    gap: 12px;
    padding: 0 14px;
  }
  .header-nav ul {
    gap: 10px;
  }
  .header-nav a {
    font-size: 0.84rem;
  }
  .header-nav .contact-button {
    padding: 8px 12px;
  }
  .header-nav .btn-download {
    padding: 9px 12px;
    font-size: 0.82rem;
  }
}

@media (max-width: 768px) {
  .header-inner {
    display: flex;
    min-height: 70px;
  }
  .header-nav ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
  }
  .header-nav .btn-download {
    width: 100%;
    justify-content: center;
    border-radius: 12px;
    margin-left: 0;
  }
}

@media (max-width: 700px) {
  .region-top-cta-box {
    padding: 20px 14px;
    border-radius: 16px;
  }
  .region-top-cta-lead {
    font-size: 1rem;
  }
  .region-top-cta-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .region-cta-btn {
    width: 100%;
  }
  .region-sticky-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 1200;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }
  .region-sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    font-weight: bold;
    color: #fff;
    font-size: 0.88rem;
  }
  .region-sticky-cta .tel-btn { background: #2c3e50; }
  .region-sticky-cta .line-btn { background: #06c755; }
  .region-sticky-cta .mail-btn { background: #d4af37; }
  .back-button-fixed {
    bottom: 78px;
  }
}

/* ===== 近隣エリアデザイン改善 ===== */
.related-area {
  max-width: 1100px;
  margin: 40px auto 24px;
  padding: 0 20px 10px;
}

.related-area .section-title {
  position: relative;
  margin-bottom: 22px;
  padding-bottom: 12px;
  text-align: center;
  font-size: 2rem;
  color: #2c3e50;
}

.related-area .section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, #d4af37 0%, #b1902d 100%);
  border-radius: 999px;
}

.related-area-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.related-area-links a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  padding: 18px 18px 18px 46px;
  background: linear-gradient(135deg, #fffdf8 0%, #f8f2e7 100%);
  border: 1px solid #eadfca;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  color: #2c3e50;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.related-area-links a::before {
  content: "›";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #d4af37;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 18px;
  text-align: center;
}

.related-area-links a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
  background: linear-gradient(135deg, #fffdfa 0%, #f5ecdb 100%);
  opacity: 1;
}

.related-area-links a:active {
  transform: translateY(0);
}

@media (max-width: 900px) {
  .related-area-links {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .related-area-links a {
    min-height: 68px;
    font-size: 0.98rem;
  }
}

@media (max-width: 700px) {
  .related-area {
    margin: 28px auto 12px;
    padding: 0 14px 6px;
  }

  .related-area .section-title {
    font-size: 1.35rem;
    margin-bottom: 16px;
    padding-bottom: 8px;
  }

  .related-area-links {
    gap: 12px;
  }

  .related-area-links a {
    min-height: 62px;
    padding: 15px 14px 15px 40px;
    border-radius: 14px;
    font-size: 0.95rem;
  }

  .related-area-links a::before {
    left: 14px;
  }
}