@charset "UTF-8";
/* 共通 CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%; /*widthを%指定すると要素幅は可変。但し、paddingとborder含まれないため以下box-sizing: border-boxで対処する*/
  box-sizing: border-box; /*paddingとborderを幅と高さに含める*/
}
body {
  color: #4C3C31; /*  RGB 076 060 049 */
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.0rem;
}
/*ヘッダー*/
.header {
  height: 44px;
  position: relative; /*最初にposition:relativeで指定し、position:absoluteとセットで使う 1/2 */
}
a:hover {
  opacity: 0.5;
}
/* navigation */
.open-button, .close-button {
  display: none;
}
@media(max-width:1160px) { /*　スマホ向け　この画面幅以下なら*/
  .open-button {
    display: block;
    position: absolute;
    right: 10px;
    top: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  .open-button span, .open-button span:before, .open-button span:after {
    position: absolute;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #4C3C31;
    display: block;
    content: "";
  }
  .open-button span:before {
    bottom: -8px;
  }
  .open-button span:after {
    bottom: -16px;
  }
  .close-button {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    color: #4C3C31;
    font-size: 20px;
    padding: 20px;
  }
  .header nav {
    display: none;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #d9ebdc;
    width: 70%;
    height: 100%;
    padding-top: 67px;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.4);
  }
  .header nav ul li {
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
  }
  .header nav ul li:first-child {
    border-top: solid 1px rgba(255, 255, 255, 0.5);
  }
  .header nav ul li a {
    font-weight: 600;
    line-height: 40px;
    vertical-align: middle;
    text-decoration: none;
    color: #4C3C31;
  }
  /*フツター*/
  .footer {
    background-color: #d9ebdc;
    background-image: url("../images/footer-bg02.png");
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .footer_top ul {
    text-align: center;
    padding: 10px;
  }
  .footer_top ul li {
    display: inline-block;
  }
  .footer h2 {
    font-size: 1.1em;
    line-height: 1.5em;
    top: 14px;
    text-align: center;
    padding: 10px;
  }
  .footer__navigation {
    display: block;
    text-align: center;
    padding-bottom: 30px;
  }
  .footer__navigation ul li {
    display: inline-block; /*MENUを横並びに*/
    margin-left: 20px;
  }
  .footer__navigation ul li a {
    text-decoration: none; /*下線を消す*/
    color: #4C3C31;
  }
  .footer small {
    display: block;
    text-align: center;
  }
}
@media(min-width:1160px) { /*PC向け　この画面幅以上なら*/
  .header h1 {
    position: absolute;
    padding: 5px 5px;
  }
  .header__navigation {
    display: block; /*四角エリアを表示*/
    text-align: right; /*MENUを右揃え*/
    margin-right: 30px;
  }
  .header__navigation ul li {
    display: inline-block; /*MENUを横並びに*/
    padding: 10px 0;
    margin-left: 40px;
  }
  .header__navigation ul li a {
    text-decoration: none; /*下線を消す*/
    font-size: 1.2em;
    font-weight: 600; /*太字に 600が基本*/
    color: #7C6C63;
  }
  /*フツター*/
  .footer {
    background-color: #d9ebdc;
    background-image: url("../images/footer-bg02.png");
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .footer_top ul {
    text-align: center;
    padding: 30px;
  }
  .footer_top ul li {
    display: inline-block;
  }
  .footer h2 {
    font-size: 1.4em;
    line-height: 1.5em;
    top: 14px;
    text-align: center;
    padding: 10px;
  }
  .footer__navigation {
    display: block;
    text-align: center;
    padding-bottom: 30px;
  }
  .footer__navigation ul li {
    display: inline-block; /*MENUを横並びに*/
    margin-left: 20px;
  }
  .footer__navigation ul li a {
    text-decoration: none; /*下線を消す*/
    font-size: 1.3em;
    color: #4C3C31;
  }
  .footer small {
    display: block;
    text-align: center;
  }
}
/*予約ボタン*/
.link-button {
  position: fixed; /*位置固定*/
  top: 8%;
  right: 0%;
  font-size: 1.2em;
  font-weight: bold; /*太字*/
  text-decoration: none; /*下線消す*/
  background: skyblue; /*背景*/
  color: white; /*文字を白*/
  padding: 13px 20px; /*内側余白*/
  border-radius: 20px; /*角丸*/
  z-index: 1;
}