@charset "UTF-8";
/*=====================================================================
#共通ルール
=====================================================================*/
html {
  scroll-behavior: smooth;
}

body {
  font-size: 14px;
  line-height: 1.7;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  body {
    margin: 0 auto;
    font-size: 16px;
  }
}

.section-title {
  margin-top: 120px;
  position: relative;
  font-size: 24px;
  font-family: "Inder", sans-serif;
  letter-spacing: 4px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 36px;
    margin-top: 250px;
  }
}
.section-title::before {
  position: absolute;
  content: "";
  background: url(../img/sp_sectionimage_s.png) no-repeat center center/contain;
  width: 60px;
  height: 42px;
  top: -40px;
  right: 50%;
  transform: translateX(50%);
}

.about,
.menu,
.news,
.access {
  scroll-margin-top: 60px;
}

.slidein {
  opacity: 0;
  transition: all 1.5s ease; /* ゆっくりふわっと */
}
.slidein.slidein-bottom {
  transform: translate(0, 20%); /* 画面下から */
}
.slidein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.slidein:nth-child(1).scrollin {
  transition-delay: 0.2s;
}

.slidein:nth-child(2).scrollin {
  transition-delay: 0.4s;
}

.slidein:nth-child(3).scrollin {
  transition-delay: 0.6s;
}

/*=====================================================================
#btn
=====================================================================*/
.btn {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
  display: inline-block;
  border: 1px solid #555;
  padding: 8px 40px;
  font-size: 14px;
  letter-spacing: 3px;
  color: #333;
  background-color: #fff;
  text-decoration: none;
  text-align: center;
  transition: ease 0.2s;
  outline: none;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .btn {
    padding: 20px 55px;
    font-size: 18px;
  }
}
.btn span {
  position: relative;
  z-index: 5;
  color: #333;
  transition: color 0.3s ease;
}
.btn:hover span {
  color: #fff;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: #333;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transform: scale(0, 1);
  transform-origin: right top;
}
.btn:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/*=====================================================================
#scroll-top
=====================================================================*/
#scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (min-width: 768px) {
  #scroll-top {
    bottom: 50px;
    right: 50px;
  }
}
#scroll-top img {
  width: 80px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
@media screen and (min-width: 768px) {
  #scroll-top img {
    width: 100px;
  }
}
#scroll-top:hover img {
  opacity: 0.9;
}
#scroll-top.is-visible {
  opacity: 0.9;
  visibility: visible;
}

/*=====================================================================
#header
=====================================================================*/
@media screen and (min-width: 768px) {
  .header {
    width: 100%;
    height: 60px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
  }
}

.header__inner {
  max-width: 1140px;
  margin: 0 auto;
  position: absolute;
  padding-right: 15px;
  padding-left: 15px;
}
@media screen and (min-width: 768px) {
  .header__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: inherit;
    position: relative;
  }
}

.header_nav {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.9);
  font-size: 14px;
  transform: translateX(100%);
  transition: transform 0.4s;
  font-family: "Roboto", sans-serif;
  color: #fff;
  letter-spacing: 2px;
  transition: transform 0.3s linear;
}
.header_nav.is-checked {
  transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .header_nav {
    position: relative;
    right: 30px;
    display: flex;
    justify-content: end;
    transform: translateX(0);
    background: rgba(51, 51, 51, 0);
  }
}

.nav-items {
  margin-top: 60px;
  z-index: 100;
  font-family: "Roboto", sans-serif;
}
.nav-items li {
  display: block;
  text-align: center;
}
.nav-items li:nth-child(6) {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .nav-items {
    margin-top: 20px;
    display: flex;
  }
}

.header__link {
  position: relative;
  display: block;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .header__link {
    padding-right: 30px;
  }
  .header__link a {
    position: relative;
  }
  .header__link a::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 10%;
    width: 80%;
    height: 1.5px;
    background-color: #fff;
    transition: all 0.3s;
    transform: scale(0, 1); /* X方向0、Y報告1 */
    transform-origin: left top; /* 左上起点 */
  }
  .header__link a:hover::after {
    transform: scale(1, 1); /* X方向へスケール拡大 */
  }
}

.header__button {
  margin-top: 10px;
  border-radius: 100px;
  font-weight: 700;
  color: #4a4a4a;
  background-color: #fff;
  padding: 10px 20px;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.5);
  transition: color 0.5s ease, background-color 0.8s ease;
}
.header__button:hover {
  color: #fff;
  background-color: #4a4a4a;
}

/*=====================================================================
#ハンバーガーメニュー
=====================================================================*/
.drawer-icon {
  width: 36px;
  height: 21px;
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 100;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 10px;
  transform: rotate(30deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 10px;
  transform: rotate(-30deg);
}
@media screen and (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 3px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgb(84, 84, 84);
  transition: transform 0.3s linear, top 0.3s linear;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 9px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 18px;
}

/*=====================================================================
#decotation
=====================================================================*/
.decoration-img {
  margin: 48px 0 48px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .decoration-img {
    margin: 86px 0 86px;
  }
}
.decoration-img img {
  width: 120px;
}

/*=====================================================================
#footer
=====================================================================*/
.footer {
  margin-top: 40px;
  background: #333;
  color: #fff;
  font-size: 14px;
}

.footer__inner {
  padding: 40px 15px 10px;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding: 40px 40px;
  }
}

.footer__container {
  max-width: 360px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer__container {
    max-width: 1140px;
  }
}

@media screen and (min-width: 768px) {
  .footer__LR {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}

.footer__contact {
  text-align: center;
}

.footer__reserve {
  width: 200px;
  margin: 10px auto 0;
  border-radius: 100px;
  font-weight: 700;
  color: #4a4a4a;
  background-color: #fff;
  padding: 10px 5px;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.5);
  transition: color 0.5s ease, background-color 0.8s ease;
}
.footer__reserve:hover {
  color: #fff;
  background-color: #4a4a4a;
}
@media screen and (min-width: 768px) {
  .footer__reserve {
    font-size: 16px;
  }
}

.footer__tel {
  font-size: 21px;
  margin-top: 20px;
  font-weight: 700;
}

.footer__address {
  font-size: 12px;
  max-width: 360px;
  margin: 20px auto;
}
@media screen and (min-width: 768px) {
  .footer__address {
    max-width: 480px;
    font-size: 16px;
  }
}
.footer__address table {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__address table {
    width: 500px;
  }
}
.footer__address table tr td:nth-child(1) {
  white-space: nowrap;
}
.footer__address table tr td:nth-child(2) {
  padding-left: 3%;
}
@media screen and (min-width: 768px) {
  .footer__address table tr td:nth-child(2) {
    padding-left: 1%;
  }
}

@media screen and (min-width: 768px) {
  .footer__sns {
    margin-top: 30px;
  }
}
.footer__sns img {
  width: 40px;
}
.footer__sns img:nth-child(1) {
  padding-right: 10px;
}

.footer__bottom {
  text-align: center;
}

.footer__logo {
  margin: 40px auto;
  display: block;
}
.footer__logo img {
  height: 70px;
}
@media screen and (min-width: 768px) {
  .footer__logo img {
    height: 140px;
  }
}

.small {
  font-size: 12px;
}/*# sourceMappingURL=common.css.map */