@charset "utf-8";

h3 {
	padding: 0.5em 0 .5em;
    border: none;
    background-image: linear-gradient(90deg, #af5554,#ff965f,#af5554);
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: bottom left;
	font-size: 1.2em;
}

/*パンくず*/
#pankuzu {
	margin-top: 6em;
	margin-bottom: -7em;
}
#pankuzu ul {
	padding: .3em 1.2em;
	-moz-box-shadow: 0 0 4px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 0 4px rgba(0,0,0,0.2);
	-o-box-shadow: 0 0 4px rgba(0,0,0,0.2);
	-ms-box-shadow: 0 0 4px rgba(0,0,0,0.2);
}
#pankuzu ul li {
	display: inline-block;
	list-style: none;
}
#pankuzu ul li a {
	text-decoration: underline;
}
#pankuzu ul li {
	margin-right: .5em;
}
#pankuzu ul li:after {
	content: "　>";
}
#pankuzu ul li:last-child:after {
	content: "";
}

/*表*/
dl.table {
	width: 100%;
    overflow: hidden;
}
dl.table dt {
	float: left;
	width: 8.5em;
	padding: 10px;
	color: #fff;
	background: #bd8080;
	vertical-align: bottom;
}
dl.table dd {
	margin-left: 8.5em;
	padding: 10px;
	border-bottom: #bd8080 1px solid;
}


/*
dl.table dt,dd {
	margin-bottom: .5em;
	padding: .75em;
}
dl.table dt,dd:last-child {
	margin-bottom: 0;
}
dl.table dt {
	float: left;
	width: 8.5em;
	margin-right: .75em;
	color: #fff;
	background: #bd8080;
}
dl.table dd {
	border-bottom: #bd8080 1px solid;
}

*/

/*ページ内リンク*/
.pageLink {
	margin-top: 4em;
	text-align: center;
}

/*ページ内リンクボタン*/
.selectBtn {
    display: inline-block;
    text-align:center;
	margin: .5em;
    padding: 1em 2em;
    color: #af5554;
    border:1px solid #af5554;
	border-radius: 50px;
	text-decoration:none;
	transition: .5s;
}
.onBtn {
  position:relative;
  z-index:2;
  overflow:hidden
}
.onBtn::after {
  display: block;
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  margin: 0;
  border-radius: 50%;
  background: #af5554;
  transition: .5s
}
.onBtn:hover {
  color: #fff
}
.onBtn:hover::after {
  width: 180px;
  height: 180px;
  margin: -90px 0 0 -90px
}

/*ページ内リンク先*/
.toLink {
  margin-top : -2em;
  padding-top : 2em;
}

/*注意文*/
.caution {
	font-size: .8em;
}

/*グラデーションボタン*/
.buttonBox {
	margin: 3em auto 0;
}
.gradationBtn {
	font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	display: inline-block;
	width: 100%;
	text-align: center;
	text-decoration: none;
	outline: none;
	position: relative;
	z-index: 2;
	background-color: #fff;
	border: 1px solid #af5554;
	color: #af5554;
	line-height: 50px;
	overflow: hidden;
	border-radius: 3px;
}
.gradationBtn:hover {
	color: #fff;
}
.gradationBtn::before,
.gradationBtn::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.gradationBtn,
.gradationBtn::before,
.gradationBtn::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .5s;
	transition: all .5s;
}
.gradationBtn::after {
	top: 0%;
	left: -100%;
	width: 100%;
	height: 100%;
}
.gradationBtn:hover::after {
	left: 0;
	background:-webkit-gradient(linear, left top, right top, from(#ffbe95), to(#af5554));
    background:-webkit-linear-gradient(left, #ffbe95, #af5554);
    background:-moz-linear-gradient(left, #ffbe95, #af5554);
    background:-o-linear-gradient(left, #ffbe95, #af5554);
    background:linear-gradient(to right, #ffbe95, #af5554);
}

/*電話番号*/
.tel {
	margin-top: 3em;
	text-align: center;
}
.tel h2 {
	font-size: 1.5em;
}
.call {
	text-align: center;
	font-size: 2.4em;
	color: #8a2041;
}
.call:before {
	content: url(https://www.mikuni-hotel.com/sub_img/call.png);
	margin: 0 .5em;
	display: inline-block;
	vertical-align: middle;
}

/*公式特典*/
.tokuten {
	background-image: url("../common_img/h1back.jpg");
	padding: 0.5em 0 0.5em 0;
	-moz-box-shadow: 0 0 4px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 0 4px rgba(0,0,0,0.2);
	-o-box-shadow: 0 0 4px rgba(0,0,0,0.2);
	-ms-box-shadow: 0 0 4px rgba(0,0,0,0.2);
	margin: 2em 0;
}
.tokuten h2 {
	color: #432f2f;
	text-shadow: 0px 0px 3px #fff;  
	text-align: center;
	font-size: 2.2em;
}
.tokuten .container {
	padding: 1em;
}
.tokuten img {
	margin: 0 auto;
}

/*宿泊プラン*/
.planCard {
	margin: 0;
	padding: 0;
	list-style: none;
}
.planCard p {
	margin: 1em 0;
}
@media (min-width: 768px) {
.planCard li {
	width: 48%;
	margin: 1%;
	padding: 0 2% 2%;
	background: #eee5de;
	float: left;
}
}
@media (max-width: 767px) {
.planCard li {
	margin: 1em 0;
	padding: 0 1em 1em;
	background: #eee5de;
	float: left;
}
}
.planCard h2 {
	padding: .6em 0 .6em .75em;
	border-left: .6em solid #bd8080;
	font-size: 1.2em;
}

.midashi {
	font-size: 1.8em;
}

/*imagelightbox.min.js用*/
#imagelightbox{
    position: fixed;
    z-index: 9999;
}

/*サムネイル*/
#imagelightbox {
  position: fixed;
  z-index: 9999;
  -ms-touch-action: none;
  touch-action: none;
}

/*rowの余白無*/
.rowNot {
    margin-right: -15px; /* ←マイナス側へ数値を大きくしてみよう */
    margin-left: -15px;  /* ←マイナス側へ数値を大きくしてみよう */
}
.rowNot .col-md-6 {
	padding: 0;
}

/*スライドコンテンツ*/
.slideTextGroup h2 {
	font-size: 2.2em;
	line-height: 1.5;
	color: #fff;
}

/*項目リスト*/
.itemList {
	margin: 0;
	padding: 3em 0;
	background: url(https://www.mikuni-hotel.com/sub_img/list_back.gif);
}
.itemList dl {
    border-bottom: 1px solid #bb755e;
}
.itemList dl:last-child {
    border-bottom: 0px;
	margin-bottom: 0;
}
.itemList dt {
}
.itemList dd {
	margin-bottom: 1.5em;
}
.itemList dl:last-child dd {
	margin-bottom: 0;
}

/*ギャラリー*/
.gallery {
	margin-top: 2em;
}
.imageAll {
	margin: 0;
	padding: 0;
	list-style: none;
}

/*詳細*/
.details dl dt {
	padding: .5em;
	background: #bd8080;
	color: #fff;
}
.details dl dd {
	padding: .5em;
}

/*客室*/
.guestrooms {
	margin-top: 5em;
}

/*上マージン10em*/
.marginTop10em {
	margin-top: 10em;
}

/*イメージにフィルターをかける*/
@media (max-width: 767px) {
.slidebackTitleimageTrim {
	background-color:rgba(0,0,0,0.25);
}
}
.slideinContainer {
	background-color:rgba(0,0,0,0.25);
}

/*マップ*/
.gmap {
	margin-top: 5em;
	margin-right: -15px;
    margin-left: -15px;
}

/*問い合わせリンクボタン*/
/*

#contact {
	margin-top: 5em;
}
@media (max-width: 767px) {
#contact {
	margin-right: -15px;
    margin-left: -15px;
}
}
*/

#contact {
	text-decoration: underline;
}
#contact a {
	color: #fff;
}
#contact a:hover {
	color: #ed817c;
}

/*周辺観光地リスト*/
.spotsList ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.spotsList ul li {
	display: inline-block;
	vertical-align: top;
}

/*お知らせ詳細*/
.infoDetail img,p {
	margin: 0 auto;
}
.infoDetail p {
	margin-top: 2em;
	max-width: 750px;
}
.infoDetail a {
	text-decoration: underline;
}

/*サイトマップ*/
#sitemap ul {
	margin: 0;
	padding-left: 1em;
}
#sitemap li {
	padding: .5em;
}
#sitemap a {
	color: #432f2f;
}
#sitemap a:hover {
	color: #af5554;
	transition: .2s;
}

/*ナビゲーションバー*/
.navbar-toggle {
	padding: 18px 10px;
}