@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
}
.font-inspiration {
  font-family: "Inspiration", cursive;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 1px;
}
body {
  color: #333;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  line-height: 2;
  text-align: left;
  background-image: url("../images/common/bg.jpg");
  -webkit-text-size-adjust: 100%;
}
main {
  margin-top: 76px;
}
a:hover {
  opacity: 0.5;
  transition: 0.5s;
}
*, *:before, *:after {
  box-sizing: border-box;
}
h2, h3 {
  font-weight: 500;
}
.none {
  display: none;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
/* メイン画像のフェードイン */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (min-width: 1040px) {
  main {
    margin-top: 135px;
  }
}
/* header */
.header {
  height: 76px;
  width: 100%;
  z-index: 10;
  position: fixed;
  top: 0;
  transition: .3s;
  background-image: url("../images/common/bg.jpg");
}
.header-container {
  position: relative;
  width: 100%;
  height: 100%;
}
h1.pc-logo {
  display: none;
}
h1.sp-logo {
  width: 80px;
  height: 45px;
  position: absolute;
  left: 18px;
  top: 55%;
  transform: translateY(-50%);
}
.sp-site-title {
  width: 115px;
  height: 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 1040px) {
  .header {
    height: 135px;
  }
  h1.sp-logo, .sp-site-title {
    display: none;
  }
  h1.pc-logo {
    display: block;
    position: absolute;
    width: 114px;
    height: 114px;
    left: 3%;
    top: 50%;
    transform: translateY(-50%);
  }
}
/* SPのハンバーガーアイコン、ナビゲーション、ドロワー*/
@media (max-width: 1040px) {
  /* ハンバーガーアイコン */
  #nav-drawer {
    padding: 16px 24px 0 0;
    text-align: right;
    position: relative;
    width: 100%;
  }
  #nav-open {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(-50%, 0%);
    margin-right: 18px;
    padding: 25.5px 0px;
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 19px;
    z-index: 100;
  }
  #nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 2px;
    width: 30px;
    border-radius: 3px;
    background-color: #60411D;
    display: block;
    content: "";
  }
  #nav-open span:before {
    bottom: -8px;
  }
  #nav-open span:after {
    bottom: -16px;
  }
  #nav-open span::after {
    content: "MENU";
    color: #60411D;
    font-size: 1.0rem;
  }
  /* ナビゲーション */
  .header__navigation {
    display: none;
  }
  /* ドロワー */
  #nav-close {
    position: absolute;
    top: 5px;
    right: 18px;
    padding: 35px 0px;
    display: inline-block;
    width: 25px;
    height: 25px;
    z-index: 1000;
  }
  #nav-close span:before, #nav-close span:after {
    position: absolute;
    height: 2px;
    width: 30px;
    border-radius: 3px;
    background-color: #60411D;
    display: block;
    content: "";
  }
  #nav-close span:before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  #nav-close span:after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  #nav-content {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-image: url("../images/common/bg.jpg");
    text-align: center;
    padding: 50px 24px 0px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
  }
  #nav-content.is-active {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-drawer__logo {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }
  #nav-content ul {
    margin-bottom: 20px;
  }
  #nav-content ul li {
    padding-top: 20px;
  }
  #nav-content ul li a {
    text-decoration: none;
    font-size: 1.8rem;
    color: #333;
  }
  #nav-input:checked ~ #nav-close {
    display: block;
  }
}
/* ドロワーの予約ボタン */
a.nav-drawer__reservation-btn {
  display: inline-block;
  position: relative;
  width: 230px;
  height: 80px;
  text-decoration: none;
  color: #333333;
}
a.nav-drawer__reservation-btn span {
  position: absolute;
  bottom: 36%;
  left: 19%;
  font-size: 1.8rem;
}
a.nav-drawer__reservation-btn::after {
  display: block;
  content: "";
  background-image: url("../images/common/reservation-btn.png");
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* PCのヘッダーナビゲーション*/
@media (min-width: 1040px) {
  .header__navigation {
    display: block;
  }
  .nav-drawer__logo {
    display: none;
  }
  .header__navigation ul {
    position: absolute;
    left: 13%;
    top: 52px;
  }
  .header__navigation ul li {
    display: inline-block;
    margin-left: 30px;
  }
  
  .header__navigation ul li:first-child {
    margin-left: 0px;
  }
  .header__navigation ul li a {
    text-decoration: none;
    font-size: 1.7rem;
    color: #333;
  }
}
@media (min-width: 1400px) {
  h1.pc-logo {
    left: 7%;
  }
  .header__navigation ul {
    left: 17%;
  }
}
/*タブレットヘッダーの予約ボタン*/
a.nav-drawer__reservation-btn.tablet {
  margin: -4px 40px 0 0;
  width: 180px;
}
a.nav-drawer__reservation-btn.tablet span {
  font-size: 1.4rem;
  left: 19%;
  bottom: 48%;
}
@media (max-width: 699px) {
  a.nav-drawer__reservation-btn.tablet {
    display: none;
  }
}
@media (min-width: 1040px) {
  a.nav-drawer__reservation-btn.tablet {
    display: none;
  }
}
/*PCヘッダーの予約ボタン*/
@media (min-width: 1040px) {
  a.nav-drawer__reservation-btn {
    position: absolute;
    right: 0;
    top: 34px;
    display: block;
    width: 220px;
  }
}
@media (min-width: 1280px) {
  a.nav-drawer__reservation-btn {
    right: 5%;
  }
}
/* 下層ページの左右padding */
.page-container {
  padding: 0 20px;
}
@media (min-width: 700px) {
  .page-container {
    padding: 0 100px;
  }
}
@media (min-width: 1250px) {
  .page-container {
    padding: 0 200px;
  }
}
/* CTA */
@media (min-width: 700px) {
  .cta-button {
    display: flex;
  }
}
/* footer */
.footer {
  background-image: url("../images/common/Access_Footer_bg.jpg");
  padding: 70px 20px 50px;
  color: #000000;
  position: relative;
}
.footer-logo {
  width: 137px;
  height: 137px;
  margin: 0 auto 35px;
}
.footer a {
  color: #000;
  text-decoration: none;
}
.site-map {
  display: flex;
  text-align: left;
  justify-content: center;
  line-height: 2.5;
  margin-bottom: 60px;
}
.site-map__main-links {
  padding-right: 8%;
  font-size: 1.7rem;
}
.site-map__sub-links {
  font-size: 1.4rem;
}
.footer__copyright {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
}
@media (min-width: 960px) {
  .footer {
    padding: 70px 120px 45px;
  }
  .footer-container {
    display: flex;
    max-width: 1160px;
    margin: 0 auto;
  }
  .footer-logo {
    margin: 0 auto 0 0;
  }
  .site-map {
    margin-bottom: 120px;
    font-weight: 600;
  }
  .site-map__main-links {
  padding-right: 50px;
}
  .footer__copyright {
    font-size: 1.4rem;
    font-weight: 500;
  }
}
/* return to top */
#scroll-top {
  position: fixed;
  bottom: 10px;
  right: 0px;
}
.up-btn {
  width: 60px;
}
@media(min-width:940px) {
  #scroll-top {
    bottom: 30px;
    right: 30px;
  }
  .up-btn {
    width: 95px;
  }
}