@charset "utf-8";
/* CSS Document */

/*----------------------
	レイアウト
----------------------*/

#hmiArea {
	margin: 0;
	color: #000;
	font-size: 0.9em;
	font-weight: 400;
	line-height: 1.6;
	text-size-adjust: none;
	-webkit-text-size-adjust: 100%;
	font-family: '游明朝','Yu Mincho','YuMincho','Shippori Mincho','Hiragino Mincho Pro', serif;
}

* {-webkit-box-sizing: border-box;
   -ms-box-sizing: border-box;
   -moz-box-sizing: border-box;
   -o-box-sizing: border-box;
   box-sizing: border-box;
  }


/* フッターサイトマップのアコーディオン */
#hmiArea .accordion {
	width: 100%;
	margin: 0 auto 0;
	background: #FFF;
}
 
#hmiArea .accordion .link {
	cursor: pointer;
	display: block;
	padding: 15px 15px 15px 42px;
	color: #4D4D4D;
 	font-size: 14px;
 	font-weight: 700;
 	border-bottom: 1px solid #CCC;
 	position: relative;
 	-webkit-transition: all 0.4s ease;
 	-o-transition: all 0.4s ease;
 	transition: all 0.4s ease;
}

#hmiArea .accordion li i {
	position: absolute;
	top: 16px;
	left: 12px;
	font-size: 18px;
	color: #595959;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

#hmiArea .accordion li i.fa-chevron-down {
	right: 12px;
	left: auto;
	font-size: 16px;
}

#hmiArea .accordion li.open .link {
	color:#fff;
}

#hmiArea .accordion li.open i {
	color:#fff;
}
#hmiArea .accordion li.open i.fa-chevron-down {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

#hmiArea .accordion li.default .submenu { display: block; }

#hmiArea .submenu {
	display: none;
	background: #452a1b;
	background-size: 20px 20px;
	background-position: 0 0, 10px 10px;
	font-size: 14px;
}

#hmiArea .submenu li {
	border-bottom: 1px solid #452a1b;
}

#hmiArea .submenu a {
	display: block;
	text-decoration: none;
	color: #000000;
	padding: 12px;
	padding-left: 42px;
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

#hmiArea .submenu a:hover {
	background: #942248;/*ホバー時背景色*/
	color: #FFF;
}
 
#hmiArea .submenu li i {
	display: none;
}

/* HMIホテルグループ一覧 */
#hmiGroup { width: 100%; color:#FFF; margin: 0 auto 0; padding: 8% 0 0; background: #452a1b;}
#hmiGroup section { width: 90%; margin: 0 auto 0; padding: 0 0 0;}
#hmiGroup dt { margin: 0 0 0;}
#hmiGroupList  { margin: 20px 0 0;}
#hmiGroupList .list { display:flex; flex-direction: column;}
#hmiGroup h2 , #hmiGroup h3 , #hmiGroup h4 { font-family: 'Shippori Mincho', serif;}
#hmiGroup h2 { font-size: 130%; display: inline;}
#hmiGroup h2::before{
	display: inline-block;
	content:"";
	background-image:url(../img/logo/header-hmimark.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width:14px;        
	height: 14px;
	margin-right: 6px;
}
#hmiGroup h3 { font-size: 120%; margin: 3% 0 0;}
#hmiGroup a { color:#FFF;}

#hmiGroup .accordion {
	background: none;
}
 
#hmiGroup .accordion .link {
	color: #fff;
	border-bottom: 1px solid #999;
	padding: 15px 15px 15px 10px;
}
 
#hmiGroup .accordion li i {
	color: #fff;
}

#hmiGroup .submenu {
  display: none;
	background: #FFFFFF; /*アコーディオン背景色*/
	background-size: 20px 20px;
	background-position: 0 0, 10px 10px;
  font-size: 14px;
 }

#hmiGroup .submenu li {
  border-bottom: 1px solid #888;
}

#hmiGroup  .submenu a {
  padding-left: 12px;
 }

.hmiGroupBtn{width:100%; margin: 5% auto;}
.hmiGroupBtn-inner{	
	position: relative;
	margin-top:10px;
    background: #000000;
    border-radius: 0;
	width:100%;
	text-align:center;}
.hmiGroupBtn-inner a{
	display:block;
	width:100%;
    padding: 10px 0;
    color: #fff;
}
.hmiGroupBtn-inner:before,.hmiGroupBtn-inner:after{
	content:"";
	display:block;
	position:absolute;
}
.hmiGroupBtn-inner:before{
	border-right:1px solid #fff;
	border-top:1px solid #fff;
	-webkit-transform:rotate(45deg);
	transform:rotate(45deg);
	width:8px;height:8px;
	right:15%;top:50%;
	margin-top:-5px;
}
.hmiGroupBtn-inner a:hover{background: #212121; }


/* PC・スマホ */
#hmiArea .pc-view { display: none;}
#hmiArea .pc-view-inline { display: none;}
#hmiArea .sp-view { display: block;}
#hmiArea .sp-view-inline { display: inline;}
#hmiArea .pc-view1000 { display: none;}

@media (min-width: 768px) {
	
/* PC・スマホ */
#hmiArea .pc-view { display: block !important;}
#hmiArea .pc-view-inline { display: inline-block !important;}
#hmiArea .sp-view { display: none !important;}
#hmiArea .sp-view-inline { display: none !important;}

/* フッターのアコーディオンをリセット */
#hmiArea .accordion {
	width: initial;
	margin: initial;
	background: initial;
}

#hmiArea .accordion .link {
	cursor: initial;
	display: initial;
	padding: initial;
	color: initial;
	font-size: initial;
	font-weight: initial;
	border-bottom: initial;
	position: initial;
	-webkit-transition: initial;
	-o-transition: initial;
	transition: initial;
}

#hmiArea .accordion li i {
	color: #FFF;
	position: initial;
	top: initial;
	left: initial;
	font-size: initial;
	-webkit-transition: initial;
	-o-transition: initial;
	transition: initial;
	vertical-align :top;
}

#hmiArea #hmiGroup .accordion li i { padding: 7px 5px 0 0;}

#hmiArea .accordion li i.fa-chevron-down {
	right: initial;
	left: initial;
	font-size: initial;
}

#hmiArea .accordion li.open .link {
	color: initial;
}

#hmiArea .accordion li.open i {
	color: initial;
}

#hmiArea .accordion li.open i.fa-chevron-down {
	-webkit-transform: initial;
	-ms-transform: initial;
	-o-transform: initial;
	transform: initial;
}

#hmiArea .accordion li.default .submenu { display: initial;}

#hmiArea .submenu {
	display: initial;
	background: initial; 
	background-image: initial;
	background-size:  initial;
	background-position:  initial;
	font-size:  initial;
 }

#hmiArea .submenu li {
	border-bottom:  initial;
}

#hmiArea .submenu a {
	display:  initial;
	text-decoration:  initial;
	padding:  initial;
	padding-left:  15px;
	color: #FFFFFF;
}

#hmiArea .submenu a:hover {
	background:  initial;
	color: darkgray;
}
 
#hmiArea .submenu li i {
	display: inline-block;
}
	
/* HMIホテルグループ一覧 */
#hmiGroup { margin: 0 auto 0;  padding: 5% 0 0.5%;}
#hmiGroup .accordion { flex: auto; margin: 0 20px 0 0}
#hmiGroup .accordion:last-child {  margin: 0 0 0 0}
#hmiGroupList  { margin: 10px 0 0;}
#hmiGroupList .list { flex-direction: row; justify-content: space-between;}
#hmiGroupList .list a { font-size: 0.9em !important;}
#hmiGroupList .list ul.pc-ul li.pc-li { padding: 1% 0;}
#hmiGroupList h4 { margin: 10% 0 2%; font-weight: 600;}
#hmiGroup h2 { font-size: 150%; max-width: 1000px;}
#hmiGroup h2::before { width:18px;height: 18px;margin-right: 6px;}
#hmiGroup h3 { font-size: 120%; margin: 3% 0 0;}
#hmiGroup .submenu {
  display: initial;
 }
#hmiGroup .submenu li {
  border-bottom:  initial;
}
.sp-view .fa, .sp-view .fab, .sp-view .fal, .sp-view .far, .sp-view .fas { display:none !important; line-height: 0 !important;}
	
#hmiArea ul li h3{
	font-size: 1.0em;
	margin-bottom: 15px;
	font-weight: 600;
	}

#hmiArea ul li a{

	margin-bottom: 5px;
	font-size: 0.9em;
	position: relative;
	padding-left: 15px;
	color: #000;
	text-decoration: none;
	}

#hmiArea ul li a .txtsm{
	font-size: 0.85em;
	}

#hmiArea ul li a:hover{
	filter: alpha(opacity=6);
	-moz-opacity: 0.6;
	opacity: 0.6;
	}

#hmiArea ul li a::before{
	content:"";
	position: absolute;
	left: 0px;
	top: 8px;
	width: 4px;
	height: 4px;
	border-top: 2px solid #c3983a;
	border-right: 2px solid #c3983a;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: left 0.2s ease;
    -moz-transition: left 0.2s ease;
    -o-transition: left 0.2s ease;
    transition: left 0.2s ease;
}

#hmiArea ul li a:hover::before{
	left: 3px;
}
.hmiGroupBtn { width:100%; margin: 4% auto 2%;}
.hmiGroupBtn-inner:before{
	right:30%;
}	
}

@media (min-width: 1000px) {
#hmiGroup section { max-width: 1000px;}
#hmiGroup h3 { font-size: 150%; max-width: 1000px;}
.hmiGroupBtn-inner:before{
	right:35%;
}
}