@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_dot: 2px dotted;
  --content-border_dot_s: 1px dotted;
}

.nosp{
  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: calc(20vw / 7.5);
  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: calc(16vw / 7.5) 0;
  margin: auto;
}
.title-logo>img{
  width:40vw;
}
.nav__wrapper{
  width: 100%;
  background: #FFF;
}
.nav__inbox{
  display: contents
}
.nav__inbox>.inner{
  width: 100vw;
  display: flex;
  flex-direction: column;
}
.nav__list{
  order: 2;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-top: var(--content-border_s) var(--content-color-navy);
  border-bottom: var(--content-border_s) var(--content-color-navy);
}
.nav__list>li{
  width: calc(100% / 3);
  height: calc(100vw / 7.5); 
  border-right: var(--content-border_dot) var(--content-color-navy);
}
.nav__list>li:nth-child(-n+3){
  border-bottom: var(--content-border_dot) var(--content-color-navy);
}
.nav__list>li:nth-child(3n){
  border-right: none
}
.nav__list>li>a{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: bold;
  color: var(--content-color-navy);
  line-height: 1.2;
  background: no-repeat calc(8vw / 7.5) center / auto calc(40vw / 7.5);
  padding: calc(16vw / 7.5) calc(8vw / 7.5) calc(16vw / 7.5) calc(60vw / 7.5);
}
.nav__list>li:nth-child(4)>a{
  padding-left:  calc(48vw / 7.5);
  letter-spacing: -0.12em
}
.nav__list>li>a:hover{
  color: var(--content-color-blue);
}
.dep-select-nav{
  order: 1;
}
.display_selected {
  width: 100%;
  background: var(--content-color-blue);
  font-size: calc(28vw/ 7.5);
  font-weight: bold;
  color: #FFF;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(8vw/ 7.5);
  cursor: pointer;
  padding: calc(16vw / 7.5) 0;
  position: relative
}
.display_selected::before{
  content: "出発地";
  display: block;
  font-size: calc(22vw/ 7.5);
  font-weight: bold;
  color: #FFF;
}
.display_selected::after {
  content: "";
  background: var(--content-arrow-down) var(--bg-img-setting);
  width: calc(32vw / 7.5);
  height: calc(32vw / 7.5);
  position: absolute;
  top: 0;
  right: calc(16vw / 7.5);
  bottom: 0;
  margin: auto;
}
.dep-select-zone {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  transition: all .5s;
  z-index: 50;
  background: rgba(0 0 0 / 80%);
  padding: calc(100vw / 7.5) calc(80vw / 7.5);
}
.dep-select li {
  cursor: default;
  padding: calc(20vw / 7.5);
  font-size: calc(30vw / 7.5);
  font-weight: bold;
  color: #FFF;
  text-align: center;
}
.dep-select li:hover, .dep-select li.selected {
  background: #FFF;
  color: #000;
}
.close-button{
  margin: calc(40vw / 7.5) auto;
  width: 5em;
  padding: calc(10vw / 7.5);
  border: 1px solid;
  font-size: calc(30vw / 7.5);
  font-weight: bold;
  color: #FFF;
  text-align: center;
}

/***** メインコンテンツ *****/
.content__wrapper{
  width: 100%;
  padding: calc(80vw / 7.5) 0;
}
.head-title{
  text-align: center ;
  margin-bottom: calc(32vw / 7.5);
}
.head-title>span{
  font-size: calc(44vw / 7.5);
  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: calc(36vw / 7.5);
  text-align: center;
  margin-bottom: calc(24vw / 7.5);
}
.bodycopy{
  text-align: center;
  margin-bottom: calc(16vw / 7.5);
  line-height: 1.4
}
.more__link{
  width: 100%;
  margin: calc(32vw / 7.5) auto 0;
}
.more__link>a{
  display: block;
  background: #FFF;
  border: var(--content-border_m) var(--content-color-navy);
  padding: calc(24vw / 7.5) calc(8vw / 7.5);
  font-size: calc(26vw / 7.5);
  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: calc(40vw / 7.5);
  height: calc(40vw / 7.5);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

/*** イベント情報 ***/
.content__wrapper.event{
  padding-top: 0;
}
.event__content{
  overflow: hidden
}
.event__img{
  width: 100vw;
  height: calc(400vw / 7.5)
}
.event__img>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}
.event__inbox{
  width: var(--content-width);
  margin: auto;
  padding: calc(16vw/ 7.5) 0;
}
.event__title{
  font-size: calc(38vw/ 7.5);
  margin-bottom: calc(16vw/ 7.5);
}
.event__item{
  display: flex;
  flex-direction: column;
  gap: calc(16vw/ 7.5);
}
.event__date{
  font-size: calc(26vw/ 7.5);
  color: #FFF;
  text-align: center;
  background: var(--content-color-base);
  padding: calc(16vw/ 7.5) 0;
}
.event__txtbox{
  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: calc(18vw/ 7.5);
  vertical-align: text-top;
}
.event__data>li{
  font-size: calc(22vw/ 7.5);
}
.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: calc(16vw / 7.5);
}
.head-title.product>span{
  font-size: calc(36vw / 7.5);
}
.area00{
  display: none;
  line-height: 1.4
}
.area__stay{
  margin-top: calc(60vw / 7.5);
  line-height: 1.4
}

/*** 楽しみ方 ***/
.enjoy__list{
  display: flex;
  flex-direction: column;
  gap: calc(24vw / 7.5);
}
.enjoy__list>li{
  display: flex;
  gap: calc(16vw / 7.5);
}
.enjoy__img{
  width: 30vw;
  height: calc(180vw / 7.5)
}
.enjoy__img>img{
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}
.enjoy__data{
  flex: 1;
}
.enjoy__title{
  font-size: calc(28vw / 7.5);
  font-weight: bold;
  color: var(--content-color-navy);
  line-height: 1.2;
  margin-bottom: calc(8vw / 7.5);
}
.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% - (16vw / 7.5)) / 2));
  gap: calc(24vw / 7.5) calc(16vw / 7.5);
}
.hotel__list>li{
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: calc(16vw / 7.5)
}
.hotel__img{
  width: 100%;
  height: calc(140vw / 7.5);
}
.hotel__img>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hotel__sub{
  text-align: center
}
.hotel__sub>span{
  font-size: calc(22vw / 7.5);
  font-weight: bold;
  color: var(--content-color-blue);
  display: block;
}
.hotel__name{
  font-size: calc(28vw / 7.5);
  font-weight: bold;
  color: var(--content-color-navy);
  text-align: center;
  line-height: 1.25;
  margin: calc(8vw / 7.5) auto calc(16vw / 7.5);
}
.hotel__txt{
  line-height: 1.4
}
.hotel__link>a{
  display: block;
  border: var(--content-border_s) var(--content-color-navy);
  background: #FFF;
  padding: calc(8vw / 7.5);
  font-size: calc(26vw / 7.5);
  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: calc(80vw / 7.5);
}
/* ticket */
.ticket__list{
  width: 100vw;
  display: flex;
  flex-direction: column;
  gap: calc(16vw / 7.5);
  background: var(--content-color-cream);
  padding: calc(16vw / 7.5);
  margin: 0 calc(50% - 50vw)
}
.ticket__list>li{
  display: grid;
  grid-template-columns: 10.5em 1fr;
  gap: calc(8vw / 7.5);
  align-items: flex-start;
  line-height: 1.25
}
.ticket__name{
  padding: calc(16vw / 7.5) calc(8vw / 7.5);
  font-weight: bold;
  color: #FFF;
  background: var(--content-color-navy);
  border-radius: calc(8vw / 7.5);
}
/* faq */
.faq__list{
  display: flex;
  flex-direction: column;
  gap: calc(32vw / 7.5);
}
.faq__list>li{
  padding-bottom: calc(16vw / 7.5);
  border-bottom: var(--content-border_dot_s);
}
.que__txt{
  display: flex;
  gap: calc(8vw / 7.5);
  align-items: center;
  font-size: calc(28vw / 7.5);
  font-weight: bold;
  line-height: 1.2;
  color: var(--content-color-navy);
  margin-bottom: calc(16vw / 7.5);
  padding-right: calc(40vw / 7.5);
  position: relative
}
.que__txt::after{
  content: "";
  background: var(--bg-img-setting);
  background-image: url("../img/toggle_down.png");
  width: calc(22vw / 7.5);
  height: calc(13vw / 7.5);
  position: absolute;
  top: 0;
  right: calc(8vw / 7.5);
  bottom: 0;
  margin: auto;
}
.que__txt.is-open::after{
  background-image: url("../img/toggle_up.png");
}
.ans__box{
  display: none;
}
.ans__txt{
  display: flex;
  gap: calc(8vw / 7.5);
  align-items: flex-start;
  line-height: 1.4
}
.que__txt::before,
.ans__txt::before{
  content: "";
  background: var(--bg-img-setting);
  display: block;
  width: calc(48vw / 7.5);
  height: calc(48vw / 7.5);
  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: calc(16vw / 7.5);
  overflow: scroll
}
.food__list>li{
  flex: 0 0 85%;
}
.food__img{
  width: 100%;
  height: calc(360vw / 7.5);
}
.food__img>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}
.food__name{
  font-size: calc(30vw / 7.5);
  font-weight: bold;
  color: var(--content-color-navy);
  margin: calc(8vw / 7.5) auto
}
.food__txt{
  line-height: 1.4
}

/*** 周辺の観光スポット情報 ***/
.content__wrapper.ngs{
  background: var(--content-color-beige)
}
.ngs__list{
  display: flex;
  overflow-x: scroll;
  gap: calc(16vw / 7.5);
}
.ngs__list>li{
  flex: 0 0 85%;
  display: flex;
  flex-direction: column;
}
.ngs__img{
  width: 100%;
  height: calc(320vw / 7.5);
}
.ngs__img>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ngs__name{
  font-size: calc(28vw / 7.5);
  font-weight: bold;
  color: var(--content-color-blue);
  margin: calc(8vw / 7.5) 0;
}
.ngs__txt{
  line-height: 1.4;
  margin-bottom: calc(8vw / 7.5);
}
.ngs__data{
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: calc(4vw / 7.5);
  font-size: calc(22vw / 7.5);
}
.ngs__data::before{
  content: "アクセス";
  display: block;
  width: 4em;
  background: var(--content-color-blue);
  padding: 0 calc(4vw / 7.5);
  color: #FFF;
}
.ngs__data:empty::before{
  content: none
}
/* 記事コンテンツ */
.news__list{
  display: flex;
  overflow-x: scroll;
  gap: calc(16vw / 7.5);
}
.news__list>li{
  flex: 0 0 85%;
  background: #FFF;
}
.news__list>li>a{
  display: block;
  height: 100%;
  position: relative
}
.news__list>li>a::after {
  content: "";
  width: calc(32vw / 7.5);
  height: calc(32vw / 7.5);
  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: calc(320vw / 7.5);
}
.news__img>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}
.news__title{
  font-size: calc(26vw / 7.5);
  line-height: 1.25;
  padding: calc(8vw / 7.5) calc(8vw / 7.5) calc(24vw / 7.5); 
}
.copyright-txt {
  margin: calc(24vw / 7.5) auto 0;
  font-size: calc(24vw / 7.5);
  font-weight: bold;
}

/*** 検索モジュール ***/
.content__wrapper.search{
  background: url("../img/search_photo.jpg") no-repeat center center;
}
.content__wrapper.search .inner{
  width: 100vw
}

/*** ミッフィー ***/
.content__wrapper.miffy{
  background: #ffc80b;
}
.content__wrapper.miffy .inner{
  width: 100vw;
}
.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{
  width: var(--content-width);
  margin: calc(24vw / 7.5) auto 0;
  display: grid;
  gap: calc(24vw / 7.5);
}
.miffy-title{
  font-size: calc(40vw / 7.5);
  font-weight: bold;
  text-align: center;
  line-height: 1.3
}
.miffy-title>span{
  display: block;
  font-size: calc(32vw / 7.5);
}
.miffy-term{
  background: #f26522;
  font-size: calc(26vw / 7.5);
  font-weight: bold;
  color: #FFF;
  text-align: center;
  padding: calc(16vw / 7.5);
}
.miffy-txt{
  line-height: 1.5
}
.content__wrapper.miffy .note__txt{
  display: block
}

/*** 2025.9.1～ハウステンボスキャンペーン ***/
.content__wrapper.campaign{
  background: #ECE8D4;
  padding: calc(60vw / 3.75) 0;
}
.content__wrapper.campaign .inner{
  display: grid;
  gap: calc(16vw / 3.75);
}
.title-wrapper{
  display: grid;
  gap: calc(8vw / 3.75);
  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: calc(168vw / 3.75);
  height: calc(114vw / 3.75);
  position: absolute;
  top: calc(-54vw / 3.75);
  left: 0
}
.head-title#campaign{
  font-size: calc(28vw / 3.75);
  margin-bottom: 0;
}
.campaign-term{
  background: #644900;
  font-size: calc(16vw / 3.75);
  color: #FFF;
  padding: calc(8vw / 3.75) calc(16vw / 3.75);
  line-height: 1.0
}
.campaign-copy{
  font-size: calc(16vw / 3.75);
}
.campaign-copy>span{
  font-size: calc(20vw / 3.75);
  color: #BB0B00;
}
.campaign-list{
  display: grid;
  gap: calc(16vw / 3.75);
}
.campaign-list>li{
  background: #FFF;
  border: var(--content-border_m) #BB0B00;
  border-radius: calc(8vw / 3.75);
  padding: calc(16vw / 3.75);
  display: grid;
  gap: calc(8vw / 3.75);
}
.campaign-note{
  line-height: 1.3;
}
.campaign-midashi{
  font-size: calc(18vw / 3.75);
  font-weight: bold;
  display: grid;
  grid-template-columns: calc(34vw / 3.75) 1fr;
  gap: calc(8vw / 3.75);
  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: calc(14vw / 3.75);
}
.campaign-txt{
  line-height: 1.3
}
.campaign-txt>span{
  display: block;
  background: #644900;
  font-size: calc(18vw / 3.75);
  font-weight: bold;
  color: #FFF;
  padding: calc(8vw / 3.75);
  text-align: center;
  margin-bottom: calc(8vw / 3.75);
}
.copyright-area{
  display: grid;
  gap: calc(4vw / 3.75);
  justify-content: flex-end;
}
.campaign-note-list{
  line-height: 1.3
}
.campaign-note-midashi{
  font-weight: bold;
}
.coupon-wrapper{
  background: #644900;
  padding: calc(16vw / 3.75);
}
.coupon-midashi{
  font-size: calc(20vw / 3.75);
  font-weight: 900;
  color: #FFF;
  text-align: center;
  margin-bottom: calc(16vw / 3.75);
  line-height: 1.5
}
.coupon-midashi>small{
  font-size: calc(16vw / 3.75);
}
.coupon-content{
  display: grid;
  gap: calc(16vw / 3.75);
}
.coupon-item{
  font-weight: bold;
  color: #FFF;
  line-height: 1.5
}
.coupon-link>a{
  color: #FFF;
  text-decoration: underline
}
.coupon{
  background: #FFF;
  padding: calc(16vw / 3.75);
  text-align: center
}
.price-data{
  font-size: calc(20vw / 3.75);
  font-weight: 900;
  color: #DF0D00;
  line-height: 1.0;
  margin-bottom: calc(8vw / 3.75);
}
.price-data .date{
  color: var(--content-color-blue);
}
.price-data>em{
  font-family: 'Open Sans', sans-serif;
  font-size: calc(36vw / 3.75);
}
.price-data small{
  font-size: calc(14vw / 3.75);
}
.code-txt{
  border: var(--content-border_s);
  padding: calc(4vw / 3.75) calc(24vw / 3.75) calc(4vw / 3.75) calc(4vw / 3.75);
  font-size: calc(20vw / 3.75);
  font-weight: bold;
  text-align: center;
  position: relative
}
.code-txt::after{
  content: "";
  background: var(--bg-img-setting) url(/cmn/icon/icon_copy.svg);
  width: calc(16vw / 3.75);
  height: calc(16vw / 3.75);
  position: absolute;
  top: calc(4vw / 3.75);
  right: calc(4vw / 3.75);
}
.msgBoard{
  font-size: calc(14vw / 3.75);
  display: none;
}
.content__wrapper.campaign .head-title.product{
  margin-bottom: 0
}
.product-content {
        display: grid;
        gap: calc(20vw / 3.75);
    }
