@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700");

/* area-header */
.area-header-title{
  background: no-repeat center 35% url("../images/area/banner-area.png");
  background-size: cover; aspect-ratio: 16 / 3; /* 横縦比で高さを確保 */ 

  text-align: center;
  padding: 80px 80px;
  /*opacity: none;*/
  position: relative;
}
.area-header-title::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.05));
  pointer-events: none;
}
.area-header-title .en,
.area-header-title .ja{
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.area-header-title .en{ display: block; font-size: 40px;}
.area-header-title .ja{ display: block; font-size: 14px;}

/* 1024px以下：少しコンパクトに */
@media (max-width: 1024px) {
  .area-header-title {
    padding: 40px 40px;
    background-position: center center;
  }
  .area-header-title .en { font-size: 32px;}
  .area-header-title .ja { font-size: 13px;}
}

/* 768px以下：スマホ・タブレット用 */
@media (max-width: 768px) {
  .area-header-title {
    aspect-ratio: auto;          /* 高さを固定せず中身優先に */
    padding: 32px 16px;
    background-position: center center;
  }
  .area-header-title .en { font-size: 26px;}
  .area-header-title .ja { font-size: 12px;}
}

/* area-coverage-top */
.area-coverage-top .section-title {
  font-size: 36px;
  text-align: center;
  padding: 20px 0 0;
}
.area-coverage-top .lead{
  text-align: center;
  padding: 30px 0 10px;
  margin-bottom: 20px;
}
.area-coverage-top .lead span{
  color: #d00b0b;
}
@media (max-width: 768px) {
  .area-coverage-top .section-title {
    font-size: 22px;
    text-align: unset;
  }
  .area-coverage-top .lead{
    text-align: unset;
  }
}

/* area-coverage */
.region-section {
  margin-bottom: 60px;
}
.region-title {
  font-size: 1.5rem;
  color: var(--primary);
  border-bottom: 2px solid #d3e3fd;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.pref-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
}
.pref-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}
.pref-name::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 24px;
  background: #0b57d0;
  margin-right: 12px;
  border-radius: 4px;
}
.city-list {
  font-size: 0.9rem;
  color: #444746;
  line-height: 1.6;
}
.city-list span {
  display: inline-block;
  margin-right: 8px;
}
.note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #eee;
}

@media (max-width: 768px) {
  .area-coverage-top .lead {
    padding: 24px 16px 8px;
    font-size: 14px;
    line-height: 1.6;
  }
  .section-title {
    font-size: 28px;
    padding: 16px 0;
  }
  }