@charset "utf-8";

/* 簡易的なリセット */
*,
::before,
::after {
  padding: 0px;
  margin: 0;
  /* ボックスのサイズの計算方法
    border-box:width=ボックスのサイズ */
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  /* inherit:親要素の設定を受け継ぐ */
  color: inherit;
  text-decoration: none;
}

body {
  max-width: 100%;
  font-family: serif;
  font-size: 16px;
  color: #fff;
  /* 行間の距離 */
  line-height: 1;
  background-image: url(../img2/washib.jpg);
}

img {
  /* ％：親要素に対しての割合　100％=親要素と同じ
    親要素からはみ出さないようにするもの */
  max-width: 100%;
}

/* header設定 */
.main {
  position: relative;
}

h1 {
  width: 180px;
  margin-top: 30px;
  margin-left: 30px;
  z-index: 60;
  filter: drop-shadow(2px 2px 5px #000);
}

.header {
  display: flex;
  position: fixed;
  width: 100%;
  top: 0;
  height: 110px;
  display: flex;
  z-index: 60;
  transition-duration: 0.6s;
}

.header h1 img {
  width: 35%;
  margin-left: 51px;
}

.header.fixed {
  position: fixed;
  top: 0;
  z-index: 60;
}

.header.fixed.none {
  opacity: 0;
  z-index: -1;
}

.site-menu {
  display: flex;
  align-items: center;
  filter: drop-shadow(5px 5px 5px rgb(0, 0, 0));
  margin: 0 0 0 auto;
}

.site-menu ul {
  display: flex;
  justify-content: flex-end;
  /* display: block !important; */
}

.reservation-button {
  color: #fff;
  text-align: center;
  width: 170px;
  height: 45px;
  /* margin-left: 20px; */
  /* margin-right: 50px; */
  margin-top: auto;
  margin-bottom: auto;
  background-color: rgb(255, 255, 255, 0.3);
  padding: 10px 0;
  border-radius: 30px;
  border: 1px solid #fff;
}

.site-menu ul li a {
  display: block;
  margin: 10px;
  padding: 0px 30px;
  color: #fff;
}

/* headerアニメ */

.site-menu ul li a {
  display: inline-block;
  position: relative;
  text-decoration: none;
}

.site-menu ul li a::after {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 0;
  width: 0;

  height: 1px;
  background: #fff;
  transition: all 0.3s ease 0s;
}

.site-menu ul li a:hover {
  cursor: pointer;
}

.site-menu ul li a:hover::after {
  width: 100%;
}

.reservation-button:hover {
  background-color: #fff;
  color: #000;
  transition: all 0.5s;
}

.box {
  content: "◆";
  /* ::befre::afterはインラインブロック表示に変えて幅を変える */
  display: block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  margin: 200px auto;
  transform: rotate(45deg);
}

/* footer設定 */

.cp_hr01 {
  border-width: 0.5px 0 0 0;
  border-style: solid;
  border-color: #fff;
  margin: 0 100px;
}

.nav-side {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-side .footer-site-menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-side .footer-site-menu ul li a {
  padding: 0 20px;
  margin: 0 20px;
}

.nav-side h2 {
  width: 15%;
  margin-top: 10px;
}

.nav-side .sns ul {
  display: flex;
  margin-top: 30px;
}

.nav-side ul li img {
  width: 50px;
  height: 50px;
  margin-left: 30px;
  text-align: center;
}

.footer section {
  display: flex;
}

.footer-site-menu {
  height: 110px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-site-menu h2 img {
  width: 80%;
}

.adress {
  margin-top: 50px;
}

.tel {
  margin-top: 20px;
}

.tel2 {
  margin-top: 30px;
  font-size: 35px;
  font-weight: bold;
}

.text_01 {
  border-bottom: solid;
  border-color: #ff0000;
  border-width: 2px;
}

.privacy {
  display: flex;
  margin-top: 50px;
}

.privacy p {
  font-size: 12px;
  margin: 0 20px;
}

.copyright {
  margin-top: 20px;
  margin-bottom: 80px;
}

/* footerアニメ */

.footer-site-menu ul li a {
  display: inline-block;
  position: relative;
  text-decoration: none;
}

.footer-site-menu ul li a::after {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 0;
  width: 0;

  height: 1px;
  background: #fff;
  transition: all 0.3s ease 0s;
}

.footer-site-menu ul li a:hover {
  cursor: pointer;
}

.footer-site-menu ul li a:hover::after {
  width: 100%;
}

/* トップへ戻る */

#page-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  font-size: 20px;
  line-height: 1;
  z-index: 99;
}

#page-top a {
  text-decoration: none;
  color: #fff;
  width: 60px;
  padding: 28px 5px;
  text-align: center;
  display: block;
  writing-mode: vertical-rl;
  opacity: 0.9;
  transition: all 0.3s ease;
}

#page-top a:hover {
  text-decoration: none;
  opacity: 0.5;
}

.privacy p:hover {
  opacity: 0.5;
  transition: all 0.3s;
}

.sns ul li img:hover {
  opacity: 0.3;
  transition: all 0.3s;
}

.adress,
.tel,
.copyright,
.privacy {
  opacity: 0.8;
}

.footer {
  position: relative;
}

.fude2 {
  background-image: url(../im2/fuude.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  transform: rotate(180deg);
  opacity: 0.05;
  width: 50%;
  bottom: 0;
  right: 0px;
}

/* uku */
.fadeIn {
  transform: translate(0, 150px);
  transition: all 2s;
  opacity: 0;
}

.fadeIn.up {
  opacity: 1;
  transform: translate(0, 0);
}

.toggle-menu-button {
  display: none;
}

.hamburger-menu {
  display: flex;
}

/* ここから800px以下のデバイスに適用 */
@media (max-width: 800px) {
  .site-menu ul {
    display: none;
    /* display: block; */
    /* display flex解除のため */
    text-align: center;
  }

  .site-menu ul li {
    margin-top: 20px;
  }
  .reservation-button {
    margin-right: 0;
  }
  .header {
    /* 要素を自在に配置 */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffffab;
    backdrop-filter: blur(10px);
    height: 50px;
    /* 重なり順を指定　常に一番上にくるように」 */
    z-index: 10;
    /* box-shadow: 左右の位置　上下の位置　ぼかし具合　影の色; */
    box-shadow: 0 3px 6px #0000001a;
  }

  .header-inner {
    padding: 0 20px;
    height: 100%;
    position: relative;
    /* header-site-menuの基準のため */
  }
  .footer-site-menu {
    width: 100%;
  }
  /* ハンバーガー */

  .toggle-menu-button {
    display: block;
    /* 上にあるdisplay noneの解除 */
    width: 44px;
    height: 34px;
    /* background-image: url(../images/common/icon-menu.png);
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat; */
    background-color: transparent;
    border: none;
    border-radius: 0;
    outline: none;
    margin-right: 10px;
  }

  /* 真ん中の線 */
  .toggle-menu-button span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #000;
    margin: 0 auto;
    position: relative;
    transition: 0.5s;
  }

  /* 上の線 */
  .toggle-menu-button span::before {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background-color: #000;
    position: absolute;
    top: -10px;
    transition: 0.5s;
  }

  /* 下の線 */
  .toggle-menu-button span::after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background-color: #000;
    position: absolute;
    top: 10px;
    transition: 0.5s;
  }

  /* クリックしたときの設定 */
  /* 真ん中の線は透明にする */
  .toggle-menu-button.is-show span {
    background-color: transparent;
  }

  /* 上の線は真ん中に移動して45度回転する */
  .toggle-menu-button.is-show span::before {
    top: 0;
    transform: rotate(45deg);
  }

  /* ↓の線は真ん中に移動して-45度回転する */
  .toggle-menu-button.is-show span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .header-logo {
    width: 100px;
  }

  .header-site-menu {
    position: absolute;
    top: 100%;
    /* left: 0;
  right: 0; */
    left: -100%;
    width: 100%;
    height: calc(100vh - -100%);
    color: #fff;
    background-color: #c2ab76;
    padding: 30px 0 50px;
    /* display: none; */
    transition: 0.5s;
    display: grid;
    place-items: center;
  }

  .header-site-menu.is-show {
    /* display: block; */
    left: 0;
  }

  .main {
    padding-top: 50px;
  }

  .footer-logo {
    margin-top: 60px;
  }

  .footer-tel {
    font-size: 20px;
  }

  .copyright {
    margin-top: 50px;
  }
  .tel2 {
    margin-top: 30px;
    font-size: 20px;
    font-weight: bold;
  }

  .cp_hr01 {
    border-width: 0.5px 0 0 0;
    border-style: solid;
    border-color: #fff;
    margin: 0 100px;
  }

  .nav-side {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-side .footer-site-menu ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-side .footer-site-menu ul li a {
    padding: 0 20px;
    margin: 0 20px;
  }

  .nav-side h2 {
    width: 15%;
    margin-top: 10px;
  }

  .nav-side .sns ul {
    display: flex;
    margin-top: 30px;
  }

  .nav-side ul li img {
    width: 50px;
    height: 50px;
    margin-left: 30px;
    text-align: center;
  }

  .footer section {
    display: flex;
  }

  .footer-site-menu {
    height: 110px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-site-menu h2 img {
    width: 80%;
  }

  .adress {
    margin-top: 50px;
  }

  .tel {
    margin-top: 20px;
  }

  .tel2 {
    margin-top: 30px;
    font-size: 20px;
    font-weight: bold;
  }

  .text_01 {
    border-bottom: solid;
    border-color: #ff0000;
    border-width: 2px;
  }

  .privacy {
    display: flex;
    margin-top: 50px;
  }

  .privacy p {
    font-size: 12px;
    margin: 0 20px;
  }

  .copyright {
    margin-top: 20px;
    margin-bottom: 80px;
  }

  /* footerアニメ */

  .footer-site-menu ul li a {
    display: inline-block;
    position: relative;
    text-decoration: none;
  }

  .footer-site-menu ul li a::after {
    position: absolute;
    content: "";
    bottom: -10px;
    left: 0;
    width: 0;

    height: 1px;
    background: #fff;
    transition: all 0.3s ease 0s;
  }

  .footer-site-menu ul li a:hover {
    cursor: pointer;
  }

  .footer-site-menu ul li a:hover::after {
    width: 100%;
  }
}
