@charset "UTF-8";
/* CSS Document */
.loader-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  text-align:center;
  background-color: #F0F0F0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loader img {
  width: 21vw;
  max-width: 200px
}

.header {
  width: 100%;
  height: 44px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  position: fixed; /*ヘッダーの位置を固定*/
  top: 0; /*ヘッダーの位置を固定（上0）*/
  left: 0; /*ヘッダーの位置を左固定（左０）*/
  background-color: rgba(255, 255, 255, 0);
}
.header p {
  display: none;
}
.header ul {
  display: flex;
  list-style: none;
}
.header li {
  margin-left: 40px;
  font-size: 2rem;
}
.header a {
  text-decoration: none;
  color: #fff;
}
.material-symbols-outlined {
  transform: translateY(10%)
}
.header img {
  width: 24px;
  padding: 3px;
  color: white;
  background-color: #b3c5ad;
  border-radius: 4px;
  margin-right: -25px;
}
.header nav {
  margin-left: auto; /*メニューを右寄せ*/
  max-width: 1040px;
  padding: 15px 120px 0 0;
}
header.change-color {
  background-color: rgba(254, 254, 254, 0.92);
  transition: 0.3s;
  z-index: 99;
}
header.change-color a {
  color: #333;
  font-size: 1.4rem;
  transition: 0.3s;
}
.section-top {
  background-image: url("../images/top/top_image.png");
  background-position: center;
  width: 100%;
  height: 700px;
  margin-bottom: -120px;
}
.section-top img {
  margin: 0 auto 0;
  width: 40%;
  min-width: 175px;
  margin-top: min(200px, 29.8%)
}
@media (max-width:768px) {
  .section-top {
    height: 79vw;
  }
}
@media (max-width:576px) {
  .header {
    position: fixed;
    z-index: 99;
  }
  .header a {
    color: #333;
    font-size: 1.4rem;
  }
  .header nav {
    padding: 0;
  }
  .header li {
    width: fit-content;
    margin: 10px;
  }
  .header img {
    margin: 0;
  }
  /*アクティブになったエリア*/
  #g-nav.panelactive {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    height: 100vh;
  }
  /*丸の拡大*/
  .circle-bg {
    position: fixed;
    z-index: 3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(254, 254, 254, 0.74);
    backdrop-filter: blur(0.05px);
    /*丸のスタート位置と形状*/
    transform: scale(0); /*scaleをはじめは0に*/
    top: -50px;
    left: calc(50% - 50px); /*50%から円の半径を引いた値*/
    transition: all .6s; /*0.6秒かけてアニメーション*/
  }
  .circle-bg.circleactive {
    transform: scale(50); /*クラスが付与されたらscaleを拡大*/
  }
  /*ナビゲーション*/
  #g-nav ul {
    opacity: 0; /*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    width: 325px;
    margin: 0 auto;
    transform: translate(-50%, -50%);
    flex-wrap: wrap;
    justify-content: center;
  }
  /*背景が出現後にナビゲーションを表示*/
  #g-nav.panelactive ul {
    opacity: 1;
  }
  /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
  #g-nav.panelactive ul li {
    animation-name: gnaviAnime;
    animation-duration: 1s;
    animation-delay: .2s; /*0.2 秒遅らせて出現*/
    animation-fill-mode: forwards;
    opacity: 0;
  }
  @keyframes gnaviAnime {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  /*リストのレイアウト設定*/
  #g-nav li {
    text-align: center;
    list-style: none;
  }
  #g-nav li a {
    color: #333;
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    z-index: 9999; /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
}
.wave1 {
  width: 100%;
  margin-bottom: 9.3%;
}
.section-catchcopy {
  width: 100%;
}
.section-catchcopy__main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto 140px;
  text-align: left;
}
.section-catchcopy__main-text {
  padding-right: 205px;
  position: relative;
}
.section-catchcopy h2 {
  font-size: 3.6rem;
  line-height: 1.5;
  font-family: "ab-walk", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 40px;
}
.section-catchcopy img {
  width: min(380px, 55%);
  min-width: 300px;
  border-radius: 25px;
}
.section-catchcopy__main-text__handwriting {
  font-size: 3.6rem;
  color: #b3c5ad;
  position: absolute;
  font-family: "adobe-handwriting-ernie", sans-serif;
  font-weight: 400;
  font-style: normal;
  top: 150px;
  left: 34px;
}
@media (max-width:940px) {
  .section-catchcopy__main-text {
    padding: 0;
    width: 300px
  }
  .section-catchcopy__main {
    margin-bottom: min(60px, 8%);
  }
}
@media (max-width:576px) {
  .section-catchcopy__main {
    margin-top: 150px;
    flex-direction: column-reverse;
  }
  .section-catchcopy img {
    margin: -9px 0 0 auto;
    border-radius: 25px 0 0 25px
  }
  .section-catchcopy__main-text {
    margin: -50px auto 0 0;
    background-color: #efefef;
    border-radius: 0 25px 25px 0;
  }
  .section-catchcopy h2 {
    padding: 20px 0 20px 28px;
    font-size: 2.8rem;
    margin: 0;
  }
  .section-catchcopy__main-text__handwriting {
    top: 135px;
    left: 55px;
    font-size: 2.8rem;
  }
  .section-catchcopy__main-text > p {
    position: absolute;
    text-align: center;
    font-size: 1.4rem;
    top: -315px;
    width: 100vw;
    margin: auto;
  }
}
.wave2 {
  width: 100%;
  margin-bottom: -10px;
}
.section-menu {
  width: 100%;
}
.section-menu > div {
  background-color: #efefef;
  position: relative;
  padding-bottom: 30px;
}
.section-menu h2 {
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  line-height: 1.5;
  font-family: "ab-walk", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: 60px 0 40px 0px;
  text-align: left;
  margin: 0 auto;
  max-width: 69.5%;
}
.section-menu__sale {
  text-align: left;
  margin-left: 220px;
  margin: 0 auto 50px;
  max-width: 69.5%;
}
.section-menu__handwriting {
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  color: #b3c5ad;
  position: absolute;
  font-family: "adobe-handwriting-ernie", sans-serif;
  font-weight: 400;
  font-style: normal;
  top: 100px;
  left: clamp(125px, 21.3%, 21.3%);
}
.section-menu ul {
  margin: 0 24px;
  list-style: none;
}
.section-menu ul li {
  max-width: 327px;
  margin: 0 auto;
  background-color: #FFFFFF;
  margin-bottom: 20px;
  border-radius: 6px;
  text-align: left;
}
.section-menu__item-picture {
  width: 100%;
  height: 186px;
  object-fit: cover;
  object-position: 0 0;
  border-radius: 6px 6px 0px 0px;
}
.ssection-menu__item-title {
  padding: 14px 20px;
}
.section-menu__item-description {
  padding: 0 20px 20px 20px;
}
.section-menu__item-description span {
  font-size: 1.2rem
}
@media (min-width: 1040px) {
  .section-menu ul li {
    display: inline-block;
    width: 320px;
    margin-right: 40px;
  }
  .section-menu ul li:last-child {
    margin-right: 0;
  }
}
@media (max-width:576px) {
  .section-menu > div {
    padding-bottom: 10px;
  }
  .section-menu h2 {
    padding-top: 5px;
  }
  .section-menu__sale {
    margin-bottom: 40px;
  }
  .section-menu__handwriting {
    top: 2.3%;
  }
  .section-menu a {
    margin: 15px auto 15px;
  }
}
.wave3 {
  width: 100%;
  margin-bottom: -10px;
  background-color: #efefef;
}
.section-event {
  width: 100%;
  background-color: #fff;
  position: relative;
  padding-bottom: 30px;
}
.section-event h2 {
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  line-height: 1.5;
  font-family: "ab-walk", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: 60px 0 40px 0px;
  text-align: left;
  margin: 0 auto;
  max-width: 69.5%;
}
.section-event__p {
  text-align: left;
  margin: 0 auto 50px;
  max-width: 69.5%;
}
.section-event__handwriting {
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  color: #b3c5ad;
  position: absolute;
  font-family: "adobe-handwriting-ernie", sans-serif;
  font-weight: 400;
  font-style: normal;
  top: min(26.1%,247px);
  left: clamp(125px, 21.3%, 21.3%);
}
.sliderarea {
  margin: 0 auto;
  padding: 0 25px;
}
.sliderarea.w300 {
  max-width: 300px;
}
.slick-slide {
  margin: 0 5px;
}
.slick-slide img {
  width: 100%;
  max-height: 40vw;
  object-fit: cover;
  border-radius: 25px;
}
.slider div p {
  font-size: clamp(1.5rem, 2vw, 2.4rem);
  line-height: 1.5;
  font-family: "vdl-penletter", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  color: #333;
  margin: 0.72% 0 0.38%;
}
.slick-prev, .slick-next {
  z-index: 1;
}
.slick-prev:before, .slick-next:before {
  color: #000;
}
.slick-slide {
  transition: all ease-in-out .3s;
  opacity: .2;
}
.slick-active {
  opacity: 1;
}
.slick-current {
  opacity: 1;
}
.thumb {
  margin: 20px 0 0;
}
.thumb .slick-slide {
  cursor: pointer;
}
.thumb .slick-slide:hover {
  opacity: .7;
}
/*====================================================================
.full-screen
====================================================================*/
.full-screen .slick-list {
  overflow: visible;
}
.full-screen.slider {
  max-width: 300px;
  margin: 0 auto;
}
.section-event a {
  margin: 80px auto 30px;
}
@media (max-width:576px) {
  .section-event {
    padding-bottom: 10px;
  }
  .section-event h2 {
    padding-top: 5px;
  }
  .section-event__p {
    margin-bottom: 40px;
  }
  .section-event a {
    margin: 30px auto 20px;
  }
  .btn02 {
    font-size: 1.75rem;
    transform: scale(0.83);
  }
}
.wave4 {
  width: 100%;
  margin-bottom: -10px;
  background-color: #fff;
}
.section-access {
  width: 100%;
  background-color: #efefef;
  position: relative;
  padding-bottom: 40px;
}
.section-access h2 {
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  line-height: 1.5;
  font-family: "ab-walk", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: 60px 0 40px 0px;
  text-align: left;
  margin: 0 auto;
  max-width: 69.5%;
}
.section-access__p {
  text-align: left;
  margin: 0 auto;
  max-width: 69.5%;
  margin-bottom: 9px;
}
.section-access__handwriting {
  font-size: clamp(2.8rem, 5vw, 3.6rem);
  color: #b3c5ad;
  position: absolute;
  font-family: "adobe-handwriting-ernie", sans-serif;
  font-weight: 400;
  font-style: normal;
  top: clamp(133px, 246px, 29.3%);
  left: clamp(125px, 21.3%, 21.3%);
}
.section-access address {
  text-align: left;
  font-style: normal;
  line-height: 35px;
  margin: 0 auto 50px;
  max-width: 69.5%;
  text-decoration: none;
}
.section-access address a {
  text-decoration:none;
  color: #333;
}
.section-access span {
  padding-right: 8.5px;
  vertical-align: -2px;
  font-size: 2rem;
}
.section-access__landmark {
  font-size: clamp(1.3rem, 2vw, 2.0rem);
  line-height: 1.5;
  font-family: "vdl-penletter", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  margin: -20px auto 2.5px;
  color: #333;
}
iframe {
  width: clamp(300px, 90%, 1040px);
  aspect-ratio: 16/7.5;
  border-radius: 25px;
  border: 4px solid #fff;
}
@media (max-width:576px) {
  .section-access {
    padding-bottom: 10px;
  }
  .section-access h2 {
    padding-top: 5px;
  }
  .section-access address {
    margin-bottom: 40px;
  }
}
.wave5 {
  width: 100%;
  margin-bottom: -10px;
  background-color: #efefef
}
.footer div {
  width: 100%;
  background-color: #b3c5ad;
}
.footer img {
  width: 200px;
  margin: 30px auto 40px;
}