@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/* CSS Document */
:root{
  --content-color-green: #19ab5f;
  --content-color-red: #c6000a;
  --content-bg-color: #fffbcc;
  --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-shadow: 0 0 6px 0 rgb(0 0 0 / 30%);
  --content-arrow-down: url(/cmn/icon/icon_arrow_down_white.svg);
  --content-arrow-right: url(/cmn/icon/icon_arrow_right_white.svg);
  --content-arrow-right_b: url(/cmn/icon/icon_arrow_right_black.svg);
  --content-border_s: 1px solid;
  --content-border_m: 3px solid;
  --content-border_l: 4px solid;
}

.nosp{
  display: none
}
.main{
  font-family: var(--font-sans);
  font-size: var(--content-font-size);
  font-weight: 400;
  position: relative;
}
.main *{
  box-sizing: border-box;
}
.inner{
  width: var(--content-width);
  margin: auto;
}

/***** MV・ナビ *****/
.title__wrapper {
  width: 100%;
}
.title__wrapper>.inner{
  width: 100vw;
  position: relative;
}
.readcopy{
  margin: calc(16vw / 7.5) auto;
  padding: calc(16vw / 7.5);
  text-align: center;
}
.nav__wrapper {
  width: 100%;
  display: flex;
  background: var(--content-color-green);
}
.nav__list {
  width: 100vw;
  display: flex;
  margin: auto;
}
.nav__list>li {
  text-align: center;
  background: var(--content-color-green);
  width: calc(100% / 3);
  border-left: var(--content-border_s) #FFF;
}
.nav__list>li:first-child{
  border-left: none
}
.nav__list>li>a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  font-size: calc(26vw / 7.5);
  color: #FFF;
  line-height: 1.25;
  padding: calc(16vw / 7.5) 0 calc(40vw / 7.5);
  position: relative
}
.nav__list>li>a::after{
  content: "";
  background: var(--bg-img-setting) var(--content-arrow-down);
  width: calc(48vw / 7.5);
  height: calc(48vw / 7.5);
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto
}

/***** メインコンテンツ *****/
.main__content{
  position: relative;
}
.content__wrapper{
  width: 100%;
  padding: calc(60vw / 7.5) 0;
}
.head-title{
  font-size: calc(40vw / 7.5);
  font-weight: 900;
  color: var(--content-color-green);
  text-align: center;
  margin-bottom: calc(24vw / 7.5);
}
.catch__txt{
  text-align: center;
}
.catch__txt>span{
  font-size: calc(32vw / 7.5);
  font-weight: bold;
  color: var(--content-color-red);
  position: relative
}
.catch__txt>span::before,
.catch__txt>span::after{
  content: "/";
  display: inline-block;
}
.catch__txt>span::before{
  transform: scaleX(-1);
  margin-right: calc(8vw / 7.5);
}
.inner__content{
  display: flex;
  flex-wrap: wrap;
  gap: calc(24vw / 7.5);
}

.bnr__area{
  margin: calc(24vw / 7.5) auto;
  text-align: center;
}

/*** 路線 ***/
.route__list{
  width: 100%;
  order: 2
}
.route__list>li+li{
  margin-top: calc(16vw / 7.5);
}
.route__list>li>a{
  display: flex;
  border: var(--content-border_s) var(--content-color-red);
}
.route__img{
  width: calc(250vw / 7.5);
  position: relative
}
.route__icon{
  position: absolute;
  top: 0;
  left: 0;
  padding: calc(4vw / 7.5);;
  background: var(--content-color-red);
  font-weight: bold;
  color: #FFF;
  text-align: center;
}
.route__txtbox{
  flex: 1;
  padding: calc(8vw / 7.5);
  display: flex;
  flex-direction: column;
}
.route__txt{
  flex-grow: 1
}
.route__leadtxt{
  text-align: right;
  font-weight: bold;
  color: var(--content-color-red);
  position: relative;
  padding-right: calc(30vw / 7.5);
}
.route__leadtxt::after{
  content: "";
  background: var(--bg-img-setting) url("../img/arrow_s.png");
  width: calc(24vw / 7.5);
  height: calc(15vw / 7.5);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.route__list>li>a:hover{
  opacity: .8
}
.route__list>li>a:hover .route__leadtxt{
  text-decoration: underline
}

.route__map{
  width: 100%;
  order: 1
}

/*** 商品　***/
.content__wrapper.tour{
  background: var(--content-bg-color);
}
.product__content+.product__content{
  margin-top: calc(60vw / 7.5);
}
.sub-title__tour{
  font-size: calc(36vw / 7.5);
  font-weight: 900;
  color: var(--content-color-red);
  text-align: center;
  margin-bottom: calc(8vw / 7.5);
}
.more__link{
  width: 100%;
  margin: calc(24vw / 7.5) auto 0
}
.more__link>a{
  display: block;
  border-radius: calc(48vw / 7.5);
  font-size: calc(26vw / 7.5);
  color: #FFF;
  text-align: center;
  padding: calc(24vw / 7.5) 0;
  background: var(--content-color-green);
  box-shadow: var(--content-shadow);
  position: relative
}
.more__link>a::after{
  content: "";
  background: var(--bg-img-setting) var(--content-arrow-right);
  width: calc(48vw / 7.5);
  height: calc(48vw / 7.5);
  position: absolute;
  top: 0;
  right: calc(20vw / 7.5);
  bottom: 0;
  margin: auto
}
.more__link>a:hover{
  opacity: .8
}

/*** 空港インフォメーション ***/
.info__list{
  display: flex;
  flex-wrap: wrap;
  gap: calc(32vw / 7.5) calc(16vw / 7.5);
  margin: calc(16vw / 7.5) auto calc(40vw / 7.5);;
}
.info__list>li{
  width: calc((100% - 16px) / 2);
  display: flex;
  flex-direction: column;
}
.info__catch{
  background-color: var(--content-color-green);
  padding: calc(8vw / 7.5);
  text-align: center;
  font-size: calc(26vw / 7.5);
  font-weight: bold;
  color: #FFF;
}
.info__txt{
  flex-grow: 1
}
.info__link>a{
  display: inline-block;
  font-weight: bold;
  text-decoration: underline;
  position: relative;
  padding-right: calc(48vw / 7.5);
}
.info__link>a::after{
  content: "";
  background: var(--bg-img-setting) var(--content-arrow-right_b);
  width: calc(32vw / 7.5);
  height: calc(32vw / 7.5);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto
}
.access__list{
  width: 100%;
  order: 1
}
.access__list>li+li{
  margin-top: calc(32vw / 7.5);
}
.access__midashi{
  font-size: calc(30vw / 7.5);
  font-weight: bold;
  position: relative;
  padding-left: calc(40vw / 7.5);
  line-height: 1.0;
  margin-bottom: calc(8vw / 7.5);
}
.access__midashi::before{
  content: "";
  background: var(--bg-img-setting) url("../img/icon_access.png");
  width: calc(30vw / 7.5);
  height: calc(36vw / 7.5);
  position: absolute;
  top: 0;
  left: 0;
}
.note__txt{
  display: block;
  font-size: calc(22vw / 7.5);
}
#map{
  width: 100%;
  height: 500px;
  order: 2
}

/*** 検索ボックス ***/
.content__wrapper.search{
  background-color: var(--content-bg-color);
  background-image: url("../img/img_line.png"), url("../img/img_line.png");
  background-repeat: repeat-x;
  background-position: left top, left bottom;
}
.content__wrapper.search .inner{
  width: 100vw
}

/*** ショップ ***/
.shop__content{
  border: var(--content-border_s);
  padding: calc(16vw / 7.5);
}
.shop__midashi{
  font-size: calc(30vw / 7.5);
  font-weight: bold;
  color: #0057B8;
  padding-left: calc(40vw / 7.5);
  margin-bottom: calc(8vw / 7.5);
  position: relative;
  line-height: 1.0
}
.shop__midashi::before{
  content: "";
  background: var(--bg-img-setting);
  width: calc(32vw / 7.5);
  height: calc(32vw / 7.5);
  position: absolute;
  top: 0;
  left: 0;
}
.shop__midashi.cc::before{
  background-image: url(/kokunai/kanto/image/icon_tel.png)
}
.shop__midashi.shop::before{
  background-image: url(/kokunai/kanto/image/icon_shop.png)
}
.shop__list{
  margin-bottom: calc(30vw / 7.5);
}
.shop__list>li+li{
  margin-top: calc(24vw / 7.5);
}
.shop__name{
  display: block;
  font-size: calc(28vw / 7.5);
  font-weight: bold;
}
.shop__phone{
  display: block;
  font-size: calc(28vw / 7.5);
  font-weight: bold;
}
.shop__phone>a>em{
  color: var(--content-color-red)
}
.shop__data{
  font-size: calc(22vw / 7.5);
}
.shop__link{
  width: 100%;
  margin: calc(16vw / 7.5) auto 0;
}
.shop__link>a{
  display: block;
  background: #0057B8;
  padding: calc(16vw / 7.5) 0;
  font-size: calc(26vw / 7.5);
  font-weight: bold;
  color: #FFF;
  text-align: center;
}
