@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth; /*TOPへ戻るボタンスルスル*/
}
body {
  color: #333; /* RGB */
  font-family: 'Klee One', cursive;
  font-weight: 500;
  font-size: 2.0em;
  line-height: 1.8;
  text-align: center;
}
section h2 {
  font-size: 2.6rem;
}
section h3 {
  font-size: 2.0rem;
}
a:hover {
  opacity: 1.0;
}
.none {
  display: none;
}
*, *:before, *:after {
  box-sizing: border-box;
}
.header {}
.header-logo {
  width: 60px;
  position: absolute;
  left: 7%;
  top: 2%;
  z-index: 1000;
}
.header-logo_img {
  width: 60px;
}
.header-logo_copy {
  position: absolute;
  left: 7%;
  top: 12%;
  z-index: 1000;
  text-align: left;
  line-height: 2.4rem;
  mix-blend-mode: difference;
  color: #fff;
  font-size: 1.8rem;
}
.header-logo_copy span {
  font-size: 1.4rem;
}
.header-wrap {
  max-width: 1300px;
  margin: 0 auto;
}
@media (min-width:768px) {
  .header-logo_copy {
    left: 20vw;
    top: 20px;
  }
}
@media (min-width:1024px) {
  .header-logo {
    width: 95px;
  }
  .header-logo_copy {
    position: absolute;
    left: 17vw;
    top: 40px;
    z-index: 1000;
    text-align: left;
    line-height: 2.7rem;
    mix-blend-mode: difference;
    color: #fff;
  }
  .header-logo_copy span {
    font-size: 1.4rem;
  }
  .header-logo_img {
    width: 95px;
  }
}
/*ナビゲーション*/
.header-nav {
  background-color: rgba(121, 121, 121, 0.95);
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15% 3% 0;
}
.header-nav_wrap {
  text-align: left;
  display: inline-block;
  padding-top: 50px;
}
.header-nav_wrap li {
  color: #fff;
}
.header-nav_title {
  width: 10%;
}
.header-nav_title-home {
  width: 28%;
}
.header-nav_title-about {
  width: 34%;
  padding: 60px 0 0;
}
.header-nav_title-menu {
  width: 26%;
  max-width: 105px;
  padding: 40px 0 20px;
}
.header-nav_title-news {
  width: 26%;
  max-width: 105px;
  padding-bottom: 20px;
}
.header-nav_title-pa {
  width: 23%;
  max-width: 85px;
  padding-bottom: 20px;
}
.header-nav_sns-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-nav_sns-wrap img {
  width: 30px;
  vertical-align: bottom;
  margin-left: 5px;
}
.header-nav_sns a {
  text-decoration: none;
  color: #fff;
}
.header-nav_content {
  font-size: 2.0rem;
}
.header-nav_content li::before {
  content: "//";
  padding-right: 10px;
  padding-left: 20px;
}
.header-nav_content a {
  text-decoration: none;
  color: #fff;
}
.nav-content {
  padding: 0;
  display: block;
}
@media (max-width:768px) {
  .header-nav_wrap {
    padding: 0;
    text-align: center;
  }
  .header-nav_content {
    font-size: 1.8rem;
  }
  .header-nav_title {
    margin: 0 auto;
    padding-bottom: 0;
  }
  .header-nav_title-about {
    padding: 45px 0 0;
  }
  .header-nav_title-menu {
    padding: 45px 0 15px;
  }
  .header-nav_title-news {
    padding-bottom: 15px;
  }
  .header-nav_sns a {
    margin-left: 15px;
    padding-top: 15px;
  }
}
@media (min-width:768px) {
  .header-nav {
    padding-top: 5%;
  }
  .nav-wrap {
    display: flex;
    justify-content: space-evenly;
  }
  .header-nav_content li::before {
    padding-left: 40px;
  }
  .header-nav_title-home {
    width: 22%;
  }
  .header-nav_title-about {
    width: 27%;
    padding: 60px 0 0;
  }
  .header-nav_sns-wrap {
    justify-content: flex-start;
  }
  .nav-content {
    padding-top: 10px;
  }
  .header-nav_title-menu {
    width: 63%;
    padding: 40px 0 20px;
  }
  .header-nav_title-news {
    width: 63%;
    padding-bottom: 20px;
  }
  .header-nav_title-pa {
    width: 55%;
    padding-bottom: 20px;
  }
}
@media (max-width:375px) {
  .header-nav_wrap {
    padding: 0;
  }
  .header-nav_title-about {
    padding: 30px 0 0;
  }
  .header-nav_title-menu {
    padding: 25px 0 10px;
  }
  .header-nav_title-news {
    padding-bottom: 10px;
  }
  .header-nav_sns a {
    padding-top: 0;
  }
}
/*ハンバーガーボタン*/
.openbtn6 {
  position: fixed; /*ボタン内側の基点となるためrelativeを指定*/
  cursor: pointer;
  width: 80px;
  height: 50px;
  z-index: 9998;
  right: 0;
  margin-top: 40px;
  mix-blend-mode: difference;
}
/*ボタン内側*/
.openbtn6 span {
  display: inline-block;
  transition: all .4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 2px;
  background: #aaa;
}
.openbtn6 span:nth-of-type(1) {
  top: 15px;
  width: 45%;
}
.openbtn6 span:nth-of-type(2) {
  top: 23px;
  width: 35%;
}
.openbtn6 span:nth-of-type(3) {
  top: 31px;
  width: 20%;
}
/*activeクラスが付与されると線が回転して×になる*/
.openbtn6.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-135deg);
  width: 30%;
}
.openbtn6.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn6.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(135deg);
  width: 30%;
}
@media (max-width:768px) {
  .openbtn6 {
    margin-top: 10px;
    position: fixed;
    margin-right: 3%;
  }
}
.section-access {
  position: relative;
  background-color: #fff;
}
.section-access_map {
  width: 100%;
  height: 375px;
  filter: grayscale(100%);
}
.section-access_title h2 {
  padding-top: 50px;
  border-bottom: 3px solid;
  border-image: linear-gradient(to right, #d0d0c4 0%, #929f9d 100%) 1;
  width: 80%;
  margin: 0 auto;
}
.section-access_title img {
  width: 150px;
  margin-bottom: -5px;
}
.section-access_detail {
  padding: 60px 0 20px;
  font-size: 2.0rem;
  font-weight: 600;
}
.section-access_detailtitle {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-access_detail::before, .section-access_detail::after {
  content: "ー";
  font-family: YuGothic, 'Yu Gothic medium', 'Hiragino Sans', Meiryo, 'sans-serif';
}
.section-access_detail::before {
  margin-right: 10px;
}
.section-access_detail::after {
  margin-left: 10px;
}
.section-access_detail-date {
  font-size: 1.8rem;
}
.section-access_detail-inquiry1 {
  background-color: #edde5a;
  padding: 8px 50px 13px;
  font-size: 3.0rem;
  font-weight: 600;
}
.section-access_detail-inquiry2 {
  background-color: #edde5a;
  padding: 10px 45px 15px;
  font-size: 2.8rem;
  font-weight: 600;
}
.section-access_detail-hotpepper {
  font-size: 1.4rem;
  margin-top: 10px;
}
.section-access_detail-tel {
  margin-bottom: 30px;
}
.section-access_detail-tel a {
  text-decoration: none;
  color: #333;
}
.section-access_detail-address {
  font-size: 1.6rem;
  text-align: left;
  margin: 0 auto;
}
.section-access_detail-addresswrap p {
  margin: 0 auto;
  font-size: 1.8rem;
  padding-left: 5px;
  display: table;
  text-align: left;
}
.section-access_detail-addresswrap {
  padding: 0 24px 45px;
}
.section-access_detail-web a {
  text-decoration: none;
  color: #333;
}
@media (min-width:1100px) {
  .section-access {
    position: relative;
  }
  .section-access_title h2 {
    text-align: left;
    width: 35%;
    margin-left: 15%;
  }
  .section-access_title h3 {
    text-align: left;
    margin-left: 15%;
  }
  .section-access ul {
    list-style: none;
    text-align: left;
  }
  .section-access ul li:first-child, .section-access ul li:last-child {
    margin-left: 15%;
  }
  .section-access ul li:nth-child(2) {
    position: absolute;
    right: 100px;
    top: 520px;
  }
  .section-access_detail {
    text-align: left;
  }
  .section-access_detail-content {
    font-size: 1.6rem;
  }
  .section-access_detailtitle {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .section-access_detail-inquiry1 {
    background: none;
    padding: 0;
    margin-right: 10px;
  }
  .section-access_detail-teldiscription {
    font-size: 1.6rem;
  }
  .section-access_detail-tel br:nth-child(4) {
    display: none;
  }
  .section-access_detail-inquiry2 {
    padding: 10px 60px 15px;
    font-size: 2.6rem;
  }
  .section-access_detail-hotpepper {
    margin-top: 10px;
  }
  .section-access_detail-address {
    padding-right: 30px;
  }
  .section-access_detail-addresswrap {
    padding: 0 0 50px;
  }
  .section-access_detail-addresswrap p {
    padding-left: 0;
    display: block;
  }
  .openbtn6 {
    margin-right: 3%;
  }
}
/*きらっと光る*/
.section-access_detail-inquiry2 {
  /*キラッと光る基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  display: inline-block;
  background: #ead83f;
  color: #333;
  text-decoration: none;
  outline: none;
  overflow: hidden;
}
/*キラッと光る*/
.section-access_detail-inquiry2::before {
  content: '';
  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  transform: skewX(-25deg);
}
/*hoverした際の移動のアニメーション*/
.section-access_detail-inquiry2:hover::before {
  animation: shine 0.7s;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
/*スマホTEL予約キラン*/
@media (max-width:768px) {
  .section-access_detail-inquiry1 {
    /*キラッと光る基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
    display: inline-block;
    background: #ead83f;
    color: #333;
    text-decoration: none;
    outline: none;
    overflow: hidden;
  }
  /*キラッと光る*/
  .section-access_detail-inquiry1::before {
    content: '';
    /*絶対配置でキラッと光るの位置を決める*/
    position: absolute;
    top: 0;
    left: -75%;
    /*キラッと光る形状*/
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    transform: skewX(-25deg);
  }
  /*hoverした際の移動のアニメーション*/
  .section-access_detail-inquiry1:hover::before {
    animation: shine 0.7s;
  }
}
.footer {
  background-image: url("../images/top/footer_img.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.footer-img_logo {
  padding: 10px 35px 20px;
  width: 145px;
}
.footer-img_icon {
  padding: 10px 10px 10px 15px;
  margin: 30px;
}
.footer p {
  color: #fff;
  font-size: 1.2rem;
}
.footer a {
  text-decoration: none;
}
@media (min-width:768px) {
  .footer {
    background-image: url("../images/common/footer-pc.jpg");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .footer-img_logo {
    padding-top: 30px;
    width: 150px;
  }
  .footer p {
    margin-top: 30px;
  }
}
/*TOPへ戻るボタン*/
.topbutton {
  width: 130px;
  padding: 15px;
}
.topbutton-link {
  display: inline-block;
  margin-left: 55%;
  margin-bottom: 60px;
}
.topbutton-link_wrap {
  display: block;
  text-align: right;
  margin-right: 4%;
  margin-top: 30px;
}
@media (min-width:768px) {
  .topbutton {
    padding: 0 0 15px;
    cursor: pointer;
  }
  .topbutton-link_wrap {
    margin-right: 10%;
  }
}
/*予約ボタン*/
.reserve {
  width: 80px;
  height: 80px;
  border-radius: 50px;
  background: #ead83f;
  opacity: 0.8;
  position: fixed;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: auto;
  bottom: 2%;
  right: 6%;
}
.reserve p {
  line-height: 2.0rem;
  opacity: 1;
  text-align: center;
}
.reserve span {
  font-size: 1.6rem;
}
.reserve a {
  text-decoration: none;
  color: #000;
}
@media (max-width:768px) {
  .reserve {
    top: auto;
    right: 2%;
    bottom: 2%;
  }
}
.reserve::before, .reserve::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border: 1px solid #ead83f;
  border-radius: 50%;
  box-sizing: border-box;
  pointer-events: none;
  animation: pulsate 3s linear infinite;
}
.reserve::after {
  animation-delay: 3s;
}
/* ボタンの波紋が広がっていくアニメーション */
@keyframes pulsate {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #333;
  text-align: center;
  color: #fff;
}
/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 90px;
}
/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width:375px) {
  .section-top-img {
    width: 100%;
  }
}
/*top液体シェイプ,aboutページ〜*/
.section-top-img, .section-top-img-pc {
  animation: fluidrotate1 35s ease 0s infinite /*アニメーションの設定*/ ;
}
@keyframes fluidrotate1 {
  0%, 100% {
    border-radius: 85% 49% 33% 12% / 77% 0% 0% 49%;
  }
  18% {
    border-radius: 79% 55% 37% 29% / 63% 29% 0% 77%;
  }
  36% {
    border-radius: 31% 36% 18% 62% / 100% 0% 10% 77%;
  }
  54% {
    border-radius: 68% 86% 18% 8% / 80% 39% 0% 83%;
  }
  65% {
    border-radius: 69% 45% 18% 43% / 100% 11% 0% 50%;
  }
  72% {
    border-radius: 39% 49% 33% 53% / 100% 0% 38% 100%;
  }
  90% {
    border-radius: 85% 49% 33% 17% / 100% 0% 0% 100%;
  }
}
/*左上logo・予約ボタンフェードイン,aboutページ〜*/
.header-logo, .reserve, .header-logo_copy {
  animation-name: fadeIn;
  animation-duration: 7s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  animation-delay: 2s;
  animation-iteration-count: 1;
  animation-fill-mode: both;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.8;
  }
}