@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

:root{
  --content-color-blue: #0B96D9;
  --content-color-navy: #19415E;
  --content-color-green: #4D9E38;
  --bg-img-setting: no-repeat center center / contain;
  --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-card-shadow: 4px 4px rgb(128 128 128 / 100%);
  --content-arrow-right: url(../img/icon_arrow_right_white.svg);
  --content-arrow-down: url(../img/angle-down.svg);
  --content-border_s: 1px solid;
  --content-border_m: 2px solid;
  --content-border_l: 4px solid;
  --content-border_dot: 2px dotted;
}
.nopc{
  display: none
}
.main{
  font-family: var(--font-sans);
  font-size: var(--content-font-size);
  font-weight: 400;
  color: #000;
  position: relative;
  line-height: 1.0
}
.main *{
  box-sizing: border-box;
}
.inner{
  width: var(--content-width);
  margin: auto;
}
a{
  transition: var(--content-hover-speed);
}

.title__wrapper{
  width: 100%;
  height: 400px;
  background: url("../img/mv_bg.jpg") center top / cover;
  position: relative
}
.title-logo{
  margin: auto;
  padding-top: 32px;
  justify-content: center;
  align-items: center;
  text-align: center
}
.title-logo>img{
  width: 370px
}
.mv__inbox{
  width: var(--content-width);
  margin: auto;
  display: flex;
  gap: 20px;
}
.bodycopy{
  flex: 1;
  padding: 16px;
  background: rgba(0 0 0 / 40%);
  font-weight: bold;
  color: #FFF;
  line-height: 1.5
}
.display_selected {
  background: var(--content-color-navy);
  width: 130px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #FFF;
  position: relative;
  cursor: pointer;
}
.display_selected::before{
  content: "出発地";
  display: block;
  font-size: 12px;
  margin-bottom: 8px
}
.display_selected::after {
  content: "";
  background: var(--bg-img-setting) var(--content-arrow-down);
  width: 16px;
  height: 12px;
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  margin: auto
}
.dep-select-zone {
  display: none;
  width: 130px;
  position: absolute;
  z-index: 30;
  border: 1px solid var(--content-color-navy);
  border-top: none;
  background: #FFF;
  line-height: 1.5
}
.dep-select li {
  cursor: default;
  padding: 4px 8px;
  text-align: center;
  font-weight: bold;
  color: var(--content-color-navy);
}
.dep-select li:hover,
.dep-select li.selected {
  background: var(--content-color-navy);
  color: #FFF
}
.close-button{
  display: none
}

/*** .main__content ***/
.main__content{
  background: #E9E7DB;
  padding-top: 16px;
}
.area__tab{
  width: var(--content-width);
  margin: 0 auto 40px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.area__tab>li{
  width: calc((100% - (16px * 3)) / 4);
  background: #aaa;
  border-radius: 4px;
  padding: 16px 0;
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  cursor: pointer
}
.area__tab>li.is-current{
  background: var(--content-color-blue);
  padding: 48px 0 16px;
  position: relative
}
.area__tab>li.is-current::before{
  content: "";
  background: var(--bg-img-setting) url("../img/nav_ico_eco.png");
  width: 22px;
  height: 32px;
  position: absolute;
  top: 8px;
  right: 0;
  left: 0;
  margin: auto
}
.area__tab>li.is-current::after{
  content: "";
  width: 24px;
  height: 24px;
  clip-path: polygon(0 0, 50% 50%, 100% 0);
  background: var(--content-color-blue);
  position: absolute;
  bottom: -24px;
  right: 0;
  left: 0;
  margin: auto;
}
.content__weapper{
  display: none
}
.content__weapper.is-active{
  display: block
}
.head-title{
  margin-bottom: 24px;
  text-align: center;
}
.head-title>span{
  font-size: 36px;
  font-weight: bold;
  color: var(--content-color-navy);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center
}
.head-title>span:not(#about)::before{
  content: "";
  background: var(--bg-img-setting) url("../img/ico_eco.png");
  width: 28px;
  height: 40px;
  display: inline-block;
  margin-right: 8px;
}
.select__area{
  margin-bottom: 60px;
}
.item__list{
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}
.item__list>li{
  background: #FFF;
}
.item__list.clm2>li{
  width: calc((100% - 20px) / 2);
}
.item__list.clm3>li{
  width: calc((100% - (20px * 2)) / 3);
}
.item__list.clm1>li{
  width: var(--content-width);
  display: flex;
  gap: 8px;
}
.item__area{
  background: var(--content-color-blue);
  padding: 8px 0;
  font-size: 18px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
}
.item__img{
  width: 100%;
  height: 200px;
}
.item__list.clm1>li .item__img{
  width: 400px;
  height: 100%;
}
.item__img>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.item__inbox{
  position: relative;
  padding: 60px 8px 16px;
}
.item__list.clm1>li .item__inbox{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center
}
.sdgs__panel{
  width: 100px;
  height: 100px;
  background: #FFF;
  padding: 8px;
  position: absolute;
  top: -40px;
  left: 0;
}
.item__name{
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  color: var(--content-color-blue);
  margin-bottom: 8px;
}
.item__txt{
  line-height: 1.4
}
.sub-title{
  font-size: 24px;
  font-weight: bold;
  color: var(--content-color-blue);
  text-align: center;
  margin-bottom: 8px;
}
.hotel__content .sub-title{
  color: var(--content-color-green);
}
.hotel__content .item__inbox{
  padding: 8px 8px 16px;
}
.hotel__content .item__list.clm3>li{
  display: flex;
  flex-direction: column;
}
.hotel__content .item__list.clm3>li .item__inbox{
  display: flex;
  flex-direction: column;
  flex-grow: 1
}
.hotel__content .item__name{
  color: var(--content-color-green)
}
.hotel__content .item__list.clm3>li .item__inbox .item__name{
  height: 2.5em;
}
.item__tokuten{
  width: 100%;
  margin: 16px auto;
  display: flex;
  position: relative;
  gap: 8px;
}
.item__tokuten .tokuten__icon{
  background: var(--content-color-green);
  width: 80px;
  height: 50px;
  display: block;
  position: relative;
}
.tokuten__icon::before{
  content: "";
  background: var(--bg-img-setting) url(../img/privilege.png);
  width: 36px;
  height: 37px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 22px;
  margin: auto;
}
.tokuten__txt{
  display: block;
  flex: 1;
  line-height: 1.2;
}
.note__txt{
  font-size: 12px;
  padding-left: 1.0em;
  text-indent: -1.0em;
  display: block;
  margin-top: 4px;
}
.item__link{
  width: 100%;
  max-width: 460px;
  margin: auto
}
.item__list.clm1>li .item__link{
  margin-top: auto!important
}
.item__link>a{
  display: block;
  border-radius: 4px;
  background: var(--content-color-green);
  padding: 16px 0;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  position: relative
}
.item__link>a::after{
  content: "";
  background: var(--bg-img-setting) var(--content-arrow-right);
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  margin: auto
}
.item__link>a:hover{
  opacity: .8
}
.js-product{
  display: none
}
.product-list.card-style>li{
  line-height: 1.4
}
.product__content .item__link{
  margin: 24px auto;
  width: 800px;
}
.product__content .item__link>a{
  background: var(--content-color-blue);
}

/*** 非表示 ***/
.content__weapper.hokuriku .sdgs__content{
  display: none
}

/***** SDGsとは *****/
.about__area{
  background: #FFF;
  padding: 40px 0
}
.sdgs__bodycopy{
  padding-left: 120px;
  position: relative;
  line-height: 1.5;
  margin-bottom: 40px;
}
.sdgs__bodycopy::before{
  content: "";
  background: var(--bg-img-setting) url("../img/sdgs_icon.png");
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.sdgs__list{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.sdgs__list>li{
  width: calc((100% - 20px) / 2);
  display: flex;
  gap: 8px;
}
.sdgs__img{
  width: 100px;
}
.sdgs__item{
  flex: 1
}
.sdgs__midashi{
  font-size: 16px;
  margin-bottom: 8px;
}
.sdgs__txt{
  line-height: 1.5
}
