@charset "utf-8";
html {
  font-size: 62.5%;
  /*16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  background-color: #e0d6c8;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 1.5;
  letter-spacing: 0.1em;
  overflow-x: hidden;
}
.body-wrapper {
  background-color: #ffffff;
  width: calc(100% - 100px);
  margin: 0 auto;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  body {
    font-size: 1.6em;
  }
  .body-wrapper {
    width: 100%;
  }
  .body-wrapper {
    border-radius: 0 0 0 0;
  }
}
@media screen and (max-width: 500px) {
  body {
    font-size: 1.4em;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border-radius: 20px;
}

section {
  padding: 150px 6vw 150px;
  text-align: center;
}
@media screen and (max-width: 500px) {
  section {
    padding: 80px 6vw 80px;
  }
}
h2 {
  font-size: 3rem;
  font-weight: 600;
  color: #c49a6d;
}

h2::before {
  content: url("../images/common/subtitle_img.svg");
  display: block;
}

h2 span {
  color: #333333;
  font-size: 1.4rem;
  font-weight: 500;
  display: block;
  margin-bottom: 50px;
}

h3 {
  font-size: 2.2rem;
  font-weight: 600;
}
@media screen and (max-width: 610px) {
  h2 {
    font-size: 2.2rem;
  }
  h3 {
    font-size: 2.2rem;
  }
}

/*--ハンバーガーボタン装飾-pc--*/
.openbtn {
  position: relative;
  cursor: pointer;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  z-index: 9999;
  right: 3%;
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 22px;
  height: 2px;
  border-radius: 2px;
  background: #333333;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 28px;
}

.openbtn span:nth-of-type(2) {
  top: 38px;
}

.openbtn span:nth-of-type(3) {
  top: 48px;
}
.openbtn.active span:nth-of-type(1) {
  top: 33px;
  left: 25px;
  transform: translateY(6px) rotate(-45deg);
  width: 40%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 45px;
  left: 25px;
  transform: translateY(-6px) rotate(45deg);
  width: 40%;
}
/*--ハンバーガーボタン装飾-pcend--*/
/*--ハンバーガーボタン-open-start--*/
#g-nav {
  display: none;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #faf8f4;
  transition: all 0.3s;
  padding-top: 100px;
}
#g-nav.panelactive {
  /* opacity: 1; */
  display: block;
  z-index: 999;
}
#g-nav.panelactive {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
}
#g-nav ul {
  display: none;
}
#g-nav.panelactive ul {
  display: block;
  max-width: 250px;
}
.shop-info_item {
  border-bottom: solid #979797 2px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  /* position: relative; */
}
/* .shop-info_item::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  border-bottom: #333 solid 2px;
  /* background-color: #333333;
  position: absolute;
  top: 0;
  left: 10px;
} */

#g-nav.panelactive .humberger-sns {
  display: flex;
}

#g-nav li {
  list-style: none;
  text-align: center;
}
#g-nav li a {
  color: #979797;
  text-decoration: none;
  padding: 8px;
  display: block;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-size: 2.5rem;
}
.humberger-list {
  width: 40vw;
  margin: 0 auto;
}
.humberger-list li a:hover {
  opacity: 0.6;
}
.blog-link-icon{
  display: inline-block;
  position: relative;
  padding-right: 30px;
}
.blog-link-icon::after{
  content: "";
  display: inline-block;
  background: url(../images/common/icon/link-icon-gray.svg) no-repeat center/80% 80%;
  position: absolute;
  height: 17px;
  width: 17px;
  right: 0px;
  top:5px;
  transform: translateY(50%);
}
.humberger-sns {
  display: flex;
  max-width: 250px;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 40px;
}
.humberger-sns img {
  border-radius: 0;
}
.humberger-reserve-btn {
  max-width: 300px;
  margin: 0 auto 40px;
}
.humberger-logo {
  display: inline-block;
  position: fixed;
  left: 50px;
  top: 20px;
  max-width: 166px;
}
.humberger-logo:hover {
  opacity: 0.6;
}
.humberger-shop {
  position: fixed;
  right: 70px;
  top: 10px;
}
.humberger-shop img {
  width: 90%;
}
.humberger-sns li a:hover {
  opacity: 0.6;
}
.shopbtn img{
  border-radius: 0;
}
@media screen and (max-width: 800px) {
  .humberger-logo {
    left: 30px;
    top: 20px;
  }
  .humberger-shop {
    right: 20px;
    top: 10px;
  }
}
@media screen and (max-width: 500px) {
  .humberger-logo {
    display: inline-block;
    position: fixed;
    left: 30px;
    top: 20px;
    max-width: 130px;
  }
  .humberger-shop {
    right: 20px;
    top: 29px;
  }
  .humberger-shop img {
    width:100%;
    border-radius: 0;

  }
  .blog-link-icon::after{
    top:0px;
  }
}
@media screen and (max-width: 500px) {
  #g-nav li a {
    padding: 8px;
    letter-spacing: 0.1em;
    font-weight: 500;
    font-size: 1.8rem;
  }
  .humberger-sns {
    margin: 15px auto 15px;
    max-width: 230px;
  }
}
/*--ハンバーガーボタン-open-end--*/
/* -ボタンの基本- */
.btn {
  display: block;
  background-color: #c49a6d;
  color: #ffffff;
  border-radius: 130px;
  max-width: 300px;
  text-align: center;
  font-weight: 600;
  padding: 17px 30px 20px 20px;
  margin-right: auto;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn::before {
  content: "";
  display: block;
  width: 15px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: calc(50%);
  right: 18.5px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: calc(50% - 3px);
  right: 19px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn:hover {
  opacity: 1;
  color: #333333;
  background-color: #f6efca;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn:hover::before {
  background-color: #333333;
}
.btn:hover::after {
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
}

@keyframes animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--section-shop-info-pc--*/
.section-shop-info h2::before {
  display: none;
}
.section-shop-info {
  background-color: #ffffff;
  border-radius: 0 0 20px 20px;
  padding-bottom: 100px;
}
.shop-info-img {
  max-width: 640px;
  margin: 0 auto;
}
.section-shop-info h3 {
  margin-bottom: 10px;
}
.orange-btn-inner {
  margin-top: 20px;
}
.orange-btn {
  display: block;
  background-color: #c49a6d;
  color: #ffffff;
  border-radius: 130px;
  max-width: 300px;
  text-align: center;
  font-weight: 600;
  padding: 17px 30px 20px 20px;
  margin-right: auto;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.orange-btn::before {
  content: "";
  display: block;
  width: 15px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: calc(50%);
  right: 18.5px;
}
.orange-btn::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: calc(50% - 3px);
  right: 19px;
}
.orange-btn:hover {
  opacity: 1;
  color: #333333;
  background-color: #f6efca;
}
.orange-btn:hover::before {
  background-color: #333333;
}
.orange-btn:hover::after {
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
}

.section-shop-info-wrapper {
  display: flex;
  justify-content: center;
  text-align: center;
  max-width: 1160px;
  margin: 50px auto 0;
  text-align: left;
  gap:50px;
}

.section-shop-info-inner_text {
  /* padding: 20px; */
  line-height: 2;
  font-size: 1.4rem;
}

.section-shop-info-inner_text p a {
  display: inline-block;
  margin-left: 20px;
  border-bottom: #333333 solid 1px;
}
.section-shop-info-inner_text a:hover {
  opacity: 0.6;
}

.section-shop-info-inner_text span {
  margin-right: 20px;
}

.section-shop-info-inner_reservetext {
  /* padding: 20px; */
  line-height: 2;
}

.section-shop-info-inner_reservetext p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-top: 15px;
}

.section-shop-info-inner_reservetext p span {
  display: block;
  font-weight: 600;
  /* margin-bottom: 20px; */
}
@media screen and (max-width: 800px) {
  .section-shop-info-wrapper {
    flex-direction: column;
    align-items: flex-start;
    margin: 0 auto;
    max-width: 400px;
  }
}

/*--footer-pc--*/
.footer {
  background-color: #e0d6c8;
  padding: 50px 0 50px 0;
  text-align: center;
}

.footer img {
  border-radius: 0;
}

.footer_logo_wrapper {
  margin: 100px auto 0;
  width: 100%;
}

.footer-wrapper_sns {
  display: flex;
  justify-content: space-between;
  max-width: 250px;
  margin: 20px auto 20px;
}
.footer-wrapper_sns a:hover {
  opacity: 0.6;
}

.scroll-infinity__wrap ul li {
  margin-left: 20px;
}

.scroll-infinity__wrap ul li img {
  display: block;
}

/*--footer画像ループ--*/
.scroll-infinity {
  /* width:100vw; */
  overflow: hidden;
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity__item {
  width: calc(100vw / 3);
}

.scroll-infinity__item > img {
  width: 100%;
}

/*--footer画像ループend--*/
/*--footer-sp--*/
@media screen and (max-width: 800px) {
  .scroll-infinity__item {
    width: calc(100vw / 2);
  }
}
@media screen and (max-width: 500px) {
  .footer {
    padding: 50px 0 80px 0;
  }
  .scroll-infinity__item {
    width: calc(100vw / 1.3);
  }
  .footer_logo_wrapper {
    margin-top: 60px;
    width: 60%;
  }
}
/* CSSアニメーション */
/* Fadein */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
/* Fade up */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 遅延時間*/
.delay-time02 {
  animation-delay: 0.4s;
}

.delay-time04 {
  animation-delay: 0.8s;
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeUpTrigger {
  opacity: 0;
}

/* ページトップボタン start*/
#page-top {
  position: fixed;
  right: 60px;
  bottom: 10px;
  z-index: 2;
  width: 80px;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
@media screen and (max-width: 800px) {
  #page-top {
    right: 20px;
    width: 70px;
  }
}
/* ページトップボタン end*/

/* ふわふわアニメーションここから */
/* 縦のふわふわ指定 */
.fuwafuwa01 {
  animation: fuwafuwa01 2s infinite ease-in-out;
}
/* 横のふわふわ指定 */
.fuwafuwa02 {
  animation: fuwafuwa02 2s infinite ease-in-out;
}
/* 縦のふわふわの動き */
@keyframes fuwafuwa01 {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(5px);
  }
}
/* 横のふわふわの動き */
@keyframes fuwafuwa02 {
  0%, 100% {
      transform: translateX(0);
  }
  50% {
      transform: translateX(5px);
  }
}
/* ふわふわアニメーションここまで */