@charset "UTF-8";
/* ==========================================================================

   ========================================================================== */
/* ==========================================================================
   Base
   リセットcssとhtml要素の定義
   ========================================================================== */
/* ==========================================================================
   Layout/Module
   ========================================================================== */
/* ====================================================================

  #サイトストラクチャ要素

 */
/* --------------------------------------------------------------------
  #幅固定センタリング用wrapper
 */
.glb-width-fixed {
  /*min-width: $content_min_w;
  max-width: $content_max_w;*/
  width: 1040px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-width-fixed {
    width: auto;
    padding-left: initial;
    padding-right: initial;
    min-width: initial;
  }
}

/* --------------------------------------------------------------------
  #ページ全体のwrapper
 */
.glb-pageWrapper {
  position: relative;
  overflow: hidden;
}
.glb-pageWrapper img {
  width: 100%;
  height: auto;
}
@media print, screen and (min-width:769px) {
  .glb-pageWrapper {
    min-width: 1040px;
  }
}

/* --------------------------------------------------------------------
  #メインエリアwrapper

 */
@media print, screen and (min-width:769px) {
  .glb-mainWrapper {
    min-width: 1040px;
    min-height: 900px;
  }
}

/* ====================================================================

  #グローバルヘッダ

 */
/* --------------------------------------------------------------------
  #ヘッダ
 */
.glb-header {
  position: fixed;
  z-index: 100010;
  right: 0;
}
@media print, screen and (min-width:769px) {
  .glb-header {
    width: 5.7vw;
    height: 80px;
  }
}

.glb-header__bg {
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.5);
  position: fixed;
  z-index: 100009;
  transform-origin: 0 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0s 0.5s;
}
.glb-header__bg.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s, visibility 0s;
}

.glb-header-wrapper {
  transition-duration: 0.5s;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 100010;
}
.glb-header-wrapper.is-active {
  transform: translateX(0);
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-header-wrapper {
    transform: translate3d(100%, 0, 0);
    height: 100vh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
}
@media print, screen and (min-width:769px) {
  .glb-header-wrapper {
    border-bottom: 1px solid #eaeaea;
    transform: translate3d(0, -100%, 0);
  }
}

.glb-menu-close {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  background: url(../../../img/icon_menu_close.png) no-repeat center center;
  background-size: 22px 22px;
  width: 40px;
  height: 40px;
}
@media print, screen and (min-width:769px) {
  .glb-menu-close {
    right: 20px;
    top: 20px;
  }
  .glb-menu-close:hover {
    background-image: url(../../../img/icon_menu_close_on.png);
  }
}

.glb-header__menuTrigger {
  position: absolute;
  z-index: 100011;
  cursor: pointer;
  right: 0;
  top: 0;
  width: 54px;
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.glb-header__menuTrigger .line1,
.glb-header__menuTrigger .line2,
.glb-header__menuTrigger .line3 {
  display: block;
  width: 30px;
  height: 3px;
  background: #4d3417;
  border-radius: 25%;
  transition-duration: 0.2s;
}
.glb-header__menuTrigger .line1 {
  transform: translate3d(0, -7px, 0);
}
.glb-header__menuTrigger .line2 {
  transform: translate3d(0, 0, 0);
}
.glb-header__menuTrigger .line3 {
  transform: translate3d(0, 7px, 0);
}
.glb-header__menuTrigger.is-active .line1,
.glb-header__menuTrigger.is-active .line2,
.glb-header__menuTrigger.is-active .line3 {
  transition-duration: 0.4s;
}
.glb-header__menuTrigger.is-active .line1 {
  transform: translate3d(0, 3px, 0) rotate(-225deg) scale3d(0.8, 1, 1);
}
.glb-header__menuTrigger.is-active .line2 {
  transform: translate3d(20px, 0, 0);
  opacity: 0;
}
.glb-header__menuTrigger.is-active .line3 {
  transform: translate3d(0, -3px, 0) rotate(225deg) scale3d(0.8, 1, 1);
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-header__menuTrigger {
    background: #fff;
  }
  .glb-header__menuTrigger .line1, .glb-header__menuTrigger .line2, .glb-header__menuTrigger .line3 {
    width: 15px;
    height: 2px;
  }
  .glb-header__menuTrigger .line1 {
    transform: translate3d(0, -5px, 0);
  }
  .glb-header__menuTrigger .line3 {
    transform: translate3d(0, 5px, 0);
  }
  .glb-header__menuTrigger.is-active .line1 {
    transform: translate3d(0, 2px, 0) rotate(-225deg) scale3d(0.9, 1, 1);
  }
  .glb-header__menuTrigger.is-active .line3 {
    transform: translate3d(0, -2px, 0) rotate(225deg) scale3d(0.9, 1, 1);
  }
}
@media print, screen and (min-width:769px) {
  .glb-header__menuTrigger {
    width: 80px;
    height: 80px;
    background-size: 22px auto;
    background-position: center top 30px;
  }
  .glb-header__menuTrigger:hover:not(.is-active) .line1,
  .glb-header__menuTrigger:hover:not(.is-active) .line2,
  .glb-header__menuTrigger:hover:not(.is-active) .line3 {
    background: #ccbfaf;
  }
  .glb-header__menuTrigger:hover:not(.is-active) .line1 {
    transform: translate3d(0, -9px, 0) scale3d(1.1, 1, 1);
  }
  .glb-header__menuTrigger:hover:not(.is-active) .line2 {
    transform: translate3d(0, 0, 0) scale3d(0.94, 1, 1);
  }
  .glb-header__menuTrigger:hover:not(.is-active) .line3 {
    transform: translate3d(0, 9px, 0) scale3d(1.1, 1, 1);
  }
}

.glb-header-scroll-outer {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
@media print, screen and (min-width:769px) {
  .glb-header-scroll-outer {
    overflow-y: scroll;
    height: 100vh;
  }
}

.glb-header-container1 {
  position: relative;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-header-container1 {
    padding-bottom: 60px;
    padding-left: 36px;
    padding-right: 36px;
  }
  .glb-header-container1.is-expandPadding {
    padding-bottom: 140px;
  }
}
@media print, screen and (min-width:769px) {
  .glb-header-container1 {
    display: flex;
    width: 1040px;
    padding: 50px 20px;
    margin-left: auto;
    margin-right: auto;
  }
}

.glb-header-container2 {
  position: relative;
  padding-top: 40px;
}
.glb-header-container2::before {
  background: #ddd;
  content: "";
  width: 96px;
  height: 5px;
  display: block;
  position: absolute;
  top: 0;
}
@media print, screen and (min-width:769px) {
  .glb-header-container2 {
    width: 505px;
    padding-top: 55px;
  }
  .glb-header-container2::before {
    width: 192px;
    height: 11px;
  }
}

.glb-header-head__shoulder {
  line-height: 1.5;
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-family: "FOT-筑紫B丸ゴシック Std B", sans-serif;
}
.glb-header-head__shoulder br {
  display: none;
}
.glb-header-head__shoulder .shoulder1,
.glb-header-head__shoulder .shoulder2 {
  display: inline-block;
}
.glb-header-head__shoulder .shoulder1 {
  font-family: "FOT-筑紫B丸ゴシック Std B", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.075em;
  margin-right: 7px;
}
.glb-header-head__shoulder .shoulder2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 1rem;
}
@media print, screen and (min-width:769px) {
  .glb-header-head__shoulder {
    margin-bottom: 22px;
  }
  .glb-header-head__shoulder .shoulder1 {
    font-size: 1.4rem;
    margin-right: 10px;
  }
  .glb-header-head__shoulder .shoulder2 {
    font-size: 1.6rem;
  }
}

.glb-header-head__title {
  font-family: "FOT-筑紫B丸ゴシック Std B", sans-serif;
  position: relative;
  letter-spacing: 0.075em;
  font-feature-settings: "palt";
  padding-bottom: 0;
  margin-bottom: 0;
  font-size: 2.1rem;
}
.glb-header-head__title a {
  font-weight: normal;
}
.glb-header-head__title p {
  text-align: left !important;
}
.glb-header-head__title p span::before, .glb-header-head__title p span::after {
  display: none !important;
}
.glb-header-head__title .glb-feature23-head__heading {
  display: block;
}
.glb-header-head__title .glb-feature23-head__heading img {
  display: none;
}
.glb-header-head__title .glb-feature23-head__heading span {
  margin: 0;
  text-align: left;
}
@media print, screen and (min-width:769px) {
  .glb-header-head__title .glb-feature23-head__heading {
    font-size: 3.2rem;
  }
}
.glb-header-head__title .glb-feature24-head__heading {
  display: block;
}
.glb-header-head__title .glb-feature24-head__heading small {
  text-align: left !important;
}
.glb-header-head__title .glb-feature24-head__heading img {
  display: none;
}
.glb-header-head__title .glb-feature24-head__heading span {
  background: none;
  margin: 0;
  text-align: left;
  padding: 0;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-header-head__title .glb-feature24-head__heading {
    background: none;
    margin-left: 0;
    margin-right: auto;
  }
}
@media print, screen and (min-width:769px) {
  .glb-header-head__title .glb-feature24-head__heading {
    font-size: 3.2rem;
  }
}
@media print, screen and (min-width:769px) {
  .glb-header-head__title {
    font-size: 3.2rem;
    margin-bottom: 20px;
    padding-bottom: 0;
  }
}

.glb-header-head__text {
  display: none;
}
@media print, screen and (min-width:769px) {
  .glb-header-head__text {
    line-height: 1.75;
    display: block;
    margin-bottom: 30px;
    font-size: 1.5rem;
    padding-right: 50px;
  }
}

@media print, screen and (min-width:769px) {
  .glb-header-container3 {
    width: 300px;
  }
}

.glb-header__logo {
  display: none;
}
@media print, screen and (min-width:769px) {
  .glb-header__logo {
    display: block;
    width: 120px;
    margin-right: 82px;
  }
}

.glb-header__anchor {
  margin-bottom: 30px;
}
.glb-header__anchor > li {
  background: url(../img/icon_arrow_c.png) no-repeat left 8px/8px auto;
  padding: 2px 0 2px 14px;
  margin-bottom: 4vw;
  font-size: 1.3rem;
}
.glb-header__anchor > li a {
  font-weight: normal;
  line-height: 2rem;
}
@media print, screen and (min-width:769px) {
  .glb-header__anchor {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -2.2vw;
  }
  .glb-header__anchor > li {
    width: 50%;
    padding: 2px 0 2px 20px;
    margin-bottom: 2.2vw;
    font-size: 1.5rem;
    line-height: 2rem;
    background-size: 11px auto;
  }
  .glb-header__anchor a:hover {
    color: #ccbfaf;
  }
}

.glb-header__nav2 > li a {
  display: block;
  letter-spacing: 0.025em;
  font-weight: normal;
  background: url(../img/icon_arrow_a.png) no-repeat left center/10px auto;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-header__nav2 {
    border-top: 1px solid #eaeaea;
    margin-bottom: 20px;
  }
  .glb-header__nav2 > li {
    border-bottom: 1px solid #eaeaea;
  }
  .glb-header__nav2 > li a {
    padding: 20px 0 20px 18px;
    font-size: 1.3rem;
  }
}
@media print, screen and (min-width:769px) {
  .glb-header__nav2 {
    margin-top: 70px;
  }
  .glb-header__nav2 > li {
    margin-bottom: 60px;
  }
  .glb-header__nav2 > li a {
    font-size: 1.8rem;
    padding-left: 26px;
    background-size: 17px auto;
  }
  .glb-header__nav2 > li a:hover {
    color: #ccbfaf;
  }
}

.glb-header__sns {
  display: flex;
  padding-left: 4px;
}
.glb-header__sns > li {
  width: 42px;
  margin-right: 21px;
}
.glb-header__sns > li a {
  display: block;
}
@media print, screen and (min-width:769px) {
  .glb-header__sns {
    padding-left: 10px;
  }
  .glb-header__sns > li {
    margin-right: 35px;
    transition-duration: 0.3s;
  }
  .glb-header__sns > li:hover {
    transform: scale(1.21);
  }
}

/* ====================================================================

  #コンテンツフッタ

 */
.glb-pagetop {
  position: fixed;
  width: 46px;
  z-index: 100009;
  right: 0;
  bottom: 0;
  transition-duration: 0.6s;
  transform: translateX(70px);
}
.glb-pagetop img {
  width: 100%;
  height: auto;
}
.glb-pagetop.is-active {
  transform: translateX(0);
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-pagetop {
    width: 36px;
  }
}

.glb-footer {
  padding: 6.4vw 0;
  background: #333;
  text-align: center;
}
@media print, screen and (min-width:769px) {
  .glb-footer {
    padding: 45px 0 100px;
  }
}

@media print, screen and (min-width:769px) {
  .glb-footer-container {
    display: flex;
    width: 804px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-footer-container2 {
    margin: 0 10.1vw;
  }
}
@media print, screen and (min-width:769px) {
  .glb-footer-container2 {
    width: 654px;
  }
}

.glb-footer__logo {
  width: 20.7vw;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-footer__logo {
    margin-bottom: 10.7vw;
  }
}
@media print, screen and (min-width:769px) {
  .glb-footer__logo {
    width: 150px;
  }
  .glb-footer__logo img {
    width: 90px;
  }
}

.glb-footer-ci {
  position: relative;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-footer-ci {
    margin-bottom: 3vw;
  }
}
@media print, screen and (min-width:769px) {
  .glb-footer-ci {
    display: flex;
    align-items: center;
    margin-bottom: 22px;
  }
}

.glb-footer-ci__logo {
  width: 31.6vw;
}
@media print, screen and (min-width:769px) {
  .glb-footer-ci__logo {
    width: 146px;
    margin-right: 35px;
  }
}

.glb-footer-ci__name {
  color: #fff;
  letter-spacing: 0.025em;
  font-weight: bold;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-footer-ci__name {
    width: 80%;
    position: absolute;
    top: 0;
    left: 35vw;
    text-align: left;
    font-size: 1.3rem;
  }
}
@media print, screen and (min-width:769px) {
  .glb-footer-ci__name {
    font-size: 2rem;
    margin-right: 20px;
  }
}

.glb-footer-ci__url {
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 0.025em;
}
.glb-footer-ci__url > a {
  color: #fff;
  font-weight: normal;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-footer-ci__url {
    position: absolute;
    left: 35vw;
    top: 24px;
    font-size: 0.8rem;
  }
}
@media print, screen and (min-width:769px) {
  .glb-footer-ci__url {
    font-size: 1.6rem;
  }
}

.glb-footer-ci__summary {
  text-align: left;
  color: #fff;
  letter-spacing: 0.075em;
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 10.1vw;
}
@media print, screen and (min-width:769px) {
  .glb-footer-ci__summary {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}

.glb-footer__copyright {
  display: block;
  width: 100%;
  font-size: 1.1rem;
  color: #fff;
  text-align: center;
  line-height: 1.3;
}
@media print, screen and (min-width:769px) {
  .glb-footer__copyright {
    text-align: left;
    margin-top: 22px;
    letter-spacing: 0.075em;
    font-size: 1.3rem;
  }
}

/* ==========================================================================

   #コンテンツ共通モジュール

 */
/* --------------------------------------------------------------------
  #loading
 */
.glb-preload-container {
  overflow: hidden;
  background: #fff;
  position: fixed;
  z-index: 999999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.glb-preload__logo {
  opacity: 0;
  width: 60px;
}
.glb-preload__logo img {
  width: 100%;
  height: auto;
}
@media print, screen and (min-width:769px) {
  .glb-preload__logo {
    width: 96px;
  }
}

.glb-preload__line {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: #000;
  transition-duration: 1s;
  transform: scale3d(0, 1, 1);
}
.glb-preload__line.is-loadcomp {
  transform: scale3d(1, 1, 1);
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-preload__line {
    transition-duration: 0.7s;
  }
}

/* --------------------------------------------------------------------
  #ボタンスタイル
 */
.glb-btnStyle--a .btn-inner {
  display: block;
  border: 2px solid #4d3417;
  border-radius: 6px;
  background: #fff;
  text-align: center;
  color: #4d3417;
  font-weight: normal;
}
.glb-btnStyle--a .btn-label {
  background: url(../img/icon_arrow_a.png) no-repeat left center/10px auto;
  padding: 0 0 0 15px;
}
@media print, screen and (min-width:769px) {
  .glb-btnStyle--a .btn-label {
    background-size: 17px auto;
    padding: 3px 0 3px 24px;
  }
  .glb-btnStyle--a:hover .btn-inner {
    color: #ccbfaf;
  }
}

/* --------------------------------------------------------------------
  #instagramエリア
 */
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-insta {
    margin-bottom: 16vw;
  }
}

.glb-insta-container {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-insta-container {
    margin: 0 10.1vw;
  }
}
.glb-insta__item {
  position: relative;
  width: 50%;
}
@media print, screen and (min-width:769px) {
  .glb-insta__item {
    width: 20%;
  }
}

.glb-insta__item--btn {
  background: #ffd228;
  display: flex;
}
.glb-insta__item--btn .inner {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.glb-insta__item--btn .btn-text,
.glb-insta__item--btn .btn-icon {
  display: block;
}
.glb-insta__item--btn .btn-text {
  width: 157px;
  margin-bottom: 22px;
}
.glb-insta__item--btn .btn-icon {
  background: url(../img/icon_insta.png) no-repeat center top/52px auto;
  padding-top: 80px;
  color: #4d3417;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.025em;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-insta__item--btn {
    width: 100%;
  }
  .glb-insta__item--btn .inner {
    padding: 4.7vw 0;
  }
  .glb-insta__item--btn .btn-text {
    width: 180px;
    margin-bottom: 2.5vw;
  }
  .glb-insta__item--btn .btn-icon {
    background-size: 33px auto;
    padding-top: 43px;
    font-size: 0.9rem;
    text-align: center;
  }
}

.glb-insta__banner {
  background: #fff2ef;
}
.glb-insta__banner .banner-inner {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 490px;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-insta__banner {
    margin: 10px 10.1vw 0;
  }
}

/* --------------------------------------------------------------------
  #きっぷ情報
 */
@media print, screen and (min-width:769px) {
  .glb-ticket {
    padding: 80px 0 75px;
  }
}

.glb-ticket__title {
  text-align: center;
  margin-bottom: 6.7vw;
}
.glb-ticket__title .title-en,
.glb-ticket__title .title-jp {
  display: block;
}
.glb-ticket__title .title-en {
  margin-bottom: 3.3vw;
}
.glb-ticket__title .title-jp {
  font-size: 1.7rem;
}
@media print, screen and (min-width:769px) {
  .glb-ticket__title {
    margin-bottom: 50px;
  }
  .glb-ticket__title .title-en {
    font-family: "Roboto Condensed", sans-serif;
    letter-spacing: 0.075em;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
  }
  .glb-ticket__title .title-jp {
    font-family: "FOT-筑紫B丸ゴシック Std B", sans-serif;
    font-size: 2.4rem;
  }
}

.glb-ticket-list:after {
  content: "";
  clear: both;
  display: block;
}
@media print, screen and (min-width:769px) {
  .glb-ticket-list {
    display: flex;
  }
}

.glb-ticket-list__item .item-text {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 20px;
  white-space: nowrap;
  line-height: 1.75;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-ticket-list__item .item-text {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-ticket-list__item {
    margin-bottom: 8vw;
  }
  .glb-ticket-list__item .item-pict {
    width: 48vw;
    margin-left: auto;
    margin-right: auto;
  }
}
@media print, screen and (min-width:769px) {
  .glb-ticket-list__item {
    width: calc(33.3% - 33px);
    text-align: center;
    margin-right: 50px;
  }
  .glb-ticket-list__item:last-child {
    margin-right: 0;
  }
  .glb-ticket-list__item .item-pict:hover {
    transition-duration: 0.3s;
  }
  .glb-ticket-list__item .item-pict:hover:hover {
    opacity: 0.75;
  }
}

/* --------------------------------------------------------------------
  #サイドナビエリア
 */
.glb-side {
  background: #fff;
  position: fixed;
  border-left: 1px solid #eaeaea;
  right: 0;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 40;
  overflow: hidden;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-side {
    display: none;
  }
}

.glb-side__insta,
.glb-side__pagetop {
  position: absolute;
  text-align: center;
  z-index: 15;
  left: 0;
  bottom: 2vw;
  width: 100%;
  transition-duration: 0.5s;
}
.glb-side__insta > a,
.glb-side__pagetop > a {
  display: block;
}
.glb-side__insta.is-active,
.glb-side__pagetop.is-active {
  transform: translate3d(0, 0, 0);
}

.glb-side__insta {
  transform: translate3d(-100%, 0, 0);
}
.glb-side__insta img {
  width: 19px;
}

.glb-side__pagetop {
  transform: translate3d(100%, 0, 0);
  z-index: 100010;
}
.glb-side__pagetop > a {
  height: 33px;
  width: 100%;
  overflow: hidden;
  background: url(../img/pagetop.png) no-repeat center top/26px;
}
.glb-side__pagetop:hover a {
  background-position: center bottom;
}

.glb-side__instaText {
  font-family: "FOT-筑紫B丸ゴシック Std B", sans-serif;
  display: flex;
  align-items: center;
  position: fixed;
  z-index: 15;
  right: 0;
  top: 0;
  letter-spacing: 0.075em;
  white-space: nowrap;
  height: 100%;
  flex-direction: column;
  font-feature-settings: "pkna";
  writing-mode: vertical-rl;
  text-orientation: upright;
  -ms-text-combine-horizontal: all;
  /*text-combine-upright: all;*/
  overflow: hidden;
}
.glb-side__instaText > a {
  display: block;
}
.glb-side__instaText .insta-inner {
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 10px 0;
  background: url(../img/mv_insta.png) no-repeat center top/33px auto;
  transition-duration: 0.5s;
}
.glb-side__instaText .insta-inner.is-hidden {
  transform: translate3d(-100%, 0, 0);
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-side__instaText {
    display: none;
  }
}

/* --------------------------------------------------------------------
  #下層ページ見出し
 */
.glb-second-header {
  padding-top: 6.8vw;
}
@media print, screen and (min-width:769px) {
  .glb-second-header {
    display: flex;
    padding-top: 5.4vw;
    margin-bottom: 40px;
  }
}

.glb-second-header__logo {
  width: 12.8vw;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-second-header__logo {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 11.1vw;
  }
}
@media print, screen and (min-width:769px) {
  .glb-second-header__logo {
    width: 28.6%;
    padding-left: 5.7%;
  }
  .glb-second-header__logo img {
    width: 120px;
    height: 224px;
  }
}

@media print, screen and (min-width:769px) {
  .glb-second-header2 {
    padding-top: 15px;
    margin-bottom: 8.6vw;
  }
}

.glb-second-header__btn {
  width: 254px;
  margin-left: 1.4vw;
}
.glb-second-header__btn .btn-inner {
  display: block;
  border-top: 1px solid #4d3417;
  border-bottom: 1px solid #4d3417;
  padding: 20px 10px;
  text-align: center;
}
.glb-second-header__btn .btn-icon {
  display: inline-block;
  padding: 2px 0 2px 26px;
  background: url(../img/icon_arrow_a.png) no-repeat left center/17px auto;
}
@media screen and (min-width: 1500px) and (max-width: 1700px) {
  .glb-second-header__btn {
    margin-left: 1.9vw;
  }
}
@media screen and (min-width: 1701px) and (max-width: 2000px) {
  .glb-second-header__btn {
    margin-left: 2.4vw;
  }
}
@media screen and (min-width: 2001px) {
  .glb-second-header__btn {
    margin-left: 2.9vw;
  }
}
@media print, screen and (min-width:769px) {
  .glb-second-header__btn {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-second-header__btn {
    display: none;
  }
}

.glb-second-header-container {
  position: relative;
  z-index: 2;
}
@media print, screen and (min-width:769px) {
  .glb-second-header-container {
    width: 71.4%;
    padding-top: 3.7vw;
  }
}

.glb-second-header__title {
  margin-bottom: 20px;
}
.glb-second-header__title .title-en {
  display: block;
  margin-bottom: 16px;
}
.glb-second-header__title .title-en img {
  height: 13px;
  width: auto;
}
.glb-second-header__title .title-jp {
  font-family: "FOT-筑紫B丸ゴシック Std B", sans-serif;
  letter-spacing: 0.125em;
  font-size: 1.9rem;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-second-header__title {
    text-align: center;
  }
}
@media print, screen and (min-width:769px) {
  .glb-second-header__title {
    margin-bottom: 40px;
  }
  .glb-second-header__title .title-en {
    margin-bottom: 30px;
  }
  .glb-second-header__title .title-en img {
    height: 24px;
    width: auto;
  }
  .glb-second-header__title .title-jp {
    font-size: 3.6rem;
  }
}

.glb-second-header__text {
  line-height: 1.75;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-second-header__text {
    margin: 0 10.1vw;
    font-size: 1.3rem;
    margin-bottom: 10.2vw;
  }
}
@media print, screen and (min-width:769px) {
  .glb-second-header__text {
    font-size: 1.6rem;
  }
}

.glb-back-btn-container {
  background: #f5f5f5;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-back-btn-container {
    padding: 5.3vw 0;
    margin-bottom: 10.2vw;
  }
}
@media print, screen and (min-width:769px) {
  .glb-back-btn-container {
    padding: 30px 0;
  }
}

/* --------------------------------------------------------------------
  #txt
 */
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-after-comment {
    margin-top: 8vw;
    margin-bottom: 18.7vw;
    padding: 0 10vw;
    font-size: 1.3rem;
    letter-spacing: 0.025em;
    line-height: 1.65;
  }
}
@media print, screen and (min-width: 769px) {
  .glb-after-comment {
    margin-top: 0;
    margin-bottom: 150px;
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    font-size: 1.6rem;
    line-height: 1.625;
  }
}
/* ==========================================================================

   #特集 - 旅のしおり
   サイト内共通

 */
.glb-feature {
  position: relative;
  z-index: 20;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature {
    margin-top: -30vw;
    padding-top: 15vw;
  }
}

/* --------------------------------------------------------------------
  #トビラ部分
 */
.glb-feature-head {
  position: relative;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature-head {
    background: #f5f5f5;
    padding-bottom: 5.1vw;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature-head {
    margin-top: -10vw;
    padding: 20vw 0 3.6vw;
  }
  .glb-feature-head::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    background: #eee;
    right: 0;
    width: 50%;
    height: 100%;
  }
}

@media print, screen and (min-width:769px) {
  .glb-feature-head__pict {
    margin-top: -6.4vw;
    position: absolute;
    width: 69.3%;
  }
}

.glb-feature-head-container {
  position: relative;
}
.glb-feature-head-container::before {
  content: "";
  background: #ccc;
  width: 190px;
  height: 12px;
  position: absolute;
  top: -12px;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature-head-container {
    margin: -3.3vw 5.1vw 0;
    background: #fff;
    padding: 5.3vw;
  }
  .glb-feature-head-container::before {
    width: 96px;
    height: 5px;
    top: -5px;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature-head-container {
    z-index: 2;
    width: 40%;
    padding: 3vw;
    min-height: 33.8vw;
    background: #fff;
    margin: 0 0 0 auto;
  }
}

.glb-feature-head__shoulder {
  margin-bottom: 4.5vw;
}
.glb-feature-head__shoulder .shoulder1,
.glb-feature-head__shoulder .shoulder2 {
  display: inline-block;
}
.glb-feature-head__shoulder .shoulder1 {
  font-family: "FOT-筑紫B丸ゴシック Std B", sans-serif;
  font-size: 11px;
  letter-spacing: 0.075em;
  margin-right: 7px;
}
.glb-feature-head__shoulder .shoulder2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 10px;
}
@media print, screen and (min-width:769px) {
  .glb-feature-head__shoulder {
    margin-bottom: 1.3vw;
  }
  .glb-feature-head__shoulder .shoulder1 {
    font-size: 14px;
    margin-right: 10px;
  }
  .glb-feature-head__shoulder .shoulder2 {
    font-size: 16px;
  }
}

.glb-feature-head__title {
  font-family: "FOT-筑紫B丸ゴシック Std B", sans-serif;
  position: relative;
  margin-bottom: 4vw;
  letter-spacing: 0.075em;
  padding-bottom: 4vw;
  font-size: 21px;
}
.glb-feature-head__title a {
  font-weight: normal !important;
}
.glb-feature-head__title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 15px;
  height: 1px;
  background: #000;
}
@media print, screen and (min-width:769px) {
  .glb-feature-head__title {
    font-size: 36px;
    margin-bottom: 1.8vw;
    padding-bottom: 1.8vw;
    line-height: 4.2rem;
  }
  .glb-feature-head__title::after {
    width: 30px;
  }
}

.glb-feature-head__text {
  margin-bottom: 4vw;
  line-height: 1.75;
  font-size: 13px;
}
@media print, screen and (min-width:769px) {
  .glb-feature-head__text {
    margin-bottom: 1.8vw;
    font-size: 15px;
  }
}

.glb-feature-head__anchor {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -4vw;
}
.glb-feature-head__anchor > li {
  width: 50%;
  background: url(../img/icon_arrow_b.png) no-repeat left 6px/10px auto;
  padding: 2px 0 2px 14px;
  margin-bottom: 4vw;
  font-size: 13px;
}
.glb-feature-head__anchor > li a {
  font-weight: normal;
  line-height: 2rem;
}
@media print, screen and (min-width:769px) {
  .glb-feature-head__anchor {
    margin-bottom: -2.2vw;
  }
  .glb-feature-head__anchor > li {
    padding: 2px 0 2px 26px;
    margin-bottom: 2.2vw;
    font-size: 15px;
    background-size: 17px auto;
  }
  .glb-feature-head__anchor a:hover {
    color: #ccbfaf;
  }
}

/* --------------------------------------------------------------------
  #記事部分
 */
.glb-feature-content {
  padding: 10vw 20vw 20vw 7.3vw;
}
@media print, screen and (min-width:769px) {
  .glb-feature-content {
    width: 940px;
    margin-left: auto;
    margin-right: auto;
    padding: 5vw 0 10vw;
  }
  .glb-feature-content:after {
    content: "";
    clear: both;
    display: block;
  }
}

.glb-feature-item {
  position: relative;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature-item {
    padding-left: 12.8vw;
    margin-bottom: 21.3vw;
  }
  .glb-feature-item:last-child {
    margin-bottom: 0;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature-item {
    width: 47%;
    margin-right: 6%;
    padding-right: 60px;
    float: left;
    margin-bottom: 10vw;
  }
  .glb-feature-item:nth-child(2n) {
    margin-right: 0;
    transform: translate3d(0, 120px, 0);
  }
}

.glb-feature-item__num {
  width: 31px;
  height: 31px;
  background: #fff;
  border: 1px solid #ccc;
  position: absolute;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature-item__num {
    font-size: 12px;
    left: 0;
    top: 0;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature-item__num {
    font-size: 24px;
    width: 62px;
    height: 62px;
    left: -11px;
    top: -36px;
  }
}

.glb-feature-item__catch {
  font-family: "FOT-筑紫B丸ゴシック Std B", sans-serif;
  line-height: 1.52;
  white-space: nowrap;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature-item__catch {
    margin-bottom: 3vw;
    font-size: 15px;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature-item__catch {
    position: absolute;
    font-size: 21px;
    background: #fff;
    border: 1px solid #ccc;
    letter-spacing: 0.025em;
    width: 90px;
    top: -25px;
    right: 23px;
    border-radius: 10px;
    min-height: 330px;
    padding: 20px 5px;
    font-feature-settings: "pkna";
    writing-mode: vertical-rl;
    text-orientation: upright;
    -ms-text-combine-horizontal: all;
    /*text-combine-upright: all;*/
    display: flex;
    align-items: center;
  }
  .glb-feature-item__catch .tsume {
    letter-spacing: -0.025em;
  }
  .glb-feature-item__catch::after {
    content: "";
    display: block;
    background: url(../img/balloon_tail.png) no-repeat left top/13px auto;
    width: 13px;
    height: 9px;
    position: absolute;
    left: -13px;
    top: 82px;
  }
}

.glb-feature-item__pict {
  margin-bottom: 7.3vw;
}
.glb-feature-item__pict .pict-caption {
  text-align: right;
  margin-top: 5px;
  line-height: 1.3;
  font-size: 9px;
}
@media print, screen and (min-width:769px) {
  .glb-feature-item__pict {
    margin-bottom: 40px;
    margin-right: 30px;
  }
  .glb-feature-item__pict .pict-caption {
    margin-top: 10px;
    font-size: 14px;
  }
}

@media print, screen and (min-width:769px) {
  .glb-feature-item-container {
    display: flex;
  }
}

.glb-feature-item__title {
  font-family: "FOT-筑紫B丸ゴシック Std B", sans-serif;
  font-feature-settings: "pkna";
  writing-mode: vertical-rl;
  text-orientation: upright;
  -ms-text-combine-horizontal: all;
  /*text-combine-upright: all;*/
  letter-spacing: 0.075em;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature-item__title {
    position: absolute;
    left: 0;
    top: 40px;
    width: 31px;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature-item__title {
    width: 100px;
    font-size: 24px;
    line-height: 1.52;
    padding-top: 5px;
  }
}

@media print, screen and (min-width:769px) {
  .glb-feature-item-box {
    width: calc(100% - 100px);
  }
}

.glb-feature-item__text {
  line-height: 1.8;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature-item__text {
    font-size: 13px;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature-item__text {
    font-size: 16px;
  }
}

.glb-feature-item__note {
  margin-bottom: 1.5em;
  line-height: 1.5;
  font-size: 11px;
}
@media print, screen and (min-width:769px) {
  .glb-feature-item__note {
    font-size: 14px;
  }
}

.glb-feature-item__period {
  margin-top: 5vw;
  font-size: 13px;
  line-height: 1.5;
}
@media print, screen and (min-width:769px) {
  .glb-feature-item__period {
    margin-top: 30px;
    font-size: 16px;
  }
}

.glb-feature-item__access {
  margin-top: 6vw;
  font-size: 13px;
  line-height: 1.3;
}
.glb-feature-item__access::before {
  content: "";
  display: block;
  background: #999;
  height: 1px;
  width: 15px;
  margin-bottom: 6vw;
}
.glb-feature-item__access .access-heading {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 13px;
  display: block;
  margin-bottom: 10px;
}
@media print, screen and (min-width:769px) {
  .glb-feature-item__access {
    margin-top: 30px;
    font-size: 16px;
  }
  .glb-feature-item__access::before {
    width: 25px;
    margin-bottom: 30px;
  }
  .glb-feature-item__access .access-heading {
    font-size: 16px;
  }
}

.glb-feature-item__link {
  margin-top: 20px;
  font-size: 13px;
}
.glb-feature-item__link .icon-newwin {
  background: url(../img/icon_newwin.png) no-repeat right top 1px/8px auto;
  padding-right: 15px;
}
@media print, screen and (min-width:769px) {
  .glb-feature-item__link {
    margin-top: 25px;
    font-size: 16px;
  }
  .glb-feature-item__link .icon-newwin {
    padding-right: 20px;
    background-size: 11px auto;
  }
  .glb-feature-item__link a:hover {
    color: #ccbfaf;
  }
}

.glb-feature-item__note {
  margin-top: 20px;
}
.glb-feature-item__note > li {
  position: relative;
  padding-left: 1.1em;
}
.glb-feature-item__note > li::before {
  content: "※";
  font-size: 11px;
  line-height: 1.75;
  position: absolute;
  left: 0;
}
.glb-feature-item__note p {
  font-size: 11px;
  line-height: 1.75;
  margin-bottom: 0.75em;
}
.glb-feature-item__note a {
  color: #000;
  text-decoration: underline;
  font-weight: normal;
}
@media print, screen and (min-width:769px) {
  .glb-feature-item__note {
    margin-top: 25px;
  }
  .glb-feature-item__note > li {
    padding-left: 1.2em;
  }
  .glb-feature-item__note > li::before {
    font-size: 14px;
  }
  .glb-feature-item__note p {
    font-size: 14px;
  }
  .glb-feature-item__note a:hover {
    text-decoration: none;
  }
}

.glb-feature-item__accessList > li {
  margin-bottom: 2em;
}
.glb-feature-item__accessList > li .accessList-heading {
  font-weight: bold;
  font-size: 12px;
  margin-bottom: 10px;
  line-height: 1.3;
}
.glb-feature-item__accessList > li .accessList-link {
  margin-top: 0.7em;
}
.glb-feature-item__accessList > li .accessList-link .icon-newwin {
  background: url(../img/icon_newwin.png) no-repeat right top 1px/8px auto;
  padding-right: 15px;
}
.glb-feature-item__accessList > li .accessList-how {
  font-size: 13px;
  line-height: 1.3;
}
@media print, screen and (min-width:769px) {
  .glb-feature-item__accessList {
    margin-top: 20px;
  }
  .glb-feature-item__accessList > li .accessList-heading {
    font-size: 16px;
  }
  .glb-feature-item__accessList > li .accessList-link {
    font-size: 14px;
  }
  .glb-feature-item__accessList > li .accessList-link .icon-newwin {
    padding-right: 20px;
    background-size: 11px auto;
  }
  .glb-feature-item__accessList > li .accessList-link a:hover {
    color: #ccbfaf;
  }
  .glb-feature-item__accessList > li .accessList-how {
    font-size: 16px;
  }
}

.glb-feature__fin {
  color: #cc3333;
  font-size: 12px; /* 1.2rem -> 12px */
  border: 1px solid #cc3333;
  padding: 7px;
  text-align: center;
  margin: 20px 0;
}
@media print, screen and (min-width:769px) {
  .glb-feature__fin {
    font-size: 14px; /* 1.4rem -> 14px */
  }
}

.glb-feature__note {
  color: #cc3333;
  font-size: 12px; /* 1.2rem -> 12px */
  margin: 20px 0;
  line-height: 1.5;
  text-indent: -1em;
  padding-left: 1em;
}
@media print, screen and (min-width:769px) {
  .glb-feature__note {
    font-size: 14px; /* 1.4rem -> 14px */
  }
}

/* --------------------------------------------------------------------
  #access
 */
.glb-access {
  padding: 13.3vw 0 0;
}
@media print, screen and (min-width:769px) {
  .glb-access {
    padding: 116px 0 0;
  }
}

.glb-access-container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-access-container {
    padding: 0 10.1vw 5vw;
  }
  .glb-access-container::before {
    content: "";
    display: block;
    background: #f6f6f6;
    width: 42.4vw;
    height: 28vw;
    position: absolute;
    left: 0;
    top: -13.3vw;
  }
}
@media print, screen and (min-width:769px) {
  .glb-access-container {
    width: 1000px;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 55px;
  }
  .glb-access-container::before {
    content: "";
    display: block;
    background: #f6f6f6;
    width: 320px;
    height: 210px;
    position: absolute;
    left: -20px;
    top: -117px;
  }
}

.glb-access-box1 {
  position: relative;
  z-index: 2;
}
@media print, screen and (min-width:769px) {
  .glb-access-box1 {
    width: 400px;
  }
}

@media print, screen and (min-width:769px) {
  .glb-access-pict {
    width: 600px;
  }
}

.glb-access__title .title-en,
.glb-access__title .title-jp {
  display: block;
}
.glb-access__title .title-en {
  margin-bottom: 3.3vw;
}
@media print, screen and (min-width:769px) {
  .glb-access__title .title-en {
    margin-bottom: 13px;
  }
}
.glb-access__title .title-jp {
  font-family: "FOT-筑紫B丸ゴシック Std B", sans-serif;
  margin-bottom: 3.3vw;
  font-size: 17px; /* 1.7rem -> 17px */
  line-height: 1.61;
}
@media print, screen and (min-width:769px) {
  .glb-access__title .title-jp {
    margin-bottom: 15px;
    font-size: 26px; /* 2.6rem -> 26px */
  }
}

.glb-access__text {
  font-size: 13px; /* 1.3rem -> 13px */
  line-height: 1.75;
}
@media print, screen and (min-width:769px) {
  .glb-access__text {
    width: 400px;
    font-size: 16px; /* 1.6rem -> 16px */
  }
}

.glb-access__photo img {
  width: 100%;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-access__photo {
    margin-top: 20px;
  }
  .glb-access__photo img {
    width: 100%;
  }
}
@media print, screen and (min-width:769px) {
  .glb-access__photo {
    width: 600px;
    padding-left: 10px;
    margin-top: -100px;
  }
  .glb-access__photo img {
    max-width: 571px;
  }
}

.glb-access-btn-container {
  background: #f5f5f5;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-access-btn-container {
    padding-top: 5.3vw;
  }
}
@media print, screen and (min-width:769px) {
  .glb-access-btn-container {
    padding-top: 30px;
  }
}

.glb-access__btn {
  margin-bottom: 5.3vw;
}
.glb-access__btn .btn-inner {
  padding: 15px;
  font-size: 13px; /* 1.3rem -> 13px */
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-access__btn {
    margin-left: 10.1vw;
    margin-right: 10.1vw;
  }
}
@media print, screen and (min-width:769px) {
  .glb-access__btn {
    margin-bottom: 30px;
  }
  .glb-access__btn .btn-inner {
    font-size: 18px; /* 1.8rem -> 18px */
    padding: 28px;
  }
}

.glb-feature-head__note {
  position: relative;
  z-index: 2;
}
.glb-feature-head__note .note-inner {
  display: inline-block;
  text-align: left;
  font-size: 11px; /* 1.1rem -> 11px */
  line-height: 1.3;
  text-indent: -1em;
  padding-left: 1em;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature-head__note {
    margin-top: 13px;
    padding-right: 15px;
    text-align: right;
  }
  .glb-feature-head__note .note-inner {
    text-align: left;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature-head__note {
    text-align: center;
    width: 40%;
    margin: -2.4vw 0 0 auto;
    padding-right: 5.7vw;
  }
  .glb-feature-head__note .note-inner {
    font-size: 14px; /* 1.4rem -> 14px */
  }
}

/* ==========================================================================

   #特集 - 旅のしおり（2020 Renewal）
   サイト内共通

  202409 font-size をすべてpx指定に変更した
 */
/* --------------------------------------------------------------------
  #トビラ部分
 */
.glb-feature20-head {
  position: relative;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature20-head {
    background: #f5f5f5;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature20-head {
    padding-top: 7.1vw;
  }
}

@media print, screen and (min-width:769px) {
  .glb-feature20-head__pict {
    position: absolute;
    top: 14.2vw;
    width: 50%;
  }
}
@media screen and (min-width: 1400px) {
  .glb-feature20-head__pict {
    width: 700px;
    right: 50%;
  }
}

.glb-feature20-head-container {
  position: relative;
  background-color: #efefef;
}
.glb-feature20-head-container .container-inner {
  background-repeat: repeat;
  background-size: 200px 200px;
  background-position: center center;
  padding: 1px;
}
.glb-feature20-head-container .container-inner2 {
  background-color: #efefef;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature20-head-container {
    margin: 0;
    padding: 20px;
  }
  .glb-feature20-head-container .container-inner2 {
    padding: 18px;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature20-head-container {
    z-index: 2;
    /*width: 35.7vw;*/
    width: 500px;
    margin: 0 14.3vw 0 auto;
    margin-right: calc((100% - 960px) / 2);
    padding: 10px;
  }
  .glb-feature20-head-container .container-inner2 {
    padding: 40px 30px;
  }
}

.glb-feature20-head__shoulder {
  margin-bottom: 20px;
}
.glb-feature20-head__shoulder .shoulder1,
.glb-feature20-head__shoulder .shoulder2 {
  display: inline-block;
}
.glb-feature20-head__shoulder .shoulder1 {
  font-family: "FOT-筑紫B丸ゴシック Std B", sans-serif;
  font-size: 11px;
  letter-spacing: 0.075em;
  margin-right: 7px;
}
.glb-feature20-head__shoulder .shoulder2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 10px;
}
@media print, screen and (min-width:769px) {
  .glb-feature20-head__shoulder {
    margin-bottom: 1.5vw;
  }
  .glb-feature20-head__shoulder .shoulder1 {
    font-size: 14px;
    margin-right: 10px;
  }
  .glb-feature20-head__shoulder .shoulder2 {
    font-size: 16px;
  }
}

.glb-feature20-head__title {
  font-family: "FOT-筑紫B丸ゴシック Std B", sans-serif;
  font-size: 19px;
  letter-spacing: 0.075em;
  line-height: 1.3;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
}
.glb-feature20-head__title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 15px;
  height: 1px;
  background: #000;
}
.glb-feature20-head__title a {
  color: #000;
  font-weight: normal !important;
}
.glb-feature20-head__title span {
  display: inline-block;
  font-size: 12px;
  transform: scaleX(0.95);
  transform-origin: left center;
}
@media print, screen and (min-width:769px) {
  .glb-feature20-head__title {
    font-size: 32px;
    margin-bottom: 1.4vw;
    padding-bottom: 2.4vw;
    line-height: 1.25;
  }
  .glb-feature20-head__title::after {
    width: 30px;
  }
  .glb-feature20-head__title span {
    font-size: 18px;
  }
}

.glb-feature20-head__text {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 15px;
}
@media print, screen and (min-width:769px) {
  .glb-feature20-head__text {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 1.4vw;
  }
}

.glb-feature20-head__anchor > li {
  background: url(../img/icon_arrow_b.png) no-repeat left 6px/10px auto;
  font-size: 13px;
  margin-bottom: 13px;
  padding: 2px 0 2px 14px;
  /*width: 50%;*/
}
.glb-feature20-head__anchor > li a {
  font-weight: normal;
  line-height: 2rem;
}
@media print, screen and (min-width:769px) {
  .glb-feature20-head__anchor {
    margin-bottom: -2vw;
  }
  .glb-feature20-head__anchor > li {
    width: auto;
    background-position: left 4px;
    background-size: 17px auto;
    font-size: 16px;
    margin-bottom: 1.2vw;
    padding: 2px 0 2px 26px;
  }
  .glb-feature20-head__anchor a:hover {
    color: #ccbfaf;
  }
}

.glb-feature20-head__note {
  position: relative;
  z-index: 2;
  text-align: right;
}
.glb-feature20-head__note .note-inner {
  display: inline-block;
  text-align: right;
  font-size: 10px;
  line-height: 1.3;
  text-indent: -1em;
  padding-left: 1em;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature20-head__note {
    margin-top: 6px;
    text-align: right;
  }
  .glb-feature20-head__note .note-inner {
    text-align: left;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature20-head__note {
    width: 35.7vw;
    margin: 10px 14.3vw 0 auto;
    margin-right: calc((100% - 960px) / 2);
  }
  .glb-feature20-head__note .note-inner {
    font-size: 14px;
  }
}

.glb-feature20-head__ribbon {
  position: absolute;
  z-index: 11;
  width: 30px;
  height: 38px;
  top: 0;
  background-color: #ccc;
  right: 30px;
}
.glb-feature20-head__ribbon::before, .glb-feature20-head__ribbon::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -12px;
}
.glb-feature20-head__ribbon::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 15px 0 0;
  border-color: #ccc transparent transparent transparent;
  left: 0;
}
.glb-feature20-head__ribbon::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 12px 0;
  border-color: transparent #ccc transparent transparent;
  right: 0;
}

/* --------------------------------------------------------------------
  #記事部分
 */
.glb-feature20-content {
  padding-top: 10.7vw;
  margin-bottom: 18.7vw;
}
@media print, screen and (min-width:769px) {
  .glb-feature20-content {
    padding-top: 7.1vw;
    margin-bottom: 7.1vw;
    width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .glb-feature20-content + * {
    margin-top: 150px;
  }
}

.glb-feature20-item {
  position: relative;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature20-item {
    margin-bottom: 21.3vw;
  }
  .glb-feature20-item:last-child {
    margin-bottom: 0;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature20-item {
    margin-bottom: 150px;
    padding-right: 500px;
  }
  .glb-feature20-item:last-child {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature20-item-head {
    padding-left: 10vw;
    padding-right: 10vw;
  }
}

.glb-feature20-item__num {
  text-align: left;
}
.glb-feature20-item__num svg {
  fill: #fd9a9b;
  vertical-align: top;
  height: 41px;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature20-item__num svg {
    height: 34px;
  }
}

.glb-feature20-item__title {
  font-family: "FOT-筑紫B丸ゴシック Std B", sans-serif;
  font-size: 25px;
  letter-spacing: 0.075em;
  line-height: 1.2;
  margin-top: 17px;
}
@media print, screen and (min-width:769px) {
  .glb-feature20-item__title {
    font-size: 30px;
    line-height: 1.4;
    margin-top: 26px;
  }
}

.glb-feature20-item__catch {
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.075em;
  line-height: 1.65;
  margin-top: 7px;
}
@media print, screen and (min-width:769px) {
  .glb-feature20-item__catch {
    font-size: 20px;
    line-height: 1.8;
    margin-top: 13px;
  }
}
.glb-feature20-item__catch .tsume {
  letter-spacing: -0.025em;
}

.glb-feature20-item__pict {
  margin: 15px 0;
  padding: 0 10vw;
}
@media print, screen and (min-width:769px) {
  .glb-feature20-item__pict {
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: 72px;
    width: 400px;
  }
}
.glb-feature20-item__pict .pict-caption {
  font-size: 13px;
  letter-spacing: 0.025em;
  line-height: 1.4;
  margin: 30px -5vw 0;
  padding: 14px 5vw;
  position: relative;
}
.glb-feature20-item__pict .pict-caption::before {
  background: url(../img/icon_camera.png) no-repeat left top/30px auto;
  content: "";
  display: block;
  width: 30px;
  height: 28px;
  position: absolute;
  left: 5vw;
  top: -20px;
}
@media print, screen and (min-width:769px) {
  .glb-feature20-item__pict .pict-caption {
    font-size: 16px;
    line-height: 1.625;
    margin: 22px 0 0;
    padding: 0 0 0 51px;
  }
  .glb-feature20-item__pict .pict-caption::before {
    background-size: 40px auto;
    width: 40px;
    height: 38px;
    left: 0;
    top: -9px;
  }
}
.glb-feature20-item__pict .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.glb-feature20-item__pict .slick-dots {
  height: auto;
  position: static;
}
.glb-feature20-item__pict .slick-dots li {
  vertical-align: top;
}
.glb-feature20-item__pict .slick-dots li button:before {
  border: none;
}
.glb-feature20-item__pict .slick-dots li:nth-last-child(1):first-child,
.glb-feature20-item__pict .slick-dots li:nth-last-child(1):first-child ~ li {
  display: none;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature20-item__pict .slick-dots {
    margin-top: 15px;
  }
  .glb-feature20-item__pict .slick-dots li {
    margin: 0 20px;
  }
  .glb-feature20-item__pict .slick-dots li button:before {
    height: 15px;
    width: 15px;
    top: 2px;
    left: 2px;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature20-item__pict .slick-dots {
    margin-top: 25px;
  }
  .glb-feature20-item__pict .slick-dots li {
    margin: 0 8px;
  }
}
.glb-feature20-item__pict .slick-prev,
.glb-feature20-item__pict .slick-next {
  background: none;
  width: 13px;
  height: 22px;
  top: calc((80vw - 22px) / 2);
}
.glb-feature20-item__pict .slick-prev::before, .glb-feature20-item__pict .slick-prev::after,
.glb-feature20-item__pict .slick-next::before,
.glb-feature20-item__pict .slick-next::after {
  background-color: #fd9a9b;
  border-radius: 2px;
  content: "";
  display: block;
  width: 3px;
  height: 16px;
  opacity: 0.7;
  position: absolute;
  left: 50%;
}
.glb-feature20-item__pict .slick-prev::before,
.glb-feature20-item__pict .slick-next::before {
  top: 0;
}
.glb-feature20-item__pict .slick-prev::after,
.glb-feature20-item__pict .slick-next::after {
  bottom: 0;
}
@media print, screen and (min-width:769px) {
  .glb-feature20-item__pict .slick-prev,
  .glb-feature20-item__pict .slick-next {
    width: 25px;
    height: 43px;
    top: 178px;
  }
  .glb-feature20-item__pict .slick-prev::before, .glb-feature20-item__pict .slick-prev::after,
  .glb-feature20-item__pict .slick-next::before,
  .glb-feature20-item__pict .slick-next::after {
    border-radius: 3px;
    width: 5px;
    height: 31px;
  }
}
.glb-feature20-item__pict .slick-prev {
  left: -7.2vw;
}
.glb-feature20-item__pict .slick-prev::before {
  transform: translate(-50%, -2px) rotate(45deg);
}
.glb-feature20-item__pict .slick-prev::after {
  transform: translate(-50%, 2px) rotate(-45deg);
}
@media print, screen and (min-width:769px) {
  .glb-feature20-item__pict .slick-prev {
    left: -50px;
  }
  .glb-feature20-item__pict .slick-prev::before {
    transform: translate(-50%, -3px) rotate(45deg);
  }
  .glb-feature20-item__pict .slick-prev::after {
    transform: translate(-50%, 3px) rotate(-45deg);
  }
}
.glb-feature20-item__pict .slick-next {
  right: -7.2vw;
}
.glb-feature20-item__pict .slick-next::before {
  transform: translate(-50%, -2px) rotate(-45deg);
}
.glb-feature20-item__pict .slick-next::after {
  transform: translate(-50%, 2px) rotate(45deg);
}
@media print, screen and (min-width:769px) {
  .glb-feature20-item__pict .slick-next {
    right: -50px;
  }
  .glb-feature20-item__pict .slick-next::before {
    transform: translate(-50%, -3px) rotate(-45deg);
  }
  .glb-feature20-item__pict .slick-next::after {
    transform: translate(-50%, 3px) rotate(45deg);
  }
}

.glb-feature20-item-container {
  margin-top: 20px;
  padding-left: 10vw;
  padding-right: 10vw;
}
@media print, screen and (min-width:769px) {
  .glb-feature20-item-container {
    margin-top: 26px;
    padding-left: 0;
    padding-right: 0;
  }
}

.glb-feature20-item__text {
  font-size: 13px;
  letter-spacing: 0.025em;
  line-height: 1.65;
  margin-bottom: 11px;
}
@media print, screen and (min-width:769px) {
  .glb-feature20-item__text {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

.glb-feature20-item__note {
  font-size: 11px;
  margin-top: 20px;
  margin-bottom: 1.5em;
  line-height: 1.65;
}
.glb-feature20-item__note > li {
  padding-left: 1.1em;
  position: relative;
}
.glb-feature20-item__note > li::before {
  content: "※";
  position: absolute;
  left: 0;
}
.glb-feature20-item__note p {
  margin-bottom: 0.75em;
}
.glb-feature20-item__note a {
  color: #000;
  text-decoration: underline;
  font-weight: normal;
}
@media print, screen and (min-width:769px) {
  .glb-feature20-item__note {
    font-size: 14px;
    margin-top: 25px;
  }
  .glb-feature20-item__note > li {
    padding-left: 1.2em;
  }
  .glb-feature20-item__note a:hover {
    text-decoration: none;
  }
}

.glb-feature20-item__periodset {
  margin-top: 11px;
}
.glb-feature20-item__periodset .periodset__title,
.glb-feature20-item__periodset .periodset__text {
  line-height: 1.65;
}
.glb-feature20-item__periodset .periodset__title {
  font-size: 13px;
}
.glb-feature20-item__periodset .periodset__text {
  font-size: 11px;
}
@media print, screen and (min-width:769px) {
  .glb-feature20-item__periodset {
    margin-top: 10px;
  }
  .glb-feature20-item__periodset .periodset__title {
    font-size: 16px;
  }
  .glb-feature20-item__periodset .periodset__text {
    font-size: 14px;
  }
}

.glb-feature20-item__period {
  margin-top: 11px;
  font-size: 11px;
  line-height: 1.65;
}
@media print, screen and (min-width:769px) {
  .glb-feature20-item__period {
    margin-top: 10px;
    font-size: 14px;
  }
}

.glb-feature20-item__access {
  margin-top: 15px;
  font-size: 13px;
  line-height: 1.65;
}
.glb-feature20-item__access::before {
  content: "";
  display: block;
  background: #999;
  height: 1px;
  width: 15px;
  margin-bottom: 15px;
}
.glb-feature20-item__access .access-heading {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 13px;
  display: block;
}
@media print, screen and (min-width:769px) {
  .glb-feature20-item__access {
    margin-top: 30px;
    font-size: 16px;
  }
  .glb-feature20-item__access::before {
    width: 25px;
    margin-bottom: 30px;
  }
  .glb-feature20-item__access .access-heading {
    font-size: 16px;
  }
}

.glb-feature20-item__link {
  line-height: 1;
  margin-top: 23px;
  font-size: 13px;
}
.glb-feature20-item__link .icon-newwin {
  border: 1px solid #000;
  color: #000;
  display: inline-block;
  padding: 10px 39px 10px 20px;
  position: relative;
}
.glb-feature20-item__link .icon-newwin::before {
  content: "";
  display: block;
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  z-index: -1;
  transition: opacity 0.2s ease;
}
.glb-feature20-item__link .icon-newwin::after {
  background: url(../img/icon_arrow_d.png) no-repeat right center/13px 6px;
  content: "";
  display: block;
  width: 13px;
  height: 6px;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
}
@media print, screen and (min-width:769px) {
  .glb-feature20-item__link {
    margin-top: 38px;
    font-size: 16px;
  }
  .glb-feature20-item__link .icon-newwin {
    padding-right: 48px;
  }
  .glb-feature20-item__link .icon-newwin::after {
    background-size: 17px 8px;
    right: 20px;
    width: 17px;
    height: 8px;
  }
  .glb-feature20-item__link .icon-newwin:hover::before {
    opacity: 0.7;
  }
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature20-item__link .icon-newwin::before {
    right: -3px;
    bottom: -3px;
  }
}

/* IE11 */
@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, .glb-feature20-item__link .icon-newwin {
    padding-top: 13px;
    padding-bottom: 7px;
  }
}
.glb-feature20-item__accessList > li {
  margin-bottom: 2em;
}
.glb-feature20-item__accessList > li .accessList-heading {
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.3;
}
.glb-feature20-item__accessList > li .accessList-link {
  margin-top: 0.7em;
}
.glb-feature20-item__accessList > li .accessList-link .icon-newwin {
  background: url(../img/icon_newwin.png) no-repeat right top 1px/8px auto;
  padding-right: 15px;
}
.glb-feature20-item__accessList > li .accessList-how {
  font-size: 1.3rem;
  line-height: 1.3;
}
@media print, screen and (min-width:769px) {
  .glb-feature20-item__accessList {
    margin-top: 20px;
  }
  .glb-feature20-item__accessList > li .accessList-link .icon-newwin {
    padding-right: 20px;
    background-size: 11px auto;
  }
  .glb-feature20-item__accessList > li .accessList-link a:hover {
    color: #ccbfaf;
  }
  .glb-feature20-item__accessList > li .accessList-how {
    font-size: 16px;
  }
}

.glb-feature20__fin {
  color: #cc3333;
  font-size: 12px;
  border: 1px solid #cc3333;
  padding: 7px;
  text-align: center;
  margin: 20px 0;
}
@media print, screen and (min-width:769px) {
  .glb-feature20__fin {
    font-size: 14px;
  }
}

.glb-feature20__note {
  color: #cc3333;
  font-size: 12px;
  margin: 20px 0;
  line-height: 1.5;
  text-indent: -1em;
  padding-left: 1em;
}
@media print, screen and (min-width:769px) {
  .glb-feature20__note {
    font-size: 14px;
  }
}

/* --------------------------------------------------------------------
  #banner
 */
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature20-bnr {
    margin-top: 26.7vw;
    margin-bottom: 18.7vw;
    padding: 0 10vw;
  }
  .glb-feature20-bnr li + li {
    margin-top: 5.3vw;
  }
  .glb-feature20-bnr img {
    width: 100%;
    height: auto;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature20-bnr {
    display: flex;
    justify-content: center;
    margin-top: 150px;
    margin-bottom: 100px;
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  .glb-feature20-bnr li {
    width: 450px;
  }
  .glb-feature20-bnr li + li {
    margin-left: 100px;
  }
}

/* --------------------------------------------------------------------
  #access
 */
.glb-access20 {
  padding: 13.3vw 0 0;
}
@media print, screen and (min-width:769px) {
  .glb-access20 {
    padding: 116px 0 0;
  }
}

.glb-access20-container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-access20-container {
    padding: 0 10vw 2vw;
  }
  .glb-access20-container::before {
    content: "";
    display: block;
    background: #f6f6f6;
    width: 42.4vw;
    height: 28vw;
    position: absolute;
    left: 0;
    top: -13.3vw;
  }
}
@media print, screen and (min-width:769px) {
  .glb-access20-container {
    width: 1000px;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 55px;
  }
  .glb-access20-container::before {
    content: "";
    display: block;
    background: #f6f6f6;
    width: 320px;
    height: 210px;
    position: absolute;
    left: -20px;
    top: -117px;
  }
}

.glb-access20-box1 {
  position: relative;
  z-index: 2;
}
@media print, screen and (min-width:769px) {
  .glb-access20-box1 {
    width: 400px;
  }
}

@media print, screen and (min-width:769px) {
  .glb-access20-pict {
    width: 600px;
  }
}

.glb-access20__title .title-en,
.glb-access20__title .title-jp {
  display: block;
}
.glb-access20__title .title-en {
  margin-bottom: 3.3vw;
}
@media print, screen and (min-width:769px) {
  .glb-access20__title .title-en {
    margin-bottom: 13px;
  }
}
.glb-access20__title .title-jp {
  font-family: "FOT-筑紫B丸ゴシック Std B", sans-serif;
  margin-bottom: 0.8vw;
  font-size: 17pxl;
  letter-spacing: 0.075em;
  line-height: 1.8;
}
@media print, screen and (min-width:769px) {
  .glb-access20__title .title-jp {
    line-height: 1.5;
    margin-bottom: 16px;
    font-size: 26px;
  }
}

.glb-access20__text {
  font-size: 13px;
  line-height: 1.75;
}
@media print, screen and (min-width:769px) {
  .glb-access20__text {
    width: 400px;
    font-size: 16px;
  }
}

.glb-access20__photo img {
  width: 100%;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-access20__photo img {
    width: 100%;
  }
}
@media print, screen and (min-width:769px) {
  .glb-access20__photo {
    width: 600px;
    padding-left: 10px;
    margin-top: -100px;
  }
  .glb-access20__photo img {
    max-width: 571px;
  }
}

.glb-access20-btn-container {
  background: #f5f5f5;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-access20-btn-container {
    padding-top: 5.3vw;
  }
}
@media print, screen and (min-width:769px) {
  .glb-access20-btn-container {
    padding-top: 30px;
  }
}

.glb-access20__btn {
  margin-bottom: 5.3vw;
}
.glb-access20__btn .btn-inner {
  padding: 15px;
  font-size: 13px;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-access20__btn {
    margin-left: 10.1vw;
    margin-right: 10.1vw;
  }
}
@media print, screen and (min-width:769px) {
  .glb-access20__btn {
    margin-bottom: 30px;
  }
  .glb-access20__btn .btn-inner {
    font-size: 18px;
    padding: 28px;
  }
}

/* ==========================================================================

   #特集 - 旅のしおり（2022 Renewal version）
   サイト内共通

 */
/* --------------------------------------------------------------------
  #トビラ部分
 */
.glb-feature22-head {
  position: relative;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature22-head {
    background: #f5f5f5;
    margin: 60vw 0 0 10vw;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature22-head {
    padding-top: 7.1vw;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature22-head__pict {
    position: absolute;
    width: 80vw;
    height: 43vw;
    z-index: 0;
    top: -38vw;
    left: -10vw;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature22-head__pict {
    position: absolute;
    top: 14.2vw;
    width: 50%;
  }
}
@media screen and (min-width: 1400px) {
  .glb-feature22-head__pict {
    width: 700px;
    right: 50%;
  }
}

.glb-feature22-head-container {
  position: relative;
  background-color: #efefef;
}
.glb-feature22-head-container .container-inner {
  background-repeat: repeat;
  background-size: 200px 200px;
  background-position: center center;
  padding: 1px;
}
.glb-feature22-head-container .container-inner2 {
  background-color: #efefef;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature22-head-container {
    margin: 0;
    padding: 20px;
  }
  .glb-feature22-head-container .container-inner2 {
    padding: 18px;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature22-head-container {
    z-index: 2;
    /*width: 35.7vw;*/
    width: 500px;
    margin: 0 14.3vw 0 auto;
    margin-right: calc((100% - 960px) / 2);
    padding: 10px;
  }
  .glb-feature22-head-container .container-inner2 {
    padding: 40px 30px;
  }
}

.glb-feature22-head__shoulder {
  margin-bottom: 20px;
}
.glb-feature22-head__shoulder .shoulder1,
.glb-feature22-head__shoulder .shoulder2 {
  display: inline-block;
}
.glb-feature22-head__shoulder .shoulder1 {
  font-family: "FOT-筑紫B丸ゴシック Std B", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.075em;
  margin-right: 7px;
}
.glb-feature22-head__shoulder .shoulder2 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 1rem;
}
@media print, screen and (min-width:769px) {
  .glb-feature22-head__shoulder {
    margin-bottom: 1.5vw;
  }
  .glb-feature22-head__shoulder .shoulder1 {
    font-size: 1.4rem;
    margin-right: 10px;
  }
  .glb-feature22-head__shoulder .shoulder2 {
    font-size: 1.6rem;
  }
}

.glb-feature22-head__title {
  font-family: "FOT-筑紫B丸ゴシック Std B", sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0.075em;
  line-height: 1.3;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
}
.glb-feature22-head__title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 15px;
  height: 1px;
  background: #000;
}
.glb-feature22-head__title a {
  color: #000;
  font-weight: normal !important;
}
.glb-feature22-head__title span {
  display: inline-block;
  font-size: 1.2rem;
  transform: scaleX(0.95);
  transform-origin: left center;
}
@media print, screen and (min-width:769px) {
  .glb-feature22-head__title {
    font-size: 3.2rem;
    margin-bottom: 1.4vw;
    padding-bottom: 2.4vw;
    line-height: 1.25;
  }
  .glb-feature22-head__title::after {
    width: 30px;
  }
  .glb-feature22-head__title span {
    font-size: 1.8rem;
  }
}

.glb-feature22-head__text {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 15px;
}
@media print, screen and (min-width:769px) {
  .glb-feature22-head__text {
    font-size: 1.6rem;
    line-height: 1.75;
    margin-bottom: 1.4vw;
  }
}

.glb-feature22-head__anchor > li {
  background: url(../img/icon_arrow_b.png) no-repeat left 6px/10px auto;
  font-size: 1.3rem;
  margin-bottom: 13px;
  padding: 2px 0 2px 14px;
  /*width: 50%;*/
}
.glb-feature22-head__anchor > li a {
  font-weight: normal;
  line-height: 2rem;
}
@media print, screen and (min-width:769px) {
  .glb-feature22-head__anchor {
    margin-bottom: -2vw;
  }
  .glb-feature22-head__anchor > li {
    width: auto;
    background-position: left 4px;
    background-size: 17px auto;
    font-size: 1.6rem;
    margin-bottom: 1.2vw;
    padding: 2px 0 2px 26px;
  }
  .glb-feature22-head__anchor a:hover {
    color: #ccbfaf;
  }
}

.glb-feature22-head__note {
  position: relative;
  z-index: 2;
  text-align: right;
}
.glb-feature22-head__note .note-inner {
  display: inline-block;
  text-align: right;
  font-size: 1rem;
  line-height: 1.3;
  text-indent: -1em;
  padding-left: 1em;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature22-head__note {
    margin-top: 6px;
    text-align: right;
  }
  .glb-feature22-head__note .note-inner {
    text-align: left;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature22-head__note {
    width: 35.7vw;
    margin: 10px 14.3vw 0 auto;
    margin-right: calc((100% - 960px) / 2);
  }
  .glb-feature22-head__note .note-inner {
    font-size: 1.4rem;
  }
}

.glb-feature22-head__ribbon {
  position: absolute;
  z-index: 11;
  width: 30px;
  height: 38px;
  top: 0;
  background-color: #ccc;
  right: 30px;
}
.glb-feature22-head__ribbon::before, .glb-feature22-head__ribbon::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -12px;
}
.glb-feature22-head__ribbon::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 15px 0 0;
  border-color: #ccc transparent transparent transparent;
  left: 0;
}
.glb-feature22-head__ribbon::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 12px 0;
  border-color: transparent #ccc transparent transparent;
  right: 0;
}

/* --------------------------------------------------------------------
  #記事部分
 */
.glb-feature22-content {
  padding-top: 10.7vw;
  margin-bottom: 18.7vw;
}
@media print, screen and (min-width:769px) {
  .glb-feature22-content {
    padding-top: 7.1vw;
    margin-bottom: 7.1vw;
    width: 1120px;
    margin-left: auto;
    margin-right: auto;
  }
  .glb-feature22-content + * {
    margin-top: 150px;
  }
}

.glb-feature22-item {
  position: relative;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature22-item {
    margin-bottom: 21.3vw;
  }
  .glb-feature22-item:last-child {
    margin-bottom: 0;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature22-item {
    margin-bottom: 150px;
    padding-right: 660px;
  }
  .glb-feature22-item:last-child {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature22-item-head {
    padding-left: 10vw;
    padding-right: 10vw;
  }
}

.glb-feature22-item__num {
  text-align: left;
}
.glb-feature22-item__num svg {
  fill: #fd9a9b;
  vertical-align: top;
  height: 41px;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature22-item__num svg {
    height: 34px;
  }
}

.glb-feature22-item__title {
  font-family: "FOT-筑紫B丸ゴシック Std B", sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.075em;
  line-height: 1.2;
  margin-top: 17px;
}
@media print, screen and (min-width:769px) {
  .glb-feature22-item__title {
    font-size: 3rem;
    line-height: 1.4;
    margin-top: 26px;
  }
}

.glb-feature22-item__catch {
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 0.075em;
  line-height: 1.65;
  margin-top: 7px;
}
@media print, screen and (min-width:769px) {
  .glb-feature22-item__catch {
    font-size: 2rem;
    line-height: 1.8;
    margin-top: 13px;
  }
}
.glb-feature22-item__catch .tsume {
  letter-spacing: -0.025em;
}

.glb-feature22-item__pict {
  margin: 15px 0;
  padding: 0 10vw;
}
@media print, screen and (min-width:769px) {
  .glb-feature22-item__pict {
    margin: 0;
    padding: 0;
    position: absolute;
    right: 60px;
    top: 72px;
    width: 500px;
  }
}
.glb-feature22-item__pict .pict-caption {
  font-size: 1.3rem;
  letter-spacing: 0.025em;
  line-height: 1.4;
  margin: 30px -5vw 0;
  padding: 14px 5vw;
  position: relative;
}
.glb-feature22-item__pict .pict-caption::before {
  background: url(../img/icon_camera.png) no-repeat left top/30px auto;
  content: "";
  display: block;
  width: 30px;
  height: 28px;
  position: absolute;
  left: 5vw;
  top: -20px;
}
@media print, screen and (min-width:769px) {
  .glb-feature22-item__pict .pict-caption {
    font-size: 1.6rem;
    line-height: 1.625;
    margin: 22px 0 0;
    padding: 0 0 0 51px;
  }
  .glb-feature22-item__pict .pict-caption::before {
    background-size: 40px auto;
    width: 40px;
    height: 38px;
    left: 0;
    top: -9px;
  }
}
.glb-feature22-item__pict .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.glb-feature22-item__pict .slick-dots {
  height: auto;
  position: static;
}
.glb-feature22-item__pict .slick-dots li {
  vertical-align: top;
}
.glb-feature22-item__pict .slick-dots li button:before {
  border: none;
}
.glb-feature22-item__pict .slick-dots li:nth-last-child(1):first-child,
.glb-feature22-item__pict .slick-dots li:nth-last-child(1):first-child ~ li {
  display: none;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature22-item__pict .slick-dots {
    margin-top: 15px;
  }
  .glb-feature22-item__pict .slick-dots li {
    margin: 0 20px;
  }
  .glb-feature22-item__pict .slick-dots li button:before {
    height: 15px;
    width: 15px;
    top: 2px;
    left: 2px;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature22-item__pict .slick-dots {
    margin-top: 25px;
  }
  .glb-feature22-item__pict .slick-dots li {
    margin: 0 8px;
  }
}
.glb-feature22-item__pict .slick-prev,
.glb-feature22-item__pict .slick-next {
  background: none;
  width: 13px;
  height: 22px;
  top: calc((80vw - 22px) / 2);
}
.glb-feature22-item__pict .slick-prev::before, .glb-feature22-item__pict .slick-prev::after,
.glb-feature22-item__pict .slick-next::before,
.glb-feature22-item__pict .slick-next::after {
  background-color: #fd9a9b;
  border-radius: 2px;
  content: "";
  display: block;
  width: 3px;
  height: 16px;
  opacity: 0.7;
  position: absolute;
  left: 50%;
}
.glb-feature22-item__pict .slick-prev::before,
.glb-feature22-item__pict .slick-next::before {
  top: 0;
}
.glb-feature22-item__pict .slick-prev::after,
.glb-feature22-item__pict .slick-next::after {
  bottom: 0;
}
@media print, screen and (min-width:769px) {
  .glb-feature22-item__pict .slick-prev,
  .glb-feature22-item__pict .slick-next {
    width: 25px;
    height: 43px;
    top: 228px;
  }
  .glb-feature22-item__pict .slick-prev::before, .glb-feature22-item__pict .slick-prev::after,
  .glb-feature22-item__pict .slick-next::before,
  .glb-feature22-item__pict .slick-next::after {
    border-radius: 3px;
    width: 5px;
    height: 31px;
  }
}
.glb-feature22-item__pict .slick-prev {
  left: -7.2vw;
}
.glb-feature22-item__pict .slick-prev::before {
  transform: translate(-50%, -2px) rotate(45deg);
}
.glb-feature22-item__pict .slick-prev::after {
  transform: translate(-50%, 2px) rotate(-45deg);
}
@media print, screen and (min-width:769px) {
  .glb-feature22-item__pict .slick-prev {
    left: -50px;
  }
  .glb-feature22-item__pict .slick-prev::before {
    transform: translate(-50%, -3px) rotate(45deg);
  }
  .glb-feature22-item__pict .slick-prev::after {
    transform: translate(-50%, 3px) rotate(-45deg);
  }
}
.glb-feature22-item__pict .slick-next {
  right: -7.2vw;
}
.glb-feature22-item__pict .slick-next::before {
  transform: translate(-50%, -2px) rotate(-45deg);
}
.glb-feature22-item__pict .slick-next::after {
  transform: translate(-50%, 2px) rotate(45deg);
}
@media print, screen and (min-width:769px) {
  .glb-feature22-item__pict .slick-next {
    right: -50px;
  }
  .glb-feature22-item__pict .slick-next::before {
    transform: translate(-50%, -3px) rotate(-45deg);
  }
  .glb-feature22-item__pict .slick-next::after {
    transform: translate(-50%, 3px) rotate(45deg);
  }
}

.glb-feature22-item-container {
  margin-top: 20px;
  padding-left: 10vw;
  padding-right: 10vw;
}
@media print, screen and (min-width:769px) {
  .glb-feature22-item-container {
    margin-top: 26px;
    padding-left: 0;
    padding-right: 0;
  }
}

.glb-feature22-item__text {
  font-size: 1.3rem;
  letter-spacing: 0.025em;
  line-height: 1.65;
  margin-bottom: 11px;
}
@media print, screen and (min-width:769px) {
  .glb-feature22-item__text {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}

.glb-feature22-item__note {
  font-size: 1.1rem;
  margin-top: 20px;
  margin-bottom: 1.5em;
  line-height: 1.65;
}
.glb-feature22-item__note > li {
  padding-left: 1.1em;
  position: relative;
}
.glb-feature22-item__note > li::before {
  content: "※";
  position: absolute;
  left: 0;
}
.glb-feature22-item__note p {
  margin-bottom: 0.75em;
}
.glb-feature22-item__note a {
  color: #000;
  text-decoration: underline;
  font-weight: normal;
}
@media print, screen and (min-width:769px) {
  .glb-feature22-item__note {
    font-size: 1.4rem;
    margin-top: 25px;
  }
  .glb-feature22-item__note > li {
    padding-left: 1.2em;
  }
  .glb-feature22-item__note a:hover {
    text-decoration: none;
  }
}

.glb-feature22-item__periodset {
  margin-top: 11px;
}
.glb-feature22-item__periodset .periodset__title,
.glb-feature22-item__periodset .periodset__text {
  line-height: 1.65;
}
.glb-feature22-item__periodset .periodset__title {
  font-size: 1.3rem;
}
.glb-feature22-item__periodset .periodset__text {
  font-size: 1.1rem;
}
@media print, screen and (min-width:769px) {
  .glb-feature22-item__periodset {
    margin-top: 10px;
  }
  .glb-feature22-item__periodset .periodset__title {
    font-size: 1.6rem;
  }
  .glb-feature22-item__periodset .periodset__text {
    font-size: 1.4rem;
  }
}

.glb-feature22-item__period {
  margin-top: 11px;
  font-size: 1.1rem;
  line-height: 1.65;
}
@media print, screen and (min-width:769px) {
  .glb-feature22-item__period {
    margin-top: 10px;
    font-size: 1.4rem;
  }
}

.glb-feature22-item__access {
  margin-top: 15px;
  font-size: 1.3rem;
  line-height: 1.65;
}
.glb-feature22-item__access::before {
  content: "";
  display: block;
  background: #999;
  height: 1px;
  width: 15px;
  margin-bottom: 15px;
}
.glb-feature22-item__access .access-heading {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 1.3rem;
  display: block;
}
@media print, screen and (min-width:769px) {
  .glb-feature22-item__access {
    margin-top: 30px;
    font-size: 1.6rem;
  }
  .glb-feature22-item__access::before {
    width: 25px;
    margin-bottom: 30px;
  }
  .glb-feature22-item__access .access-heading {
    font-size: 1.6rem;
  }
}

.glb-feature22-item__insta {
  margin-top: 20px;
  font-size: 1.3rem;
}
.glb-feature22-item__insta > a {
  display: block;
  color: #000;
  font-weight: normal;
  text-decoration: underline;
  padding: 6px 0 6px 30px;
  background: url(../img/icon_insta_col.png) no-repeat left center/20px auto;
}
@media print, screen and (min-width:769px) {
  .glb-feature22-item__insta {
    font-size: 1.6rem;
  }
  .glb-feature22-item__insta > a {
    background-size: 30px auto;
    padding: 8px 0 8px 40px;
  }
  .glb-feature22-item__insta:hover > a {
    text-decoration: none;
  }
}

.glb-feature22-item-linkset {
  display: flex;
}
.glb-feature22-item-linkset .glb-feature22-item__link {
  margin-right: 15px;
}
.glb-feature22-item-linkset .glb-feature22-item__link:last-of-type {
  margin-right: 0;
}
@media print, screen and (min-width:769px) {
  .glb-feature22-item-linkset .glb-feature22-item__link {
    margin-right: 30px;
  }
}

.glb-feature22-item__link {
  line-height: 1;
  margin-top: 23px;
  font-size: 1.3rem;
  width: 38vw;
}
.glb-feature22-item__link .icon-newwin {
  display: block;
  border: 1px solid #000;
  color: #000;
  padding: 10px 30px 10px 12px;
  position: relative;
}
.glb-feature22-item__link .icon-newwin::before {
  content: "";
  display: block;
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  z-index: -1;
  transition: opacity 0.2s ease;
}
.glb-feature22-item__link .icon-newwin::after {
  background: url(../img/icon_arrow_d.png) no-repeat right center/12px 6px;
  content: "";
  display: block;
  width: 13px;
  height: 6px;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}
@media print, screen and (min-width:769px) {
  .glb-feature22-item__link {
    width: 180px;
    margin-top: 38px;
    font-size: 1.4rem;
  }
  .glb-feature22-item__link .icon-newwin {
    padding: 0 48px 0 20px;
    height: 36px;
    line-height: 0;
    display: flex;
    align-items: center;
  }
  .glb-feature22-item__link .icon-newwin::after {
    background-size: 13px 7px;
    right: 15px;
    width: 17px;
    height: 8px;
  }
  .glb-feature22-item__link .icon-newwin:hover::before {
    opacity: 0.7;
  }
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature22-item__link .icon-newwin::before {
    right: -3px;
    bottom: -3px;
  }
}

.glb-feature22-item__link.glb-feature22-item__link--map .icon-newwin::before {
  background-color: #ccbfaf;
}

/* IE11 */
/*
@media all and (-ms-high-contrast:none){
  *::-ms-backdrop, .glb-feature22-item__link .icon-newwin {
    padding-top: 13px;
    padding-bottom: 7px;
  }
}
*/
.glb-feature22-item__accessList > li {
  margin-bottom: 2em;
}
.glb-feature22-item__accessList > li .accessList-heading {
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.3;
}
.glb-feature22-item__accessList > li .accessList-link {
  margin-top: 0.7em;
}
.glb-feature22-item__accessList > li .accessList-link .icon-newwin {
  background: url(../img/icon_newwin.png) no-repeat right top 1px/8px auto;
  padding-right: 15px;
}
.glb-feature22-item__accessList > li .accessList-how {
  font-size: 1.3rem;
  line-height: 1.3;
}
@media print, screen and (min-width:769px) {
  .glb-feature22-item__accessList {
    margin-top: 20px;
  }
  .glb-feature22-item__accessList > li .accessList-link .icon-newwin {
    padding-right: 20px;
    background-size: 11px auto;
  }
  .glb-feature22-item__accessList > li .accessList-link a:hover {
    color: #ccbfaf;
  }
  .glb-feature22-item__accessList > li .accessList-how {
    font-size: 1.6rem;
  }
}

.glb-feature22__fin {
  color: #cc3333;
  font-size: 1.2rem;
  border: 1px solid #cc3333;
  padding: 7px;
  text-align: center;
  margin: 20px 0;
}
@media print, screen and (min-width:769px) {
  .glb-feature22__fin {
    font-size: 1.4rem;
  }
}

.glb-feature22__note {
  color: #cc3333;
  font-size: 1.2rem;
  margin: 20px 0;
  line-height: 1.5;
  text-indent: -1em;
  padding-left: 1em;
}
@media print, screen and (min-width:769px) {
  .glb-feature22__note {
    font-size: 1.4rem;
  }
}

/* --------------------------------------------------------------------
  #banner
 */
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature22-bnr {
    margin-top: 26.7vw;
    margin-bottom: 18.7vw;
    padding: 0 10vw;
  }
  .glb-feature22-bnr li + li {
    margin-top: 5.3vw;
  }
  .glb-feature22-bnr img {
    width: 100%;
    height: auto;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature22-bnr {
    display: flex;
    justify-content: center;
    margin-top: 150px;
    margin-bottom: 100px;
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  .glb-feature22-bnr li {
    width: 450px;
  }
  .glb-feature22-bnr li + li {
    margin-left: 100px;
  }
}

/* ==========================================================================

   #特集 - 旅のしおり（2023 Renewal version）
   サイト内共通

 */
.glb-feature23-head {
  position: relative;
  z-index: 10;
  /*margin-top: 130px;*/
  margin-bottom: 50px;
}
@media print, screen and (min-width:769px) {
  .glb-feature23-head {
    margin-top: 80px;
  }
}

.glb-feature23-head__heading {
  text-align: center;
  font-family: "FOT-筑紫B丸ゴシック Std B", sans-serif;
  font-size: 2.25rem;
  line-height: 1.5;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-feature-settings: "palt";
}
.glb-feature23-head__heading img {
  width: 35px;
  height: 2px;
}
.glb-feature23-head__heading span {
  display: block;
  margin: 0 10px;
}
.glb-feature23-head__heading strong {
  color: #ddd;
}
@media print, screen and (min-width:769px) {
  .glb-feature23-head__heading {
    font-size: 3.8rem;
    margin-bottom: 30px;
  }
  .glb-feature23-head__heading span {
    margin: 0 45px;
  }
  .glb-feature23-head__heading img {
    width: 75px;
    height: 3px;
  }
}

.glb-feature23-head__text {
  text-align: center;
  line-height: 2;
  font-size: 1.4rem;
  margin-bottom: 35px;
}
@media print, screen and (min-width:769px) {
  .glb-feature23-head__text {
    font-size: 1.8rem;
    margin-bottom: 55px;
  }
}

.glb-feature23-head-map {
  background-color: #f8f6f5;
  position: relative;
  padding: 35px 10vw;
}
.glb-feature23-head-map::before, .glb-feature23-head-map::after {
  content: "";
  position: absolute;
  display: block;
  height: 12px;
  width: 100%;
  left: 0;
}
.glb-feature23-head-map::before {
  background: url(../img/feature23_common/nami_top.png) repeat-x center top/contain;
  top: -12px;
}
.glb-feature23-head-map::after {
  background: url(../img/feature23_common/nami_bottom.png) repeat-x center top/contain;
  bottom: -12px;
}
@media print, screen and (min-width:769px) {
  .glb-feature23-head-map {
    padding: 30px 50px;
    width: 1150px;
    margin-left: auto;
    margin-right: auto;
  }
}

.glb-feature23-head-map__heading {
  text-align: center;
  font-size: 2.1rem;
  font-family: "FOT-筑紫B丸ゴシック Std B", sans-serif;
  line-height: 1.3;
  letter-spacing: 0.075em;
  margin-bottom: 20px;
}
.glb-feature23-head-map__heading > small {
  font-size: 1.3rem;
  color: #ddd;
  letter-spacing: 0.03em;
}
@media print, screen and (min-width:769px) {
  .glb-feature23-head-map__heading {
    margin-bottom: 15px;
    font-size: 3.2rem;
  }
  .glb-feature23-head-map__heading > small {
    font-size: 1.5rem;
  }
}

@media print, screen and (min-width:769px) {
  .glb-feature23-head-map-container {
    display: flex;
    justify-content: space-between;
  }
}

.glb-feature23-head-map__map {
  width: calc(80vw + 10px);
  margin-left: -10px;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature23-head-map__map {
    margin-bottom: 20px;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature23-head-map__map {
    width: 670px;
    margin-left: -20px;
  }
}

.glb-feature23-head__anchor {
  counter-reset: mapcount;
}
@media print, screen and (min-width:769px) {
  .glb-feature23-head__anchor {
    width: 355px;
  }
}

.glb-feature23-head__anchor > li {
  border-bottom: 2px dotted #4d3417;
  counter-increment: mapcount;
}
.glb-feature23-head__anchor > li a, .glb-feature23-head__anchor > li span {
  position: relative;
  display: block;
  padding: 12px 20px 12px 20px;
  background: url(../img/icon_arrow_b.png) no-repeat right 5px center/12px auto;
  font-size: 1.3rem;
}
.glb-feature23-head__anchor > li a::before, .glb-feature23-head__anchor > li span::before {
  position: absolute;
  left: 0;
  content: "0" counter(mapcount);
  color: #ddd;
}
.glb-feature23-head__anchor > li:last-child {
  border-bottom: none;
}
@media print, screen and (min-width:769px) {
  .glb-feature23-head__anchor > li a, .glb-feature23-head__anchor > li span {
    transition: 0.3s;
    padding: 20px 20px 20px 24px;
    font-size: 1.6rem;
    background-size: 17px auto;
    background-position: right 5px center;
  }
  .glb-feature23-head__anchor > li a:hover, .glb-feature23-head__anchor > li span:hover {
    opacity: 0.75;
  }
}

.glb-feature23-head__note {
  position: relative;
  z-index: 2;
  text-align: right;
}
.glb-feature23-head__note .note-inner {
  display: inline-block;
  text-align: right;
  font-size: 1rem;
  line-height: 1.3;
  text-indent: -1em;
  padding-left: 1em;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature23-head__note {
    margin-right: 5vw;
    margin-top: -15px;
  }
  .glb-feature23-head__note .note-inner {
    text-align: left;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature23-head__note {
    width: 1150px;
    margin-left: auto;
    margin-right: auto;
  }
  .glb-feature23-head__note .note-inner {
    font-size: 1.4rem;
  }
}

/***
  feature 23 コンテンツ
 */
.glb-feature23-content {
  padding-top: 10.7vw;
  margin-bottom: 18.7vw;
}
@media print, screen and (min-width:769px) {
  .glb-feature23-content {
    padding-top: 7.1vw;
    margin-bottom: 7.1vw;
    width: 1120px;
    margin-left: auto;
    margin-right: auto;
  }
  .glb-feature23-content + * {
    margin-top: 150px;
  }
}

.glb-feature23-item {
  position: relative;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature23-item {
    margin-bottom: 21.3vw;
  }
  .glb-feature23-item:last-child {
    margin-bottom: 0;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature23-item {
    margin-bottom: 150px;
    padding-right: 660px;
  }
  .glb-feature23-item:last-child {
    margin-bottom: 0;
  }
}

.glb-feature23-item__title {
  font-family: "FOT-筑紫B丸ゴシック Std B", sans-serif;
  position: relative;
  font-size: 2rem;
  letter-spacing: 0.075em;
  line-height: 1.3;
  display: flex;
  align-items: center;
}
.glb-feature23-item__title img {
  display: block;
  margin-right: 10px;
  width: 38px;
}
.glb-feature23-item__title > span {
  display: inline-block;
  padding-bottom: 5px;
}
.glb-feature23-item__title::after {
  content: "";
  position: absolute;
  display: block;
  width: calc(100% - 34px);
  height: 32px;
  background: url(../img/feature23_common/title_pict.png) no-repeat right bottom/auto 32px;
  bottom: 0;
  left: 48px;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature23-item__title {
    margin: 0 10vw 20px;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature23-item__title {
    font-size: 3rem;
    margin-bottom: 35px;
  }
  .glb-feature23-item__title img {
    width: 64px;
  }
  .glb-feature23-item__title > span {
    padding-bottom: 8px;
  }
  .glb-feature23-item__title::after {
    content: "";
    position: absolute;
    display: block;
    width: calc(100% - 55px);
    height: 49px;
    background: url(../img/feature23_common/title_pict.png) no-repeat right bottom/auto 49px;
    left: 75px;
    bottom: 0;
  }
}

.glb-feature23-item__catch {
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 0.075em;
  line-height: 1.65;
  margin-top: 7px;
}
.glb-feature23-item__catch span {
  background: linear-gradient(to bottom, transparent 0%, transparent 50%, #ddd 50%, #ddd 100%);
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature23-item__catch {
    margin: 0 10vw 30px;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature23-item__catch {
    font-size: 2rem;
    line-height: 1.8;
    margin-top: 13px;
  }
}

.glb-feature23-item__pict {
  position: relative;
  margin: 15px 0;
  padding: 0 10vw;
}
.glb-feature23-item__pict::before {
  content: "";
  position: absolute;
  display: block;
  width: 78px;
  height: 25px;
  background: url(../img/feature23_common/pict_tape.png) no-repeat center center/contain;
  z-index: 3;
  left: calc(50% - 39px);
  top: -10px;
}
.glb-feature23-item__pict::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 80vw;
  top: 0;
  left: 0;
  transform: rotate(4.2deg);
  background: url(../img/feature23_common/pict_bg.png) no-repeat center center/contain;
}
.glb-feature23-item__pict .pict-slide {
  position: relative;
  z-index: 2;
}
.glb-feature23-item__pict .slide-item {
  background-color: #fff;
  padding: 4px;
  border: 2px solid #f2efed;
}
@media print, screen and (min-width:769px) {
  .glb-feature23-item__pict {
    margin: 0;
    padding: 0;
    position: absolute;
    right: 60px;
    top: 100px;
    width: 500px;
  }
  .glb-feature23-item__pict::before {
    width: 133px;
    height: 42px;
    left: calc(50% - 66px);
    top: -26px;
  }
  .glb-feature23-item__pict::after {
    width: 500px;
    height: 500px;
  }
  .glb-feature23-item__pict .slide-item {
    padding: 6px;
    border: 3px solid #f2efed;
  }
}

/**
  slide slick item
 */
.glb-feature23-item__pict .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.glb-feature23-item__pict .slick-dots {
  height: auto;
  position: static;
}
.glb-feature23-item__pict .slick-dots li {
  vertical-align: top;
}
.glb-feature23-item__pict .slick-dots li button:before {
  border: none;
  background-color: #eee;
}
.glb-feature23-item__pict .slick-dots li.slick-acitive button::before {
  background-color: #ccc;
}
.glb-feature23-item__pict .slick-dots li:nth-last-child(1):first-child,
.glb-feature23-item__pict .slick-dots li:nth-last-child(1):first-child ~ li {
  display: none;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature23-item__pict .slick-dots {
    margin-top: 15px;
  }
  .glb-feature23-item__pict .slick-dots li {
    margin: 0 5px;
  }
  .glb-feature23-item__pict .slick-dots li button:before {
    height: 12px;
    width: 12px;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature23-item__pict .slick-dots {
    margin-top: 25px;
  }
  .glb-feature23-item__pict .slick-dots li {
    margin: 0 8px;
  }
}
.glb-feature23-item__pict .slick-prev,
.glb-feature23-item__pict .slick-next {
  background: none;
  width: 13px;
  height: 22px;
  top: calc((80vw - 22px) / 2);
}
.glb-feature23-item__pict .slick-prev::before, .glb-feature23-item__pict .slick-prev::after,
.glb-feature23-item__pict .slick-next::before,
.glb-feature23-item__pict .slick-next::after {
  opacity: 1;
  background-color: #ddd;
  border-radius: 2px;
  content: "";
  display: block;
  width: 3px;
  height: 16px;
  position: absolute;
  left: 50%;
}
.glb-feature23-item__pict .slick-prev::before,
.glb-feature23-item__pict .slick-next::before {
  top: 0;
}
.glb-feature23-item__pict .slick-prev::after,
.glb-feature23-item__pict .slick-next::after {
  bottom: -1px;
}
@media print, screen and (min-width:769px) {
  .glb-feature23-item__pict .slick-prev,
  .glb-feature23-item__pict .slick-next {
    width: 25px;
    height: 43px;
    top: 228px;
  }
  .glb-feature23-item__pict .slick-prev::before, .glb-feature23-item__pict .slick-prev::after,
  .glb-feature23-item__pict .slick-next::before,
  .glb-feature23-item__pict .slick-next::after {
    border-radius: 3px;
    width: 5px;
    height: 31px;
  }
}
.glb-feature23-item__pict .slick-prev {
  left: -7.2vw;
}
.glb-feature23-item__pict .slick-prev::before {
  transform: translate(-50%, -2px) rotate(45deg);
}
.glb-feature23-item__pict .slick-prev::after {
  transform: translate(-50%, 2px) rotate(-45deg);
}
@media print, screen and (min-width:769px) {
  .glb-feature23-item__pict .slick-prev {
    left: -50px;
  }
  .glb-feature23-item__pict .slick-prev::before {
    transform: translate(-50%, -3px) rotate(45deg);
  }
  .glb-feature23-item__pict .slick-prev::after {
    transform: translate(-50%, 3px) rotate(-45deg);
  }
}
.glb-feature23-item__pict .slick-next {
  right: -7.2vw;
}
.glb-feature23-item__pict .slick-next::before {
  transform: translate(-50%, -2px) rotate(-45deg);
}
.glb-feature23-item__pict .slick-next::after {
  transform: translate(-50%, 2px) rotate(45deg);
}
@media print, screen and (min-width:769px) {
  .glb-feature23-item__pict .slick-next {
    right: -50px;
  }
  .glb-feature23-item__pict .slick-next::before {
    transform: translate(-50%, -3px) rotate(-45deg);
  }
  .glb-feature23-item__pict .slick-next::after {
    transform: translate(-50%, 3px) rotate(45deg);
  }
}

.glb-feature23-item-container {
  margin-top: 20px;
  padding-left: 10vw;
  padding-right: 10vw;
}
@media print, screen and (min-width:769px) {
  .glb-feature23-item-container {
    margin-top: 26px;
    padding-left: 0;
    padding-right: 0;
  }
}

.glb-feature23-item-info {
  position: relative;
  margin-top: 50px;
  padding: 10px 15px 20px;
  background: url(../img/feature23_common/note_line.png) repeat left top/15px auto;
}
.glb-feature23-item-info::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 24px;
  top: -24px;
  left: 0;
  background: url(../img/feature23_common/note.png) repeat-x left top/21px auto;
}
@media print, screen and (min-width:769px) {
  .glb-feature23-item-info {
    margin-top: 50px;
    padding: 25px 28px 28px;
    background-size: 24px auto;
  }
  .glb-feature23-item-info::before {
    height: 22px;
    top: -22px;
    background-size: 24px auto;
  }
}

.glb-feature23-item__text {
  margin-bottom: 11px;
}
.glb-feature23-item__text > p {
  position: relative;
  line-height: 2.5;
  font-size: 1.3rem;
  letter-spacing: 0.025em;
  background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%), linear-gradient(180deg, #eee 2px, transparent 2px); /* 点線2の色と太さ */
  background-size: 4px 100%, 100% 2.49em; /* 点線2のサイズ */
}
.glb-feature23-item__text > p::before, .glb-feature23-item__text > p::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  left: 0;
  top: 0;
}
.glb-feature23-item__text > p::after {
  top: auto;
  bottom: 0;
}
@media print, screen and (min-width:769px) {
  .glb-feature23-item__text {
    margin-bottom: 30px;
  }
  .glb-feature23-item__text > p {
    font-size: 1.6rem;
    background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%), linear-gradient(180deg, #eee 2px, transparent 2px); /* 点線2の色と太さ */
    background-size: 4px 100%, 100% 2.5em; /* 点線2のサイズ */
  }
}

.glb-feature23-item__periodset {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.glb-feature23-item__periodset dt, .glb-feature23-item__periodset dd {
  line-height: 1.65;
}
.glb-feature23-item__periodset dt {
  font-size: 1.3rem;
  font-weight: bold;
  text-align: right;
  width: 50px;
  white-space: nowrap;
}
.glb-feature23-item__periodset dt span {
  display: inline-block;
  width: 12px;
  margin-right: 0.5em;
}
.glb-feature23-item__periodset dt span img {
  padding-top: 4px;
  vertical-align: top;
}
.glb-feature23-item__periodset dd {
  font-size: 1.25rem;
  width: calc(100% - 60px);
}
@media print, screen and (min-width:769px) {
  .glb-feature23-item__periodset dt {
    font-size: 1.6rem;
    width: 60px;
  }
  .glb-feature23-item__periodset dt span {
    width: 20px;
  }
  .glb-feature23-item__periodset dt span img {
    padding-top: 1px;
  }
  .glb-feature23-item__periodset dd {
    font-size: 1.4rem;
    width: calc(100% - 80px);
  }
}

.glb-feature23-item__period {
  font-size: 1.25rem;
  line-height: 1.65;
}
@media print, screen and (min-width:769px) {
  .glb-feature23-item__period {
    font-size: 1.4rem;
  }
}

.glb-feature23-item__periodset + .glb-feature23-item__period {
  margin-top: 11px;
}
@media print, screen and (min-width:769px) {
  .glb-feature23-item__periodset + .glb-feature23-item__period {
    margin-top: 20px;
  }
}

.glb-feature23-item__access {
  font-size: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.glb-feature23-item__access dt {
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 1.5;
  width: 50px;
}
.glb-feature23-item__access dd {
  padding-top: 1px;
  font-size: 1.1rem;
  line-height: 1.5;
  width: calc(100% - 60px);
}
@media print, screen and (min-width:769px) {
  .glb-feature23-item__access {
    font-size: 1.6rem;
  }
  .glb-feature23-item__access dt {
    font-size: 1.6rem;
    width: 55px;
  }
  .glb-feature23-item__access dd {
    padding-top: 2px;
    width: calc(100% - 80px);
    font-size: 1.4rem;
  }
}

.glb-feature23-item__periodset + .glb-feature23-item__access,
.glb-feature23-item__period + .glb-feature23-item__access {
  margin-top: 15px;
}
@media print, screen and (min-width:769px) {
  .glb-feature23-item__periodset + .glb-feature23-item__access,
  .glb-feature23-item__period + .glb-feature23-item__access {
    margin-top: 20px;
  }
}

.glb-feature23-item-linkset {
  display: flex;
}
.glb-feature23-item-linkset > li {
  line-height: 1;
  margin-top: 23px;
  width: 38vw;
  margin-right: 15px;
}
.glb-feature23-item-linkset > li > a, .glb-feature23-item-linkset > li > span {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #ddd;
  font-size: 1.25rem;
  color: #fff;
  border-radius: 5px;
  padding-left: 10px;
  height: 30px;
}
.glb-feature23-item-linkset > li > a::after, .glb-feature23-item-linkset > li > span::after {
  right: 10px;
  content: "";
  position: absolute;
  display: block;
  width: 6px;
  height: 11px;
  background: url(../img/icon_arrow_e.svg) no-repeat center center/contain;
}
.glb-feature23-item-linkset > li:last-child {
  margin-right: 0;
}
@media print, screen and (min-width:769px) {
  .glb-feature23-item-linkset > li {
    width: 198px;
    margin-right: 18px;
    font-size: 1.4rem;
  }
  .glb-feature23-item-linkset > li > a, .glb-feature23-item-linkset > li > span {
    height: 42px;
    font-size: 1.5rem;
    padding-left: 20px;
    border-radius: 10px;
  }
  .glb-feature23-item-linkset > li > a::after, .glb-feature23-item-linkset > li > span::after {
    right: 12px;
  }
}

/* ==========================================================================

   #特集 - 旅のしおり（2024 Renewal version）
   ※本年度よりおでかけマップ削除された
   サイト内共通

  202409 font-size をすべてpx指定に変更した

 */
.glb-feature24-head {
  position: relative;
  z-index: 10;
  /*margin-top: 130px;*/
  margin-bottom: 30px;
}
@media print, screen and (min-width:769px) {
  .glb-feature24-head {
    margin-top: 80px;
  }
}

.glb-feature24-head__heading {
  text-align: center;
  font-family: "FOT-筑紫B丸ゴシック Std B", sans-serif;
  font-size: 22.5px;
  line-height: 1.5;
  margin-bottom: 25px;
  font-feature-settings: "palt";
}
.glb-feature24-head__heading small {
  display: block;
  text-align: center;
  font-size: 13px;
  margin-bottom: 5px;
}
.glb-feature24-head__heading img {
  display: block;
  width: 35px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5px;
  fill: #ff0000;
}
.glb-feature24-head__heading span {
  margin: 0 10px;
}
.glb-feature24-head__heading strong {
  color: #ddd;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature24-head__heading {
    background: url(../img/feature24_common/ttl_line.png) repeat-x left bottom/6px auto;
    padding-bottom: 15px;
    margin: 0 5vw 25px;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature24-head__heading {
    font-size: 38px;
    margin-bottom: 30px;
  }
  .glb-feature24-head__heading small {
    font-size: 15px;
    margin-bottom: 5px;
  }
  .glb-feature24-head__heading span {
    display: inline-block;
    margin: 0 45px;
    padding: 0 30px 10px;
    background: url(../img/feature24_common/ttl_line.png) repeat-x left bottom/8px auto;
  }
}

.glb-feature24-head__text {
  text-align: center;
  line-height: 2;
  font-size: 14px;
  margin-bottom: 35px;
  padding: 0 20px;
}
@media print, screen and (min-width:769px) {
  .glb-feature24-head__text {
    font-size: 18px;
    margin-bottom: 55px;
  }
}

.glb-feature24-head-map {
  background-color: #f8f6f5;
  position: relative;
  padding: 35px 10vw;
}
.glb-feature24-head-map::before, .glb-feature24-head-map::after {
  content: "";
  position: absolute;
  display: block;
  height: 12px;
  width: 100%;
  left: 0;
}
.glb-feature24-head-map::before {
  background: url(../img/feature23_common/nami_top.png) repeat-x center top/contain;
  top: -12px;
}
.glb-feature24-head-map::after {
  background: url(../img/feature23_common/nami_bottom.png) repeat-x center top/contain;
  bottom: -12px;
}
@media print, screen and (min-width:769px) {
  .glb-feature24-head-map {
    padding: 30px 50px;
    width: 1150px;
    margin-left: auto;
    margin-right: auto;
  }
}

.glb-feature24-head-map__heading {
  text-align: center;
  font-size: 21px;
  font-family: "FOT-筑紫B丸ゴシック Std B", sans-serif;
  line-height: 1.3;
  letter-spacing: 0.075em;
  margin-bottom: 20px;
}
.glb-feature24-head-map__heading > small {
  font-size: 13px;
  color: #ddd;
  letter-spacing: 0.03em;
}
@media print, screen and (min-width:769px) {
  .glb-feature24-head-map__heading {
    margin-bottom: 15px;
    font-size: 32px;
  }
  .glb-feature24-head-map__heading > small {
    font-size: 15px;
  }
}

@media print, screen and (min-width:769px) {
  .glb-feature24-head-map-container {
    display: flex;
    justify-content: space-between;
  }
}

.glb-feature24-head-map__map {
  width: calc(80vw + 10px);
  margin-left: -10px;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature24-head-map__map {
    margin-bottom: 20px;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature24-head-map__map {
    width: 670px;
    margin-left: -20px;
  }
}

.glb-feature24-head__anchor {
  counter-reset: mapcount;
}
@media print, screen and (min-width:769px) {
  .glb-feature24-head__anchor {
    width: 355px;
  }
}

.glb-feature24-head__anchor > li {
  border-bottom: 2px dotted #4d3417;
  counter-increment: mapcount;
}
.glb-feature24-head__anchor > li a, .glb-feature24-head__anchor > li span {
  position: relative;
  display: block;
  padding: 12px 20px 12px 20px;
  background: url(../img/icon_arrow_b.png) no-repeat right 5px center/12px auto;
  font-size: 13px;
}
.glb-feature24-head__anchor > li a::before, .glb-feature24-head__anchor > li span::before {
  position: absolute;
  left: 0;
  content: "0" counter(mapcount);
  color: #ddd;
}
.glb-feature24-head__anchor > li:last-child {
  border-bottom: none;
}
@media print, screen and (min-width:769px) {
  .glb-feature24-head__anchor > li a, .glb-feature24-head__anchor > li span {
    transition: 0.3s;
    padding: 20px 20px 20px 24px;
    font-size: 16px;
    background-size: 17px auto;
    background-position: right 5px center;
  }
  .glb-feature24-head__anchor > li a:hover, .glb-feature24-head__anchor > li span:hover {
    opacity: 0.75;
  }
}

.glb-feature24-head__note {
  position: relative;
  z-index: 2;
  text-align: right;
}
.glb-feature24-head__note .note-inner {
  display: inline-block;
  text-align: right;
  font-size: 10px;
  line-height: 1.3;
  text-indent: -1em;
  padding-left: 1em;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature24-head__note {
    margin-right: 3vw;
    margin-bottom: 15vw;
    margin-top: -15vw;
  }
  .glb-feature24-head__note .note-inner {
    text-align: left;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature24-head__note {
    width: 1150px;
    margin-left: auto;
    margin-right: auto;
  }
  .glb-feature24-head__note .note-inner {
    font-size: 14px;
  }
}

/***
  feature24 コンテンツ
 */
.glb-feature24-content {
  padding-top: 10.7vw;
  margin-bottom: 18.7vw;
}
@media print, screen and (min-width:769px) {
  .glb-feature24-content {
    padding-top: 7.1vw;
    margin-bottom: 7.1vw;
    width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  .glb-feature24-content + * {
    margin-top: 150px;
  }
}

.glb-feature24-item {
  position: relative;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature24-item {
    margin-bottom: 21.3vw;
  }
  .glb-feature24-item:last-child {
    margin-bottom: 0;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature24-item {
    margin-bottom: 150px;
    padding-right: 600px;
  }
  .glb-feature24-item:last-child {
    margin-bottom: 0;
  }
}

.glb-feature24-item__title {
  font-family: "FOT-筑紫B丸ゴシック Std B", sans-serif;
  position: relative;
  font-size: 20px;
  letter-spacing: 0.075em;
  line-height: 1.3;
  display: flex;
  border-bottom: 1px solid #000;
  padding-bottom: 4px;
}
.glb-feature24-item__title::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  bottom: -4px;
}
.glb-feature24-item__title img {
  display: block;
  width: 45px;
  height: 30px;
}
.glb-feature24-item__title > span {
  display: inline-block;
  padding-top: 6px;
  margin-left: -6px;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature24-item__title {
    margin: 0 10vw 20px;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature24-item__title {
    font-size: 30px;
    margin-bottom: 35px;
    padding-bottom: 8px;
  }
  .glb-feature24-item__title img {
    width: 90px;
    height: 60px;
  }
  .glb-feature24-item__title > span {
    padding-top: 15px;
    margin-left: -10px;
  }
}

.glb-feature24-item__catch {
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.075em;
  line-height: 1.65;
  margin-top: 7px;
}
.glb-feature24-item__catch span {
  background: linear-gradient(to bottom, transparent 0%, transparent 50%, #ddd 50%, #ddd 100%);
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature24-item__catch {
    margin: 0 10vw 25px;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature24-item__catch {
    font-size: 20px;
    line-height: 1.8;
    margin-top: 13px;
  }
}

.glb-feature24-item__pict {
  position: relative;
  margin: 15px 0;
  padding: 0 10vw;
}
.glb-feature24-item__pict .pict-slide {
  position: relative;
  z-index: 2;
}
.glb-feature24-item__pict .slide-item {
  background-color: #fff;
  border: 1px solid #4d3417;
}
@media print, screen and (min-width:769px) {
  .glb-feature24-item__pict {
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 500px;
  }
}

/**
  slide slick item
 */
.glb-feature24-item__pict .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.glb-feature24-item__pict .slick-dots {
  height: auto;
  position: static;
}
.glb-feature24-item__pict .slick-dots li {
  vertical-align: top;
}
.glb-feature24-item__pict .slick-dots li button:before {
  border: none;
  background-color: #eee;
}
.glb-feature24-item__pict .slick-dots li.slick-acitive button::before {
  background-color: #ccc;
}
.glb-feature24-item__pict .slick-dots li:nth-last-child(1):first-child,
.glb-feature24-item__pict .slick-dots li:nth-last-child(1):first-child ~ li {
  display: none;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .glb-feature24-item__pict .slick-dots {
    margin-top: 15px;
  }
  .glb-feature24-item__pict .slick-dots li {
    margin: 0 5px;
  }
  .glb-feature24-item__pict .slick-dots li button:before {
    height: 12px;
    width: 12px;
  }
}
@media print, screen and (min-width:769px) {
  .glb-feature24-item__pict .slick-dots {
    margin-top: 25px;
  }
  .glb-feature24-item__pict .slick-dots li {
    margin: 0 8px;
  }
}
.glb-feature24-item__pict .slick-prev,
.glb-feature24-item__pict .slick-next {
  background: none;
  width: 40px;
  height: 40px;
  top: calc((80vw - 40px) / 2);
  background: url(../img/feature24_common/ic_prev_24.svg) no-repeat center center/10px auto;
}
@media print, screen and (min-width:769px) {
  .glb-feature24-item__pict .slick-prev,
  .glb-feature24-item__pict .slick-next {
    width: 25px;
    height: 43px;
    top: 228px;
    background-size: 20px auto;
  }
}
.glb-feature24-item__pict .slick-prev {
  left: -40px;
}
@media print, screen and (min-width:769px) {
  .glb-feature24-item__pict .slick-prev {
    left: -42px;
  }
}
.glb-feature24-item__pict .slick-next {
  right: -40px;
  background-image: url(../img/feature24_common/ic_next_24.svg);
}
@media print, screen and (min-width:769px) {
  .glb-feature24-item__pict .slick-next {
    right: -42px;
  }
}

.glb-feature24-item-container {
  margin-top: 20px;
  padding-left: 10vw;
  padding-right: 10vw;
}
@media print, screen and (min-width:769px) {
  .glb-feature24-item-container {
    margin-top: 26px;
    padding-left: 0;
    padding-right: 0;
  }
}

.glb-feature24-item-info {
  position: relative;
  margin-top: 25px;
}
@media print, screen and (min-width:769px) {
  .glb-feature24-item-info {
    margin-top: 20px;
    background-size: 24px auto;
  }
}

.glb-feature24-item__text {
  margin-bottom: 11px;
}
.glb-feature24-item__text > p {
  padding-bottom: 5px;
  position: relative;
  line-height: 2.5;
  font-size: 13px;
  letter-spacing: 0.025em;
  background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%), linear-gradient(180deg, #381e00 1px, transparent 1px); /* 点線2の色と太さ */
  background-size: 3px 100%, 100% 2.49em; /* 点線2のサイズ */
}
.glb-feature24-item__text > p::before, .glb-feature24-item__text > p::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  left: 0;
  top: 0;
}
.glb-feature24-item__text > p::after {
  top: auto;
  bottom: 0;
}
@media print, screen and (min-width:769px) {
  .glb-feature24-item__text {
    margin-bottom: 30px;
  }
  .glb-feature24-item__text > p {
    font-size: 16px;
    background-size: 3px 100%, 100% 2.5em; /* 点線2のサイズ */
  }
}

.glb-feature24-item__periodset {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.glb-feature24-item__periodset dt, .glb-feature24-item__periodset dd {
  line-height: 1.65;
}
.glb-feature24-item__periodset dt {
  font-size: 13px;
  font-weight: bold;
  text-align: right;
  width: 50px;
  white-space: nowrap;
}
.glb-feature24-item__periodset dt span {
  display: inline-block;
  width: 12px;
  margin-right: 0.5em;
}
.glb-feature24-item__periodset dt span img {
  padding-top: 4px;
  vertical-align: top;
}
.glb-feature24-item__periodset dd {
  font-size: 12.5rem;
  width: calc(100% - 60px);
}
@media print, screen and (min-width:769px) {
  .glb-feature24-item__periodset dt {
    font-size: 16px;
    width: 60px;
  }
  .glb-feature24-item__periodset dt span {
    width: 20px;
  }
  .glb-feature24-item__periodset dt span img {
    padding-top: 1px;
  }
  .glb-feature24-item__periodset dd {
    font-size: 14px;
    width: calc(100% - 80px);
  }
}

.glb-feature24-item__period {
  font-size: 12.5px;
  line-height: 1.65;
}
@media print, screen and (min-width:769px) {
  .glb-feature24-item__period {
    font-size: 14px;
  }
}

.glb-feature24-item__periodset + .glb-feature24-item__period {
  margin-top: 11px;
}
@media print, screen and (min-width:769px) {
  .glb-feature24-item__periodset + .glb-feature24-item__period {
    margin-top: 20px;
  }
}

.glb-feature24-item__access {
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.glb-feature24-item__access dt {
  font-weight: bold;
  font-size: 13px;
  line-height: 1.5;
  width: 50px;
}
.glb-feature24-item__access dd {
  padding-top: 1px;
  font-size: 11px;
  line-height: 1.5;
  width: calc(100% - 60px);
}
@media print, screen and (min-width:769px) {
  .glb-feature24-item__access {
    font-size: 16px;
  }
  .glb-feature24-item__access dt {
    font-size: 16px;
    width: 55px;
  }
  .glb-feature24-item__access dd {
    padding-top: 2px;
    width: calc(100% - 80px);
    font-size: 14px;
  }
}

.glb-feature24-item__periodset + .glb-feature24-item__access,
.glb-feature24-item__period + .glb-feature24-item__access {
  margin-top: 15px;
}
@media print, screen and (min-width:769px) {
  .glb-feature24-item__periodset + .glb-feature24-item__access,
  .glb-feature24-item__period + .glb-feature24-item__access {
    margin-top: 20px;
  }
}

.glb-feature24-item-linkset {
  display: flex;
}
.glb-feature24-item-linkset > li {
  line-height: 1;
  margin-top: 23px;
  width: 38vw;
  margin-right: 15px;
}
.glb-feature24-item-linkset > li > a, .glb-feature24-item-linkset > li > span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  font-size: 12.5px;
  color: #4d3417;
  height: 35px;
  border-radius: 5px;
  border: 2px solid #4d3417;
}
.glb-feature24-item-linkset > li > a::before, .glb-feature24-item-linkset > li > span::before {
  content: "";
  position: absolute;
  display: block;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  left: 1px;
  top: 1px;
  border: 1px solid #4d3417;
  border-radius: 2px;
}
.glb-feature24-item-linkset > li > a::after, .glb-feature24-item-linkset > li > span::after {
  right: 7px;
  content: "";
  position: absolute;
  display: block;
  width: 12px;
  height: 11px;
  background: url(../img/feature24_common/ic_btn_arrow.png) no-repeat center center/contain;
}
.glb-feature24-item-linkset > li.map-btn > a::after, .glb-feature24-item-linkset > li.map-btn > span::after {
  background-image: url(../img/feature24_common/ic_map.png);
}
.glb-feature24-item-linkset > li:last-child {
  margin-right: 0;
}
@media print, screen and (min-width:769px) {
  .glb-feature24-item-linkset > li {
    width: 180px;
    margin-right: 40px;
    font-size: 14px;
  }
  .glb-feature24-item-linkset > li > a, .glb-feature24-item-linkset > li > span {
    height: 42px;
    font-size: 15px;
    border-radius: 4px;
    transition: 0.3s;
  }
  .glb-feature24-item-linkset > li > a::after, .glb-feature24-item-linkset > li > span::after {
    right: 12px;
  }
  .glb-feature24-item-linkset > li > a:hover, .glb-feature24-item-linkset > li > span:hover {
    opacity: 0.75;
  }
}

/* ==========================================================================

   ユーティリティモジュール

 */
/* -------------------------------------------------------------------------
	画像を100%に/100%を解除
	<img class="u-fit" src="xxx.jpg" />
*/
.u-fit {
  width: 100%;
  height: auto;
}

.u-free {
  width: auto;
}

/* -------------------------------------------------------------------------
	SPのみ、PCのみで改行させる
	<br class="u-spbr" />
	<br class="u-pcbr" />
*/
.u-spbr {
  display: none;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .u-spbr {
    display: inline;
  }
}

.u-pcbr {
  display: none;
}
@media print, screen and (min-width:769px) {
  .u-pcbr {
    display: inline;
  }
}

.u-tdbr {
  display: none;
}
@media only screen and (max-width: 768px) {
  .u-tdbr {
    display: inline;
  }
}

/* -------------------------------------------------------------------------
	テキスト揃え
*/
.u-alignL {
  text-align: left;
}

.u-alignR {
  text-align: right;
}

.u-alignC {
  text-align: center;
}

/* -------------------------------------------------------------------------
	フロート
*/
@media print, screen and (min-width:769px) {
  .u-floatL {
    float: left;
  }
}

@media print, screen and (min-width:769px) {
  .u-floatR {
    float: right;
  }
}

/* -------------------------------------------------------------------------
	position:relative
*/
.u-relative {
  position: relative;
}

/* -------------------------------------------------------------------------
	縦書きテキスト
*/
.u-vertical-text {
  font-feature-settings: "pkna";
  writing-mode: vertical-rl;
  text-orientation: upright;
  -ms-text-combine-horizontal: all;
  /*text-combine-upright: all;*/
}

/* -------------------------------------------------------------------------
	マージン調整
*/
.u-mt6 {
  margin-top: 6em !important;
}

.u-mt5 {
  margin-top: 5em !important;
}

.u-mt4 {
  margin-top: 4em !important;
}

.u-mt3 {
  margin-top: 3em !important;
}

.u-mt2 {
  margin-top: 2em !important;
}

.u-mt1 {
  margin-top: 1em !important;
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-mb1 {
  margin-bottom: 1em !important;
}

.u-mb2 {
  margin-bottom: 2em !important;
}

.u-mb3 {
  margin-bottom: 3em !important;
}

.u-mb4 {
  margin-bottom: 4em !important;
}

.u-mb5 {
  margin-bottom: 5em !important;
}

.u-mb6 {
  margin-bottom: 6em !important;
}

/*@include mq-sp {

	.u-mt6 {  margin-top: 3em !important;}
	.u-mt5 {margin-top: 2.5em !important;}
	.u-mt4 {margin-top: 2em !important;}
	.u-mt3 {margin-top: 1.5em !important;}
	.u-mt2 {margin-top: 1em !important;}
	.u-mt1 {margin-top: 0.5em !important;}
	.u-mt0 {margin-top: 0 !important;}
	.u-mb0 {margin-bottom: 0 !important;}
	.u-mb1 {margin-bottom: 0.5em !important;}
	.u-mb2 {margin-bottom: 1em !important;}
	.u-mb3 {margin-bottom: 1.5em !important;}
	.u-mb4 {margin-bottom: 2em !important;}
	.u-mb5 {margin-bottom: 2.5em !important;}
	.u-mb6 {margin-bottom: 3em !important;}
}*/
/* -------------------------------------------------------------------------
	インラインブロック
	<p>テキストの一部を<span class="u-inlineBlock">インラインブロックに設定します。</span></p>
*/
.u-inlineBlock {
  display: inline-block;
}

/* -------------------------------------------------------------------------
	リスト要素のスタイル
*/
.u-listIndent li {
  font-size: 1.6rem;
  padding-left: 1.2em;
  text-indent: -1.2em;
  line-height: 1.75em;
  margin-bottom: 1.2em;
}
@media only screen and (min-width: 0px) and (max-width: 768px) {
  .u-listIndent li {
    font-size: 1.1rem;
    margin-bottom: 0.5em;
  }
}

.u-listDisc li {
  list-style-type: disc;
  margin-bottom: 1em;
  margin-left: 1.2em;
}

/* -------------------------------------------------------------------------
	PCレイアウト時に非表示
*/
.u-sp-only {
  display: none !important;
}

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

@media only screen and (min-width: 0px) and (max-width: 768px) {
  .u-sp-only {
    display: block !important;
  }
  .u-pc-only {
    display: none !important;
  }
}
.u-fontBold {
  font-weight: bold;
}

.u-note {
  font-size: 1rem;
  line-height: 1.5;
  text-indent: -1em;
  padding-left: -1em;
  display: block;
  margin-top: 1em;
  margin-bottom: 1em;
}
@media print, screen and (min-width:769px) {
  .u-note {
    font-size: 1.3rem;
  }
}

/* ==========================================================================

	#アコーディオンモジュール

 */
.prg-accr-trigger {
  cursor: pointer;
}

.prg-accr-inner {
  display: none;
}

/* ==========================================================================
   Animation
   アニメーション設定用css
   ========================================================================== */
/* ====================================================================

  #Animation

 */
.transition-delay1 {
  transition-delay: 0.2s;
}

.transition-delay2 {
  transition-delay: 0.4s;
}

.transition-delay3 {
  transition-delay: 0.6s;
}

.transition-delay4 {
  transition-delay: 0.8s;
}

@keyframes anim-fade-in {
  0% {
    display: block;
    opacity: 0;
  }
  1% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.transition-mask::before {
  position: absolute;
  z-index: 11;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transform-origin: 100% 0;
  transition-duration: 1s;
  transform: scaleX(0);
}
.transition-mask.ef-scroll-in::before {
  transform: scaleX(1);
}
.transition-mask.ef-scroll::before {
  transform: scaleX(1);
}
@media print {
  .transition-mask.ef-scroll::before {
    transform: scaleX(0);
  }
  .transition-mask.ef-scroll-in::before {
    transform: scaleX(0);
  }
}

.transition-fade {
  transition-duration: 1s;
}
.transition-fade.ef-scroll {
  opacity: 0;
}
.transition-fade.ef-scroll-in {
  opacity: 0;
}
@media print {
  .transition-fade.ef-scroll {
    opacity: 1 !important;
  }
  .transition-fade.ef-scroll-in {
    opacity: 1 !important;
  }
}

.transition-y, .transition-x {
  transition-duration: 1s;
}
.transition-y.ef-scroll, .ef-scroll.transition-x {
  transform: translateY(150px);
  opacity: 0;
}
.transition-y.ef-scroll-in, .ef-scroll-in.transition-x {
  transform: translateY(150px);
  opacity: 0;
}
@media print {
  .transition-y.ef-scroll, .ef-scroll.transition-x {
    opacity: 1 !important;
    transform: translateY(0);
  }
  .transition-y.ef-scroll-in, .ef-scroll-in.transition-x {
    opacity: 1 !important;
    transform: translateY(0);
  }
}

.transition-blur-y, .transition-blur-x, .transition-blur-x--invert {
  transition-duration: 1s;
}
.transition-blur-y.ef-scroll, .ef-scroll.transition-blur-x, .ef-scroll.transition-blur-x--invert {
  filter: blur(12px);
  transform: translateY(150px);
  opacity: 0;
}
.transition-blur-y.ef-scroll-in, .ef-scroll-in.transition-blur-x, .ef-scroll-in.transition-blur-x--invert {
  filter: blur(12px);
  transform: translateY(150px);
  opacity: 0;
}
@media print {
  .transition-blur-y.ef-scroll, .ef-scroll.transition-blur-x, .ef-scroll.transition-blur-x--invert {
    opacity: 1 !important;
    filter: blur(0);
    transform: translateY(0);
  }
  .transition-blur-y.ef-scroll-in, .ef-scroll-in.transition-blur-x, .ef-scroll-in.transition-blur-x--invert {
    opacity: 1 !important;
    filter: blur(0);
    transform: translateY(0);
  }
}

.transition-x.ef-scroll {
  transform: translateX(120px);
}
.transition-x.ef-scroll-in {
  transform: translateX(120px);
}
@media print {
  .transition-x.ef-scroll {
    opacity: 1 !important;
    transform: translateX(0);
  }
  .transition-x.ef-scroll-in {
    opacity: 1 !important;
    transform: translateX(0);
  }
}

.transition-blur-x.ef-scroll, .ef-scroll.transition-blur-x--invert {
  transform: translateX(120px);
}
.transition-blur-x.ef-scroll-in, .ef-scroll-in.transition-blur-x--invert {
  transform: translateX(120px);
}
@media print {
  .transition-blur-x.ef-scroll, .ef-scroll.transition-blur-x--invert {
    opacity: 1 !important;
    filter: blur(0);
    transform: translateX(0);
  }
  .transition-blur-x.ef-scroll-in, .ef-scroll-in.transition-blur-x--invert {
    opacity: 1 !important;
    filter: blur(0);
    transform: translateX(0);
  }
}

.transition-blur-x--invert.ef-scroll {
  transform: translateX(-120px);
}
.transition-blur-x--invert.ef-scroll-in {
  transform: translateX(-120px);
}
@media print {
  .transition-blur-x--invert.ef-scroll {
    opacity: 1 !important;
  }
  .transition-blur-x--invert.ef-scroll-in {
    opacity: 1 !important;
  }
}

.transition-randomIn {
  transition-duration: 1s;
}
.transition-randomIn.ef-scroll, .transition-randomIn.ef-scroll-in {
  transform: scale(1.3);
  opacity: 0;
}

.transition-slideUp {
  overflow: hidden;
  transition-duration: 1s;
}
.transition-slideUp .slideup-inner {
  transition-duration: 1s;
  display: block;
}
.transition-slideUp.ef-scroll-in {
  transform: translateY(150px);
}
.transition-slideUp.ef-scroll-in .slideup-inner {
  transform: translateY(150px);
}

.transition-zoomIn {
  overflow: hidden;
}
.transition-zoomIn .zoomin-inner {
  display: block;
  overflow: hidden;
  transition-duration: 1s;
  transform-origin: 0 0;
  transition-timing-function: cubic-bezier(0.01, 0.79, 0.37, 0.98);
  background: #111;
}
.transition-zoomIn .zoomin-inner img {
  opacity: 1;
  transition-duration: 1s;
  transition-delay: 0.6s;
}
.transition-zoomIn.ef-scroll, .transition-zoomIn.ef-scroll-in {
  perspective: 800px;
}
.transition-zoomIn.ef-scroll .zoomin-inner, .transition-zoomIn.ef-scroll-in .zoomin-inner {
  opacity: 0;
  transform: scale(0.6) rotateX(70deg) rotateY(12deg) rotateZ(-12deg);
  background: #000;
}
.transition-zoomIn.ef-scroll .zoomin-inner img, .transition-zoomIn.ef-scroll-in .zoomin-inner img {
  opacity: 0;
  transform: scale(1.1);
}
