@charset "UTF-8";

/* ====================================
   Variables & Common
   ==================================== */
:root {
  --color-green: #559e44;
  --color-orange: #f0951e;
  --font-en: "Brush Script MT", cursive; 
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  box-sizing: border-box;
}

/* ====================================
   Main Visual
   ==================================== */
.p-sitemap-mv {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  margin-bottom: 20px;
}

.p-sitemap-mv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-sitemap-mv__content {
  position: absolute;
  bottom: 30px;
  left: 10%;
  z-index: 2;
  text-shadow: 0 0 15px rgba(255,255,255,0.8);
}

.p-sitemap-mv__title .en {
  display: block;
  font-family: var(--font-en);
  font-size: 5rem;
  line-height: 1;
  color: #000;
}
.p-sitemap-mv__title .jp {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: 5px;
  color: #000;
  padding-left: 5px;
}

/* Breadcrumb */
.p-sitemap-breadcrumb {
  font-size: 12px;
  padding: 0 0 40px;
  margin-bottom: 20px;
}
.p-sitemap-breadcrumb a {
  text-decoration: none;
  color: #333;
}

/* ====================================
   Sitemap Content
   ==================================== */
.p-sitemap-main {
  padding-bottom: 0;
}

.p-sitemap-content {
  position: relative;
  padding-bottom: 100px;
}

/* 背景画像 (bg_sitemap.png) */
.p-sitemap-bg {
  position: absolute;
  bottom: 0;
  right: -50px; /* 右下に配置 */
  width: 400px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}
.p-sitemap-bg img {
  width: 100%;
  height: auto;
  display: block;
}

.p-sitemap-content__inner {
  position: relative;
  z-index: 1;
}

/* サイトマップリストのデザイン調整 */
.p-sitemap-list-wrapper {
  background: #fff;
  padding: 20px;
}

/* プラグインが出力するHTMLへのスタイル適用 */
.p-sitemap-list-wrapper h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 5px solid #333;
}

.p-sitemap-list-wrapper h2:first-child {
  margin-top: 0;
}

.p-sitemap-list-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px; /* 横・縦の間隔 */
}

.p-sitemap-list-wrapper li {
  width: 100%;
  max-width: 45%; /* PCでは2列表示っぽくする */
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.p-sitemap-list-wrapper li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
  font-weight: bold;
  border-bottom: 1px solid #eee;
  display: block;
  padding-bottom: 5px;
}
.p-sitemap-list-wrapper li a:hover {
  color: var(--color-green);
  border-bottom-color: var(--color-green);
}

/* リストのアイコン */
.p-sitemap-list-wrapper li::before {
  content: "›"; /* 矢印 */
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-orange);
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1;
}

/* 階層が深いリスト（もしあれば） */
.p-sitemap-list-wrapper ul ul {
  margin-top: 10px;
  margin-left: 20px;
  width: 100%;
}
.p-sitemap-list-wrapper ul ul li {
  max-width: 100%;
}


/* ====================================
   Contact CTA (Common)
   ==================================== */
.p-contact {
  background-color: #d9dcdb;
  padding: 60px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}
/* CTA背景パターン */
.p-contact__bg {
  /* 画像がある場合は指定してください */
  /* background-image: url('../images/bg_contact_flower.png'); */
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  opacity: 0.3;
}

.p-contact__head { margin-bottom: 30px; }

.p-contact__title .en {
  display: block;
  font-family: var(--font-en);
  font-size: 3.5rem;
  line-height: 1;
  color: #000;
  position: relative;
  z-index: 1;
  padding: 0 15px;
  display: inline-block;
}
.p-contact__title .en::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 110%;
  height: 12px;
  background-color: #568a47;
  z-index: -1;
}
.p-contact__title .jp {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  margin-top: 8px;
}

.p-contact__text {
  font-weight: bold;
  line-height: 2;
  margin-bottom: 40px;
}

.p-contact__actions {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.p-contact__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 60px;
  color: #fff;
  font-weight: bold;
  font-size: 1.125rem;
  text-decoration: none;
  transition: opacity 0.3s;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}
.p-contact__btn:hover { opacity: 0.8; }
.p-contact__btn--line { background-color: #f09c16; }
.p-contact__btn--tel { background-color: #568a47; }


/* ====================================
   Responsive (SP)
   ==================================== */
@media (max-width: 768px) {
  .p-sitemap-mv__title .en { font-size: 4rem; }
  
  .p-sitemap-list-wrapper li {
    max-width: 100%; /* スマホは1列 */
  }

  .bg-chair-illustration {
    width: 200px;
  }
  
  .p-contact__title .en { font-size: 3rem; }
  .p-contact__actions {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .p-contact__btn {
    width: 100%;
    max-width: 320px;
  }
}





### CSSの調整（assets/css/sitemap.css）

クラス名を少し整理しましたので、CSSも以下のように調整・追記してください。
（前回のCSSの `.p-sitemap-list-wrapper` 以下のスタイルをこちらに置き換えてください）

```css
/* サイトマップリストのデザイン */
.p-sitemap-list-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 4px;
}

/* サブタイトル（固定ページ、新着情報などの見出し） */
.p-sitemap-subtitle {
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 5px solid #333;
}
.p-sitemap-subtitle:first-of-type {
  margin-top: 0;
}

/* リスト本体 */
.p-sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px; /* 横・縦の間隔 */
}

/* 各リストアイテム */
.p-sitemap-list li {
  width: 100%;
  max-width: 45%; /* PCでは2列表示 */
  margin-bottom: 5px;
  position: relative;
  padding-left: 20px;
  box-sizing: border-box;
}

.p-sitemap-list li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
  display: block;
  padding-bottom: 5px;
  border-bottom: 1px dotted #eee; /* 破線に変更 */
}

.p-sitemap-list li a:hover {
  color: var(--color-green);
  border-bottom-color: var(--color-green);
}

/* リストのアイコン */
.p-sitemap-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-orange);
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1;
}

/* SPレスポンシブ */
@media (max-width: 768px) {
  .p-sitemap-list-wrapper {
    padding: 20px;
  }
  .p-sitemap-list li {
    max-width: 100%; /* スマホは1列 */
  }
}


