/* 横幅いっぱい */
.content_wrapper {
  width: 100%;
}

/* 1080px */
.content {
  width: 1080px;
  padding-left: calc((100vw - 1080px) / 2);
  display: flex;
  flex-direction: column;
}

/*タイトル部分*/
#hero-image {
  position: relative;
}
#hero-image img {
  width: 1060px;
  margin: 0 0 0 20px;
  height: 500px;
  object-fit: cover;
}

.top-image-title {
  position: absolute;
  padding: 5px 25px 5px 60px;
  top: 180px;
  background: #005872;
  color: white;
  height: 77px;
  line-height: 77px;
  font-size: 48px;
  font-family: ten-mincho, serif;
  letter-spacing: 8px;
  text-align: right;
  opacity: 0;
  left: -10px;
  animation: fedeIn 1s ease forwards;
  animation-delay: 0.5s;
}

/* 左からスライドイン */
@keyframes fedeIn {
  100% {
    opacity: 1;
    left: 0;
  }
}

.top-image-title.second {
  top: 270px;
}
.scrolldown1 {
  position: absolute;
  left: -4px;
  bottom: 100px;
  height: 50px;
}

.scrolldown1 span {
  position: absolute;
  left: 2px;
  color: #005872;
  font-size: 12px;
  writing-mode: vertical-rl;
  letter-spacing: 1px;
  font-family: 'Roboto', system-ui;
  font-weight: bold;
  /* animation */
  opacity: 0;
  top: 50px;
  animation: fedeSlideIn 2s ease forwards;
  animation-delay: 1s;
}
/* 上からスライドイン */
@keyframes fedeSlideIn {
  100% {
    opacity: 1;
    top: 150px;
  }
}

.scrolldown1::after {
  content: '';
  position: absolute;
  top: 0;
  width: 1.5px;
  height: 30px;
  background: #005872;
  animation: pathmove 2.4s ease-in-out infinite;
  animation-delay: 1.5s;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 90px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 200px;
    opacity: 0;
  }
}

/* 地域で見る過疎自治体*/
#map-link-area {
  padding: 0 150px;
  margin: 80px 0 0 0;
}

/* 過疎自治体ファンクラグとは */
#bg-cover-area-yellow {
  background: #e6d59c;
  margin: 80px 0 0 0;
  box-shadow: 0 3px 5px 0 rgb(0 0 0 / 20%);
}
#our-mission-area {
  padding: 65px 0 95px 0;
}
.our-mission-message-area {
  position: relative;
  padding: 45px 0 0 0;
}
.our-mission-message {
  font-family: ten-mincho, serif;
  font-size: 18px;
  letter-spacing: 4px;
  line-height: 2em;
}
.our-mission-message > ul > li:nth-child(n + 2) {
  margin: 35px 0 0 0;
}
.our-mission-image {
  position: absolute;
  top: 210px;
  right: 0;
  width: 460px;
}
.our-mission-image img {
  width: 100%;
}

/* サイトマップ・過疎自治体の地域一覧 */
/* サイトマップ */
#bg-cover-area-gray {
  background: #f3f5f5;
  margin: 80px 0 0 0;
}
#sitemap-area {
  padding: 65px 35px;
}
.sitemap-links {
  font-size: 14px;
  margin: 35px 0 65px 0;
  text-align: center;
}
.sitemap-link_area {
  display: inline-block;
  width: 130px;
}
.sitemap-link_area:nth-child(n + 2) {
  margin: 0 0 0 65px;
}
a.sitemap-link {
  color: #001f47;
}
/* 過疎自治体の地域一覧 */
#prefectures-link-area {
  margin: 45px 0 0 0;
  padding: 0px 218px;
}
.area-title {
  font-size: 16px;
  font-weight: bold;
  margin: 30px 0 15px 0;
}
.area-links > li {
  display: inline-block;
  font-size: 14px;
  margin: 0 11px 16px 0;
  letter-spacing: 1px;
  /* width: 90px; */
}
.area-links a {
  color: #001f47;
}

/*
 * フッター前領域
 */
#pre-footer_area {
  background: #f3f5f5;
  padding: 80px 0 0 0;
}
