@charset "UTF-8";
.main {
  overflow: hidden;
  text-align: justify;
}

.content {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.container {
  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

@media screen and (min-width: 992px) {
  .container {
    max-width: 992px;
  }
}

.pc-only {
  display: block !important;
}

.sp-only {
  display: none !important;
}

@media only screen and (max-width: 575px) {
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block !important;
  }
}

/* ----- object fit(IE対応) ----- */
.object-fit {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

/* ----- トップに戻るボタン　大きさ変更 ----- */
.goTop {
  width: 63px;
}

/* ----- 共通：タイトル ----- */
.heading {
  text-align: center;
}

.heading .heading__sub {
  display: inline-block;
  position: relative;
  padding-bottom: 15px;
  font-size: 21px;
  letter-spacing: 3px;
}

.heading .heading__sub::before {
  position: absolute;
  top: -1px;
  left: -18px;
  width: 2px;
  height: 32px;
  background-color: #000;
  -webkit-transform: rotateZ(-30deg);
          transform: rotateZ(-30deg);
  content: "";
}

.heading .heading__sub::after {
  position: absolute;
  top: -1px;
  right: -18px;
  width: 2px;
  height: 32px;
  background-color: #000;
  -webkit-transform: rotateZ(30deg);
          transform: rotateZ(30deg);
  content: "";
}

.heading .heading__main {
  padding-bottom: 12px;
  font-size: 44px;
  line-height: 1;
  letter-spacing: 4.5px;
}

.heading img {
  height: 29.6px;
}

/* ----- 共通：ボタン ----- */
.heritage__button {
  margin-bottom: 20px;
}

.heritage__button a {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 15px 30px 15px 20px;
  background-color: #fff158;
  border: 1px solid #000;
  text-decoration: none;
  color: #000;
  text-align: center;
  font-size: 18px;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.heritage__button a:hover {
  opacity: 0.7;
}

.heritage__button a::after {
  position: absolute;
  top: 0;
  top: 48%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 9px;
  border-color: transparent transparent transparent #000000;
  content: "";
}

@media all and (-ms-high-contrast: none) {
  .heritage__button a {
    padding: 20px 30px 15px 20px;
  }
}

@media screen and (max-width: 768px) {
  .heritage__button {
    margin-bottom: 13px !important;
  }
  .heritage__button a {
    font-size: 14px !important;
  }
}

/* ----- 共通：タイトル ----- */
.title {
  margin-bottom: 30px;
  padding: 15px 12px 0px;
  border-left: 4px solid #000;
}

.title.title--one-line {
  margin-bottom: 20px;
  padding: 10px 9px 0px;
  border-left: 3px solid #000;
}

.title .title__text {
  padding: 0 0 7px 4px;
  font-size: 30px;
  color: #000;
  line-height: 0.9;
}

.title .title__text.title__text--short {
  letter-spacing: 3px;
}

.title .title__text.title__text--long {
  letter-spacing: 1px;
}

.title .title__text.title__text--one-line {
  font-size: 23px;
  letter-spacing: 1px;
}

.title img {
  height: 29.5px;
  padding-left: 12px;
}

/* ----- global-nav ----- */
.global-nav__outer {
  height: 55px;
}

.global-nav {
  background-color: #000;
}

.global-nav.is-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

.global-nav .global-nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 992px;
  margin: 0 auto;
}

.global-nav .global-nav__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 24.2%;
          flex: 0 1 24.2%;
}

.global-nav .global-nav__img a {
  display: inline-block;
  width: 134px;
  padding: 1px 0 0 4px;
}

@media all and (-ms-high-contrast: none) {
  .global-nav .global-nav__img a {
    padding: 15px 0 10px;
  }
}

.global-nav .global-nav__img a img {
  width: 100%;
}

.global-nav .global-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 75.8%;
          flex: 0 1 75.8%;
}

.global-nav .global-nav__item {
  position: relative;
}

.global-nav .global-nav__item .global-nav__text {
  display: block;
  padding: 18px 18px 15px;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.global-nav .global-nav__item .global-nav__text:hover {
  opacity: 0.7;
}

.global-nav .global-nav__item .global-nav__text.is-active {
  color: #d7b02f;
}

@media all and (-ms-high-contrast: none) {
  .global-nav .global-nav__item .global-nav__text {
    padding: 23px 0 17px;
  }
}

@media only screen and (max-width: 1000px) {
  .global-nav__outer.pc-only {
    display: none !important;
  }
}

.global-nav .global-nav__item .global-nav__text a {
  color: #FFF;
  text-decoration: none;
}

/* ----- accordion ----- */
.accordion {
  display: none;
  position: absolute;
  width: 150px;
  background-color: #000;
  z-index: 3;
}

.accordion .accordion__item a {
  display: block;
  position: relative;
  padding: 10px 0 10px 40px;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.accordion .accordion__item a:hover {
  opacity: 0.7;
}

.accordion .accordion__item a::before {
  position: absolute;
  top: 50%;
  left: 23px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent #fff;
  content: "";
}

.accordion .accordion__item a a {
  color: #fff;
  text-decoration: none;
}

.accordion--aria {
  top: 55px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-top: 1px solid #888;
}

.accordion--country {
  top: 55px;
  left: -400px;
  width: 992px;
  border-top: 1px solid #888;
}

.accordion--country .accordion__tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.accordion--country .accordion__tab-item {
  padding: 20px 30px;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.accordion--country .accordion__tab-item:hover {
  opacity: 0.7;
}

.accordion--country .accordion__tab-item.is-active {
  color: #d7b02f;
  text-decoration: underline;
}

.accordion--country .accordion__name-list {
  display: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  padding: 0 50px 13px;
  background-color: #000;
}

.accordion--country .accordion__name-list.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.accordion--country .accordion__name-list.is-hidden {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
}

.accordion--country .accordion__name-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
  margin-bottom: 1px;
  padding: 0 30px 0 0;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.accordion--country .accordion__name-item:hover {
  opacity: 0.7;
}

.accordion--country .accordion__name-item::before {
  position: absolute;
  top: 50%;
  left: -12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent #fff;
  content: "";
}

.accordion--country .accordion__name-item a {
  color: #fff;
  text-decoration: none;
}

/* ----- main-visual ----- */
.main-visual {
  position: relative;
  width: 100%;
  height: 422px;
  background-size: cover;
  background-position: center;
}

.main-visual .main-visual__title-outer {
  position: absolute;
  top: 137px;
  left: 50%;
  width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
  color: #fff;
}

.main-visual .main-visual__title-outer .main-visual__title {
  padding-bottom: 5px;
  font-size: 59px;
  letter-spacing: 7px;
  line-height: 1;
}

.main-visual .main-visual__title-outer img {
  height: 53px;
}

.main-visual .main-visual__sentence-outer {
  position: relative;
  top: 286px;
  text-align: center;
}

.main-visual .main-visual__sentence {
  display: inline-block;
  margin-bottom: 7px;
  padding: 2px 14px;
  background-color: #fff;
  text-align: center;
  color: #000;
  font-size: 15px;
  letter-spacing: 0.4px;
}

.main-visual .main-visual__text {
  position: absolute;
  bottom: 12px;
  right: 10px;
  color: #fff;
  font-size: 12px;
}

/* ----- direction ----- */
.direction {
  background: repeating-linear-gradient(-45deg, #ffffff 0, #ffffff 2px, #f7f7f7 4px, #f7f7f7 6px);
}

.direction .direction__inner {
  width: 100%;
  margin: 0 auto;
  padding: 47px 0 40px;
}

/* ----- direction-map ----- */
.direction-map {
  background-color: #fff;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

.direction-map .direction-map__inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.direction-map .slick-slide {
  margin: 0 5px;
}

.direction-map .slick-list {
  height: 100%;
}

.direction-map .slick-track {
  height: 100%;
}

.direction-map .direction-map__card {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 330px;
  height: 100%;
  padding: 24px 0;
}

.direction-map .direction-map__card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 10px;
  border: 1px solid #000;
  background-color: #fff;
}

.direction-map .direction-map__img {
  width: 100%;
  margin-bottom: 10px;
}

.direction-map .direction-map__img img {
  width: 100%;
}

.direction-map .direction-map__japanese {
  font-size: 18px;
  font-weight: bold;
}

.direction-map .direction-map__english {
  margin-bottom: 11px;
  padding-bottom: 11px;
  font-size: 10px;
  letter-spacing: 1.1px;
}

.direction-map .direction-map__button {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 140px;
  margin-left: auto;
  border: 1px solid #000;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.direction-map .direction-map__button:hover {
  opacity: 0.7;
}

.direction-map .direction-map__button-inner {
  position: relative;
  padding: 4px 0px 1px 14px;
}

.direction-map .direction-map__button-inner::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 45px;
  background-image: url(/theme/world-heritage/img/icon/icon_arrow_more.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top 8px right 7px;
  content: "";
}

.direction-map .arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 23px;
  height: 33px;
}

.direction-map .arrow::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-top: 2px solid #333;
  border-left: 2px solid #333;
}

.direction-map .arrow-left {
  right: -21px;
}

.direction-map .arrow-left::after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  position: absolute;
  right: 6px;
  top: 7px;
}

.direction-map .arrow-right {
  left: -21px;
}

.direction-map .arrow-right::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  left: 6px;
  top: 7px;
}

/* ----- google map ポップアップ ----- */
#map {
  height: 439px;
}

.map__area {
  margin-top: 2em;
  margin-bottom: 2em;
  background: #fff;
  width: 100%;
  text-align: center;
  border-top: 1px solid #8a8987;
  border-bottom: 1px solid #8a8987;
}

.map__area img {
  width: 100%;
  max-width: 992px;
  margin: 0 auto;
}

.gm-style-iw.gm-style-iw-c.departure__outer,
.gm-style-iw.gm-style-iw-c.destination__outer {
  top: 60px;
  padding-left: 20px;
  border: none;
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 18px;
  font-weight: bold;
}

.gm-style .gm-style-iw-d {
  margin: -12px -15px -14px -9px;
}

.gm-style .gm-style-iw-d::-webkit-scrollbar-track, .gm-style .gm-style-iw-d::-webkit-scrollbar-track-piece {
  background: none;
}

.gm-style .gm-style-iw-t::after {
  content: none;
}

.gm-ui-hover-effect {
  display: none !important;
}

.balloon__outer {
  display: none;
}

.balloon__outer.is-active {
  display: block;
  top: 52px;
  background-color: #000;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: unset;
  color: #fff;
  font-weight: bold;
}

/* ----- direction-bottom ----- */
.direction-bottom {
  padding-bottom: 22px;
  background: repeating-linear-gradient(-45deg, #ffffff 0, #ffffff 2px, #f7f7f7 4px, #f7f7f7 6px);
}

/* ----- countries-chart ----- */
.countries-chart .countries-chart__inner {
  width: 100%;
  margin: 0 auto;
  padding: 30px 0 30px;
}

.countries-chart .countries-chart__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 20px;
}

.countries-chart .countries-chart__item {
  width: calc(25% - 15px);
}

.countries-chart .view-all {
  display: block;
  position: relative;
  width: 180px;
  margin: 0 auto;
  padding: 9px 0 6px 49px;
  padding: 12px 14px 12px 0;
  background-color: #fff;
  border: 1px solid #000;
  text-decoration: none;
  color: #000;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  cursor: pointer;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

.countries-chart .view-all:hover {
  opacity: 0.7;
}

.countries-chart .view-all:focus {
  outline: 0;
}

.countries-chart .view-all::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 8px;
  width: 22px;
  height: 100%;
  background-image: url(/theme/world-heritage/img/icon/icon_directing_arrow_down.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.countries-chart .view-all.collapse-open::after {
  background-image: url(/theme/world-heritage/img/icon/icon_directing_arrow_up.svg);
}

/* ----- recommend ----- */
.recommend {
  background-color: #f7f1d9;
}

.recommend .recommend__inner {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0 68px;
}

.recommend .recommend__list {
  margin-top: 47px;
}

.recommend .recommend__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #000;
}

.recommend .recommend__item:first-of-type {
  border-top: 1px solid #000;
}

.recommend .recommend__flex-block {
  width: 50%;
}

.recommend .recommend__flex-block.recommend__flex-block--left {
  padding: 0 14px 0 10px;
}

.recommend .recommend__flex-block.recommend__flex-block--right {
  padding: 0 0 0 10px;
}

.recommend .recommend__img {
  position: relative;
  height: 270px;
}

.recommend .recommend__img img {
  width: 100%;
  height: 100%;
}

.recommend .recommend__content {
  height: 100%;
  padding: 0 10px 0 14px;
}

.recommend .recommend__ribbon {
  position: absolute;
  top: 0;
  left: 21px;
  width: 66px;
  padding: 14px 0 8px 4px;
  background: #fff158;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2px;
}

.recommend .recommend__ribbon::after {
  position: absolute;
  top: 100%;
  left: 0;
  border-left: 33px solid #fff158;
  border-right: 33px solid #fff158;
  border-bottom: 14px solid transparent;
  content: "";
}

.recommend .recommend__tag {
  position: absolute;
  top: 0;
  right: 0;
  height: 22px;
  padding: 1px 15px 0px 7px;
  background: #fff;
  font-size: 13px;
  font-weight: bold;
}

.recommend .recommend__tag::before {
  display: inline-block;
  width: 11px;
  margin: 4px 8px 0 0;
  vertical-align: middle;
  content: url(/theme/world-heritage/img/icon/icon_pin.svg);
}

.recommend .recommend__content {
  position: relative;
  padding: 4px 0 0 7px;
}

.recommend .recommend__place-name {
  margin-bottom: -1px;
  font-size: 24px;
  font-weight: bold;
}

.recommend .recommend__english-place-name {
  position: relative;
  margin-bottom: 22px;
  padding-bottom: 22px;
}

.recommend .recommend__english-place-name::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 99%;
  height: 2px;
  margin: 0 auto;
  background-image: linear-gradient(to right, #000, #000 1px, transparent 2px, transparent 5px);
  background-size: 5px 2px;
  background-repeat: repeat-x;
  content: "";
}

.recommend .recommend__mark {
  position: absolute;
  top: 0px;
  right: 8px;
  width: 43px;
  padding: 5px;
  background-color: #fff;
}

.recommend .recommend__mark img {
  width: 100%;
  height: 100%;
}

.recommend .recommend__title {
  margin-bottom: 8px;
  padding: 0 15px 0 4px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.4px;
}

.recommend .recommend__sentence {
  padding: 0 15px 0 4px;
  letter-spacing: 0.7px;
  line-height: 1.58;
}

.recommend .recommend__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: absolute;
  width: 100%;
  bottom: 0;
  padding-right: 21px;
}

.recommend .recommend__price {
  position: relative;
  padding-left: 40px;
  font-weight: bold;
}

.recommend .recommend__price::before {
  position: absolute;
  top: -2px;
  left: 3px;
  width: 27px;
  height: 20px;
  margin: 0 6px 0 4px;
  vertical-align: middle;
  content: url(/theme/world-heritage/img/icon/icon_price.svg);
}

.recommend .recommend__button {
  position: relative;
  padding: 4px 53px 1px 14px;
  background: #fff;
  border: 1px solid #000;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.recommend .recommend__button:hover {
  opacity: 0.7;
}

.recommend .recommend__button::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 45px;
  background-image: url(/theme/world-heritage/img/icon/icon_arrow_more.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top 8px right 7px;
  content: "";
}

/* ----- heritage ----- */
.heritage {
  background-color: #ffffff;
}

.heritage .heritage__inner {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0 50px;
}

.heritage .heritage__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.heritage .heritage__item {
  position: relative;
  width: calc(88% / 5);
  margin-bottom: 23px;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.heritage .heritage__item:hover {
  opacity: 0.7;
}

.heritage .heritage__item .heritage__item-inner {
  display: block;
  color: #333;
  text-decoration: none;
}

.heritage .heritage__item:not(:nth-of-type(5n)) {
  margin-right: 29.7px;
}

.heritage .heritage__img {
  width: 100%;
  height: 100px;
  margin-bottom: 5px;
  border: 1px solid #000;
}

.heritage .heritage__img img {
  width: 100%;
  height: 100%;
}

.heritage .heritage__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 1px;
  left: 1px;
  padding: 1px 5px 1px 0;
  background-color: #fff;
  font-size: 12px;
  font-weight: bold;
}

.heritage .heritage__tag::before {
  display: inline-block;
  width: 17px;
  height: 17px;
  margin: 0 3px 2px 0;
  background: url(/theme/world-heritage/img/icon/icon_pin.svg) center/contain no-repeat;
  vertical-align: middle;
  content: "";
}

.heritage .heritage__name {
  font-weight: bold;
}

/* ----- plan ----- */
.plan {
  background-color: #f7f1d9;
}

.plan .plan__inner {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0 30px;
}

/* ----- plan-travel ----- */
.plan-travel .plan-travel__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.plan-travel .plan-travel__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 32%;
          flex: 0 1 32%;
}

.plan-travel .plan-travel__item a {
  display: block;
  position: relative;
  margin-bottom: 21px;
  padding: 26px 26px 26px 57px;
  background-color: #fff158;
  border: 1px solid #000;
  text-decoration: none;
  text-align: center;
  font-size: 18px;
  color: #000;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.plan-travel .plan-travel__item a:hover {
  opacity: 0.7;
}

.plan-travel .plan-travel__item a::before {
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
}

.plan-travel .plan-travel__item a::after {
  display: inline-block;
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 15px;
  height: 11px;
  background-image: url(/theme/world-heritage/img/icon/icon_tab.svg);
  background-repeat: no-repeat;
  background-color: #fff;
  content: "";
}

.plan-travel .plan-travel__item--tour a {
  padding: 26px 26px 26px 57px;
}

.plan-travel .plan-travel__item--tour a::before {
  left: 46px;
  width: 32px;
  height: 32px;
  background-image: url(/theme/world-heritage/img/icon/icon_plane.svg);
  background-repeat: no-repeat;
}

.plan-travel .plan-travel__item--ticket-hotel a {
  padding: 26px 26px 26px 77px;
}

.plan-travel .plan-travel__item--ticket-hotel a::before {
  left: 32px;
  width: 55px;
  height: 48px;
  background-image: url(/theme/world-heritage/img/icon/icon_plane_hotel.svg);
  background-repeat: no-repeat;
}

.plan-travel .plan-travel__item--ticket a {
  padding: 26px 26px 26px 67px;
}

.plan-travel .plan-travel__item--ticket a::before {
  top: 28px;
  left: 35px;
  width: 40px;
  height: 28px;
  background-image: url(/theme/world-heritage/img/icon/icon_ticket.svg);
  background-repeat: no-repeat;
  -webkit-transform: rotateZ(-10deg);
          transform: rotateZ(-10deg);
}

.plan-travel .plan-travel__item--hotel a {
  padding: 26px 26px 26px 57px;
}

.plan-travel .plan-travel__item--hotel a::before {
  left: 42px;
  width: 41px;
  height: 30px;
  background-image: url(/theme/world-heritage/img/icon/icon_hotel.svg);
  background-repeat: no-repeat;
}

.plan-travel .plan-travel__item--optional-tour a {
  padding: 26px 12px 26px 55px;
}

.plan-travel .plan-travel__item--optional-tour a::before {
  left: 22px;
  width: 32px;
  height: 34px;
  background-image: url(/theme/world-heritage/img/icon/icon_tour.svg);
  background-repeat: no-repeat;
}

.plan-travel .plan-travel__item--rent-a-car a {
  padding: 26px 26px 26px 61px;
}

.plan-travel .plan-travel__item--rent-a-car a::before {
  left: 38px;
  width: 46px;
  height: 25px;
  background-image: url(/theme/world-heritage/img/icon/icon_car.svg);
  background-repeat: no-repeat;
}

.plan-travel .plan-travel__item--oe a {
  padding: 26px 26px 26px 61px;
}

.plan-travel .plan-travel__item--oe a::before {
  left: 24px;
  width: 33px;
  height: 100%;
  background-size: 100%;
  background-image: url(/theme/world-heritage/img/icon/icon_online.svg);
  background-repeat: no-repeat;
  top: 78%;
}

/* ----- other-area ----- */
.other-area {
  background: repeating-linear-gradient(-45deg, #ffffff 0, #ffffff 2px, #f7f7f7 4px, #f7f7f7 6px);
}

.other-area .other-area__inner {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0 30px;
}

.other-area .other-area__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 20px;
}

.other-area .other-area__item {
  width: calc(25% - 15px);
}

@media screen and (max-width: 599px) {
  .other-area .other-area__inner {
    width: 100%;
    padding: 50px 0 0px;
  }
  .other-area .other-area__list {
    gap: 0 10px;
  }
  .other-area .other-area__item {
    width: calc(50% - 5px);
  }
}

/* ----- inquiry ----- */
.inquiry {
  background: repeating-linear-gradient(-45deg, #ffffff 0, #ffffff 2px, #f7f7f7 4px, #f7f7f7 6px);
}

.inquiry .inquiry__inner {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0 50px;
}

.inquiry #info {
  padding: 30px 70px 70px;
  width: 100%;
  border: 1px solid #000;
}

.inquiry #info .info-bu02 {
  background: url(/theme/world-heritage/img/icon/icon_tel_black.svg) no-repeat left center;
  background-size: 36px 36px;
  color: #333;
  font-size: 20px;
}

.inquiry #info .dt02 {
  background: url(/theme/world-heritage/img/icon/icon_tel_black.svg) no-repeat left center;
  background-size: 23px 23px;
  color: #333;
  font-size: 26px;
}

@media all and (-ms-high-contrast: none) {
  .inquiry #info .dt02 {
    background-position: 2px 3px;
  }
}

.inquiry #info .li02 {
  font-size: 26px;
}

.inquiry #info dl:nth-of-type(2),
.inquiry #info dl:nth-of-type(3) {
  display: none;
}

.inquiry #info .info-bu03 {
  height: 32px;
  padding: 2px 0 0 40px;
  background: url(/theme/world-heritage/img/icon/icon_stores_his_black.svg) no-repeat left center;
  background-size: 35px 35px;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.inquiry #info .info-bu03:hover {
  opacity: 0.7;
}

.inquiry #info .info-bu03 a {
  color: #333;
  font-size: 20px;
}

/* ----- big-banner ----- */
.big-banner {
  background: repeating-linear-gradient(-45deg, #ffffff 0, #ffffff 2px, #f7f7f7 4px, #f7f7f7 6px);
}

.big-banner .big-banner__inner {
  width: 100%;
  margin: 0 auto;
  padding: 10px 0 40px;
  text-align: center;
}

.big-banner .big-banner__img {
  display: inline-block;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.big-banner .big-banner__img:hover {
  opacity: 0.7;
}

/* ----- banner ----- */
.banner {
  background: repeating-linear-gradient(-45deg, #ffffff 0, #ffffff 2px, #f7f7f7 4px, #f7f7f7 6px);
}

.banner .banner__inner {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0 50px;
}

.banner .banner__title {
  margin-bottom: 25px;
  font-size: 24px;
  text-align: center;
  letter-spacing: 3px;
}

.banner .bnrList {
  margin-bottom: 32px;
}

/* ----- heritage__country ----- */
.country__list {
  border: 1px solid #000000;
  border-collapse: collapse;
  width: 100%;
}

.country__list th {
  background-color: #f7f1d9;
  font-size: 19px;
  font-weight: normal;
  text-align: center;
  border-right: 1px dotted #000000;
}

.country__list td {
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  background-color: #ffffff;
  border: 1px solid #000000;
  border-right: none;
  border-left: none;
}

.country__list td.country__name {
  text-align: center;
  border-right: 1px dotted #000;
}

.country__list td .heritage__no-link {
  padding-left: 40px;
}

.country__list td .heritage__link {
  display: inline-block;
  position: relative;
  padding-left: 40px;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

.country__list td .heritage__link::before {
  position: absolute;
  top: 50%;
  left: 9px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 17px;
  height: 17px;
  background-image: url(/theme/world-heritage/img/icon/icon_arrow_list.svg);
  background-repeat: no-repeat;
  content: "";
}

.country__list td .heritage__link .heritage__underline {
  position: relative;
}

.country__list td .heritage__link .heritage__underline::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #000;
  content: "";
}

.country__list td, .country__list th {
  border-collapse: collapse;
  padding: 3px;
  padding: 10px 0 6px;
}

.heritage__country {
  background: repeating-linear-gradient(-45deg, #ffffff 0, #ffffff 2px, #f7f7f7 4px, #f7f7f7 6px);
}

.heritage__country .heritage__inner {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0 95px;
}

.heritage__country .heritage__list {
  margin: 39px 0 0;
}

@media only screen and (max-width: 768px) {
  .main-visual--gold-image {
    position: relative;
    top: -104px;
  }
  .main-visual .main-visual__title-outer {
    top: 87px;
  }
  .main-visual .main-visual__title-outer .main-visual__title {
    margin-bottom: -5px;
    font-size: 40px;
    letter-spacing: 7px;
    line-height: 1;
  }
  .main-visual .main-visual__title-outer img {
    width: 130px;
    height: auto;
    margin-bottom: -30px;
  }
  .main-visual .main-visual__sentence {
    display: inline-block;
    margin-bottom: 7px;
    padding: 2px 14px;
    background-color: #fff;
    text-align: center;
    color: #000;
    font-size: 12px;
    letter-spacing: 0.4px;
  }
  .heading .heading__sub {
    padding-bottom: 0px;
  }
  .heading .heading__main {
    font-size: 30px;
    line-height: 1.3;
    letter-spacing: 2px;
    padding-bottom: 0;
  }
  .heading img {
    height: 20px;
  }
  .direction .direction__inner {
    padding-bottom: 0;
  }
  .map__area {
    margin-bottom: 0;
  }
  .countries-chart .countries-chart__inner {
    width: 100%;
  }
  .title {
    border-left: 2px solid #000 !important;
    padding: 1px 0 8px 0;
    margin-bottom: 20px;
  }
  .title .title__text.title__text--one-line {
    font-size: 18px;
  }
  .title.title--one-line {
    margin-bottom: 20px;
    padding: 3px 0 9px 0;
  }
  .direction-bottom {
    padding-bottom: 12px;
  }
  .heritage__country {
    background: transparent;
  }
  .heritage__country .heritage__inner {
    width: 100%;
    margin: 0 auto;
    padding: 0px 0;
  }
  .heritage__button {
    margin-bottom: 5px;
  }
  .heritage__button a {
    font-size: 14px;
    padding: 20px 30px 20px 20px;
  }
  .title .title__text {
    padding: 5px 0 0 11px;
    font-size: 18px;
    line-height: 1;
    margin-bottom: -2px;
  }
  .title img {
    position: relative;
    top: 0px;
    height: 19px;
    padding: 0 0 0px 12px;
    margin-bottom: -3px;
  }
  .country__list {
    width: 100%;
  }
  .country__list th {
    background-color: #f7f1d9;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    border-right: 1px dotted #000000;
  }
  .country__list td {
    font-size: 12px;
  }
  .big-banner {
    background: transparent !important;
  }
  .big-banner__inner {
    width: 100% !important;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-top: 20px !important;
  }
  .big-banner__img {
    width: 100% !important;
    margin-bottom: 20px;
  }
  .big-banner__img:last-child {
    margin-left: 0% !important;
  }
}

@media only screen and (max-width: 599px) {
  .countries-chart .countries-chart__item:not(:nth-of-type(4n)) {
    margin-right: 0;
  }
  .countries-chart .countries-chart__list {
    gap: 10px;
  }
  .countries-chart .countries-chart__item {
    width: calc(50% - 5px);
  }
  .plan {
    margin-top: 30px;
  }
  .plan .plan__inner {
    width: 100%;
    padding-top: 25px;
  }
  .plan-travel .plan-travel__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 10px;
  }
  .plan-travel .plan-travel__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    width: calc(50% - 5px);
  }
  .plan-travel__item {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 1 48.5% !important;
            flex: 0 1 48.5% !important;
  }
  .plan-travel__item a {
    font-size: 12px !important;
    margin-bottom: 10px !important;
  }
  .plan-travel__item--tour a {
    padding: 14px !important;
  }
  .plan-travel__item--tour a::before {
    left: 7px !important;
    width: 18px !important;
    height: 18px !important;
  }
  .plan-travel__item--bus a {
    padding: 14px !important;
  }
  .plan-travel__item--bus a::before {
    left: 9px !important;
    width: 23px !important;
    height: 14px !important;
  }
  .plan-travel__item--ticket-hotel a {
    padding: 14px !important;
  }
  .plan-travel__item--ticket-hotel a::before {
    left: 5px !important;
    width: 29px !important;
    height: 25px !important;
  }
  .plan-travel__item--ticket a {
    padding: 14px !important;
  }
  .plan-travel__item--ticket a::before {
    top: 16px !important;
    left: 10px !important;
    width: 21px !important;
  }
  .plan-travel__item--oe a {
    padding: 14px !important;
  }
  .plan-travel__item--oe a::before {
    left: 5px !important;
    width: 23px !important;
    top: 77% !important;
  }
  .plan-travel__item--hotel a {
    padding: 14px !important;
  }
  .plan-travel__item--hotel a::before {
    left: 5px !important;
    width: 24px !important;
    height: 17px !important;
  }
  .plan-travel__item--optional-tour a {
    padding: 14px !important;
  }
  .plan-travel__item--optional-tour a::before {
    left: 6px !important;
    width: 17px !important;
    height: 19px !important;
  }
  .plan-travel__item--rent-a-car a {
    padding: 14px !important;
  }
  .plan-travel__item--rent-a-car a::before {
    left: 6px !important;
    width: 25px !important;
    height: 14px !important;
  }
}

/* ----- 共通：spハンバーガー ----- */
.humberger {
  position: absolute;
  top: 124px;
  right: 10px;
  z-index: 10;
  color: #fff;
  text-decoration: none;
  display: none;
}

@media screen and (max-width: 1000px) {
  .humberger {
    display: block !important;
  }
}

.humberger.is-fixed {
  position: fixed;
  top: 5px;
  right: 10px;
  z-index: 10;
}

.humberger .humberger__lines {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: #000;
}

.humberger .humberger__line {
  position: absolute;
  left: 0;
  right: 0;
  width: 60%;
  height: 1px;
  margin: 0 auto;
  background: #fff;
}

.humberger .humberger__line.humberger__line--one {
  top: 52%;
}

.humberger .humberger__line.humberger__line--two {
  top: 67%;
}

.humberger .humberger__line.humberger__line--three {
  top: 82%;
}

.humberger .humberger__title {
  position: absolute;
  top: 1px;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: 10px;
  line-height: 1;
  text-align: center;
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
}

.humberger__modal {
  display: none;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 20;
  overflow-y: scroll;
}

.humberger__modal.is-active {
  display: block;
}

.modal {
  position: fixed;
  top: 0;
  left: 100vw;
  width: 100%;
  height: 100%;
  padding: 1px 10px 44px;
  background-color: #fff;
  z-index: 300;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.modal .modal__close-button {
  width: 40px;
  height: 40px;
  margin: 10px 0 10px auto;
  background-color: #000;
}

.modal .modal__lines {
  position: relative;
  width: 100%;
  height: 100%;
}

.modal .modal__line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46%;
  height: 2px;
  background: #fff;
}

.modal .modal__line.modal__line--one {
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(45deg);
  transform: translateY(-50%) translateX(-50%) rotate(45deg);
}

.modal .modal__line.modal__line--two {
  -webkit-transform: translateY(-50%) translateX(-50%) rotateZ(-45deg);
  transform: translateY(-50%) translateX(-50%) rotateZ(-45deg);
}

.modal .modal__tab {
  display: block;
  background-color: #e6e6e6;
  font-size: 16px;
  color: #000;
  text-decoration: none;
}

.modal .modal__tab.modal__tab--big {
  position: relative;
  margin: 0 0 5px;
  padding: 16px 22px 10px;
}

.modal .modal__tab.modal__tab--big::after {
  position: absolute;
  top: 50%;
  right: 21px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 5px;
  border-color: transparent transparent transparent #000000;
  content: "";
}

.modal .modal__tab.modal__tab--small {
  margin-bottom: 1.5px;
  padding: 9px 21px 7px;
  letter-spacing: -0.95px;
}

.modal .modal__item {
  display: block;
  position: relative;
  padding: 15px 21px 11.7px;
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  font-size: 15px;
  text-decoration: none;
  color: #000;
}

.modal .modal__item::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
}

.modal .modal__item--area::after {
  right: 21px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 5px;
  border-color: transparent transparent transparent #000000;
}

.modal .modal__item--country::after {
  right: 13px;
  width: 35px;
  height: 10px;
  background-image: url(/theme/world-heritage/img/icon/icon_arrow_more.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.sub-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 100vw;
  width: 100%;
  height: 100%;
  padding: 1px 10px 44px;
  background-color: #fff;
  z-index: 301;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.sub-modal.is-active {
  display: block;
}

.sub-modal .modal__back-button {
  position: relative;
  margin-bottom: 9px;
  padding: 11px 65px 9px;
  border: 1px solid #aaa;
  font-size: 16px;
}

.sub-modal .modal__back-button::before {
  position: absolute;
  top: 37%;
  left: 22px;
  width: 35px;
  height: 10px;
  background-image: url(/theme/world-heritage/img/icon/icon_arrow_more.svg);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  content: "";
}

.sub-modal .modal__close-button {
  width: 40px;
  height: 40px;
  margin: 10px 0 10px auto;
  background-color: #000;
}

.sub-modal .modal__lines {
  position: relative;
  width: 100%;
  height: 100%;
}

.sub-modal .modal__line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46%;
  height: 2px;
  background: #fff;
}

.sub-modal .modal__line.modal__line--one {
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(45deg);
  transform: translateY(-50%) translateX(-50%) rotate(45deg);
}

.sub-modal .modal__line.modal__line--two {
  -webkit-transform: translateY(-50%) translateX(-50%) rotateZ(-45deg);
  transform: translateY(-50%) translateX(-50%) rotateZ(-45deg);
}

.sub-modal .modal__tab {
  position: relative;
  padding: 10px 22px 5px;
  background-color: #e6e6e6;
  font-size: 17px;
  color: #000;
}

.sub-modal .modal__tab::after {
  position: absolute;
  top: 50%;
  right: 21px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 5px;
  border-color: transparent transparent transparent #000000;
  content: "";
}

.sub-modal .modal__tab.modal__title--small {
  margin-bottom: 1.5px;
  padding: 9px 21px 7px;
  letter-spacing: -0.95px;
}

.sub-modal .modal__item {
  position: relative;
  padding: 15px 21px 12px;
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  font-size: 14px;
  color: #000;
}

.sub-modal .modal__item::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
}

.sub-modal .modal__item--area::after {
  right: 21px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 0 3px 5px;
  border-color: transparent transparent transparent #000000;
}

.sub-modal .modal__item--country::after {
  right: 13px;
  width: 35px;
  height: 10px;
  background-image: url(/theme/world-heritage/img/icon/icon_arrow_more.svg);
  background-repeat: no-repeat;
  background-position: center;
}
/*# sourceMappingURL=area.css.map */