@charset "UTF-8";
/****	---- setting ----
===================================****/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP&display=swap");
/****	---- general ----
===================================****/
html.lock, body.lock {
  overflow: hidden;
}

html {
  font-size: 46.875%;
}
@media print, screen and (max-width: 1199px) {
  html {
    font-size: 0.625vw;
  }
}
@media print, screen and (max-width: 767px) {
  html {
    font-size: 1.3333333333vw;
  }
}

body {
  color: #000;
  font-size: 1.6rem;
  font-family: "Noto Serif JP", serif;
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Kiwi Maru", serif;
  font-family: "PT Sans", sans-serif;
  font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-family: YakuHanJP_Noto, "Noto Sans JP", sans-serif;
  line-height: 1.8;
  background: #fff;
  word-wrap: break-word;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

figure {
  margin: 0;
}

img {
  width: 100%;
  display: block;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.2s;
}

a:hover {
  opacity: 0.7;
}
@media print, screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

sup {
  font-size: 0.75em;
  vertical-align: top;
}

/****	---- js ----
===================================****/
.fadeIn_title,
.fadeIn_lead,
.fadeIn,
.fadeIn_200,
.fadeIn_400,
.fadeIn_600,
.fadeIn_800 {
  transition: 0.8s;
  opacity: 0;
  filter: blur(1.2rem);
  transform: translate(0, 6rem) scale(0.9);
  -webkit-transform: translate(0, 6rem) scale(0.9);
}

.js-mv-400,
.fadeIn_left {
  transition: 0.4s;
  opacity: 0;
  filter: blur(1.2rem);
  transform: translate(-12rem, 0) scale(0.75);
  -webkit-transform: translate(-12rem, 0) scale(0.75);
}

.js-mv-800,
.fadeIn_right {
  transition: 0.4s;
  opacity: 0;
  filter: blur(1.2rem);
  transform: translate(12rem, 0) scale(0.75);
  -webkit-transform: translate(12rem, 0) scale(0.75);
}

.fadeInMove {
  opacity: 1;
  filter: blur(0);
  transform: translate(0, 0) scale(1);
  -webkit-transform: translate(0, 0) scale(1);
}

.js-bounce-1200 {
  opacity: 0;
}

.bounceMove {
  animation: bounce 0.8s;
}

.js-accordion {
  transition: 0.2s;
}

.js-accordion:hover {
  opacity: 0.7;
  cursor: pointer;
}
@media print, screen and (max-width: 767px) {
  .js-accordion:hover {
    opacity: 1;
  }
}

.js-accordionContents {
  display: none;
}

@keyframes bounce {
  0% {
    filter: blur(1.2rem);
    opacity: 0;
    transform: scale(0.25);
  }
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
  100% {
    filter: blur(0);
    transform: scale(1);
  }
}
/****	---- utility ----
===================================****/
.u-pc {
  display: block;
}
@media print, screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media print, screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}

.u-mb--em {
  margin: 0 0 1em 0;
}

/****	---- layout ----
===================================****/
.l-inner {
  width: 67rem;
  margin: 0 auto;
}

.l-content {
  width: 75rem;
  background: #fff url("../img/bg.jpg") center top -34rem/100% auto no-repeat;
  box-shadow: 0 0 1.6rem rgba(0, 0, 0, 0.16);
  margin: 0 auto;
  position: relative;
}
@media print, screen and (max-width: 767px) {
  .l-content {
    box-shadow: none;
    margin: 0 auto;
  }
}
.l-content__bubble-wrap {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.l-content__bubble {
  width: 100%;
  height: 50%;
  /* 上下をふわっと透明にする魔法のグラデーション */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
}

.l-main {
  display: block;
  position: relative;
}
@media print, screen and (max-width: 767px) {
  .l-main {
    overflow: hidden;
  }
}

/****	---- component ----
===================================****/
.c-glass {
  width: 32.85rem;
  position: absolute;
}

/****	---- loading ----
===================================****/
.l-loading {
  width: 100vw;
  height: 100vh;
  background: #fff697;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999999;
  transition: opacity 1s ease, visibility 1s ease;
}
.l-loading.is-loaded {
  opacity: 0;
  visibility: hidden;
}
.l-loading__txt {
  width: 50.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6.2rem 0;
}
.l-loading__txt img:first-of-type {
  width: 31.02007rem;
}

/****	---- pc ----
===================================****/
.l-pc {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}
@media print, screen and (max-width: 767px) {
  .l-pc {
    display: none;
  }
}
.l-pc::before {
  content: "";
  width: calc(100vw - 12rem);
  height: calc(100vh - 18rem);
  background: url("../img/bg_pc.jpg") center center/cover no-repeat;
  border-radius: 12rem;
  position: absolute;
  top: 13rem;
  right: 0;
  left: 0;
  margin: auto;
}
.l-pc__bubble {
  width: calc(100vw - 12rem);
  height: calc(100vh - 18rem);
  border-radius: 12rem;
  display: block;
  position: absolute;
  top: 13rem;
  right: 0;
  left: 0;
  margin: auto;
}
.l-pc__logo {
  width: 20.4rem;
  position: absolute;
  top: 3.6rem;
  left: 6rem;
}
.l-pc__content {
  width: calc((100vw - 75rem) / 2);
  height: 100%;
  box-sizing: border-box;
  padding: 13rem 0 5rem 6rem;
  position: relative;
}
.l-pc__content.--right {
  padding: 13rem 6rem 5rem 0;
  position: absolute;
  top: 0;
  right: 0;
}
.l-pc__scroll {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
}
.l-pc__ttl {
  width: min(17.0833333333vw, 328px);
}
.l-pc__navi {
  padding: min(1.875vw, 36px) 0 0 0;
}
.l-pc__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: min(1.875vw, 36px) 0;
}
.l-pc__list-item:nth-child(1) {
  width: min(2.7604166667vw, 53px);
}
.l-pc__list-item:nth-child(2) {
  width: min(8.41496875vw, 161.5674px);
}
.l-pc__list-item:nth-child(3) {
  width: min(8.1654375vw, 156.7764px);
}
.l-pc__list-item:nth-child(4) {
  width: min(8.775125vw, 168.4824px);
}
.l-pc__list-item:nth-child(5) {
  width: min(9.5995572917vw, 184.3115px);
}
.l-pc__list-item:nth-child(6) {
  width: min(10.1462291667vw, 194.8076px);
}
.l-pc__img {
  width: min(25.2083333333vw, 484px);
  height: min(15.78125vw, 303px);
  margin: max(-0.625vw, -12px) 0 0 0;
  position: relative;
}
.l-pc__img > figure {
  width: min(15.78125vw, 303px);
  position: absolute;
  top: 0;
}
.l-pc__img > figure.--01 {
  left: 0;
}
.l-pc__img > figure.--02 {
  right: 0;
}

/****	---- header ----
===================================****/
.l-header {
  width: 100%;
  height: 10rem;
  box-sizing: border-box;
  padding: 2rem 3rem 0;
  position: relative;
  top: 0;
  left: 0;
  z-index: 9999;
}
.l-header__logo {
  width: 20.4rem;
}
.l-header__navi {
  display: none;
  width: 75rem;
  height: 100vh;
  background: #fff;
  box-sizing: border-box;
  padding: 9.8rem 3rem 3rem;
  position: fixed;
  top: 0;
  left: calc(50vw - 37.5rem);
}
.l-header__navi::before {
  content: "";
  width: 69rem;
  height: calc(100vh - 12.8rem);
  background: url("../img/bg_sp.jpg") center center/cover no-repeat;
  border-radius: 5rem;
  position: absolute;
  top: 9.8rem;
  right: 0;
  left: 0;
  margin: auto;
}
.l-header__navi-logo {
  width: 20.4rem;
  position: absolute;
  top: 2rem;
  left: 3rem;
}
.l-header__bubble {
  width: 69rem;
  height: calc(100vh - 12.8rem);
  border-radius: 5rem;
  display: block;
  position: absolute;
  top: 9.8rem;
  right: 0;
  left: 0;
  margin: auto;
}
.l-header__scroll {
  height: 100%;
  box-sizing: border-box;
  padding: 4rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow-y: auto;
}
.l-header__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6.4rem 0;
  margin: auto;
}
.l-header__list-item:nth-child(1) {
  width: 9.7rem;
}
.l-header__list-item:nth-child(2) {
  width: 28.45713rem;
}
.l-header__list-item:nth-child(3) {
  width: 27.55967rem;
}
.l-header__list-item:nth-child(4) {
  width: 29.72461rem;
}
.l-header__list-item:nth-child(5) {
  width: 32.43916rem;
}
.l-header__list-item:nth-child(6) {
  width: 34.38447rem;
}
.l-header__btn {
  border: none;
  width: 19.8rem;
  height: 6.6rem;
  background: #fff;
  border: 0.4rem solid #0075c2;
  border-right: none;
  border-radius: 1.6rem 0 0 1.6rem;
  display: block;
  position: fixed;
  top: 5.8rem;
  top: 2rem;
  right: calc(50vw - 37.5rem);
  z-index: 1;
}
.l-header__btn:hover {
  cursor: pointer;
}
.l-header__btn-txt {
  width: 8.93672rem;
  position: absolute;
  top: 50%;
  left: 7.8rem;
  transform: translateY(-50%);
}
.l-header__btn > span {
  width: 4rem;
  height: 0.4rem;
  background: #0075c2;
  border-radius: 9999px;
  display: block;
  position: absolute;
  left: 1.6rem;
  margin: auto;
  transition: 0.2s ease;
}
.l-header__btn > span:nth-of-type(1) {
  top: 1.4rem;
}
.l-header__btn > span:nth-of-type(2) {
  top: 0;
  bottom: 0;
}
.l-header__btn > span:nth-of-type(3) {
  bottom: 1.4rem;
}
.l-header__btn.on > span:nth-of-type(1) {
  top: 2.8rem;
  transform: rotate(315deg);
}
.l-header__btn.on > span:nth-of-type(2) {
  display: none;
}
.l-header__btn.on > span:nth-of-type(3) {
  bottom: 2.7rem;
  transform: rotate(-315deg);
}

/****	---- main ----
===================================****/
.mv {
  height: 62.8rem;
  position: relative;
  z-index: 1;
}
.mv::before {
  content: "";
  width: 69rem;
  height: 62.8rem;
  background: #fff697;
  border-radius: 5rem;
  position: absolute;
  inset: 0;
  margin: auto;
}
.mv__ttl {
  width: 22rem;
  position: absolute;
  top: 16.8rem;
  left: 25.4rem;
  z-index: 10;
}
.mv__img {
  width: 50.2rem;
  height: 50.2rem;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.mv__img.--01 {
  left: -9.6rem;
}
.mv__img.--02 {
  right: -9.6rem;
}

.about {
  padding: 11.2rem 0 15rem;
}
.about__txt {
  width: 56.2rem;
  margin: 0 auto 13.2rem;
}
.about__img {
  width: 62.4rem;
  margin: 0 auto;
}
.about__img > figcaption {
  width: 24.6777rem;
  margin: 2.2rem auto 0;
}

.goodness {
  height: 175rem;
  padding: 12rem 0 0 0;
  margin: -12rem 0 0 0;
  position: relative;
}
.goodness .c-glass {
  top: 14.8rem;
  left: -8rem;
}
.goodness .c-glass.--02 {
  top: 97.4rem;
  left: auto;
  right: -6.6rem;
}
.goodness__ttl {
  width: 43.68981rem;
  margin: 0 auto 12rem;
}
.goodness__txt {
  width: 46.84004rem;
  margin: 12.4rem 0 10.8rem 9rem;
}
.goodness .swiper {
  padding: 0 0 15rem 0;
}
.goodness .swiper-slide {
  box-sizing: border-box;
  padding: 0 2.5rem;
}
.goodness .swiper-slide:not(.swiper-slide-active) {
  cursor: pointer;
}
.goodness .swiper-slide > img {
  border-radius: 4rem;
}
.goodness .swiper-slide figcaption {
  width: 46.31956rem;
  position: absolute;
  bottom: -14.8rem;
  left: calc(50% - 23.15978rem);
  transform: scale(0.25);
  transition: 0.5s ease;
  opacity: 0;
}
.goodness .swiper-slide-active figcaption {
  transform: scale(1);
  opacity: 1;
}

.movie {
  height: 151.8rem;
  height: 147.8rem;
  padding: 12rem 0 0 0;
  margin: -2rem 0 0 0;
  position: relative;
}
.movie .c-glass {
  top: 5.6rem;
  left: -7.2rem;
}
.movie__ttl {
  width: 34.62783rem;
  margin: 0 auto 10rem;
}
.movie__img {
  width: 62.4rem;
  margin: 0 auto;
}
.movie__img.--01 {
  margin: 0 auto 10rem;
}
.movie__img figcaption {
  margin: 5rem 0 0 2.8rem;
}
.movie__img.--01 figcaption {
  width: 54.05951rem;
}
.movie__img.--02 figcaption {
  width: 55.84788rem;
}

.guide {
  height: 155rem;
  height: 159rem;
  padding: 12rem 0 0 0;
  margin: -12rem 0 0 0;
  position: relative;
}
.guide .c-glass {
  top: 5.4rem;
  right: -7rem;
}
.guide__ttl {
  width: 37.42725rem;
  margin: 0 auto 9.6rem;
}
.guide__list-item:nth-child(1) {
  width: 64.9575rem;
  margin: 0 0 7.3rem 4.8rem;
}
.guide__list-item:nth-child(2) {
  width: 66.38808rem;
  margin: 0 0 4.6rem 3.8rem;
}
.guide__list-item:nth-child(3) {
  width: 64.87752rem;
  margin: 0 0 0 4.8rem;
}

.campaign {
  padding: 12rem 0 0 0;
  margin: -12rem 0 0 0;
  position: relative;
}
.campaign .c-glass {
  top: 13.6rem;
  left: -8rem;
}
.campaign__ttl {
  width: 42.78057rem;
  margin: 0 auto 12rem;
}
.campaign__btn {
  width: 62.4rem;
  margin: 0 auto;
  display: block;
}

.copy {
  padding: 21.8rem 0 25rem;
}
.copy__ttl {
  width: 45.71325rem;
  margin: 0 auto;
}

.lineup {
  height: 479.5rem;
  padding: 12rem 0 0 0;
  margin: -12rem 0 0 0;
  position: relative;
}
.lineup .c-glass {
  width: 36.7rem;
  top: -1.8rem;
  right: -7.4rem;
}
.lineup__ttl {
  width: 43.30957rem;
  margin: 0 auto 14.4rem;
}
.lineup__sub {
  width: 35.20117rem;
  margin: 0 auto 10rem;
}
.lineup__sub.--txt-03 {
  width: 28.66494rem;
}
.lineup__sub.--txt-05 {
  width: 38.53652rem;
}
.lineup__list {
  width: 55.6rem;
  margin: 0 auto;
}
.lineup__list-item {
  height: 39rem;
  position: relative;
}
.lineup__list-img {
  width: 8.2rem;
  position: absolute;
  top: 0;
  right: 0;
}
.lineup__list-item.--reverse .lineup__list-img {
  right: auto;
  left: 0;
}
.lineup__list-img.--waliqueur {
  width: 27.59469rem;
  left: -6.6rem !important;
}
.lineup__list-img figcaption {
  width: 43.42583rem;
  position: absolute;
  top: 0;
  left: -47.4rem;
}
.lineup__list-item.--reverse .lineup__list-img figcaption {
  right: -47.4rem;
  left: auto;
}
.lineup__list-img.--waliqueur figcaption {
  width: 39.67723rem;
  right: -41rem !important;
}
.lineup__list-img.--mizuoto figcaption {
  width: 46.4645rem;
  top: -4.6rem !important;
  right: -48.4rem !important;
}
.lineup__list-link {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3.2rem 0;
  position: absolute;
  top: 20.4rem;
  right: 18.8rem;
}
.lineup__list-item.--reverse .lineup__list-link {
  right: 0;
}
.lineup__list-link > a:first-of-type {
  width: 27.77149rem;
}
.lineup__list-link > a:last-of-type {
  width: 22.39708rem;
}

/****	---- footer ----
===================================****/
.l-footer {
  padding: 11.4rem 0 3.2rem;
  position: relative;
}
.l-footer__txt {
  font-size: 2rem;
  line-height: 1.6;
  text-align: center;
  margin: 0 0 1.5em 0;
}
.l-footer__logo {
  width: 38.4rem;
  margin: 0 auto;
}
.l-footer__logo > a {
  display: block;
}
.l-footer__copy {
  font-size: 2rem;
  text-align: center;
  margin: 5rem 0 0 0;
}

/****	---- end ----
===================================****//*# sourceMappingURL=style.css.map */