@charset "UTF-8";

/* ==========================================================================
   下層ページ メインビジュアル（ヘッダー下バナー）
   ========================================================================== */
.sub-mv {
  margin-top: 80px;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background-color: #f5f5f5;
}

.sub-mv-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 768px) {
  .sub-mv {
    margin-top: 60px;
    height: 180px;
  }
}

/* ==========================================================================
   下層ページ ヘッダータイトル ＆ 区切り線
   ========================================================================== */
.sub-page-header {
  margin-bottom: 6rem;
}

.sub-page-header .header-line {
  width: 80px;
  height: 3px;
  background-color: #555555;
  margin: 2rem auto 0;
}

.section-divider {
  border: none;
  border-top: 2px solid #555555;
  width: 100%;
  margin: 8rem 0 0;
}

@media screen and (max-width: 768px) {
  .sub-page-header {
    margin-bottom: 4rem;
  }
  .section-divider {
    margin: 5rem 0 0;
  }
}

/* ==========================================================================
   ★個人情報保護方針 本文エリアのスタイリング
   ========================================================================== */
.policy-body {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.55rem;
  line-height: 2;
  color: #333333;
}

/* 冒頭のリード文 */
.policy-lead {
  margin-bottom: 5rem;
  font-size: 1.6rem;
  line-height: 2;
  color: #444444;
}

/* 各項目の大見出し (h2) */
.policy-body h2 {
  font-size: 2.0rem;
  font-weight: 900;
  color: #222222;
  margin: 5rem 0 2rem;
  padding: 1rem 1.5rem;
  background-color: #f8f9fa;
  border-left: 5px solid #222222;
  border-bottom: 1px solid #eeeeee;
  line-height: 1.4;
}

/* 本文内の段落 */
.policy-body p {
  margin-bottom: 2rem;
}
.policy-body p:last-child {
  margin-bottom: 0;
}

/* 本文内の箇条書きリスト */
.policy-body ul {
  margin: 1.5rem 0 3rem 1.5rem;
  padding: 2rem 2.5rem;
  background-color: #fcfcfc;
  border: 1px solid #eeeeee;
  border-radius: 4px;
  list-style: disc;
}
.policy-body li {
  margin-bottom: 1rem;
  line-height: 1.8;
  padding-left: 0.5rem;
}
.policy-body li:last-child {
  margin-bottom: 0;
}

/* お問い合わせ窓口ボックス */
.policy-contact-box {
  margin-top: 2rem;
  padding: 3rem;
  background-color: #f8f9fa;
  border: 1px solid #dddddd;
  border-radius: 6px;
}
.policy-contact-box dl {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.policy-contact-box dt {
  width: 25%;
  font-weight: 700;
  color: #222222;
  padding: 1rem 0;
  border-bottom: 1px solid #eeeeee;
}
.policy-contact-box dd {
  width: 75%;
  margin: 0;
  padding: 1rem 0;
  border-bottom: 1px solid #eeeeee;
  color: #444444;
}
/* 最後の項目は下線を消す */
.policy-contact-box dt:last-of-type,
.policy-contact-box dd:last-of-type {
  border-bottom: none;
}
.policy-contact-box a {
  color: #00B7CE;
  font-weight: 700;
  text-decoration: underline;
}
.policy-contact-box a:hover {
  opacity: 0.7;
}

/* スマホ閲覧時のレスポンシブ */
@media screen and (max-width: 768px) {
  .policy-body {
    font-size: 1.45rem;
  }
  .policy-lead {
    font-size: 1.5rem;
    margin-bottom: 4rem;
  }
  .policy-body h2 {
    font-size: 1.8rem;
    margin: 4rem 0 1.5rem;
    padding: 0.8rem 1.2rem;
  }
  .policy-body ul {
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
    margin-left: 0;
  }
  .policy-contact-box {
    padding: 2rem 1.5rem;
  }
  .policy-contact-box dt,
  .policy-contact-box dd {
    width: 100%;
    padding: 0.5rem 0;
  }
  .policy-contact-box dt {
    border-bottom: none;
    color: #00B7CE;
    font-size: 1.35rem;
  }
  .policy-contact-box dd {
    padding-bottom: 1.5rem;
  }
  .policy-contact-box dd:last-of-type {
    padding-bottom: 0;
  }
}

/* ==========================================================================
   下層ページ共通：導線アイコン一覧（フッター直上 6連ナビゲーション）
   ========================================================================== */
.sub-nav-icons {
  padding: 5rem 0 6rem;
  background-color: #ffffff;
}

.nav-icons-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  text-align: center;
}

.nav-icons-list li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  border-radius: 6px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.nav-icons-list li a:hover {
  transform: translateY(-4px);
  background-color: #f9f9f9;
  opacity: 1;
}

.nav-icons-list .icon-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  margin-bottom: 1.2rem;
}
.nav-icons-list .icon-img img {
  max-height: 40px;
  width: auto;
}

.nav-icons-list .icon-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #222222;
  line-height: 1.3;
}

@media screen and (max-width: 1024px) {
  .nav-icons-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .sub-nav-icons {
    padding: 3rem 0 5rem;
  }
  .nav-icons-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }
  .nav-icons-list li a {
    padding: 1.2rem 0.5rem;
    border: 1px solid #eeeeee;
    background-color: #fafafa;
  }
  .nav-icons-list .icon-img {
    height: 40px;
    margin-bottom: 0.8rem;
  }
  .nav-icons-list .icon-img img {
    max-height: 32px;
  }
  .nav-icons-list .icon-text {
    font-size: 1.3rem;
  }
}

/* ==========================================================================
   CONTACT（お問い合わせエリア）
   ========================================================================== */
.contact {
  background-color: #00B7CE;
  color: #ffffff;
}

.contact-title {
  font-size: 5.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

.contact-sub {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.contact-text {
  font-size: 1.5rem;
  margin-bottom: 4rem;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.btn-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 260px;
  padding: 1.6rem 2rem;
  background-color: #222222;
  color: #ffffff;
  font-size: 1.5rem;
  border-radius: 4px;
}
.btn-contact:hover {
  background-color: #444444;
}

@media screen and (max-width: 768px) {
  .contact-title { font-size: 3.6rem; }
  .contact-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .btn-contact {
    width: 100%;
    max-width: 320px;
  }
}