@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

/* CSS Document */
:root{
  --content-color-base: #2C2A29;
  --content-color-brown: #792D29;
  --content-color-red: #D62500;
  --content-color-yellow: #EFD61C;
  --content-color-camel: #C28F00;
  --content-color-purple: #6D3B88;
  --content-color-pink: #CE1E52;
  --content-color-blue: #4DADE3;
  --bg-img-setting: no-repeat center center / contain;
  --content-width-sp: (336vw / 3.75);
  --content-width-pc: 1104px;
  --content-width: min(var(--content-width-sp), var(--content-width-pc));
  --content-bg-width-pc: max(100%, 1920px);
  --font-size-pc: 14px;
  --font-size-sp: calc(14vw / 3.75);
  --font-sans: 'Noto Sans JP', serif;
  --font-serif: "Noto Serif JP", serif;
  --content-font-size: min(var(--font-size-sp), var(--font-size-pc));
  --content-arrow-down: url(../img/arrow01.svg);
  --content-arrow-right: url(../img/arrow02.svg);
  --content-hover-speed: 0.3s;
  --content-border-1: 1px solid;
  --content-border-2: 2px solid;
  --content-border-4: 4px solid;
}

.nopc,
.is-sp,
.is-tb{
  display: none
}
.main{
  font-family: var(--font-sans);
  font-size: var(--content-font-size);
  color: var(--content-color-base);
  line-height: 1.3;
  position: relative;
}
.main *{
  box-sizing: border-box;
}
.inner{
  width: var(--content-width);
  margin: auto;
  position: relative;
}
a{
  transition: var(--content-hover-speed);
}

/***** MV・ナビ *****/
.mv-wrapper{
  width: 100%;
  height: 484px;
  background: url("../img/mvbg_pc.webp") no-repeat center top / cover;
  display: flex;
  justify-content: center;
  align-items: center
}
.nav-wrapper{
  background: var(--content-color-camel);
}
.nav-wrapper .inner{
  display: grid;
  grid-template-columns: 1fr 140px;
}
.nav-list{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.nav-list>li{
  border-left: var(--content-border-1) #FFF
}
.nav-list>li>a{
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 24px 0;
}
.nav-list>li>a:hover{
  background: var(--content-color-yellow);
}
.display_selected {
  width: 140px;
  height: 100%;
  background: var(--content-color-yellow);
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative
}
.display_selected::after{
  content: "";
  background: var(--bg-img-setting) var(--content-arrow-down);
  width: 12px;
  height: 7px;
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  margin: auto
}
.dep-select-zone {
  display: none;
  width: 140px;
  position: absolute;
  z-index: 50;
  border: var(--content-border-1) var(--content-color-yellow);
  border-top: none;
  background: #FFF;
}
.dep-select li {
  cursor: default;
  padding: 4px 8px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5
}
.dep-select li:hover, .dep-select li.selected {
  background: var(--content-color-yellow);
}
.close-button{
  display: none
}

@media (768px <= width <= 1024px){
  .is-tb{
    display: block
  }
  .inner{
     width: calc(728vw / 7.68);
  }
  .nav-wrapper .inner{
    width: 100%;
  }
}

/***** メインコンテンツ *****/
.main-container{
  position: relative;
}
.content-wrapper:not(.snowfes){
  width: 100%;
  padding: 120px 0;
  background: linear-gradient(to bottom, transparent, var(--content-color-blue));
  position: relative;
  display: grid;
  gap: 64px;
}
.content-wrapper .inner{
  display: grid;
  gap: 64px;
}
.head-title{
  display: grid;
  gap: 16px;
  grid-template-columns: 115px auto 115px;
  justify-content: center;
  align-items: center;
}
.head-title::before,
.head-title::after{
  content: "";
  background: var(--bg-img-setting);
  width: 100%;
  height: 101px;
  display: block;
}
.head-title::before{
  background-image: url("../img/bg_ttl_lft.png")
}
.head-title::after{
  background-image: url("../img/bg_ttl_ryt.png")
}
.head-title>span{
  font-size: 54px;
  font-weight: 900;
  color: var(--content-color-brown);
  text-align: center;
}
.title-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px
}
.catch-copy{
  background: var(--content-color-red);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  position: relative
}
.catch-copy::after{
  content: "";
  background-color: var(--content-color-red);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  width: 23px;
  height: 20px;
  position: absolute;
  right: 0;
  bottom: -20px;
  left: 0;
  margin: auto
}
.sub-title{
  font-size: 36px;
  font-weight: 900;
  color: var(--content-color-brown);
  text-align: center;
}
.sub-title .is-red{
  display: block;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 4px
}
.lead-copy{
  font-size: 20px;
  font-weight: bold;
  text-align: center
}
.note-txt{
  display: block;
  font-size: 14px;
  padding-left: 1.0em;
  text-indent: -1.0em;
  line-height: 1.5
}
.is-fit{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.is-bold{
  font-weight: bold;
}
.is-red{
  color: var(--content-color-red);
}
.is-bred{
  font-weight: bold;
  color: var(--content-color-red);
}

@media (768px <= width <= 1024px){
  .catch-copy{
    font-size: calc(18vw / 7.68)
  }
  .sub-title{
    font-size: calc(26vw / 7.68)
  }
}

/*** 札幌滞在 ***/
.content-wrapper.spk::before{
  content: "";
  background: url("../img/bg_sapporo.webp") no-repeat;
  background-position: center 120%;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

/** グルメ特典 **/
.sapporo-main-wrapper{
  display: grid;
  gap: 40px;
}
.title-box-wrapper.food{
  display: grid;
  grid-template-columns: 160px auto 160px;
  justify-content: center;
}
.title-box-wrapper.food::before,
.title-box-wrapper.food::after{
  content: "";
  background: var(--bg-img-setting);
  width: 100%;
  height: 100%;
  display: block;
}
.title-box-wrapper.food::before{
  background-image: url("../img/img_ramen.png")
}
.title-box-wrapper.food::after{
  background-image: url("../img/img_uokichi.png")
}
.food-tokuten-content{
  position: relative;
  height: 638px;
}
.food-tokuten-content::before{
  content: "";
  background: no-repeat right top / auto url("../img/photo/ph_gourmet_ramen.webp");
  width: min(960px, 50%);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.food-tokuten-content::after{
  content: "";
  background: no-repeat left top / auto url("../img/photo/ph_gourmet_kani.webp");
  width: min(960px, 50%);
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.food-tokuten-list{
  width: var(--content-width);
  height: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: flex-end; 
  position: relative;
  z-index: 30
}
.food-tokuten-list>li{
  display: grid;
  justify-content: center;
  padding: 0 58px 24px;
}
.food-tokuten-box{
  background: rgba(255 255 255 / 80%);
  padding: 34px 24px 24px;
  position: relative
}
.food-tokuten-box::before{
  content: "";
  background: var(--bg-img-setting);
  width: 245px;
  height: 50px;
  position: absolute;
  top: -25px;
  right: 0;
  left: 0;
  margin: auto
}
.food01 .food-tokuten-box::before{
  background-image: url("../img/ico_gourmet1.svg")
}
.food02 .food-tokuten-box::before{
  background-image: url("../img/ico_gourmet2.svg")
}
.food-tokuten-midashi{
  font-size: min(32px, calc(22vw / 7.68));
  font-weight: 900;
  color: var(--content-color-brown);
  text-align: center;
  margin-bottom: 16px;
}
.food-tokuten-txt{
  font-size: 16px;
  line-height: 1.8
}
@media (768px <= width <= 1024px){
  .food-tokuten-list{
    gap: 24px
  }
  .food-tokuten-list>li{
    padding: 0 0 24px;
  }
}

/** バスツアー **/
.sapporo-sub-wrapper .inner{
  display: grid;
  gap: 64px;
}
.sapporo-content{
  display: grid;
  gap: 40px;
}
.bustour-wrapper{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.bustour-content{
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 6;
  gap: 24px;
}
.title-box-wrapper.bus{
  position: relative
}
.title-box-wrapper.bus::before,
.title-box-wrapper.bus::after{
  content: "";
  background: var(--bg-img-setting);
  width: 120px;
  height: 160px;
  position: absolute;
  top: 40px;
  z-index: 20
}
.bustour-content:first-child .title-box-wrapper.bus::before{
  background-image: url("../img/img_garinkogo.png");
  left: 0;
}
.bustour-content:first-child .title-box-wrapper.bus::after{
  background-image: url("../img/img_hyobaku.png");
  right: 0;
}
.bustour-content:last-child .title-box-wrapper.bus::before{
  background-image: url("../img/img_azarashi.png");
  left: 0;
}
.bustour-content:last-child .title-box-wrapper.bus::after{
  background-image: url("../img/img_shirokuma.png");
  right: 0;
}
.title-box-wrapper.bus .catch-copy{
  font-size: 24px;
}
.spk-bus-leadcopy{
  font-size: 20px;
  line-height: 1.5
}
.spk-bus-course{
  display: grid;
  gap: 16px;
}
.spk-bus-img{
  display: grid;
  grid-template-columns: repeat(2, 50%);
}
.spk-bus-img>li:first-child{
  grid-column: 1 / 3;
}
.spk-bus-ph{
  position: relative
}
.spk-bus-icon{
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--content-color-red);
  padding: 4px;
  font-size: 12px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
}
.schedule-txt{
  font-size: 16px;
  line-height: 1.8
}
.schedule-midashi{
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  line-height: 1.0;
  padding: 4px 16px;
  margin-right: 16px;
  background: var(--content-color-brown);
  border-radius: 100px;
}
.schedule-txt .is-red{
  font-weight: bold
}
.operation-midashi{
  font-size: 26px;
  font-weight: 900;
  color: var(--content-color-brown);
  text-align: center;
  margin-bottom: 8px;
}
.operation-list{
  display: grid;
  gap: 2px;
}
.operation-list>li{
  display: grid;
  grid-template-columns: minmax(8em, 100px) 1fr;
}
.operation-month{
  background: var(--content-color-brown);
  padding: 8px;
  font-size: 14px;
  font-weight: 900;
  color: #FFF;
  text-align: center;
}
.operation-day{
  background: rgba(255 255 255 / 60%);
  padding: 8px;
}

@media (768px <= width <= 1024px) {
  .title-box-wrapper.bus::before,
  .title-box-wrapper.bus::after{
    content: "";
    background: var(--bg-img-setting);
    width: calc(80vw / 7.68);
    height: calc(107vw / 7.68);
    position: absolute;
    top: 70px;
    z-index: 20
  }
  
}

/** サービス **/
.spk-tokuten-wrapper{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.spk-tokuten-content{
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 16px;
}
.tokuten-box{
  background: rgba(255 255 255 / 80%);
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center
}
.tokuten-box-txt{
  font-size: 32px;
  font-weight: 900;
  text-align: center;
}
.tokuten-box-txt small{
  font-size: 20px;
  font-weight: bold;
  display: block;
}
.tokuten-box-txt .note-txt{
  font-size: 16px;
  font-weight: normal;
  line-height: 1.8
}
.tokuten-txt{
  font-size: 20px;
  font-weight: bold;
  color: var(--content-color-purple);
  line-height: 1.5;
  margin-bottom: 8px;
}
.spk-tokuten-content .noticebox{
  margin-bottom: 24px;
}

/*** 雪まつり ***/
.content-wrapper.snowfes{
  padding: 80px 0;
  background-image: linear-gradient(to bottom, #187DAF 0, #A5D9F3 40%);
  position: relative
}
.content-wrapper.snowfes::before{
  content: "";
  background: url("../img/bg_yukimatsuri.webp") no-repeat top center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.snowfes-content{
  background: rgba(255 255 255 / 80%);
  grid-template-columns: 1fr minmax(calc((100% - 72px) / 2), 1fr);
  padding: 24px;
  display: grid;
  gap: 24px;
}
.snowfes-box{
  display: grid;
  gap: 16px;
}
.snowfes-midashi{
  font-size: 36px;
  font-weight: 900;
  color: var(--content-color-purple);
  text-align: center;
}
.snowfes-midashi-catch{
  display: block;
  font-size: 26px;
  font-weight: bold;
  color: var(--content-color-pink);
}
.snowfes-point-box{
  display: grid;
  gap: 8px;
}
.point-midashi{
  text-align: center;
}
.point-midashi>span{
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(to bottom, transparent 70%, rgba(206 30 82 / 50%) 70%);
}
.point-list{
  display: grid;
  gap: 8px
}
.point-list>li{
  display: grid;
  gap: 16px;
  grid-template-columns: 70px 1fr;
  padding-bottom: 8px;
  border-bottom: 2px dashed #C0C5CC;
}
.point-num{
  font-size: 28px;
  font-weight: 900;
  color: var(--content-color-pink);
}
.point-num>small{
  font-size: 20px;
}
.point-txt{
  font-size: 18px;
  font-weight: bold;
  color: var(--content-color-purple);
}
.snowfes-box .point-txt .note-txt{
  display: inline;
  font-weight: normal;
  color: var(--content-color-base);
  padding-left: 0;
  text-indent: 0
}
.snowfes-img{
  background: url("../img/photo/ph_yukimatsuri.jpg") no-repeat center / cover;
  display: grid;
  align-content: flex-end;
  padding: 0 24px 24px;
}
.snowfes-txt{
  background: rgba(202 232 248 / 80%);
  padding: 8px 16px;
  font-size: 16px;
  font-weight: bold;
  color: var(--content-color-purple);
  line-height: 1.8
}
.content-wrapper.snowfes .product-container{
  gap: 40px
}
.content-wrapper.snowfes .product-title>small{
  color: var(--content-color-pink)
}
.content-wrapper.snowfes .notice-inbox.is-baggage .notice-list>li:first-child{
  display: none
}

@media (768px <= width <= 1024px){
  .snowfes-content{
    grid-template-columns: auto;    
  }
  .snowfes-box{
    order: 2
  }
  .snowfes-img{
    order: 1;
    width: 550px;
    aspect-ratio: 550 / 400;
    margin: auto;
  }
}

/*** 函館滞在 ***/
.content-wrapper.hkd::before{
  content: "";
  background: url("../img/bg_hakodate.webp") no-repeat;
  background-position: center 120%;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.hakodate-wrapper{
  display: grid;
  gap: 64px;
}
.hakodate-content{
  display: grid;
  gap: 40px;
}
.hkd-tokuten-box{
  display: grid;
  grid-template-columns: 1fr minmax(calc((100% - 24px) / 2), 1fr);
  gap: 16px
}
.hkd-tokuten-item{
  display: grid;
  gap: 16px;
}
.hkd-tokuten-midashi{
  text-align: center;
}
.hkd-tokuten-midashi>span{
  display: inline-block;
  font-size: 26px;
  font-weight: bold;
  background: linear-gradient(to bottom, transparent 70%, rgba(239 214 28 / 50%) 70%);
}
.hkd-tokuten-txt{
  font-size: 20px;
  line-height: 1.5
}
.hkd-tokuten-img{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (768px <= width <= 1024px){
  .hkd-tokuten-box{
    display: grid;
    grid-template-columns: auto;
    gap: 16px
  }
  .hkd-tokuten-img{
    order: 1
  }
  .hkd-tokuten-item{
    order: 2
  }
}

.hkd-hotel-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 24px;
}
.hkd-hotel-list>li{
  display: grid;
  gap: 16px;
  grid-template-rows: subgrid;
  grid-row: span 2;
}
.hkd-hotel-main{
  background: no-repeat center / 100%;
  display: grid;
  align-content: flex-end;
  padding: 0 16px 16px;
  aspect-ratio: 540 / 360
}
.hkd01 .hkd-hotel-main{
  background-image: url("../img/photo/ph_htl_century_hakodate_room.jpg")
}
.hkd02 .hkd-hotel-main{
  background-image: url("../img/photo/ph_htl_lavista_hakodate_room.jpg")
}
.hkd03 .hkd-hotel-main{
  background-image: url("../img/photo/ph_htl_hakodate_kokusai_room.jpg")
}
.hkd04 .hkd-hotel-main{
  background-image: url("../img/photo/ph_htl_lagent_hakodate_room.jpg")
}
.hkd-hotel-tokuten{
  background: rgba(255 255 255 / 80%);
  padding: 8px 8px 8px 105px;
  position: relative;
  min-height: 109px;
}
.hkd-hotel-tokuten::before{
  content: "";
  background: var(--bg-img-setting);
  background-image: url("../img/ico_stay_vl.svg");
  width: 80px;
  height: 115px;
  position: absolute;
  top: -16px;
  left: 8px;
}
.hkd02 .hkd-hotel-tokuten::before{
  background-image: url("../img/ico_arrange_vl.svg");
}
.hkd-hotel-item{
  font-size: 20px;
  font-weight: 900;
}
.hkd-hotel-item .is-red{
  font-size: 14px;
  display: block;
}
.hkd-hotel-item small{
  display: block;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.5
}
.hkd-hotel-info{
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 24px;
  align-items: flex-start
}
.hkd-hotel-img>img{
  border-radius: 50%;
}
.hkd-hotel-data{
  display: grid;
  gap: 8px;
}
.hkd-hotel-name{
  font-size: 24px;
  font-weight: 900;
  color: var(--content-color-purple)
}
.hkd-hotel-txt{
  line-height: 1.5
}

/*** スキー ***/
.content-wrapper.ski::before{
  content: "";
  background: url("../img/bg_winter.webp") no-repeat;
  background-position: center 120%;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.head-title#ski::before{
  background-image: url(../img/bg_sky_ttl_lft.png);
}
.head-title#ski::after{
  background-image: url(../img/bg_sky_ttl_ryt.png);
}
.ski-wrapper{
  display: grid;
  gap: 40px;
}
.tomamu-content{
  display: grid;
  grid-template-columns: 1fr minmax(calc((100% - 24px) / 2), 1fr);
  gap: 16px
}
.tomamu-item{
  display: grid;
  gap: 16px;
}
.tomamu-midashi{
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}
.tomamu-txt{
  font-size: 20px;
  line-height: 1.5
}
.tomamu-ph{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.slopes-content{
  background: rgba(255 255 255 / 80%);
  padding: 24px;
  display: grid;
  gap: 16px;
}
.slopes-midashi{
  font-size: 36px;
  font-weight: 900;
  color: var(--content-color-purple);
  text-align: center;
}
.slopes-midashi .ski-midashi-catch{
  display: block;
  font-size: 26px;
  font-weight: bold;
}
.slopes-midashi .ski-midashi-catch .is-pink{
  color: var(--content-color-pink)
}
.slopes-box{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.slopes-ph{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.slopes-list{
  display: grid;
  gap: 8px
}
.slopes-list>li{
  display: grid;
  gap: 16px;
  grid-template-columns: 120px 1fr;
  padding-bottom: 8px;
  border-bottom: 2px dashed #C0C5CC;
}
.slopes-list>li .point-num{
  font-size: 26px;
}
.slopes-list>li .point-midashi{
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  color: var(--content-color-purple);
}
.slopes-list>li .point-txt{
  font-size: 14px;
  font-weight: normal;
  color: var(--content-color-base);
}
.rental-content{
  display: grid;
  gap: 24px;
}
.rental-tokuten-item{
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 24px;
  align-items: flex-start
}

@media (768px <= width <= 1024px) {
  .head-title{
    gap: 0;
  }
  .head-title#ski>span{
    font-size: calc(44vw / 7.68)
  }
  .slopes-box{
    grid-template-columns: auto;
    align-items: flex-start
  }
}

/*** 温泉 ***/
.content-wrapper.onsen::before{
  content: "";
  background: url("../img/bg_onsen.webp") no-repeat;
  background-position: center 120%;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.onsen-wrapper{
  display: grid;
  gap: 40px;
}
.onsen-content{
  background: url("../img/bg_onsen_htl.webp") repeat;
  padding: 24px;
  display: grid;
  gap: 24px;
}
.onsen-main-box{
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: flex-start
}
.onsen-tokuten-img{
  position: relative;
  padding-top: 20px;
}
.onsen-tokuten-img::before{
  content: "";
  background: var(--bg-img-setting);
  width: 150px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.onsen-tokuten-img.is-stay::before{
  background-image: url("../img/ico_stay.svg")
}
.onsen-tokuten-img.is-early::before{
  background-image: url("../img/ico_early.svg")
}
.onsen-tokuten-img>img{
  border-radius: 50%;
}
.onsen-item{
  display: grid;
  gap: 16px;
}
.onsen-name{
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}
.onsen-name>small{
  font-size: 26px;
}
.onsen-txt{
  font-size: 16px;
  text-align: center;
  line-height: 1.8
}
.onsen-tokuten-list{
  display: grid;
  gap: 8px;
}
.onsen-tokuten-list>li{
  background: rgba(255 255 255 / 80%);
  padding: 8px;
  display: grid;
  grid-template-columns: 6em 1fr;
  gap: 10px;
}
.onsen-tokuten-midashi{
  font-size: 20px;
  font-weight: 900;
}
.onsen-tokuten-midashi.is-purple{
  color: var(--content-color-purple)
}
.onsen-tokuten-txt{
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8
}
.onsen-hotel-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.onsen-hotel-list>li{
  display: grid;
  gap: 8px;
  align-items: flex-start
}
.onsen-hotel-img{
  position: relative
}
.onsen-hotel-img>img{
  aspect-ratio: 520 / 345;
}
.onsen-hotel-img .onsen-hotel-icon{
  position: absolute;
  bottom: 0;
  left: 0;
}
.onsen-hotel-txt{
  font-size: 16px;
  line-height: 1.8
}

/*** ツアー ***/
.product-container{
  display: grid;
  gap: 64px;
}
.product-title-box{
  display: grid;
  gap: 8px
}
.product-title{
  font-size: 54px;
  font-weight: 900;
  color: var(--content-color-red);
  text-align: center;
  display: grid;
  grid-auto-flow: column;
  gap: 16px;
  justify-content: center;
  align-items: flex-end;
  line-height: 1.0
}
.product-title>small{
  font-size: 36px;
  color: var(--content-color-brown);
}
.area00{
  display: none;
}
.product-content{
  display: grid;
  gap: 24px
}
.item-label::after{
  font-size: 12px;
  font-weight: bold;
  color: var(--content-color-base);
  text-align: center;
}
.item-label.hotel::after{
  content: "大浴場付";
  background-color: #A0CC00;
}
.item-label.BF::after{
  content: "ホテル朝食がお得";
  background-color: var(--content-color-yellow);
  letter-spacing: -0.08em
}
.link-button{
  width: 600px;
  margin: auto;
}
.link-button>a{
  display: block;
  border-radius: 100px;
  background: var(--content-color-brown);
  padding: 16px 0;
  font-size: 24px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  position: relative
}
.link-button>a::after{
  content: "";
  background: var(--bg-img-setting) var(--content-arrow-right);
  width: 9px;
  height: 16px;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
}
.link-button>a:hover{
  opacity: .8
}

/** 割引クーポン **/
.coupon-wrapper{
  background: rgba(255 255 255 / 80%);
}
.coupon-catch{
  background: var(--content-color-yellow);
  padding: 8px;
  font-size: 26px;
  font-weight: 900;
  text-align: center;
}
.coupon-content{
  padding: 24px;
}
.coupon-list{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  padding-bottom: 8px
}
.coupon-list>li{
  background: var(--content-color-camel);
  padding: 8px;
  text-align: center;
  border-radius: 8px
}
.content-wrapper.hkd .coupon-list>li:last-child{
  display: none
}
.condition{
  font-size: min(20px, (16vw / 7.68));
  font-weight: 900;
}
.price-data{
  font-size: 24px;
  font-weight: 900;
  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{
  display: block;
  font-size: 14px;
}
.code-txt{
  background: #FFF;
  padding: 4px 24px 4px 4px;
  font-size: min(28px, calc(24vw / 7.68));
  font-weight: bold;
  text-align: center;
  position: relative
}
.code-txt::after{
  content: "";
  background: var(--bg-img-setting) url("../img/ico_copy.svg");
  width: 15px;
  height: 16px;
  position: absolute;
  top: 8px;
  right: 8px;
}
.msgBoard{
  font-size: 14px;
  display: none;
}
.coupon-content .note-txt>a{
  text-decoration: underline;
}

/* アコーディオン */
.accordion-content{
  display: none
}
.notice-title{
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 24px;
  text-align: center;
}
.notice-inbox+.notice-inbox{
  margin-top: 24px;
}
.notice-midashi{
  font-weight: bold;
  margin-bottom: 8px;
}
.notice-list>li{
  line-height: 1.5;
  padding-left: 1.0em;
  text-indent: -1.0em
}
.accordion-button {
  width: 256px;
  margin: auto;
  border-radius: 44px;
  border: var(--content-border-1);
  background: #FFF;
  font-weight: bold;
  color: var(--content-color-brown);
  text-align: center;
  line-height: 40px;
}
.accordion-button>span{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px
}
.accordion-button>span::before {
  content: "";
  background: var(--bg-img-setting);
  background-image: url(../img/ico_open.svg);
  width: 14px;
  height: 14px;
  display: block
}
.accordion-button.is-open>span::before {
  background-image: url(../img/ico_close.svg);
}

/*** フッター ***/
.content-wrapper.foot{
  padding: 40px 0;
  background: #FFF;
}
.content-wrapper.foot .inner{
  gap: 24px;
}
.content-wrapper.foot .sub-title{
  color: var(--content-color-base)
}
.content-wrapper.search{
  padding: 40px 0
}
.content-wrapper.search .inner {
  width: min(100%, 992px);
  margin: auto;
}

.close-txt {
  margin: 0 auto !important;
  font-size: 16px;
  font-weight: bold;
  padding: 40px 0;
}
