@charset "utf-8";
/* CSS Document */
/* ---------- 基本設定　背景・文字 ---------- */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
.none {
  display: none;
}
body {
  color: #333333;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
  background-color: #ffffff;
}
h1 {
  font-family: "Reem Kufi", sans-serif;
  font-size: 4.0rem;
  line-height: 6.0rem;
  font-weight: 400;
  color: #333333;
  letter-spacing: 0.3rem;
}
h2 {
  font-family: "adobe-handwriting-ernie", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 6.0rem;
  line-height: 9.0rem;
  font-weight: 400;
  color: #333333;
}
h3 {
  font-family: "Reem Kufi", sans-serif;
  font-size: 1.8rem;
  line-height: 2.7rem;
  font-weight: 500;
  color: #795f46;
  letter-spacing: 0.3rem;
}
.link-button {
  font-family: "Reem Kufi", sans-serif;
  font-size: 1.8rem;
  line-height: 2.7rem;
  font-weight: 500;
  color: #795f46;
  letter-spacing: 0.3rem;
}
a:hover {
  opacity: 0.5;
}
@media(max-width:1200px){
  .text_br__1200px {
  display: block;
}
}
@media(max-width:900px){
  .text_br__900px {
  display: block;
}
}
@media(max-width:700px){
  .text_br__700px {
  display: block;
}
}
@media(max-width:600px){
  h1 {
  font-size: 2.0rem;
  line-height: 4.0rem;
}
  h2 {
  font-size: 4.0rem;
  line-height: 6.0rem;
}
}
/* ---------- ヘッダー 基本設定---------- */
.header {
  height: auto;
  width: 100%;
  position: sticky;
  top: 0;
  display: flex;
  justify-content: flex-end;
  z-index: 999;
  padding: 25px 0;
}
.header h1 {
  position: absolute;
  top: 30px;
  left: 50px;
}
.header a {
  text-decoration: none;
  color: #333333;
}
.nav-drawer{
  display: flex;
  justify-content: flex-end;
  margin: 25px 50px 0 0;
}
.header-navigation ul {
  list-style: none;
  display: flex;
  justify-content: flex-start;
}
.header-navigation ul li {
  font-family: "Reem Kufi", sans-serif;
  font-size: 1.8rem;
  line-height: 2.7rem;
  font-weight: 500;
  letter-spacing: 0.3rem;
  margin-right: 50px;
}
.header-sns-icon img {
  height: 25px;
  vertical-align: middle;
}
.header__reservation-button {
  border-radius: 100px;
  background-color: #d1ecf3;
  margin: 0 50px 0 0;
  padding: 20px 40px;
}
.header__reservation-button a {
  display: flex;
  justify-content: center;
  vertical-align: middle;
}
.header__reservation-button img {
  height: 25px;
  margin: 0 15px 0 0;
}
.header__reservation-button p {
  font-family: "Reem Kufi", sans-serif;
  font-size: 1.8rem;
  line-height: 2.7rem;
  font-weight: 500;
  letter-spacing: 0.3rem;
}


/* ---------- ヘッダー　1200px～600px（ハンバーガーメニュー） ---------- */
@media(max-width:1200px){
  .header{
    padding: 25px 0 40px;
  }
  #nav-drawer{
  margin: 25px 50px 0 0;
    text-align: right;
    position: relative;
    z-index: 999;
  }
  #nav-open{
    width: 25px;
    height: 22px;
    display: inline-block;
    vertical-align: middle;
    right: 50px;
    position: absolute;
  }
  #nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 2px;
    width: 25px;
    background-color: #333333;
    display: block;
    content: "";
  }
  #nav-open span:before {
    bottom: -10px;
  }
  #nav-open span:after {
    bottom: -20px;
  }
  #nav-close {
    z-index: 30px;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #333333;
    opacity: 0.2;
  } 
  #nav-content {
    margin: 0;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999;
    width: 70%;
    max-width: 300px;
    height: 100%;
    background-color: #ffffff;
    text-align: center;
    padding: 30px 0 0;
    transform: translateX(120%);
    transition: 0.3s ease-in-out;
    box-shadow: 5px 0 25px #bbbbbb;
  }
  #nav-content ul{
    display: block;
  }
  #nav-content ul li {
    margin: 50px 0 0 0;
  }
    #nav-input:checked ~ #nav-close {
    display: block;
  }
  #nav-input:checked ~ #nav-content {
    transform: translateX(0%)
  }
  .header-sns-icon{
    margin-right: 80px;
  }
}
/* ---------- ヘッダー　600px～（ハンバーガーメニュー） ---------- */
@media(max-width:600px) {
    .header{
    padding: 25px 0;
  }
    .header h1 {
  top: 25px;
  left: 20px;
  }
  .nav-drawer{
  margin: 10px 20px 0 0;
}
    #nav-open{
    right: 20px;
  }
  .header-sns-icon{
    margin-right: 50px;
  }  
  
}

/* ---------- 予約ボタン 基本設定---------- */
@media(max-width:1200px) {
  .header__reservation-button {
    display: none;
  }
  .reservation-button {
    display: block;
    position: fixed;
    bottom: 0;
    background-color: #d1ecf3;
    padding: 20px 0;
    margin: 0 auto;
    width: 100%;
    z-index: 999;
  }
  .reservation-button a {
    display: flex;
    justify-content: center;
    vertical-align: middle;
    text-decoration: none;
    color: #333333;
  }
  .reservation-button img {
  height: 25px;
  margin: 0 15px 0 0;
}
  .reservation-button p {
  font-family: "Reem Kufi", sans-serif;
  font-size: 1.8rem;
  line-height: 2.7rem;
  font-weight: 500;
  letter-spacing: 0.3rem;
}
}


/* ---------- ヘッダー 基本設定---------- */
.footer {
  width: 100%;
  height: 120px;
  background-color: #f6f6f1;
  position: relative;
}
.footer small {
  display: block;
  position: absolute;
  bottom: 20px;
  width: 100%;
}
@media(max-width:1200px){
  .footer{
    margin-bottom: 67px;
  }
}