﻿@charset "UTF-8";
/* --------------------------------
	headerfooter.css
--------------------------------
スマホ版のヘッダーフッター用のcssです。
-------------------------------- */
/* --------------------------------
■ ヘッダー
--------------------------------*/
body {
    background: #fff!important;
}
#Header {
	border-bottom: 3px solid #f0d66a; /*真ん中：黄色*/
	position: relative;
	box-shadow: 0px 0px 5px #333;
	-webkit-box-shadow: 0px 0px 5px #333;
	-moz-box-shadow: 0px 0px 5px #333;
	margin-bottom: 20px;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	color: #4d4d4d;
}
#Header:before {
	content: '';
	position: absolute;
	bottom: -3px;
	width: 33.3%;
	height: 3px;
	background: #d681b2; /*左：ピンク*/
}
#Header:after {
	content: '';
	position: absolute;
	right: 0;
	bottom: -3px;
	width: 33.3%;
	height: 3px;
	background: #84cbc5; /*右：緑*/
}
#Header a:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}
#HeaderMENU {
	margin: 0 auto;
	text-align: left;
	overflow: hidden;
}
#SiteNav ul {
	font-size: 1.2rem;
	margin: 60px 20px;
	width: -moz-calc(100% - 40px);
	width: -webkit-calc(100% - 40px);
	width: calc(100% - 40px);
	text-align: left;
}
#SiteNav li {
	border-top: dotted 1px #fff;
	padding: 12px 0;
}
#SiteNav li a, #SiteNav li strong {
	color: #fff;
	text-decoration: none;
}
#SiteNav li:last-child {
	border-bottom: dotted 1px #fff;
}
#SiteLogo {
	margin: 0;
	float: left;
}
#SiteLogo img {
	margin: 10px 0 0 10px;
	width: 150px;
}
.br_sp:before {
	content: "\A";
	white-space: pre;
}
/* --------------------------------
■ フッター
--------------------------------*/
#footerArea {
	border-top: 1px dotted;
	margin: 0 auto;
	text-align: center;
	height: 65px;
	padding: 20px 0px 20px 0px;
	margin-top: 30px;
}
.copyright {
	margin: 0px auto 5px 0px;
	font-size: 12px;
	color: #696969;
}
/* --------------------------------
	ページトップへ戻るボタン
-------------------------------- */

#pageTop {
	position: fixed;
	bottom: 40px;
	right: 20px;
	z-index: 1099;
}
#pageTop img {
	width: 56px;
	height: 56px;
}
#pageTop a:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
	-ms-filter: "alpha( opacity=80 )";
}

/* --------------------------------
	ページトップへ戻るボタン（動的ページホテル用）
-------------------------------- */

.pagetop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #c8e0fa;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: all .2s;
}

.pagetop.is-hide {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.is-hide-pagetop .pagetop {
  display: none;
}

.is-modal-open .pagetop {
  display: none;
}

.icon-arrow {
    fill: #355577;
    width: 16px;
    height: 16px;
}