@charset "UTF-8";
/*
自治体紹介LP
*/
/*! ==================================================

  このCSSファイルはSassから生成されていますので
  編集しないようご注意ください。

================================================== */
/*
======================================================
  common
--------------------------------------------------- */
.sp-br {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-br {
    display: block;
  }
}

.pc-br {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc-br {
    display: none;
  }
}

a {
  transition: all 0.3s ease;
  color: #333;
  text-decoration: none;
}
a:hover {
  opacity: 0.6;
}

@media screen and (min-width: 1025px) {
  .pc {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.underline {
  background: linear-gradient(transparent 60%, #fcf968 60%);
}

@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.anime-fuwafuwa {
  animation: 1s fuwafuwa infinite;
}

.btn-more {
  margin: 50px auto 0;
}
@media screen and (min-width: 768px) {
  .btn-more {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .btn-more {
    margin: 35px auto 0;
    position: relative;
    width: 92%;
  }
}
.btn-more a {
  background-color: #fff;
  border: 1px solid #d0c78c;
  border-radius: 4px;
  display: inline-block;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .btn-more a {
    font-size: 16px;
    padding: 0.5em 1.6em 0.5em 1.2em;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .btn-more a {
    font-size: 13px;
    padding: 0.5em 0;
    width: 82%;
  }
}
.btn-more a::before {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
}
@media screen and (min-width: 768px) {
  .btn-more a::before {
    background-image: url(../img/ico_more_pc.svg);
    height: 23px;
    right: -83px;
    top: calc(50% - 9px);
    width: 103px;
  }
}
@media screen and (max-width: 767px) {
  .btn-more a::before {
    background-image: url(../img/ico_more_sp.svg);
    height: 22px;
    right: 0;
    top: calc(50% - 8px);
    width: 73px;
  }
}

/*
======================================================
  about
--------------------------------------------------- */
@media screen and (min-width: 768px) {
  #about {
    background-image: url(../img/bg-about_pc.svg);
    background-repeat: no-repeat;
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 1025px) {
  #about {
    background-position: 13% 65px;
    background-size: 352px;
    margin-top: 100px;
  }
}
@media screen and (max-width: 1024px) {
  #about {
    background-position: left 65px;
    background-size: 30%;
    margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  #about {
    margin-top: 50px;
    padding-bottom: 50px;
  }
}

.about__header {
  line-height: 1;
  padding-bottom: 22px;
  text-align: center;
}

.about__header-ttl {
  border-bottom: 1px solid #8b8b8b;
  display: inline-block;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  padding: 0 0 0.4em;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about__header-ttl {
    font-size: 24px;
    font-weight: normal;
  }
}
.about__header-ttl::before {
  background-image: url(../img/about_ttl_under.svg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -21px;
  content: "";
  display: block;
  height: 21px;
  left: calc(50% - 16px);
  position: absolute;
  width: 32px;
}
.about__header-ttl span {
  background: linear-gradient(transparent 60%, #f5e8e8 60%);
  padding: 0 0.5em 0.15em;
}

.about__inner {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  .about__inner {
    width: 980px;
  }
}
@media screen and (max-width: 1024px) {
  .about__inner {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .about__inner {
    width: 92%;
  }
}

@media screen and (min-width: 768px) {
  dl.about__item {
    padding-top: 43.87%;
    position: relative;
  }
  dl.about__item::before {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  dl.about__item {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  dl.about__item dt {
    position: absolute;
    z-index: 1;
  }
}
@media screen and (min-width: 1025px) {
  dl.about__item dt {
    width: 707px;
  }
}
@media screen and (max-width: 1024px) {
  dl.about__item dt {
    width: 72.14%;
  }
}
@media screen and (max-width: 767px) {
  dl.about__item dt {
    width: 100%;
  }
  dl.about__item dt img {
    border-radius: 8px;
  }
}
@media screen and (min-width: 768px) {
  dl.about__item dd {
    background-color: #fff;
    position: absolute;
    z-index: 2;
  }
}
@media screen and (min-width: 1025px) {
  dl.about__item dd {
    height: 206px;
    width: 400px;
  }
}
@media screen and (max-width: 1024px) {
  dl.about__item dd {
    width: 40.81%;
  }
}
@media screen and (max-width: 767px) {
  dl.about__item dd {
    width: 100%;
  }
}
dl.about__item dd p {
  font-size: 17px;
  line-height: 1.7;
  padding: 1.2em 2em 0;
}
@media screen and (max-width: 1024px) {
  dl.about__item dd p {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 767px) {
  dl.about__item dd p {
    font-size: 14px;
    padding: 1.2em 0 0;
  }
}
dl.about__item:nth-of-type(1) {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  dl.about__item:nth-of-type(1) dt {
    right: 0;
    top: 0;
  }
  dl.about__item:nth-of-type(1) dd {
    border-right: 1px solid #333;
    border-top: 1px solid #333;
    bottom: 0;
    left: 0;
  }
  dl.about__item:nth-of-type(1) dd p {
    padding: 1.2em 2em 0 0;
  }
}
@media screen and (min-width: 768px) and (min-width: 1025px) {
  dl.about__item:nth-of-type(1) dd p {
    padding: 1.2em 2em 0;
  }
}
dl.about__item:nth-of-type(2) {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  dl.about__item:nth-of-type(2) {
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) {
  dl.about__item:nth-of-type(2) dt {
    left: 0;
    top: 0;
  }
  dl.about__item:nth-of-type(2) dd {
    border-left: 1px solid #333;
    border-top: 1px solid #333;
    bottom: 0;
    right: 0;
  }
  dl.about__item:nth-of-type(2) dd p {
    padding: 1.2em 0 0 2em;
  }
}
@media screen and (min-width: 768px) and (min-width: 1025px) {
  dl.about__item:nth-of-type(2) dd p {
    padding: 1.2em 2em 0;
  }
}

/*
======================================================
  article
--------------------------------------------------- */
.article {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .article {
    padding: 60px 0 40px;
  }
}
.article#sightseeing, .article#tokusan, .article#stay, .article#map {
  background-color: #fffcf4;
}
.article#info {
  padding: 100px 0 150px;
}
@media screen and (max-width: 767px) {
  .article#info {
    padding: 60px 0;
  }
}

.article__ttl {
  margin: 0 auto;
  padding: 0 65px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .article__ttl {
    width: 980px;
  }
}
@media screen and (max-width: 1024px) {
  .article__ttl {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .article__ttl {
    padding: 0 50px;
    width: 92%;
  }
}
.article__ttl::before {
  background: #707070;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: calc(50% - 1px);
  width: 100%;
}
.article__ttl::after {
  background-image: url(../img/ico-deco.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 45px;
  left: calc(50% - 36px);
  position: absolute;
  top: -45px;
  width: 72px;
}
@media screen and (max-width: 767px) {
  .article__ttl::after {
    height: 22px;
    left: calc(50% - 20px);
    top: -32px;
    width: 40px;
  }
}
.article__ttl span {
  background: #fff;
  display: inline-block;
  font-size: 28px;
  padding: 0 1em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .article__ttl span {
    font-size: 18px;
    font-weight: normal;
  }
}
#sightseeing .article__ttl span, #tokusan .article__ttl span, #stay .article__ttl span, #map .article__ttl span {
  background-color: #fffcf4;
}

@media screen and (min-width: 1025px) {
  ul.article__list {
    display: flex;
    justify-content: space-between;
    margin: 50px auto 0;
    width: 980px;
  }
}
@media screen and (max-width: 1024px) {
  ul.article__list {
    margin: 0 auto;
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  ul.article__list {
    width: 92%;
  }
}
@media screen and (min-width: 1025px) {
  ul.article__list li {
    width: 300px;
  }
}
@media screen and (max-width: 1024px) {
  ul.article__list li {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  ul.article__list li {
    margin-top: 20px;
  }
}

@media screen and (max-width: 1024px) {
  dl.article__item {
    display: flex;
  }
}
@media screen and (max-width: 1024px) {
  dl.article__item dt {
    margin-right: 40px;
    width: 180px;
  }
}
@media screen and (max-width: 767px) {
  dl.article__item dt {
    margin-right: 12px;
    padding-top: 0.2em;
    width: 41.44%;
  }
}
dl.article__item dd {
  flex: 1;
}

.article__item-mds {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 1025px) {
  .article__item-mds {
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .article__item-mds {
    font-size: 14px;
  }
}

.article__item-tag {
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .article__item-tag {
    margin-top: 6px;
  }
}
.article__item-tag span {
  border-radius: 15px;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
  padding: 0.3em 1.5em;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .article__item-tag span {
    font-size: 10px;
    padding: 0.2em 1.5em;
  }
}
.article__item-tag span.tag-history {
  background-color: #e2dda5;
}
.article__item-tag span.tag-look {
  background-color: #e6c6c5;
}
.article__item-tag span.tag-taiken {
  background-color: #c0dae6;
}
.article__item-tag span.tag-season {
  background-color: #c8e6c6;
}

.article__item-place {
  color: #e67b7b;
  font-size: 12px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .article__item-place {
    font-size: 10px;
    margin-top: 2px;
  }
}

.article__item-txt {
  font-size: 14px;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .article__item-txt {
    font-size: 12px;
    margin-top: 8px;
  }
}

/*
======================================================
  info
--------------------------------------------------- */
.info__ttl {
  text-align: center;
}
.info__ttl span {
  border-bottom: 3px solid #e2dda5;
  font-size: 22px;
  font-weight: normal;
  padding-bottom: 0.2em;
}
@media screen and (max-width: 767px) {
  .info__ttl span {
    font-size: 18px;
  }
}

.info__inner {
  margin: 50px auto 0;
}
@media screen and (min-width: 768px) {
  .info__inner {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1025px) {
  .info__inner {
    width: 720px;
  }
}
@media screen and (max-width: 1024px) {
  .info__inner {
    width: 90%;
  }
}

@media screen and (min-width: 1025px) {
  .info__content {
    width: 330px;
  }
}

@media screen and (min-width: 1025px) {
  .info__img {
    width: 330px;
  }
}
@media screen and (max-width: 767px) {
  .info__img {
    margin: 30px auto 0;
    width: 80%;
  }
}

.info__content-mds {
  background-position: 0.3em 0.25em;
  background-repeat: no-repeat;
  border-bottom: 2px dotted #e2dda5;
  font-size: 16px;
  font-weight: normal;
  padding: 0 0 0.2em 24px;
}
@media screen and (max-width: 767px) {
  .info__content-mds {
    font-size: 14px;
  }
}
.info__content-mds.train {
  background-image: url(../img/ico-route.svg);
  background-size: 11px;
}
.info__content-mds.phone {
  background-image: url(../img/ico-tel.svg);
  background-size: 12px;
  margin-top: 30px;
}

.info__content-txt {
  font-size: 14px;
  line-height: 1.6;
  margin-left: 24px;
  padding-top: 0.6em;
}
@media screen and (max-width: 767px) {
  .info__content-txt {
    font-size: 12px;
  }
}
.info__content-txt p + p {
  padding-top: 1.3em;
}

.info__btn-ohp {
  margin: 70px auto 0;
  text-align: center;
  width: 360px;
}
@media screen and (max-width: 767px) {
  .info__btn-ohp {
    margin: 35px auto 0;
    width: 90%;
  }
}
.info__btn-ohp a {
  align-items: center;
  background-color: #e6c6c5;
  border-radius: 15px;
  color: #fff;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  height: 30px;
  justify-content: center;
}

/*
======================================================
  map
--------------------------------------------------- */
@media screen and (min-width: 1025px) {
  .map__img {
    margin: 50px auto 0;
    width: 980px;
  }
}
@media screen and (max-width: 1024px) {
  .map__img {
    margin: 50px auto 0;
    width: 90%;
  }
  .map__img img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .map__img {
    margin: 30px auto 0;
    width: 92%;
  }
}

.map__info {
  color: #e67b7b;
  font-size: 14px;
  margin-top: 20px;
  text-align: center;
}

/*
======================================================
  mv
--------------------------------------------------- */
#mv {
  line-height: 1;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #mv {
    margin-top: 70px;
  }
}
@media screen and (min-width: 1025px) {
  #mv {
    height: 540px;
  }
}
@media screen and (max-width: 767px) {
  #mv {
    padding-top: 128%;
  }
  #mv::before {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
  }
}
#mv::before, #mv::after {
  background-image: url(../img/pt-1.png);
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #mv::before, #mv::after {
    height: 4.17%;
  }
}
#mv::before {
  top: 0;
}
#mv::after {
  bottom: 0;
}

.mv__ttl {
  position: absolute;
  top: 40px;
  z-index: 3;
}
@media screen and (min-width: 1025px) {
  .mv__ttl {
    width: 450px;
  }
}
@media screen and (max-width: 1024px) {
  .mv__ttl {
    width: 213px;
  }
}

@media screen and (min-width: 1025px) {
  .mv__bg {
    height: 500px;
    overflow: hidden;
    position: relative;
    top: 20px;
    width: 100%;
  }
  .mv__bg img {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }
  .mv__bg::before {
    bottom: -40px;
    content: "";
    filter: blur(20px);
    left: -40px;
    opacity: 0.7;
    position: absolute;
    right: -40px;
    top: -40px;
    z-index: 1;
  }
}
@media screen and (max-width: 767px) {
  .mv__bg {
    position: absolute;
    top: 4.17%;
  }
}

.mv__area {
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 3;
}
@media screen and (min-width: 1025px) {
  .mv__area {
    background-image: url(../img/mv-title_pc.svg);
    height: 203px;
    left: calc(50% + 275px);
    top: 170px;
    width: 203px;
  }
}
@media screen and (max-width: 1024px) {
  .mv__area {
    background-image: url(../img/mv-title_sp.svg);
    background-position: right bottom;
    bottom: 0;
    right: 0;
    width: 21.87%;
  }
}
@media screen and (max-width: 767px) {
  .mv__area {
    width: 36.26%;
  }
}
@media screen and (min-width: 1025px) {
  .mv__area::after {
    background-image: url(../img/mv-map.svg);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 452px;
    left: -115px;
    position: absolute;
    top: -102px;
    width: 490px;
  }
}

@media screen and (max-width: 1024px) {
  .mv__area-inner {
    padding-top: 101.47%;
    position: relative;
  }
  .mv__area-inner::before {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
  }
}

.mv__area-ttl {
  color: #fff;
  display: block;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .mv__area-ttl {
    font-size: 34px;
    padding-top: 74px;
  }
}
@media screen and (max-width: 1024px) {
  .mv__area-ttl {
    font-size: 4vw;
    padding-left: 3.2vw;
    position: absolute;
    top: 10.2vw;
  }
}
@media screen and (max-width: 767px) {
  .mv__area-ttl {
    font-size: 6.6vw;
    top: 16.8vw;
  }
}

/*
======================================================
  root
--------------------------------------------------- */
ul.root__list {
  background-color: #fdf4f3;
}
@media screen and (min-width: 1025px) {
  ul.root__list {
    margin: 50px auto 0;
    padding-bottom: 30px;
    width: 980px;
  }
}
@media screen and (max-width: 1024px) {
  ul.root__list {
    margin: 50px auto 0;
    padding-bottom: 30px;
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  ul.root__list {
    margin: 30px auto 0;
    padding-bottom: 15px;
    width: 92%;
  }
}
ul.root__list li {
  padding: 30px 30px 0;
}
@media screen and (max-width: 767px) {
  ul.root__list li {
    padding: 15px 15px 0;
  }
}

dl.root__item {
  background-color: #fff;
}
@media screen and (min-width: 1025px) {
  dl.root__item {
    display: flex;
  }
}
@media screen and (max-width: 1024px) {
  dl.root__item {
    border-radius: 10px;
    margin: 0 auto;
    width: 426px;
  }
}
@media screen and (max-width: 767px) {
  dl.root__item {
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  dl.root__item dt {
    margin-right: 10px;
    width: 456px;
  }
}
@media screen and (max-width: 1024px) {
  dl.root__item dt img {
    border-radius: 10px 10px 0 0;
  }
}
dl.root__item dd {
  flex: 1;
}
@media screen and (max-width: 1024px) {
  dl.root__item dd {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  dl.root__item dd {
    padding-bottom: 15px;
  }
}

.root__item-header {
  margin: 20px 20px 0 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .root__item-header {
    margin: 10px 15px 0 8px;
  }
}

.root__item-time {
  left: 0;
  position: absolute;
  width: 78px;
}
@media screen and (min-width: 768px) {
  .root__item-time {
    top: 50%;
    transform: translate(0, -50%);
  }
}
@media screen and (max-width: 767px) {
  .root__item-time {
    bottom: -1px;
    width: 76px;
  }
}

.root__item-mds {
  background-color: #e6c6c5;
  color: #fff;
  font-size: 16px;
  margin-left: 20px;
  padding: 0.3em 0.4em 0.3em 4.2em;
}
@media screen and (max-width: 767px) {
  .root__item-mds {
    font-size: 14px;
    margin-left: 35px;
    padding: 0.3em 0.4em 0.3em 3.4em;
  }
}

.root__item-txt {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 13px;
  padding: 0 20px 0 60px;
}
@media screen and (max-width: 767px) {
  .root__item-txt {
    font-size: 12px;
    margin-top: 10px;
    padding: 0 15px;
  }
}

.root__way {
  color: #e67b7b;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .root__way {
    font-size: 12px;
  }
}
.root__way span {
  background-position: left center;
  background-repeat: no-repeat;
  display: inline-block;
  padding-left: 26px;
}
.root__way span.root__way-train {
  background-image: url(../img/ico-train.svg);
  background-size: 14px;
}
.root__way span.root__way-bus {
  background-image: url(../img/ico-bus.svg);
  background-size: 14px;
}
.root__way span.root__way-walk {
  background-image: url(../img/ico-walk.svg);
  background-size: 10px;
}