@charset "UTF-8";

html {
  font-size: 62.5%;
}

body {
  line-height: 2.3;
  font-weight: 400;
  background-color: #F6ECDE;
  font-family: "Noto Serif JP", serif;
  color: #231612;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.bd-fixed {
  position: fixed;
  left: 0;
  z-index: 1;
}

img,
object {
  width: 100%;
}

.clearfix::after {
  content: " ";
  display: block;
  clear: both;
}

a {
  transform-origin: center;
  transition: 0.1s;
  text-decoration: none;
  color: inherit;
}

.font-02 {
  font-family: "Noto Sans JP", sans-serif;
}

.inner-01 {
  width: 100%;
  padding: 0 3.5rem;
  margin: auto;
  box-sizing: border-box;
}

.fade-up-image-wrap {
  position: relative;
}

.fade-up-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: 2s;
  width: 100%;
  height: auto;
}

.scroll-on .fade-up-image {
  top: -5%;
}

.fade-up.scroll-action-once {
  opacity: 0;
  transition: 0.8s ease-out;
  transform: translateY(2rem);
}

.fade-up.scroll-action-once.scroll-on {
  opacity: 1;
  transform: translateY(0rem);
}

header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 7rem;
  background-color: #fff;
  box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.2);
}

#menu-btn {
  transition: 0.7s;
  position: absolute;
  z-index: 1000;
  width: 2rem;
  height: 1.2rem;
  right: 2.5rem;
  top: 3rem;
  cursor: pointer;
}

#menu-btn .menu-bar {
  width: 2rem;
  height: 0.15rem;
  background-color: #000;
  position: absolute;
  top: 0.5rem;
  left: 0rem;
  transition: 0.3s;
}

#menu-btn.opend .menu-bar {
  opacity: 0;
}

#menu-btn .menu-bar:first-child {
  top: 0rem;
  left: 0rem;
}

#menu-btn .menu-bar:last-child {
  top: 1rem;
  left: 0rem;
}

#menu-btn.opend .menu-bar:first-child {
  opacity: 1;
  transform: rotate(28deg);
  top: 6px;
}

#menu-btn.opend .menu-bar:last-child {
  opacity: 1;
  transform: rotate(-28deg);
  top: 6px;
}

.menu-window {
  transition: 0.5s;
  position: absolute;
  width: 100%;
  z-index: 999;
  background-color: #f6ecde;
  top: 7rem;
  height: calc(100vh - 7rem);
  width: 100vw;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  right: -100%;
  opacity: 0;
}

.menu-window.opend {
  opacity: 1;
  right: 0;
}

.menu-inner {
  width: 100vw;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;

}

.g-nav-bg {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  width: 16.5rem;
  height: 14.5rem;
  z-index: 10;
  top: 15.5%;
  right: -4.4%;
}

.g-nav {
  padding-left: 20%;
  padding-top: 4rem;
  padding-bottom: 3rem;
  position: relative;
}

.g-nav li {
  position: relative;
  z-index: 100;
}

.g-nav li a {
  font-size: 2.2rem;
  display: inline-block;
}

.g-nav li a .nav-lst {
  font-weight: 600;
  position: relative;
  background-image: linear-gradient(rgba(35, 22, 18, 1.0), rgba(35, 22, 18, 1.0));
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 1.0s cubic-bezier(.19, 1, .22, 1);
  padding-bottom: 2px;
}

.g-nav li a:hover .nav-lst {
  background-position: 0 100%;
  background-size: 100% 1px;
}

.g-nav li.active a .nav-lst {
  background-position: 0 100%;
  background-size: 100% 1px;
}

.g-nav li a .nav-lst-sb {
  font-size: 1.2rem;
  font-weight: 500;
  display: inline-block;
  margin-left: 1rem;
}

.hd-logo {
  position: absolute;
  width: 20.55rem;
  top: 1.15rem;
  left: 2rem;
}

.sec-hd-wrap {
  padding-top: 5rem;
  text-align: center;
  font-size: 0;
}

.sec-hd {
  display: inline-block;
  font-size: 3rem;
  font-weight: 600;
  border-bottom: solid 1.5px #231612;
  padding: 0 6px;
  line-height: 1.3;
}

.sec-hd-sb {
  font-size: 1.2rem;
  font-weight: 500;
}

.bottom-reserve {
  width: 240px;
  margin: auto;
  position: fixed;
  bottom: 1.9rem;
  left: 0;
  right: 0;
  z-index: 100;
  transition: 0.5s;
}

.scroll-on .bottom-reserve {
  opacity: 0;
}

.f-logo {
  display: block;
  margin: auto;
  padding-top: 2.4rem;
  position: relative;
}

.f-logo .f-logo-w {
  position: absolute;
  font-size: 0;
  animation: wave 2s ease-in-out infinite;
}

@keyframes wave {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.f-logo .f-logo-w-01 {
  bottom: 66.5%;
  left: 21.5%;
  width: 1.3rem;
  animation-delay: 0.0s;
}

.f-logo .f-logo-w-02 {
  bottom: 73.3%;
  left: 23.5%;
  width: 1.5rem;
  animation-delay: 0.1s;
}

.f-logo .f-logo-w-03 {
  bottom: 80%;
  left: 31.5%;
  width: 1.2rem;
  animation-delay: 0.2s;
}

.f-logo .f-logo-w-04 {
  bottom: 82.5%;
  left: 40%;
  width: 1.2rem;
  animation-delay: 0.3s;
}

.f-logo .f-logo-w-05 {
  bottom: 81.5%;
  left: 49.5%;
  width: 1.1rem;
  animation-delay: 0.4s;
}

.f-logo .f-logo-w-06 {
  bottom: 75.5%;
  left: 56.5%;
  width: 1.2rem;
  animation-delay: 0.5s;
}

.footerbox {
  position: relative;
  background-color: #e7b3aa;
  border-radius: 13vw 13vw 0 0;
  margin-top: 2rem;
  padding-bottom: 2rem;
}

.footerbox::before {
  content: '';
  display: block;
  position: absolute;
  background-image: url('../images/common/ft-bg-top.svg');
  background-repeat: no-repeat;
  background-size: 100% 130%;
  transform: translate(0, 29%);
  width: 73%;
  left: 0;
  right: 0;
  height: 0;
  padding-top: 7%;
  margin: auto;
  bottom: 99.7%;
}

.menu-window .footerbox {
  background-color:
}

.f-logo {
  display: block;
  margin: auto;
  width: 20rem;
}

.ft-txt-wrap {
  box-sizing: border-box;
  padding: 0 8%;
  text-align: center;
}

.f-txt-01 {
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 2rem;
  margin-top: 2rem;
}

.f-txt-01 a {
  font-size: 1.0rem;
}

.f-txt-01 .ft01spn03 {
  font-size: 2rem;
  line-height: 2.5rem;
}

.f-txt-01 .ft01spn04 {
  font-size: 1rem;
}

.f-txt-01 .spnblck {
  display: block;
}

.fsnslst {
  font-size: 0;
  margin-top: 2.5rem;
}

.fsnslst li {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  margin: 0 1.2rem;
}

.fsnslst li a {
  display: block;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}

.frsrvbtn {
  margin: auto;
  width: 20rem;
  margin-top: 3rem;
}

.cpyrght {
  text-align: center;
  margin-top: 1rem;
}

.pc-nav-sns {
  padding-left: 20%;
}

.pc-nav-sns li {
  display: inline-block;
  margin-right: 20px;
}

.pc-nav-sns li a {
  display: inline-block;
  width: 30px;
  height: 30px;
}

.pc-nav {
  display: none;
}

.pc-bg-slider-wrap {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: calc(100vw - 400px);
  z-index: -1;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* PC背景スライダー用 */
#pc-bg-slider .slick-list,
#pc-bg-slider .slick-track {
  height: 100vh;
}

/* slick-slide自体はSlickの制御下に置く */
#pc-bg-slider .slick-slide {
  height: 100vh;
  /* 親要素の高さを設定 */
}

/* 新しい子要素にズームアニメーションを適用 */
#pc-bg-slider .slick-slide.slick-current .pc-bg-slide-image {
  width: 100%;
  height: 100%;
  /* 親 (slick-slide) に合わせる */
  background-size: cover;
  background-position: center;
  animation-name: sliderZoom;
  animation-duration: 10.0s;
  animation-delay: 0s;
}

@keyframes sliderZoom {
  0% {
    transform: scale(1.2);
    opacity: 1;
  }

  70% {
    transform: scale(1.0);
    opacity: 1;
  }

  90% {
    transform: scale(1.0);
    opacity: 1;
  }

  100% {
    transform: scale(1.0);
    opacity: 0.1;
  }
}

/* アクティブなスライドの子要素は通常サイズに */
/* slick-active クラスは .slick-slide に付与される */
#pc-bg-slider .slick-slide.slick-active .pc-bg-slide-image {
  transform: scale(1);
}

/*** 下層ページの共通パーツ ***/
.page-hd-wrap {
  margin-top: 7rem;
  padding-top: 7.5rem;
  text-align: center;
  background-size: 100%;
  background-position: bottom;
  background-repeat: no-repeat;
  padding-bottom: 11rem;
}

.page-hd-inner {
  display: inline-block;
  position: relative;
}

.page-hd-inner::after {
  content: '';
  display: block;
  height: 1px;
  width: 100%;
  border-top: 1.5px solid #fff;
  position: absolute;
  left: 0;
  top: 3.5rem;
}

.page-hd {
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.page-hd-sb {
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  padding-top: 0.5rem;
}

.ftbh-wrap {
  margin: 0.75rem auto;
}

.ftbh-text-01 {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 6.8rem);
  margin-left: -1rem;
  line-height: 1.8rem;
}

.sec-hd.pl {
  padding-bottom: 0.3rem;

}

.link-btn-wrap a {
  display: block;
  border: solid #231612 1.5px;
  position: relative;
  height: 5rem;
  line-height: 5rem;
  text-align: center;
  font-size: 1.35rem;
}

.link-btn-wrap a::before {
  content: '';
  display: block;
  position: absolute;
  width: 0.7rem;
  height: 0;
  border-bottom: 1.5px solid #231612;
  right: 2.3rem;
  top: -0.5rem;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
}

.link-btn-wrap a::after {
  content: '';
  display: block;
  position: absolute;
  width: 0.7rem;
  height: 0;
  border-bottom: 1.5px solid #231612;
  right: 2.3rem;
  top: 0.5rem;
  bottom: 0;
  margin: auto;
  transform: rotate(-45deg);
}

/*----------------------------------------------------------*/
@media screen and (min-width:375px) {
  html {
    font-size: 2.7vw;
  }
}

/*----------------------------------------------------------*/
@media screen and (min-width:960px) {
  html {
    font-size: 15px;
  }

  .inner-01 {
    padding: 0 55px;
  }

  .sp {
    display: none
  }

  .pc-nav {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    opacity: 1;
    left: 0;
    top: 0;
    width: 400px;
    padding-top: 0;
    padding-bottom: 2vh;
    box-sizing: border-box;
    /* 縦スクロールを有効化、横スクロールを無効化 */
    overflow-x: hidden;
    overflow-y: auto;
    /* スムーズスクロール（iOS対応） */
    -webkit-overflow-scrolling: touch;
    /* スクロールバー非表示 */
    -ms-overflow-style: none;
    /* IE・Edge */
    scrollbar-width: none;
  }

  /* Chrome・Safari・新しいEdge */
  .pc-nav::-webkit-scrollbar {
    display: none;
  }

  .pc-nav .g-nav {
    padding-left: 25%;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .pc-nav .f-logo {
    width: 200px;
    padding-top: 26px;
  }

  .pc-nav .f-logo .f-logo-w-01 {
    width: 13px;
  }

  .pc-nav .f-logo .f-logo-w-02 {
    width: 15px;
  }

  .pc-nav .f-logo .f-logo-w-03 {
    width: 12px;
  }

  .pc-nav .f-logo .f-logo-w-04 {
    width: 12px;
  }

  .pc-nav .f-logo .f-logo-w-05 {
    width: 11px;
  }

  .pc-nav .f-logo .f-logo-w-06 {
    width: 12px;
  }

  .pc-nav .frsrvbtn {
    margin-top: 30px;
    width: 200px;
  }

  .pc-nav-sns {
    padding-left: 25%;
  }

  .pc-bg-slider-wrap {
    display: block;
  }

  .pc-nav .f-txt-01 {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 20px;
  }

  .pc-nav .hbaft16 {
    font-size: 16px;
    margin-right: 5px;
  }

  .pc-nav .hbaft14 {
    font-size: 14px;
  }


  .pc-nav .f-txt-01 .ft01spn03 {
    font-size: 26px;
  }

  .pc-nav .f-txt-01 .ft01spn01 {
    font-size: 10px;
  }

  .pc-nav .bhttl {
    font-size: 12px;
    display: block;
    margin: 8px auto;
  }

  .pc-nav .hbaft2dm {
    font-size: 10px;
  }

  .pc-nav .ft01spn03 {
    font-size: 26px;
  }

  .pc-nav .ft01spn04 {
    font-size: 10px;
  }

  .pc-nav .spnblkhbh {
    display: block;
    font-size: 12px;
    margin: 12px auto 0 auto;
  }

  .menu-inner {
    width: 100%;
  }

  .pc-nav .g-nav li a {
    font-size: 22px;
    line-height: 1.8;
  }

  .pc-nav .g-nav li a .nav-lst-sb {
    font-size: 12px;
    margin-left: 10px;
  }

  header {
    height: 0;
    top: -1px;
    display: none;
  }

  .spcontent-wrap {
    width: 560px;
    padding-left: 400px;
    background-color: rgba(246, 236, 222, 0.6);

  }

  .footerbox {
    border-radius: 73px 73px 0 0;
  }

  .menu-inner .footerbox {
    border-radius: 52px 52px 0 0;
  }

  .pc-bg-slider-wrap::before {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    height: 50%;
    bottom: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(0deg, rgba(246, 236, 222, 1), rgb(246, 236, 222, 0));
  }

  .pc-bg-slider-wrap::after {
    content: "";
    display: block;
    width: 70%;
    position: absolute;
    height: 100%;
    bottom: 0;
    left: 0;
    z-index: 100;
    background: linear-gradient(90deg, rgba(246, 236, 222, 1), rgb(246, 236, 222, 0));
  }

  a:hover {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    filter: alpha(opacity=50);
    /* lte IE8 */
    opacity: 0.5;
  }

  .page-hd-wrap {
    margin-top: 0;
    padding-bottom: 190px;
    padding-top: 94px;
    font-size: 0;
  }
}

@media screen and (max-height: 920px) {
  .pc-nav {
    padding-top: 0;
  }
}

@media only screen and (-webkit-max-device-pixel-ratio: 1),
/* WebKit系ブラウザ (Chrome, Safariなど) */
only screen and (max-resolution: 96dpi),
/* 標準 (dpi単位) */
only screen and (max-resolution: 1dppx) {

  /* 標準 (dppx単位) */
  /* 標準解像度用のスタイル */
  .link-btn-wrap a::before {
    top: -0.55rem;
  }

  .link-btn-wrap a::after {}
}