@charset "UTF-8";
/*　ヘッダー画像
-------------------------------------------------------------------------------- */
#h2Img {
  background: url("../img/headerimg.jpg") center center / cover no-repeat;
}



/*　コンテンツページ
-------------------------------------------------------------------------------- */

/* セクションごとのデザイン */
.scontentsArea section {
  border-top: 1px dotted #aaa;
  padding: 30px 0 70px 0;
}

/* 最初と最後のsectionだけ線を非表示 */
.scontentsArea section:first-of-type {
  border-top: none;
}

.scontentsArea h4 {
  font-size: 24px;
}

/*--レスポンシブ対応--*/
@media screen and (max-width: 767px) {

  .scontentsArea section {
    padding: 5px 0 20px 0;
  }

  .scontentsArea h4 {
    font-size: 16px;
  }

  .scontentsArea p {
    font-size: 13px;
  }

}


/* サイトマップ
-------------------------------------------------------------------------------- */
/* サイトマップ全体のスタイル */
.sitemap-list {
  list-style: none;
  	width: 70%;
	margin: 0 auto;
  padding: 0 0 90px 0;
  line-height: 1.8;
  padding-left: 15px;
}


/* 第一階層 */
.sitemap-list > li {
  margin-bottom: 25px;
  position: relative;
  padding-left: 1em;
}

.sitemap-list > li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #666;
}

/* リンク */
.sitemap-list a {
  color: #235DA6;
  text-decoration: none;
  transition: color 0.3s;
}

.sitemap-list a:hover {
  text-decoration: underline;
  color: #e60462;
}

/* 第二階層（入れ子ul） */
.sitemap-list ul {
  list-style: none;
  margin-top: 4px;
  margin-left: 1em;
  padding-left: 1em;
  border-left: 1px dotted #ccc;
}

.sitemap-list ul li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 4px;
}

.sitemap-list ul li::before {
  content: "▶";
  position: absolute;
  left: 0;
  font-size: 0.8em;
  color: #999;
}