@charset "utf-8";
/* CSS Document */
:root{
  --red: #be3455;
  --khaki: #b39564;
  --brown: #99702e;
  --gray: #4c4c4c;
  --t_brown: rgba(153 112 46 / 80%);
  --f_sans: 'Noto Sans JP', sans-serif;
  --f_serif: 'Noto Serif JP', serif;
  --center_contain: no-repeat center center / contain;
  --shadow01: 0 0 4px 2px rgba(0 0 0 / 35%);
  --shadow02: 0 0 8px 2px rgba(0 0 0 / 35%);
}

.nopc{
  display: none;
}
.inner{
  width: 992px;
  margin: auto;
}
.main *{
  box-sizing: border-box;
  font-family: 'Noto Serif JP', serif;
  color: var(--gray);
}
.main{
  background: url("../img/bg_mvpc.jpg") no-repeat left top;
}

/*** タイトル周り ***/
.title-wrapper{
  width: 992px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 50px;
  padding-bottom: 320px;
  margin: auto;
  position: relative;
}
.title-logo{
  width: 50%;
}
.period-data{
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.period-data p{
  width: calc(96% / 2);
  border-radius: 11px;
  font-family: var(--f_sans);
  font-weight: 700;
  text-align: center
}
.ryokoshien{
  background: var(--red);
  color: #FFF;
}
.cpn-period{
  background: #FFF;
  color: var(--brown);
  letter-spacing: -0.07em;
}
.main-bodycopy{
  width: 50%;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  padding-left: 20px;
}
.select-map{
  width: 100%;
  text-align: center;
  position: absolute;
  right: 0;
  bottom: 30px;
  left: 0;
  margin: auto;
}

/*** ナビ ***/
.select-area{
  width: 992px;
  margin: auto;
  display: flex;
  justify-content: center;
}
.select-area>li{
  width: calc((100% - 120px) / 5);
  display: flex;
  flex-direction: column;
margin: 0 20px;
}
.area-name{
  text-align: center;
  margin-bottom: 10px;
}
.area-name>span{
  display: inline-grid;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  text-align: center;
  align-content: center;
  background: var(--khaki);
  font-size: 20px;
  font-weight: 400;
  color: #FFF;
  line-height: 1.2;
  position: relative
}
.area-name>span::after{
  content: "";
  background: var(--center_contain);
  background-image: url("../img/arrow01.png");
  width: 10px;
  height: 6px;
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  margin: auto
}
.area-list{
  background: #FFF;
  padding: 10px;
  flex-grow: 1
}
.area-list>li{
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  cursor: pointer
}
.area-list>li+li{
  margin-top: 5px;
}
.pref-name{
  width: 3.5em;
  display: inline-block;
  background: var(--khaki);
  padding: 0 3px;
  margin-right: 3px;
  font-weight: 400;
  color: #FFF;
  text-align: center;
}
.onsen-name{
  flex: 0 0 1;
  font-size: 16px;
  font-weight: 400;
}
/* 選択時＆hover時 */
.select-area>li.is-active .area-name>span,
.select-area>li:hover .area-name>span{
  background: var(--red);
  box-shadow: var(--shadow01);
}
.select-area>li.is-active .area-list,
.select-area>li:hover .area-list{
  box-shadow: var(--shadow02);
}
.select-area>li.is-active .area-list>li .pref-name,
.select-area>li:hover .area-list>li .pref-name{
  background: var(--red);
}

/*** メインコンテンツ ***/
.select-content{
  display: none;
}
.select-content.is-active{
  display: block
}
.head-title{
  font-size: 60px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
}
.head-title>span{
  color: var(--red);
}
.hotel-wrapper{
  padding: 50px 0;
}
.hotel-list{
  display: flex;
  flex-wrap: wrap;
}
.hotel-list>li{
  width: calc(96% / 3);
  margin-right: 2%;
  display: flex;
  flex-direction: column;
}
.hotel-list>li:nth-child(3n){
  margin-right: 0
}
.hotel-list>li:nth-child(n+4){
  margin-top: 2%;
}
.hotel-content__upper,
.hotel-content__lower{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hotel-content__upper,
.hotel-content__lower{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hotel-img{
  width: 100%;
  height: 230px;
  position: relative
}
.hotel-img>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hotel-img::before{
  content: "";
  background: no-repeat left top / contain;
  width: 33px;
  height: 100px;
  position: absolute;
  top: 0;
  left: 0;
}
/* 温泉アイコン */
.hotel-img.beppu::before{
  background-image: url("../img/badge_kyushu_beppu.gif");
}
.hotel-img.ibusuki::before{
  background-image: url("../img/badge_kyushu_ibushuki.gif");
}
.hotel-img.kirishima::before{
  background-image: url("../img/badge_kyushu_kirishima.gif");
}
.hotel-img.unzen::before{
  background-image: url("../img/badge_kyushu_unzen.gif");
}
.hotel-img.nagasaki::before{
  background-image: url("../img/badge_kyushu_nagasaki.gif");
}
.hotel-img.aso::before{
  background-image: url("../img/badge_kyushu_aso.gif");
}
.hotel-img.dogo::before{
  background-image: url("../img/badge_shikoku_dogo.gif");
}
.hotel-img.okudogo::before{
  background-image: url("../img/badge_shikoku_okudogo.gif");
  height: 121px;
}
.hotel-img.ashizuri::before{
  background-image: url("../img/badge_shikoku_ashizuri.gif");
  height: 134px;
}
.hotel-img.naruto::before{
  background-image: url("../img/badge_shikoku_naruto.gif");
}
.hotel-img.tama::before{
  background-image: url("../img/badge_shikoku_tamatsukuri.gif");
}
.hotel-img.awazu::before{
  background-image: url("../img/badge_kanto_awazu.gif");
  height: 117px;
}
.hotel-img.yamashiro::before{
  background-image: url("../img/badge_kanto_yamashiro.gif");
}
.hotel-img.hakone::before{
  background-image: url("../img/badge_kanto_hakone.gif");
  height: 100px;
}
.hotel-img.zao::before{
  background-image: url("../img/badge_tohoku_zao.gif");
}
.hotel-img.shido::before{
  background-image: url("../img/badge_tohoku_sidotaira.gif");
  height: 121px;
}
.hotel-img.asamushi::before{
  background-image: url("../img/badge_tohoku_asamushi.gif");
}
.hotel-img.naruko::before{
  background-image: url("../img/badge_tohoku_naruko.gif");
}
.hotel-img.akiu::before{
  background-image: url("../img/badge_tohoku_akiu.gif");
}
.hotel-img.nobori::before{
  background-image: url("../img/badge_hokkaido_noboribetsu.gif");
}
.hotel-img.jozankei::before{
  background-image: url("../img/badge_hokkaido_jozankei.gif");
  height: 121px;
}
.hotel-img.yunokawa::before{
  background-image: url("../img/badge_hokkaido_yunokawa.gif");
  height: 121px;
}
.hotel-img.tokachi::before{
  background-image: url("../img/badge_hokkaido_tokachigawa.gif");
  height: 121px;
}

.hotel-name{
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  color: var(--brown);
  margin: 5px auto;
}
.hotel-name>small{
  font-size: 12px;
  color: var(--brown);
}
.hotel-txt{
  flex: 1;
  margin-right: 10px;
}
.person-img{
  display: block;
  width: 97px;
  height: 104px;
  position: relative
}
.person-img>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.person-data{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 97px;
  height: 54px;
  background: var(--brown);
  font-size: 16px;
  font-weight: 700;
  color: #FFF;
  text-align: center;
  padding: 3px;
}
.person-data.ss{
  font-size: 12px;
  line-height: 1.2
}
.person-data.mm{
  font-size: 13px;
  line-height: 1.2
}
.person-data::before{
  content: "おもてなし代表";
  font-size: 12px;
  font-weight: 500;
  display: block;
}
.tokuten-img>img{
  width: 118px;
  height: 118px;
  border-radius: 50%;
}
.tokuten-data{
  flex: 1;
  margin-left: 10px;
  position: relative;
}
.tokuten-data::before{
  content: "";
  background: url("../img/badge_tokuten.gif") var(--center_contain);
  width: 188px;
  height: 25px;
  display: block;
  margin-bottom: 10px;
}
.tokuten-data>li{
  font-family: var(--f_sans);
  font-weight: 700;
  position: relative;
  padding-left: 1.0em;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.tokuten-data>li:first-child{
  padding-left: 0!important
}
.tokuten-data>li:not(:first-child)::before{
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.tokuten-data>li.original::before{
  content: "【HISオリジナル特典】";
  display: block;
  color: var(--red);
}
.tokuten-data>li.limited::before{
  content: "【HIS限定特典】";
  display: block;
  color: var(--red);
}
.tokuten-data>li small{
  font-family: var(--f_sans);
  font-size: 12px;
  font-weight: 400;
}
.tokuten-data>li.no-disp{
  display: none;
}
.note-txt:empty{
  display: none
}
.tokuten-data>li.note-txt{
  font-family: var(--f_sans);
  font-size: 12px;
  font-weight: 400;
  position: relative;
  padding-left: 1.0em;  
}
.tokuten-data>li.note-txt::before{
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

/*** ツアー商品 ***/
.tour-contents{
  background: url("../img/bg_tour.jpg") repeat;
  padding: 50px 0;
}
.sub-title{
  font-size: 32px;
  font-weight: 500;
  color: var(--red);
  text-align: center;
  margin-bottom: 30px;
}
.sub-title>span{
  display: inline-block;
  margin-right: 10px;
  color: var(--gray);
}
.product-list>li *{
  font-family: var(--f_sans);
}
.product-list.card-style>li .product-list__item .item-photo__wrapper .item-txt__port{
  background: var(--t_brown);
}
/*.item-label{
  right: 0!important;
  left: auto!important;
  background: var(--red);
  font-family: var(--f_serif);
  font-weight: 500;
  color: #FFF;
  text-align: center;
  padding: 3px;
}*/
.more-link{
  width: 800px;
  margin: 20px auto;
}
.more-link>a{
  display: block;
  background: var(--red);
  font-size: 16px;
  font-weight: 500;
  color: #FFF;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow01);
  padding: 16px;
}
.more-link>a::after{
  content: "";
  background: url("../img/arrow02.png") var(--center_contain);
  width: 14px;
  height: 20px;
  position: absolute;
  top: 0;
  right: 3%;
  bottom: 0;
  margin: auto;
}
.more-link>a:hover{
  background: var(--brown);
}

/*クローズ処理*/
#main_content{
  width:100%;
  height:200px;
  background:#00cccc;
  font-size:32px;
  text-align: center;
  padding-top: 100px;
}
#close_bg{
  width:100%;
	background:#F4F2EC;
	padding:50px 0;
}
#close_bg .closebox{
  width:960px;
  margin:0 auto;
}

#close_bg .closebox p.closetxt{
	text-align:center;
	font-size:20px;
	font-weight:bold;
	line-height:1.8em;
  
}
#close_bg .closebox p.closetxt .maintxt{
  display: block;
  font-size:120%;
  word-break: break-all
}
#close_bg .closebox p.closetxt .toplink{
  display:block;
	font-size:90%;
	margin-top:10px;
}
#close_bg .closebox p.closetxt .link-txt{
  color: #1a0dab;
  font-size: 16px;
  position: relative;
  padding-right: 1.5em;
  text-decoration: underline
}
#close_bg .closebox p.closetxt .link-txt::after{
  content: "";
  background: url("../../../cmn/icon/icon_arrow_right_blue.svg") no-repeat center center / contain;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

#close_bg .closebox p.specialbnr{
  margin:50px auto;
  text-align: center;
}
#close_bg .closebox p.specialbnr a:hover{
  opacity: 0.7
}

.pc .themebox{
  width:960px;
	margin:10px auto 30px;
}
.pc .themebox h3{
  padding:10px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.pc .themebox ul.theme{
	width:100%;
	margin:20px 0 0;
	padding:10px;
	overflow: hidden;
}
.pc .themebox ul.theme li{
	width:50%;
	float:left;
	margin-bottom: 20px;
}
.pc .themebox ul.theme li a{
	display:block;
	padding:5px;
	text-decoration: none;
	color:#333;
}
.pc .themebox ul.theme li a:hover{
	opacity:0.8
}
.pc dl.theme_item dt{
	width:38%;
	float:left;
}
.pc dl.theme_item dd{
	width:62%;
	float:right;
}
.pc dl.theme_item dd h4{
	font-size:14px;
	font-weight:bold;
	text-decoration: underline;
}
.pc dl.theme_item dd>p.salescpy{
	font-size:14px;
}
.pc dl.theme_item dd p.salescpy span{
	display:block;
	color:#c33;
}

.fadelayer{position:absolute;
		top:0;
		left:0;
		height:	100%;
		width:100%;
		background:	#000;
		opacity:0.6;
		z-index:100;}

.longbnr{
  width: 100%;
  margin:30px auto;
  text-align: center;
}
.longbnr a:hober{
  opacity: 0.8
}
.pc .end-of-sale{
  width: 90%;
  margin: 20px auto;
  font-size: 18px;
  font-weight: bold;
  color: #e90000;
  border: 1px solid;
  padding: 20px;
  text-align: center
}

/*------------------------------------------------
        スマホ横向き時の余白調整
--------------------------------------------------*/
@media screen and (min-width:768px) and ( max-width:1024px) {
	.title-wrapper{
		width: 100%;
	}
	#close_bg .closebox{
		width:100%;
	}
}