@charset "UTF-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0
}
a {
  color: #1c1f87;
}
a:hover {
  color: #ffe600;
}
ul, ol {
  list-style: none;
}
img {
  vertical-align: middle;
  transition: 0.5s;
}
a img:hover {
  opacity: 0.6;
  transition: 0.5s;
}
/* @end */
/* @group Fluid-img */
img {
  max-width: 100%;
}
/* @end */
/* @group HTML */
html {
  font-family: Hiragino Mincho ProN, ヒラギノ明朝 ProN, Hiragino Mincho Pro, ヒラギノ明朝 Pro, serif;
  font-size: 75%;
  line-height: 1.5;
  color: #333;
}
h1 {
  font-size: 5em;
  font-family: "Allura", cursive;
  font-weight: 400;
  font-style: normal;
  color: #c88692;
}
h2 {
  font-size: 1.5em; /* 36px */
  margin-bottom: 0.6667em;
}
p {
  margin-bottom: 2em;
}
article {
  overflow: hidden;
}
p.btn {
  max-width: 20em;
  margin: 1em auto;
  clear: both;
}
p.btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  background: #fff;
  border: 1px solid #eed6da;
  box-sizing: border-box;
  padding: 0.5em;
  color: #c88692;
  font-size: 1em;
  letter-spacing: 0.1em;
  transition-duration: 0.3s;
  border-radius: 2em;
  text-decoration: none;
}
p.btn a:hover {
  background: #c88692;
  color: #fff;
}
/* @end */
/* @group concept */
article#concept {
  text-align: center;
  background: url(../images/bg.png) repeat-x;
  background-size: cover;
  padding: 5em 2em;
}
/* @group hotels */
article#hotels {
  text-align: center;
  padding: 3em 2em;
}
article#hotels ul {
  margin: 0 auto;
}
article#hotels ul li {
  margin-bottom: 0.5em;
}
article#hotels ul li img {
  width: 80%;
}
footer {
  background: #251e1c;
  text-align: center;
  color: #fff;
  padding: 1em;
}
footer figure{
	margin: 2em 0;
}
footer small{
	font-size: 0.5em;
}
footer a {
  color: #fff;
}
/*768px*/
@media screen and (min-width : 768px) {
  html {
    font-size: 90%;
  }
  header article section.main_imgBox .main_ttl {
    width: 40%;
  }
  article#hotels ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  article#hotels ul li {
    width: 50%;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 1em;
  }
  article#hotels ul li img {
    width: 90%;
  }
}
/*1024px*/
@media screen and (min-width : 1024px) {
  html {
    font-size: 100%;
  }
  header article .main_imgBox {
    height: 70vh;
  }
  header article section.main_imgBox .main_ttl {
    width: 480px;
	  padding: 5em;
  }
  article#concept {
    background-size: contain;
  }
  article#hotels ul {
    max-width: 1200px;
    margin: 0 auto;
  }
  article#hotels ul li {
    width: 25%;
  }
}