@charset "UTF-8";

/* ====================================
   ヒーローカルーセル
   ==================================== */
.hero-slider {
  background: url("画像/cover1.png") center center / cover no-repeat;
  padding: 1rem 0;
  position: relative;
  width: 100%;
  min-height: 300px;
  z-index: 5;
}

.slider-container {
  width: 90%;
  max-width: 900px;
  margin: auto;
  position: relative;
  z-index: 10;
}

.slider {
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border-radius: 8px;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  aspect-ratio: 4 / 3;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  background: rgba(255,255,255,0.9);
  border: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.prev { left: -1.5rem; }
.next { right: -1.5rem; }

.slider-dots {
  text-align: center;
  margin-top: 1.5rem;
}

.slider-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  border: none;
  margin: 0 6px;
  cursor: pointer;
}

.slider-dots .active {
  background: #00897b;
}

@media (min-width: 768px) {
  .hero-slider { padding: 2rem 0; }
}

/* ====================================
   お悩みセクション
   ==================================== */
.trouble-section {
  padding: 60px 20px;
  background-color: #f7fcfe;
  overflow: hidden;
}

.trouble-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.trouble-title-area {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 20px 0;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  filter: blur(3px);
}

.circle-1 {
  width: 180px;
  height: 180px;
  background-color: rgba(120, 187, 230, 0.12);
  top: -40px;
  left: -50px;
}

.circle-2 {
  width: 100px;
  height: 100px;
  border: 3px solid rgba(120, 187, 230, 0.15);
  top: -60px;
  right: -30px;
}

.circle-3 {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.7);
  bottom: -20px;
  right: 10%;
}

.trouble-title-area .main-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: #333;
  line-height: 1.4;
  margin: 0;
}

.trouble-title-area .highlight {
  color: #fff;
  background-color: #78BBE6;
  padding: 0.1em 0.4em;
  border-radius: 4px;
  display: inline-block;
}

.trouble-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trouble-list li {
  position: relative;
  background-color: #fff;
  padding: 1.2rem 1.5rem 1.2rem 4rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  transition: transform 0.2s, box-shadow 0.2s;
}

.trouble-list li::before {
  content: "✔";
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background-color: #78BBE6;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

@media (min-width: 992px) {
  .trouble-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f7fcfe 0%, #eef9ff 100%);
  }

  .trouble-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .trouble-title-area {
    flex: 1;
    text-align: left;
    padding: 0;
  }

  .circle-1 {
    width: 350px;
    height: 350px;
    top: -150px;
    left: -180px;
  }

  .circle-2 {
    width: 150px;
    height: 150px;
    top: 0;
    right: -80px;
  }

  .circle-3 {
    width: 80px;
    height: 80px;
    bottom: 50px;
    right: 0;
  }

  .trouble-title-area .main-title { font-size: 3rem; }
  .trouble-list-area { flex: 1.2; }
  .trouble-list li { font-size: 1.3rem; padding: 1.8rem 2rem 1.8rem 5rem; }
  .trouble-list li::before { width: 42px; height: 42px; font-size: 1.3rem; left: 15px; }
  .trouble-list li:hover { transform: translateX(10px); box-shadow: 0 12px 30px rgba(120, 187, 230, 0.2); }
}

/* ====================================
   原因セクション
   ==================================== */
.cause-section {
  background-color: #78BBE6;
  position: relative;
  padding: 50px 20px 0;
  text-align: center;
  color: #fff;
  z-index: 10;
}

.cause-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.cause-sub-text {
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: block;
}

.cause-main-text {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.cause-pointer {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0;
  border-style: solid;
  border-width: 60px 50vw 0 50vw;
  border-color: #78BBE6 transparent transparent transparent;
}

@media (min-width: 768px) {
  .cause-section { padding-top: 80px; }
  .cause-inner { padding-bottom: 60px; }
  .cause-sub-text { font-size: 1.4rem; }
  .cause-main-text { font-size: 3.5rem; }
  .cause-pointer { border-width: 100px 50vw 0 50vw; }
}

/* ====================================
   フォトリスト（タイル1）
   ==================================== */
.photolist-section {
  padding: 80px 20px 60px;
  background-color: #f0f9ff;
  position: relative;
  overflow: hidden;
}

.photolist-bg-deco {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(120, 187, 230, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}

.photolist-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.photolist-item {
  background: #fff;
  border-radius: 20px;
  border: 4px solid #78BBE6;
  padding: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
}

.item-number {
  position: absolute;
  top: -16px;
  left: 20px;
  background-color: #78BBE6;
  color: #fff;
  font-weight: 900;
  font-size: 0.9rem;
  padding: 5px 18px;
  border-radius: 50px;
  z-index: 3;
  box-shadow: 0 4px 10px rgba(120, 187, 230, 0.3);
}

.photolist-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
}

.photolist-image img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
  display: block;
}

.photolist-item:hover .photolist-image img {
  transform: scale(1.08);
}

.photolist-text {
  padding: 20px 10px 15px;
}

.photolist-text h3 {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 12px;
  background-image: radial-gradient(circle, #78BBE6 1.2px, transparent 1.2px);
  background-size: 5px 5px;
  background-repeat: repeat-x;
  background-position: bottom;
  padding-bottom: 10px;
  display: inline-block;
}

.photolist-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .photolist-section { padding: 160px 20px 100px; }
  .photolist-wrap { flex-direction: row; align-items: stretch; gap: 30px; }
  .photolist-item { flex: 1; padding: 15px; }
  .item-number { font-size: 1rem; top: -22px; padding: 6px 22px; }
  .photolist-text h3 { font-size: 1.6rem; }
  .photolist-text p { font-size: 1.1rem; }
}

/* ====================================
   相談セクション
   ==================================== */
.consult-section {
  padding: 5rem 1rem 3rem;
  background: radial-gradient(circle at 10% 20%, #dcf7f5 0%, #CBEEEB 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.consult-section::before, .consult-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  z-index: 1;
}

.consult-section::before { width: 150px; height: 150px; top: -50px; left: -30px; }
.consult-section::after { width: 250px; height: 250px; bottom: -100px; right: -50px; background: rgba(0, 137, 123, 0.05); }

.consult-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.consult-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: #333;
  line-height: 1.5;
  margin: 0 0 2.5rem;
}

.consult-title span {
  color: #00897b;
  display: inline-block;
  position: relative;
}

.consult-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 12px;
  background-color: rgba(0, 137, 123, 0.15);
  z-index: -1;
  border-radius: 2px;
}

.consult-guide-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.down-pointer {
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 18px solid #00897b;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-12px); }
  60% { transform: translateY(-6px); }
}

.sp-only { display: block; }

@media (min-width: 768px) {
  .consult-section { padding: 7rem 2rem 4rem; }
  .consult-title { font-size: 2.8rem; }
  .sp-only { display: none; }
  .consult-section::before { width: 300px; height: 300px; top: -100px; left: 5%; }
  .consult-section::after { width: 400px; height: 400px; bottom: -150px; right: 5%; }
}

/* ====================================
   ポイントセクション
   ==================================== */
.points-section {
  padding: 4rem 1rem;
  background-color: #CBEEEB;
}

.points-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.point-card {
  background-color: #ffffff;
  border: 2px solid #00897b;
  border-radius: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 6px 6px 0px rgba(0, 137, 123, 0.1);
}

.point-number {
  position: absolute;
  top: -16px;
  left: 20px;
  background-color: #00897b;
  color: #ffffff;
  font-weight: 900;
  font-size: 1rem;
  padding: 4px 16px;
  border-radius: 50px;
  z-index: 10;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.point-image-frame {
  padding: 2rem 1.5rem 0 1.5rem;
}

.point-image-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
}

.point-body {
  padding: 1.5rem;
  text-align: center;
}

.text-medium {
  font-size: 0.9rem;
  font-weight: bold;
  margin: 0 0 0.5rem 0;
  color: #00897b;
}

.text-large {
  font-size: 1.6rem;
  font-weight: 900;
  margin: 0;
  line-height: 1.3;
  color: #333;
}

.text-line {
  width: 80px;
  border: none;
  border-top: 4px solid #007bff;
  margin: 1.2rem auto;
  border-radius: 10px;
}

.text-small {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  color: #444;
  text-align: left;
}

@media (min-width: 768px) {
  .points-section { padding: 6rem 2rem; }
  .points-wrap { flex-direction: row; align-items: stretch; gap: 2rem; }
  .point-card { flex: 1; }
  .point-body { padding: 2rem 1.5rem; }
  .text-large { font-size: 1.8rem; }
  .point-image-frame { padding: 1.8rem 1.2rem 0 1.2rem; }
  .point-number { font-size: 1.1rem; top: -18px; }
}

/* ====================================
   比較表
   ==================================== */
.comparison-section {
  padding: 0 1rem 8rem;
  background-color: #CBEEEB;
}

.comparison-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title-area {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: #333;
  margin: 0;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #00897b;
  font-weight: bold;
  margin: 0.3rem 0 0;
}

.comparison-table-wrapper {
  overflow-x: auto;
  background-color: #fff;
  border-radius: 15px;
  border: 2px solid #00897b;
  box-shadow: 6px 6px 0px rgba(0, 137, 123, 0.1);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.comparison-table th, .comparison-table td {
  padding: 1.2rem 0.8rem;
  border: 1px solid #eee;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #444;
}

.comparison-table thead th {
  background-color: #f8fcfb;
  color: #333;
  font-weight: bold;
}

.comparison-table tbody th {
  background-color: #f8fcfb;
  font-weight: bold;
  width: 150px;
  font-size: 0.9rem;
}

.comparison-table .highlight {
  background-color: #f0fbf9;
  font-weight: bold;
  color: #00897b;
  width: 180px;
}

.comparison-table thead th.highlight {
  background-color: #00897b;
  color: #ffffff;
  font-size: 1.1rem;
}

.table-notice {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  color: #666;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .comparison-section { padding: 0 2rem 10rem; }
  .section-title-area { margin-bottom: 2rem; }
  .section-title { font-size: 2.2rem; }
  .table-notice { display: none; }
  .comparison-table th, .comparison-table td { padding: 1.5rem; font-size: 1rem; }
  .comparison-table tbody th { font-size: 1rem; }
}

/* ====================================
   料金表見出し (レイアウトのみ)
   ==================================== */
.service-price-section {
  padding: 4rem 1rem 2rem;
  background-color: #78BBE6;
  text-align: center;
}

.service-price-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-price-badge {
  display: inline-block;
  background-color: #ffffff;
  color: #78BBE6;
  font-weight: 900;
  font-size: 1rem;
  padding: 6px 24px;
  border-radius: 50px;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-price-title {
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-price-bar {
  width: 60px;
  height: 4px;
  background-color: #ffffff;
  margin-top: 1.5rem;
  border-radius: 10px;
}

/* ====================================
   料金表カード & オプション
   ==================================== */
.price-section {
  padding: 3rem 1rem;
  background-color: #f0f9ff;
  width: 100%;
}

.price-grid-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.price-card {
  background-color: #fff;
  border: 2px solid #9ACFF3;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.price-header {
  background-color: #78BBE6;
  color: #ffffff;
  padding: 1rem;
  font-weight: bold;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.4;
}

.price-card-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  line-height: 0;
  border-bottom: 1px solid #9ACFF3;
}

.price-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-body {
  padding: 1.5rem 1.2rem;
  flex-grow: 1;
}

.price-amount {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  color: #333;
  margin-bottom: 1.2rem;
  line-height: 1;
}

.price-amount span {
  font-size: 0.9rem;
  font-weight: normal;
}

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

.price-details li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.6rem;
  border-bottom: 1px dotted #9ACFF3;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #444;
}

.price-details li:last-child {
  border-bottom: none;
}

.price-details li::before {
  content: "※";
  position: absolute;
  left: 0;
  color: #9ACFF3;
  font-weight: bold;
}

/* --- オプションメニューのレイアウト --- */
.option-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.option-block-main, 
.option-block-discount {
  width: 100%;
}

/* オプション表のデザイン */
.option-table {
  width: 100%;
  border-collapse: collapse;
}

.option-table tr {
  border-bottom: 1px solid #e0f2fe;
}

.option-table tr:last-child {
  border-bottom: none;
}

.option-table th {
  text-align: left;
  padding: 0.8rem 0.5rem;
  font-size: 0.95rem;
  color: #444;
  vertical-align: middle;
}

.option-table th p {
  font-size: 0.75rem;
  color: #666;
  margin: 0;
  font-weight: normal;
}

.option-table td {
  text-align: right;
  padding: 0.8rem 0.5rem;
  font-size: 1.1rem;
  font-weight: 900;
  color: #333;
  white-space: nowrap;
  vertical-align: middle;
}

/* 割引行のデザイン */
.table-discount-row th { 
  background-color: #9ACFF3; 
  color: #ffffff; 
  text-align: center !important; 
  padding: 0.6rem !important; 
  font-size: 1rem; 
  font-weight: bold; 
  border-radius: 6px; 
}

/* 価格表示 */
.old-price {
  font-size: 0.8rem;
  color: #888;
  text-decoration: line-through;
  font-weight: normal;
  margin-right: 0.2rem;
}

.price-arrow {
  font-size: 0.8rem;
  color: #333;
  margin-right: 0.2rem;
}

.new-price {
  font-size: 1.1rem;
  color: #EF009C;
  font-weight: 900;
}

/* 参考画像 */
.option-image {
  margin-top: 1rem;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
}

.option-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ====================================
   モニター割引（価格カード内部用）修正版
   ==================================== */
.monitor-discount-inner {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px dashed #9ACFF3;
}

.monitor-discount-content {
  background-color: #fff0f8; /* 明るい薄ピンク */
  border: 2px dashed #EF009C; /* ピンクの破線枠 */
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(239, 0, 156, 0.15); /* ピンクの影で立体感 */
}

.monitor-badge {
  background-color: #EF009C; /* ピンク色のバッジ */
  color: #ffffff;
  font-size: 0.95em;
  font-weight: 900;
  padding: 6px 20px;
  border-radius: 50px;
  letter-spacing: 1px;
  box-shadow: 0 2px 6px rgba(239, 0, 156, 0.3);
}

.monitor-details p {
  font-size: 1em;
  line-height: 1.6;
  margin: 0;
  color: #333;
  text-align: center;
}

.price-cut {
  color: #EF009C; /* テキストもピンクに統一 */
  font-weight: 900;
  font-size: 1.3em;
  margin: 0 4px;
  border-bottom: 3px solid #EF009C; /* 太い下線 */
}

.monitor-sub {
  font-size: 0.85em !important;
  color: #666 !important;
  margin-top: 12px !important;
  line-height: 1.5 !important;
  background-color: rgba(255,255,255,0.6);
  padding: 8px 12px;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .price-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* ワイドカードを2列分広げる */
  .wide-card {
    grid-column: span 2;
  }

  /* 左右分割レイアウト（高さ揃え） */
  .option-container {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }

  /* 左側（通常メニュー） */
  .option-block-main {
    flex: 1;
    border-right: 2px dashed #9ACFF3;
    padding-right: 3rem;
    display: flex;
    flex-direction: column;
  }

  /* 右側（割引メニュー） */
  .option-block-discount {
    flex: 1;
    padding-left: 3rem;
    display: flex;
    flex-direction: column;
  }

  .discount-wrapper {
    background-color: #fcfcfc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e0eef0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

/* ====================================
   ヒートポンプセクション
   ==================================== */
.hp-impact-section {
  padding: 2rem 1rem 1rem;
  background-color: #EF009C;
  text-align: center;
  position: relative;
}

.hp-impact-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hp-impact-label {
  display: inline-block;
  background-color: #ffffff;
  color: #EF009C;
  font-weight: 900;
  font-size: 1rem;
  padding: 4px 20px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hp-impact-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.4;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hp-impact-highlight {
  font-size: 1.25em;
  color: #fff100;
  text-decoration: underline solid 6px #ffffff;
  text-underline-offset: 8px;
  margin: 0 4px;
}

.hp-impact-triangle {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: #EF009C;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 10;
}

.hp-explain-section {
  padding: 4rem 1rem;
  background-color: #f0f9ff;
  width: 100%;
}

.hp-explain-container {
  max-width: 1100px;
  margin: 0 auto;
}

.hp-explain-card {
  background-color: #fff;
  border: 2px solid #9ACFF3;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.hp-explain-text {
  padding: 2rem 1.5rem;
}

.hp-explain-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 1.5rem;
  display: inline-block;
  padding-bottom: 0.5rem;
  border-bottom: 4px solid #9ACFF3;
}

.hp-explain-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1.2rem;
}

.hp-feature-box {
  background-color: #f0faff;
  border-left: 4px solid #9ACFF3;
  padding: 1rem;
  margin-bottom: 1.2rem;
}

.hp-feature-box p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #333;
}

.hp-feature-box strong {
  color: #EF009C;
}

.hp-contact-note {
  font-weight: bold;
  color: #333;
}

.hp-explain-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background-color: #fdfdfd;
}

.hp-explain-image img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .hp-explain-card {
    flex-direction: row;
    align-items: center;
  }

  .hp-explain-text {
    flex: 1.2;
    padding: 3.5rem;
  }

  .hp-explain-image {
    flex: 1;
    padding: 3rem;
  }

  .hp-explain-title {
    font-size: 2rem;
  }

  .hp-explain-text p, .hp-feature-box p {
    font-size: 1.05rem;
  }
}

/* ====================================
   エリアセクション
   ==================================== */
.area-section {
  padding: 5rem 1rem;
  background-color: #fcfcfc;
  background-image: radial-gradient(#d1eef0 1px, transparent 1px);
  background-size: 20px 20px;
  width: 100%;
  overflow: hidden;
}

.area-container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-en-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 900;
  color: #9ACFF3;
  letter-spacing: 0.3em;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #333;
  position: relative;
  display: inline-block;
}

.section-title::before, .section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 25px;
  height: 2px;
  background-color: #9ACFF3;
}

.section-title::before { left: -35px; }
.section-title::after { right: -35px; }

.area-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.area-card {
  background: #fff;
  padding: 2rem 1.2rem;
  border-radius: 16px;
  border: 1px solid #e0eef0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.area-block {
  margin-bottom: 2.5rem;
}

.area-block:last-child {
  margin-bottom: 0;
}

.area-sub-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
}

.area-sub-title::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #9ACFF3;
  border-radius: 50%;
  margin-right: 10px;
}

.area-sub-title.border-orange::before {
  background-color: #f39c12;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.tag {
  color: #333;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: bold;
}

.tags-blue .tag {
  background-color: #f0faff;
  border: 1px solid #9ACFF3;
}

.tags-orange .tag {
  background-color: #fff9f0;
  border: 1px solid #f39c12;
}

.area-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

.price-banner {
  display: inline-flex;
  align-items: baseline;
  background-color: #fff3f9;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  margin: 0.8rem 0;
  border: 1px dashed #EF009C;
}

.price-label { font-size: 0.85rem; color: #EF009C; margin-right: 0.5rem; }
.price-value { font-size: 1.6rem; font-weight: 900; color: #EF009C; }
.price-tax { font-size: 0.75rem; color: #EF009C; margin-left: 0.2rem; }

.map-inner {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  line-height: 0;
}

.area-map-wrapper img {
  width: 100%;
  height: auto;
}

.map-caption {
  margin-top: 1rem;
  font-size: 0.8rem;
  text-align: center;
  color: #888;
}

@media (min-width: 768px) {
  .area-content {
    flex-direction: row;
    align-items: stretch;
    gap: 3.5rem;
  }
  
  .area-info { flex: 1.2; }
  .area-card { padding: 3.5rem; }
  .section-title { font-size: 2.4rem; }
  .section-title::before { left: -45px; }
  .section-title::after { right: -45px; }
}