@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

/* CSS Document */
:root{
  --content-color-base: #333;
  --content-color-navy: #0a2b6f;
  --content-color-blue: #0093bf;
  --content-color-beige: #f0eccd;
  --content-color-cream: #fbf9ef;
  --content-color-sky: #d0ebfa;
  --bg-img-setting: no-repeat center center / cover;
  --bg-width-pc: max(100%, 1920px);
  --content-width: min((710vw / 7.5), 992px);
  --font-size-pc: 14px;
  --font-size-sp: calc(24vw / 7.5);
  --font-sans: "Noto Sans JP", sans-serif;
  --content-font-size: min(var(--font-size-sp), var(--font-size-pc));
  --content-hover-speed: 0.3s;
  --content-arrow-down: url(/cmn/icon/icon_arrow_down_white.svg);
  --content-arrow-right: url(../img/icon_arrow_right_blue.svg);
  --content-arrow-right_w: url(../img/icon_arrow_right_white.svg);
  --content-border_s: 1px solid;
  --content-border_m: 2px solid;
  --content-border_l: 4px solid;
  --content-border_dot: 2px dotted;
  --content-border_dot_s: 1px dotted;
}

.nopc{
  display: none
}
.main{
  font-family: var(--font-sans);
  font-size: var(--content-font-size);
  font-weight: 500;
  color: var(--content-color-base);
  position: relative;
  line-height: 1.0
}
.main *{
  box-sizing: border-box;
}
.inner{
  width: var(--content-width);
  margin: auto;
}
a{
  transition: var(--content-hover-speed);
}
.note__txt{
  font-size: 12px;
  padding-left: 1.0em;
  text-indent: -1.0em;
}
.note__txt>a{
  color: var(--content-color-navy);
  text-decoration: underline
}

/***** MV・ナビ *****/
.title__wrapper{
  background: var(--content-color-navy);
}
.title-logo{
  width: var(--content-width);
  padding: 10px 0;
  margin: auto;
}
.title-logo>img{
  width: 320px;
}
.nav__wrapper{
  width: 100%;
  height: 70px;
  background: #FFF;
  border-bottom: var(--content-border_s) var(--content-color-navy);
}
/* .is-fix */
.nav__inbox.is-fix{
  width: 100%;
  position: fixed;
  background: #FFF;
  top: 0;
  z-index: 100;
  border-bottom: var(--content-border_l) var(--content-color-navy);
}
.nav__inbox>.inner{
  display: flex;
}
.nav__list{
  width: calc((100% - 110px));
  display: flex;
  border-left: var(--content-border_dot) var(--content-color-navy);
}
.nav__list>li{
  width: calc(100% / 5);
  border-right: var(--content-border_dot) var(--content-color-navy);
}
.nav__list>li:last-child{
  border: none
}
.nav__list>li>a{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  color: var(--content-color-navy);
  line-height: 1.2;
  background: no-repeat 4px center / auto 25px;
  padding: 0 4px 0 33px;
}
.nav__list>li:nth-child(4)>a{
  letter-spacing: -0.08em
}
.nav__list>li>a:hover{
  color: var(--content-color-blue);
}
.display_selected {
  width: 110px;
  height: 100%;
  background: var(--content-color-navy);
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.display_selected::before{
  content: "出発地";
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #FFF;
}
.display_selected::after {
  content: "";
  background: var(--content-arrow-down) var(--bg-img-setting);
  width: 24px;
  height: 24px;
  display: block;
}
.dep-select-zone {
  display: none;
  width: 124px;
  background: #FFF;
  position: absolute;
  z-index: 30;
  border: var(--content-border_s) var(--content-color-navy);
  border-top: none;
}
.dep-select li {
  cursor: default;
  padding: 4px 16px;
  font-weight: bold;
  color: #000;
  text-align: center;
  line-height: 1.5
}
.dep-select li:hover, .dep-select li.selected {
  color: #FFF;
  background: var(--content-color-navy);
}
.close-button{
  display: none
}

/***** メインコンテンツ *****/
.content__wrapper{
  width: 100%;
  padding: 60px 0;
}
.head-title{
  text-align: center ;
  margin-bottom: 32px;
}
.head-title>span{
  font-size: 36px;
  font-weight: bold;
  color: var(--content-color-navy);
}
.head-title:not(#tour)::before{
  content: "";
  background: var(--bg-img-setting);
  display: block;
}
.sub-title{
  font-size: 24px;
  text-align: center;
  margin-bottom: 16px;
}
.bodycopy{
  font-size: 16px;
  text-align: center;
  margin-bottom: 16px;
}
.more__link{
  width: 800px;
  margin: 24px auto 0;
}
.more__link>a{
  display: block;
  background: #FFF;
  border: var(--content-border_m) var(--content-color-navy);
  padding: 16px;
  font-size: 16px;
  color: var(--content-color-navy);
  text-align: center;
  position: relative;
}
.more__link>a::before{
  content: "";
  background: var(--bg-img-setting);
  background-image: var(--content-arrow-right);
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  margin: auto;
}
.more__link>a:hover{
  background: var(--content-color-navy);
  color: #FFF;
}
.more__link>a:hover::before{
  background-image: var(--content-arrow-right_w)
}

/*** イベント情報 ***/
.content__wrapper.event{
  padding-top: 0;
  overflow: hidden;
}
.event__img{
  width: 100vw;
}
.event__inbox{
  width: var(--content-width);
  margin: auto;
  padding: 16px 0;
}
.event__title{
  font-size: 30px;
  margin-bottom: 16px;
}
.event__item{
  display: flex;
  gap: 16px;
  align-items: flex-start
}
.event__date{
  width: 360px;
  font-size: 16px;
  color: #FFF;
  text-align: center;
  line-height: 1.2;
  background: var(--content-color-base);
  padding: 8px 0;
}
.event__txtbox{
  flex: 1;
  line-height: 1.5;
}
.event__txt>a{
  text-decoration: underline;
  color: var(--content-color-navy)
}
.event__txt .note__txt{
  display: block
}
.event__txt sup{
  font-size: 10px;
  vertical-align: text-top;
}
.event__data>li{
  font-size: 12px;
}
.slick-dots{
  bottom: -30px!important;
}
.slick-dots li button:before{
  font-size: 16px!important;
}

/*** おすすめツアー ***/
.content__wrapper.tour{
  background: #ECE8D4;
}
.content__wrapper.tour.is-blue{
  background: var(--content-color-sky);
}
.head-title.product{
  margin-bottom: 16px;
}
.head-title.product>span{
  font-size: 30px;
}
.area00{
  display: none;
  line-height: 1.4
}
.area__stay{
  margin-top: 60px;
  line-height: 1.4
}

/*** 楽しみ方 ***/
.enjoy__list{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.enjoy__list>li{
  width: calc((100% - (16px * 2)) / 3);
}
.enjoy__img{
  width: 100%;
  height: 200px;
  margin-bottom: 8px;
}
.enjoy__img>img{
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}
.enjoy__title{
  font-size: 18px;
  font-weight: bold;
  color: var(--content-color-navy);
  line-height: 1.2;
  margin-bottom: 8px;
}
.enjoy__txt{
  line-height: 1.4
}

/*** オフィシャルホテル ***/
.content__wrapper.hotel{
  background: var(--content-color-sky);
}
.hotel__list{
  display: grid;
  grid-template-columns: repeat(auto-fit, calc((100% - 20px) / 3));
  gap: 24px 10px;
}
.hotel__list>li{
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 8px;
}
.hotel__img{
  width: 100%;
  height: 145px;
}
.hotel__img>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hotel__sub{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 8px;
}
.hotel__sub::before,
.hotel__sub::after{
  content: "";
  display: block;
  width: 4px;
  height: 1px;
  background-color: var(--content-color-blue);
  flex-grow: 1
}
.hotel__sub>span{
  font-weight: bold;
  color: var(--content-color-blue);
  display: block;
}
.hotel__name{
  font-size: 16px;
  font-weight: bold;
  color: var(--content-color-navy);
  text-align: center;
  line-height: 1.2;
  margin: 4px auto 8px;
}
.hotel__txt{
  line-height: 1.4
}
.hotel__link>a{
  display: block;
  border: var(--content-border_s) var(--content-color-navy);
  background: #FFF;
  padding: 8px;
  font-size: 16px;
  font-weight: bold;
  color: var(--content-color-navy);
  text-align: center;
}
.hotel__link>a:hover{
  background: var(--content-color-navy);
  color: #FFF;
}

/*** インフォメーション ***/
.contents+.contents{
  margin-top: 60px;
}
/* ticket */
.ticket__list{
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--content-color-cream);
  padding: 16px;
}
.ticket__list>li{
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 8px;
  align-items: center;
}
.ticket__name{
  padding: 8px;
  font-size: 18px;
  color: #FFF;
  background: var(--content-color-navy);
  border-radius: 4px;
}
/* faq */
.faq__list{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq__list>li{
  padding-bottom: 8px;
  border-bottom: var(--content-border_dot_s);
}
.que__txt{
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  color: var(--content-color-navy);
  margin-bottom: 8px;
}
.ans__txt{
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.4
}
.que__txt::before,
.ans__txt::before{
  content: "";
  background: var(--bg-img-setting);
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.que__txt::before{
  background-image: url("../img/faq_q.png")
}
.ans__txt::before{
  background-image: url("../img/faq_a.png")
}
.ans__txt>span>a{
  text-decoration: underline;
  color: var(--content-color-navy)
}
/* グルメ */
.food__list{
  display: flex;
  gap: 10px;
}
.food__list>li{
  width: calc((100% - (10px * 2)) / 3);
}
.food__img{
  width: 100%;
  height: 160px;
}
.food__img>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}
.food__name{
  font-size: 16px;
  font-weight: bold;
  color: var(--content-color-navy);
  margin: 8px auto;
}
.food__txt{
  line-height: 1.4
}

/*** 周辺の観光スポット情報 ***/
.content__wrapper.ngs{
  background: var(--content-color-beige)
}
.ngs__list{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.ngs__list>li{
  width: calc((100% - (16px * 3)) / 4);
  display: flex;
  flex-direction: column;
}
.ngs__img{
  width: 100%;
  height: 145px;
}
.ngs__img>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ngs__name{
  font-size: 16px;
  font-weight: bold;
  color: var(--content-color-blue);
  margin: 4px 0;
}
.ngs__txt{
  line-height: 1.4;
  margin-bottom: 4px;
}
.ngs__data{
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
}
.ngs__data::before{
  content: "アクセス";
  display: block;
  width: 4em;
  background: var(--content-color-blue);
  padding: 0 3px;
  color: #FFF;
}
.ngs__data:empty::before{
  content: none
}
/* 記事コンテンツ */
.news__list{
  display: flex;
  gap: 16px;
}
.news__list>li{
  width: calc((100% - (16px * 2)) /3);
  background: #FFF;
}
.news__list>li>a{
  display: block;
  height: 100%;
  position: relative
}
.news__list>li>a::after {
  content: "";
  width: 16px;
  height: 16px;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background: var(--content-color-blue);
  position: absolute;
  right: 0;
  bottom: 0;
}
.news__list>li>a:hover::after{
  background: var(--content-color-navy);
}
.news__img{
  width: 100%;
  height: 200px;
}
.news__img>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}
.news__title{
  font-size: 16px;
  line-height: 1.25;
  padding: 10px;
}
.copyright-txt{
  font-size: 16px;
  font-weight: bold;
  margin: 24px auto 0;
}

/*** 検索モジュール ***/
.content__wrapper.search{
  background: url("../img/search_photo.jpg") no-repeat center center;
}

/*** ミッフィー ***/
.content__wrapper.miffy{
  background: #ffc80b;
}
.content__wrapper.miffy .inner{
  display: grid;
  gap: 16px;
}
.copyright-img{
  display: flex;
  flex-direction: row-reverse;
}
.copyright-img>span{
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: bold;
}
.copyright-img>span>img{
  width: 80px;
}
.miffy-item{
  display: contents
}
.miffy-title{
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3
}
.miffy-title>span{
  display: block;
  font-size: 24px
}
.miffy-term{
  background: #f26522;
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  padding: 8px;
}
.miffy-txt{
  line-height: 1.5
}
.content__wrapper.miffy .note__txt {
  display: block;
}

/*** 2025.9.1～ハウステンボスキャンペーン ***/
.content__wrapper.campaign{
  background: #ECE8D4;
  padding: 40px 0;
}
.content__wrapper.campaign .inner{
  display: grid;
  gap: 24px;
}
.title-wrapper{
  display: grid;
  gap: 16px;
  justify-items: center;
  font-weight: 900;
  text-align: center;
  position: relative
}
.title-wrapper::before{
  content: "";
  background: var(--bg-img-setting) url("../img/ico_now.svg");
  width: 235px;
  height: 145px;
  position: absolute;
  top: -20px;
  left: 0
}
.head-title#campaign{
  font-size: 40px;
  margin-bottom: 0;
}
.campaign-term{
  background: #644900;
  font-size: 24px;
  color: #FFF;
  padding: 4px 40px;
  line-height: 1.0
}
.campaign-copy{
  font-size: 26px;
}
.campaign-copy>span{
  font-size: 36px;
  color: #BB0B00;
}
.campaign-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.campaign-list>li{
  background: #FFF;
  border: var(--content-border_m) #BB0B00;
  border-radius: 8px;
  padding: 16px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 16px;
}
.campaign-note{
  line-height: 1.3;
}
.campaign-midashi{
  font-size: 26px;
  font-weight: bold;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.3
}
.campaign-midashi::before{
  content: "";
  background: no-repeat center top / contain;
  width: 100%;
  height: 100%;
  display: block;
}
.campaign-list>li:first-child .campaign-midashi::before{
  background-image: url("../img/point1.svg")
}
.campaign-list>li:last-child .campaign-midashi::before{
  background-image: url("../img/point2.svg")
}
.campaign-midashi>span>small{
  font-size: 14px;
}
.campaign-txt{
  font-size: 16px;
  line-height: 1.3
}
.campaign-txt>span{
  display: block;
  background: #644900;
  font-size: 20px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  padding: 8px;
  margin-bottom: 8px;
}
.copyright-area{
  display: grid;
  gap: 4px;
  justify-content: flex-end;
}

.campaign-note-list{
  line-height: 1.3
}
.campaign-note-midashi{
  font-weight: bold;
}
.coupon-wrapper{
  background: #644900;
  padding: 24px;
}
.coupon-midashi{
  font-size: 32px;
  font-weight: 900;
  color: #FFF;
  text-align: center;
  margin-bottom: 24px;
}
.coupon-midashi>small{
  font-size: 24px;
}
.coupon-content{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.coupon-item{
  font-weight: bold;
  color: #FFF;
  line-height: 1.5
}
.coupon-link>a{
  color: #FFF;
  text-decoration: underline
}
.coupon{
  background: #FFF;
  padding: 16px;
  text-align: center
}
.price-data{
  font-size: 24px;
  font-weight: 900;
  color: #DF0D00;
  line-height: 1.0;
  margin-bottom: 8px;
}
.price-data .date{
  color: var(--content-color-blue);
}
.price-data>em{
  font-family: 'Open Sans', sans-serif;
  font-size: 40px;
}
.price-data small{
  font-size: 14px;
}
.code-txt{
  border: var(--content-border_s);
  padding: 4px 24px 4px 4px;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  position: relative
}
.code-txt::after{
  content: "";
  background: var(--bg-img-setting) url(/cmn/icon/icon_copy.svg);
  width: 24px;
  height: 24px;
  position: absolute;
  top: 3px;
  right: 3px;
}
.msgBoard{
  font-size: 14px;
  display: none;
}
.content__wrapper.campaign .head-title.product{
  margin-bottom: 0
}
