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

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

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

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

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

/* sitemap-wrapper */
.sitemap-wrapper{
  margin-bottom: 20px;
}
.sitemap-list{
  margin: 20px 0 40px;
  padding: 0;
}

/* 各項目のカード枠 */
.sitemap-wrapper li{
  list-style: none;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  margin: 10px 0;
  overflow: hidden;
}

/* テキストとクリック範囲（全面クリック） */
.sitemap-list a{
  display: block;
  padding: 14px 18px;
  color: #0748b7;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
}

/* ホバー時：背景を変えて“リンク感”を出す */
.sitemap-list a:hover{
  background: #f5f8ff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  opacity: 1; /* top.css の a:hover=opacity:0.7 を打ち消し */
}

