@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #333; /* RGB */
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: left;
}
img {
  max-width: 100%;
}
section h2 {
  font-size: 2.4rem;
}
a:hover {
  opacity: 0.5;
}
*, *:before, *:after {
  box-sizing: border-box;
}
.sma {
  display: none;
}
.pc {
  display: block;
}
@media(max-width:768px) {
  .sma {
    display: block;
  }
}

@media(max-width:768px){
  .pc {
  display: none;
}
}
/*header */
.header {
  background-color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  z-index: 99999;
}
.header-img {
  height: 70px;
  padding-left: 25px;
  padding-top: 10px;
}
.header__links {
  display: flex;
}
.header__links p {
  margin: auto 20px;
}
.header__links ul {
  list-style: none;
  display: flex;
}
.header__links li {
  margin: auto 20px;
}
.header__links a {
  text-decoration: none;
  color: #3f3a76;
}
.header__navigation ul {
  display: block;
}
@media (max-width:768px) {
  .header-img {
    height: 70px;
    padding-left: 25px;
    padding-top: 20px;
  }
  .header_sma {
    display: none;
  }
}
/*=============================
.btn-trigger
=============================*/
.btn-trigger {
  position: relative;
  z-index: 2000;
  width: 50px;
  height: 44px;
  cursor: pointer;
  padding-top: 20px;
}
.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #3f3a76;
  border-radius: 4px;
}
.btn-trigger, .btn-trigger span {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}
.btn-trigger span:nth-of-type(1) {
  top: 0;
}
.btn-trigger span:nth-of-type(2) {
  bottom: 27px;
}
.btn-trigger small {
  color: #3f3a76;
}
/*=============================
#btn01
=============================*/
#btn01.active {
  position: fixed;
  right: 20px;
  top: 30px;
  z-index: 10001;
}
#btn01.active span:nth-of-type(1) {
  -webkit-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
}
#btn01.active span:nth-of-type(2) {
  -webkit-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
}
/**/
.header__navigation {
  display: block;
  text-align: center;
}
.header__navigation p {
  width: 21vw;
  max-width: 128px;
  top: 30px;
  padding-top: 30px;
}

.header__navigation ul{
  display: inline-block;
}

.header__navigation li {
  list-style-type: none;
  margin: 0;
}
.header__navigation li:first-child {
  padding-top: 30px;
}
.page_top {
  text-align: left;
  padding: 15px 10px 15px 20px;
  font-weight: 600;
}
.contents {
  text-align: left;
  padding: 15px 0 15px 40px;
  font-weight: 400;
}
/**/
#nav-drawer {
  text-align: right;
  padding-right: 20px;
}
#nav-content {
  width: 100%;
  height: 667px;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  background-color: #FFF;
  text-align: left;
  transform: translateX(105%);
  transition: 0.3s ease-in-out;
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.25);
}
#nav-content.active {
  transform: translateX(0);
}
.nav-drawer__link-top {
  display: block;
}
#nav-content ul li a {
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 300;
  color: #333;
}

@media(max-width:768px){

.header__navigation li:first-child {
  padding-top: 30px;
}
.page_top {
  text-align: left;
  padding: 15px 0px 15px 20px;
  font-weight: 600;
}
.contents {
  text-align: left;
  padding: 15px 0 15px 40px;
  font-weight: 400;
}

#nav-content {
  width: 100%;
  height: 667px;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  background-color: #FFF;
  text-align: left;
  transform: translateX(105%);
  transition: 0.3s ease-in-out;
  box-shadow: 5px 0 25px rgba(0, 0, 0, 0.25);
}

}

/* title */
.title {
  padding-top: 150px;
  padding-bottom: 100px;
  text-align: center;
  line-height: 40px;
}
.title h2 strong {
  font-size: 60px;
  color: #3f3a76;
}
.title h2 small {
  font-size: 24px;
  color: #3f3a76;
  font-weight: 100;
}
@media(max-width:768px) {
  .title {
    padding-top: 120px;
    padding-bottom: 60px;
    line-height: 20px;
  }
  .title h2 strong {
    font-size: 30px;
  }
  .title h2 small {
    font-size: 16px;
  }
}
/* reservation */
.section-reservation {
  position: relative;
}
.bg_reservation img {
  width: 100%;
  display: block;
}
.btn_reservation {
  width: 16.6%;
  position: absolute;
  bottom: 1.73vw;
  right: 1.04%;
}
.bg_reservation_sma img {
  display: none;
}
@media(max-width:768px) {
  .bg_reservation img {
    display: none;
  }
  .bg_reservation_sma img {
    width: 100%;
    display: block;
  }
  .btn_reservation {
    width: 32%;
    position: absolute;
    bottom: 1.73vw;
    right: 1.04%;
  }
}
/* footer */
.footer {
  height: 215px;
  padding: 10px 0;
  font-size: 18px;
  color: #333;
  font-family: "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
  position: relative;
  font-weight: 200;
  background-image: url("../images/index/bg_footer@2x.png")
}
.footer__site-map {
  margin-bottom: 30px;
}
.footer__site-map ul {
  margin-top: 40px;
  text-align: center;
  padding: 0 60px;
}
.footer__site-map li {
  margin: 0 10px;
  display: inline-block;
}
.footer__site-map li a {
  text-decoration: none;
  color: #333;
}
.footer__site-map li a:visited {
  color: #3f3a76;
}
.footer small {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  text-align: center;
  font-weight: 200;
  font-size: 15px;
}

@media (max-width: 768px) {
  .footer {
    height: 100px;
  }
  .footer ul {
    display: none;
  }
  .footer small {
    font-size: 18px;
    font-weight: 200;
    margin-top: 40px;
  }
}
.inner {
  max-width: 1200px;
  padding: 0 40px;
  margin: 0 auto;
}
@media (max-width:768px) {
  .inner {
    max-width: 768px;
    padding: 0 30px;
    margin: 0 auto;
  }
}