/* HTML初期化 */
body {
  line-height: 1;
  margin: 0;
  zoom: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-style: normal;
}

p,
dl,
dt,
dd,
em,
form,
address,
ul,
li {
  margin: 0;
  padding: 0;
  font-style: normal;
}

/* HTML5用 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 0;
}

li {
  padding: 0;
  margin: 0;
}

input,
select {
  vertical-align: middle;
}

/* tableタグ*/
th,
td {
  padding: 0;
}

caption {
  text-align: left;
}

/* リンク設定 */
a {
  outline: 0;
  border: 0;
  transition: all 0.3s ease;
}

@media screen and (max-width: 800px) {
  a {
    transition: none;
  }
}

a img {
  border: 0;
}

img {
  border: 0;
  max-width: 100%;
}

html {
  -webkit-text-size-adjust: none;
  zoom: 1;
}

body,
html {
  height: 100%;
  min-height: 100%;
}

/*============================================
基本CSS
===========================================*/
body {
  line-height: 1;
  margin: 0;
  width: 100%;
  height: 100%;
  font-family: "Lora", serif;
}

@media screen and (max-width: 375px) {
  body {
    font-size: 0.9em;
  }
}

.SP {
  display: none;
}

@media screen and (max-width: 700px) {
  .SP {
    display: block;
  }
  .PC {
    display: none;
  }
}

/*============================================
ヘッダー
===========================================*/
header {
  background: url(../img/header_202412.jpg) center center;
  background-size: cover;
  min-height: 80%;
  position: relative;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
}

#HeaderMenu {
  max-width: 1000px;
  margin: auto;
  position: relative;
  box-sizing: border-box;
  padding-top: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
  z-index: 10;
  overflow: hidden;
}

#HeaderMenu h1 {
  width: 200px;
  float: left;
}

/* 予約ボタン */
#enReserveBtn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #ba0003;
  background: -webkit-linear-gradient(top, #dd2c2c 0%, #840f0f 100%);
  background: linear-gradient(to bottom, #dd2c2c 0%, #840f0f 100%);
  color: #fff;
  padding: 10px;
  text-shadow: none;
  border-radius: 4px;
  font-size: 0.8em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
  width: 80px;
  text-align: center;
  line-height: 1.4;
}

#enReserveBtn a {
  color: #fff;
  text-decoration: none;
}

/* フォームボタン */
#enFormBtn {
  position: absolute;
  right: 115px;
  top: 50%;
  transform: translateY(-50%);
	background: linear-gradient(to bottom, #ffa84c 0%,#ff7b0d 100%); 
  color: #fff;
  text-shadow: none;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
  width: 80px;
  text-align: center;
  padding: 17px 10px 18px;
}

#enFormBtn a {
  display: block;
  color: #fff;
  font-size: 0.9em;
  text-decoration: none;
	text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  line-height: 1.4;
}

#HeaderMenu address {
  color: #fff;
  float: right;
  line-height: 1.75;
  font-size: 0.8em;
  padding-right: 230px;
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	align-items: center;
}

#HeaderMenu address .text {
	padding-right: 20px;
}

#HeaderMenu address .tel_mail {
	line-height: 1.25;
	width: 190px;
}

#HeaderMenu address .tel_mail a {
	font-size: 0.85em;
	color: #FFF;
}

#HeaderMenu address strong {
  font-weight: 400;
  font-size: 1.6em;
}

#HeaderShadowUp {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

#HeaderShadowDown {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  z-index: 1;
  background: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

#HeaderShadowUp,
#HeaderShadowDown {
  width: 100%;
  display: block;
  height: 300px;
}

header h2 {
  color: #fff;
  text-align: center;
  position: absolute;
  z-index: 10;
  top: 70%;
  left: 0;
  width: 100%;
  transform: translateY(-47%);
  line-height: 1.5;
  font-size: 2em;
  letter-spacing: 0.1em;
}

#HeaderReserveCaption {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.5);
  text-shadow: none;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

#HeaderReserveCaption h3 {
  font-size: 0.9em;
  text-align: center;
  padding-bottom: 10px;
}

#HeaderReserveCaption ul {
  list-style: disc;
  font-size: 0.8em;
  line-height: 1.7;
  margin-left: 1.5em;
}

@media screen and (max-width: 700px) {
  header {
    min-height: 90%;
  }
  #HeaderMenu h1 {
    width: 150px;
    float: none;
    margin: auto;
  }
  #HeaderMenu address {
    float: none;
    line-height: 1.6;
    text-align: center;
    font-size: 0.7em;
    padding-right: 0;
    padding-bottom: 10px;
		display: block;
  }

	#HeaderMenu address .tel_mail {
		width: 100%;
		padding-top: 5px;
	}

  #HeaderMenu address strong {
    padding-left: 0;
    display: block;
    text-align: center;
  }
  header h2 {
    line-height: 1.6;
    font-size: 1.2em;
    position: relative;
    transform: none;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  #HeaderReserveCaption {
    font-size: 0.8em;
    margin-top: 20px;
    padding: 10px;
  }
}

/* スマホ用のボタン */
header .btn_list_wrap .list {
	display: flex;
	justify-content: space-between;
	padding-top: 10px;
}

header .btn_list_wrap .list .btn {
	width: 48%;
}

header .btn_list_wrap .list .btn a {
	display: block;
	line-height: 0;
	padding: 20px 0;
	text-align: center;
	border-radius: 4px;
	color: #FFF;
	text-decoration: none;
	font-size: 0.9em;
	box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

header .btn_list_wrap .list .btn.reserve a {
	background: linear-gradient(to bottom, #dd2c2c 0%, #840f0f 100%);
}

header .btn_list_wrap .list .btn.form a {
	background: linear-gradient(to bottom, #ffa84c 0%,#ff7b0d 100%); 
}

/*============================================
コンテンツ共通
===========================================*/
.ContWrapper {
  max-width: 1000px;
  margin: auto;
  position: relative;
  box-sizing: border-box;
  z-index: 10;
  overflow: hidden;
  padding: 20px;
}

.ContKakoi {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  border: 1px solid #fff;
  opacity: 0.3;
}

/*============================================
introduction
===========================================*/
#Introduction {
  background: #000;
  padding-top: 30px;
  padding-bottom: 30px;
}

#Introduction .ContWrapper {
  background: url(../img/intro_BG.jpg) no-repeat right center;
  background-size: contain;
  color: #fff;
}

#Introduction h3 {
  font-size: 1.4em;
  width: 50%;
  line-height: 1.5;
  padding-bottom: 30px;
}

#Introduction h3 span {
  display: block;
  font-size: 0.4em;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}

#Introduction p {
  font-size: 0.9em;
  width: 60%;
  line-height: 1.7;
  padding-bottom: 60px;
}

#Introduction img {
  display: block;
  box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0.4) inset;
}

@media screen and (max-width: 700px) {
  #Introduction {
    background: #000;
    padding: 0;
  }
  #Introduction .ContWrapper {
    background: #000;
  }
  #Introduction h3 {
    font-size: 1.2em;
    width: 100%;
    padding-bottom: 0;
  }
  #Introduction h3 span {
    width: 50%;
  }
  #Introduction p {
    width: 100%;
    padding-top: 10px;
  }
}

/*============================================
spa
===========================================*/
#Spa {
  background: #6d131f;
}

#Spa h3 {
  position: absolute;
  bottom: -180px;
  right: 10px;
  z-index: 10;
  width: 100px;
}

#Spa .ContWrapper {
  color: #fff;
  width: 100%;
  max-width: 100%;
  padding: 0;
}

#Spa .ContLead {
  max-width: 1000px;
  padding: 20px;
  padding-top: 30px;
  box-sizing: border-box;
  margin: auto;
  line-height: 1.6;
  position: relative;
}

#Spa .ContLead h4 {
  font-size: 1.4em;
}

#Spa .ContLead h5 {
  font-size: 1em;
  padding-bottom: 10px;
}

#Spa .ContLead p {
  font-size: 0.85em;
  padding-top: 10px;
}

#Spa .ContLead span {
  font-size: 0.85em;
}

#SpaPhWrapper {
  height: 500px;
  position: relative;
  z-index: 1;
}

#SpaPh01 {
  width: 60%;
  height: 500px;
  background: url(../img/spa_ph01.jpg) center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
}

#SpaPh02 {
  width: 40%;
  height: 250px;
  background: url(../img/spa_ph02.jpg) center center;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
}

#SpaPh03 {
  width: 40%;
  height: 250px;
  background: url(../img/spa_ph03.jpg) center center;
  background-size: cover;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media screen and (max-width: 700px) {
  #Spa h3 {
    display: none;
  }
  #Spa .ContWrapper {
    font-size: 0.9em;
  }

  #SpaPhWrapper {
    height: 300px;
    position: relative;
    z-index: 1;
  }

  #SpaPh01 {
    width: 100%;
    height: 200px;
  }
  #SpaPh02 {
    width: 50%;
    height: 100px;
    top: 200px;
    left: 0;
  }

  #SpaPh03 {
    width: 50%;
    height: 100px;
    top: 200px;
    right: 0;
  }
}

/*============================================
room
===========================================*/
#Room {
  background: #80714c;
}

#Room h3 {
  position: absolute;
  bottom: -150px;
  right: 10px;
  z-index: 10;
  width: 100px;
}

#Room .ContWrapper {
  color: #fff;
  width: 100%;
  max-width: 100%;
  padding: 0;
}

#Room .ContLead {
  max-width: 1000px;
  padding: 20px;
  padding-top: 30px;
  box-sizing: border-box;
  margin: auto;
  line-height: 1.6;
  position: relative;
}

#Room .ContLead h4 {
  font-size: 1.4em;
}

#Room .ContLead p {
  font-size: 0.85em;
  padding-top: 10px;
}

#RoomPhWrapper {
  height: 600px;
  position: relative;
  z-index: 1;
  background: url(../img/room_ph01.jpg) center center;
  background-size: cover;
}

#RoomSelectWrapper {
  padding: 30px;
  padding-left: 20px;
  padding-right: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 970px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.RoomSelectBox {
  width: 25%;
  box-sizing: border-box;
  padding: 10px;
}

.RoomSelectBox img {
  display: block;
  border: 2px solid #fff;
}

.RoomSelectBox h5 {
  text-align: center;
  font-size: 0.9em;
  padding-bottom: 10px;
  padding-top: 10px;
}

.RoomSelectBox p {
  font-size: 0.75em;
  line-height: 1.6;
}

.RoomSelectBox p span {
  font-size: 0.8em;
}

#RoomSelectFooter {
  clear: both;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 10px;
  font-size: 1.1em;
  line-height: 1.7;
  width: 100%;
}

@media screen and (max-width: 700px) {
  #Room h3 {
    display: none;
  }

  #Room .ContWrapper {
    font-size: 0.9em;
  }
  #RoomPhWrapper {
    height: 300px;
  }

  #RoomSelectWrapper {
    box-sizing: border-box;
  }
  .RoomSelectBox {
    width: 90%;
    margin: auto;
  }
}

/*============================================
Special Room
===========================================*/
#SpecialRoom {
  background: #417e73;
}

#SpecialRoom .ContWrapper {
  color: #fff;
  width: 100%;
  max-width: 100%;
  padding: 0;
}

#SpecialRoom .ContLead {
  max-width: 1000px;
  padding: 20px;
  padding-top: 30px;
  box-sizing: border-box;
  margin: auto;
  line-height: 1.6;
  position: relative;
}

#SpecialRoom .ContLead h4 {
  font-size: 1.2em;
}

#SpecialRoom .ContLead p {
  font-size: 0.85em;
  padding-top: 10px;
}

#SpecialRoomPhWrapper {
  max-width: 1000px;
  margin: auto;
}

.SpecialRoomPhBox {
  width: 33%;
  width: calc(100% / 3);
  float: left;
  box-sizing: border-box;
  padding: 20px;
  position: relative;
  padding-top: 0;
}

@media screen and (max-width: 700px) {
  #SpecialRoom .ContWrapper {
    font-size: 0.9em;
  }
  .SpecialRoomPhBox {
    width: 100%;
    float: none;
    box-sizing: border-box;
    padding: 20px;
    position: relative;
    padding-top: 0;
  }
}

.SpecialRoomPhBox img {
  position: relative;
  z-index: 1;
}

.SpecialRoomPhBox strong {
  padding: 5px;
  color: #fff;
  font-size: 0.65em;
  background: #000;
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 10;
}

/*============================================
Menu
===========================================*/
#Menu {
  background: #c86751;
}

#Menu h3 {
  position: absolute;
  bottom: -210px;
  right: 10px;
  z-index: 10;
  width: 100px;
}

#Menu .ContWrapper {
  color: #fff;
  width: 100%;
  max-width: 100%;
  padding: 0;
}

#Menu .ContLead {
  max-width: 1000px;
  padding: 20px;
  padding-top: 30px;
  box-sizing: border-box;
  margin: auto;
  line-height: 1.6;
  position: relative;
}

#Menu .ContLead h4 {
  font-size: 1.2em;
}

#Menu .ContLead p {
  font-size: 0.85em;
  padding-top: 10px;
}

#MenuPhWrapper {
  height: 600px;
  position: relative;
  z-index: 1;
  background: url(../img/menu_ph01.jpg) center center;
  background-size: cover;
}

/* 朝食 */
#MenuMorningWrapper {
  padding: 30px;
  overflow: hidden;
  clear: both;
  padding-bottom: 10px;
  max-width: 970px;
  margin: auto;
}

#MenuMorningInner {
  background: rgba(255, 255, 255, 0.2);
  padding: 30px;
  overflow: hidden;
}

#MenuMorningWrapper h5 {
  font-size: 1.4em;
  padding-bottom: 10px;
  line-height: 1.5;
  border-bottom: 1px solid #fff;
  margin-bottom: 10px;
}

#MenuMorningWrapper p {
  font-size: 0.8em;
  line-height: 1.7;
}
#MenuMorningWrapper img {
  float: right;
  width: 50%;
  max-width: 500px;
  padding-left: 20px;
}

#MenuBottomPhWrapper {
  max-width: 1030px;
  margin: auto;
  box-sizing: border-box;
  padding: 30px 10px;
  padding-left: 10px;
  padding-right: 10px;
  clear: both;
}

.MenuBottomPhBox {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.MenuBottomPhBox h5 {
  font-size: 1.2em;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
  margin-bottom: 20px;
  width: 100%;
}

.MenuBottomPhBox .ph_wrap {
  width: 30%;
}

.MenuBottomPhBox img {
  display: block;
}

.MenuBottomPhBox .txt_box {
  width: 68%;
}

.MenuBottomPhBox p {
  font-size: 0.95em;
  line-height: 1.7;
}

@media screen and (max-width: 700px) {
  #Menu h3 {
    display: none;
  }

  #Menu .ContWrapper {
    font-size: 0.9em;
  }

  #MenuPhWrapper {
    height: 300px;
  }

  .MenuBottomPhBox {
    width: 100%;
    float: none;
    padding: 20px;
    box-sizing: border-box;
  }

  .MenuBottomPhBox h5 {
    text-align: center;
    margin-bottom: 15px;
  }

  .MenuBottomPhBox img {
    width: 100%;
    display: block;
    padding-top: 5px;
  }

  .MenuBottomPhBox p {
    margin-left: 10px;
    font-size: 0.9em;
  }
}

/*============================================
Access
===========================================*/
#Access {
  background: #edeae3;
  position: relative;
  overflow: hidden;
}

#Access .ContKakoi {
  border: 1px solid #333;
  opacity: 0.1;
}

#Access h3 {
  text-align: center;
  padding: 20px;
  font-size: 1.8em;
}

#AccessLeft {
  width: 55%;
  float: left;
  font-size: 0.8em;
  line-height: 1.6;
}

#AccessLeft table {
  padding-bottom: 20px;
}

#AccessLeft th {
  text-align: left;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #999;
  padding-right: 30px;
}

#AccessLeft td {
  text-align: left;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #999;
}

#AccessLeft td a {
	color: #000;
}

#AccessRight {
  width: 41%;
  float: right;
  padding-bottom: 20px;
}

#AccessRight img {
  display: block;
  border: 3px solid #fff;
  box-sizing: border-box;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.MapBtn {
  padding-top: 10px;
  padding-bottom: 3px;
}

.MapBtn a {
  background: rgba(255, 136, 28, 1);
  padding: 10px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 3px;
  color: #fff;
  text-decoration: none;
  font-size: 0.85em;
  box-shadow: 0 2px 0 rgba(255, 136, 28, 0.3);
  display: block;
  text-align: center;
}

.MapBtn a i {
  padding-right: 5px;
}

@media screen and (max-width: 700px) {
  #AccessLeft {
    width: 100%;
    float: none;
  }

  #AccessLeft th {
    width: 100%;
    display: block;
  }

  #AccessLeft td {
    width: 100%;
    border: 0;
    display: block;
  }

  #AccessLeft td strong {
    display: block;
  }

  #AccessRight {
    width: 90%;
    float: none;
    margin: auto;
    padding-bottom: 20px;
  }
}

#AccessKakoi {
  background: #fff;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 20px;
  clear: both;
  font-size: 0.8em;
  line-height: 1.6;
}

#AccessKakoi h4 {
  border-bottom: 1px solid #b5272d;
  padding-bottom: 5px;
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 10px;
}

#AccessKakoi p {
  padding-bottom: 10px;
}

#AccessKakoi h5 {
  font-size: 1.2em;
  font-weight: 700;
}

#AccessKakoi span {
  font-size: 0.8em;
  display: block;
}

#gMapWrapper {
  clear: both;
}

.gMapArea {
  width: 100%;
  height: 400px;
}

#gMapWrapper ul {
  list-style: disc outside;
  margin-bottom: 20px;
}

#gMapWrapper li {
  margin-left: 1.2em;
  line-height: 1.6;
  padding-top: 5px;
}

#gMapWrapper li a {
  color: #222;
}

#gMapWrapper li a i {
  padding-left: 3px;
  padding-right: 3px;
}

.mapLarge {
  position: relative;
  margin-bottom: 5px;
}

.mapLarge img {
  display: block;
}

.mapLarge a {
  display: block;
}

.mapLarge i {
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px;
  color: #fff;
  font-size: 1.2em;
  right: 10px;
  bottom: 10px;
  border-radius: 3px;
}

/*============================================
Footer
===========================================*/
footer {
  background: #fff;
  padding: 40px;
  clear: both;
  text-align: center;
  font-size: 0.7em;
  color: #666;
}
