@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  color: #333; /* RGB */
  font-family: "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.6rem;
  text-align: center;
  margin: 0;
  padding: 0;
}
p {
  margin-bottom: 25px;
}
section h2 {
  font-size: 2.0rem;
}
a:hover {
  opacity: 0.5;
  cursor: pointer;
}
.none {
  display: none;
}
*, *:before, *:after {
  box-sizing: border-box;
}
img {
  width: 100%;
}
/*ヘッダー*/
.header {
  height: 50px;
  width: 100%;
  background-color: #b7d1c5;
  /*	background-color: rgba(43,77,61,0.3);*/
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0px;
  z-index: 1000;
}
a.btn-reserve {
  color: #fff;
  text-align: left;
  padding: 5px 24px;
  font-size: 1.6rem;
  display: inline-block;
  background-color: #7cbeb3;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 7px;
  right: 20px;
  text-decoration: none;
}
a.btn-reserve:before {
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  content: '';
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid #fff;
}
a.btn-reserve:hover {
  transform: translate(0, -2px);
}
/*
nav{
  display: none;
}
*/
/*ハンバーガーボタン*/
.open-button, .close-button {
  display: none;
}
.header ul span {
  font-size: 1rem;
}
.header ul li {
  line-height: 1.5rem;
  text-align: left;
}
@media(min-width:1160px) {
  .header {
    height: 83px;
  }
  .header-content-wrapper {
    max-width: 1150px;
    margin: 0 auto;
    position: relative;
  }
  a.btn-reserve {
    font-weight: 600;
    padding: 15px 24px;
    font-size: 2.5rem;
    position: absolute;
    top: 13px;
    right: 0px;
  }
  .header nav {
    display: block;
    text-align: center;
  }
  .header nav ul {
    display: flex;
    justify-content: flex-start;
  }
  .header nav li a {
    display: block;
    padding: 23px 36px 0;
    color: #333;
    text-decoration: none;
    font-size: 2rem;
    height: 83px;
  }
  .header ul li {
    line-height: 2rem;
    text-align: center;
  }
}
@media(max-width:1160px) {
  .header ul {
    display: block;
  }
  .open-button {
    display: block;
    position: absolute;
    left: 20px;
    top: 15px;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  .open-button span, .open-button span:before, .open-button span:after {
    position: absolute;
    height: 3px;
    width: 25px;
    background-color: #FFF;
    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;
    font-size: 20px;
    padding: 25px;
  }
  .header ul a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    vertical-align: middle;
  }
  .header ul li {
    margin-left: 30px;
    margin-bottom: 30px;
  }
  .header nav {
    z-index: 1000;
    display: none; /*     javascript*/
    position: fixed;
    top: 0;
    left: 0;
    background-color: #f2f5f6;
    height: 100%;
    width: 60%;
    padding-top: 67px;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.4);
  }
}
/*フッター*/
.footer {
  height: 350px;
  padding: 30px 0;
  background-image: url("../assets/materials-assets/footer_frame.png");
  font-size: 1.4rem;
  position: relative;
  margin-top: 40px;
}
.footer a {
  color: #333333;
  text-decoration: none;
}
.footer li {
  padding: 7px 15px;
}
.footer__site-map {
  text-align: left;
  justify-content: left;
  font-size: 1.4rem;
  margin-left: 20px;
  display: flex;
  font-weight: 600;
}
.footer__sns {
  margin-bottom: 80px;
  position: absolute;
  top: 25%;
  right: 20%;
}
.footer__sns li {
  width: 80px;
  margin: 0 10px;
  list-style: none;
}
.footer__sns li img {
  width: 100%;
}
.copyright {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  text-align: center;
}
@media(min-width:960px) {
  .footer {
    pading: 70px auto;
    height: 250px;
  }
  .footer nav ul {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
  }
  .footer__site-map {
    margin: 0 auto;
    font-weight: 600;
    text-align: center;
    justify-content: center;
  }
  .footer nav ul li {
    margin: 25px;
  }
  .footer__sns {
    position: absolute;
    top: 50%;
    right: 38%;
  }
  .footer__sns ul {
    display: flex;
  }
  .footer__sns li {
    display: inline-block;
    margin: 0 10px;
  }
  .footer__sns li img {
    width: 100%;
  }
}
/* return to top */
#scroll-top {
  background-color: #eee;
  opacity: 0.6;
  bottom: 20px;
  padding: 10px;
  position: fixed;
  right: 30px;
}
#scroll-top a {
  text-decoration: none;
  color: #333;
}