@charset "UTF-8";
/*----------------------------------------
 Reset
----------------------------------------*/
*,
::before,
::after {
  box-sizing: border-box;
}

* {
  font-size: inherit;
  line-height: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header, main, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

header, footer, article, section, aside, main, nav, menu, figure, figcaption {
  display: block;
}

span, small, strong, em, b, i {
  color: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

ul,
ol {
  list-style: none;
}

img {
  border: 0;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

input, select {
  vertical-align: middle;
}

input, textarea {
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

q::before,
q::after {
  display: none;
}

/*----------------------------------------
 Base
----------------------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 1.3333333333vw;
}
@media (min-width: 750px) {
  html {
    font-size: 0.4444444444vw;
  }
}
@media (min-width: 1440px) {
  html {
    font-size: 40%;
    font-size: 0.4rem;
  }
}

body {
  font-family: sans-serif;
  line-height: 1;
  color: #333;
}

a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  font-family: inherit;
  font-weight: inherit;
}

/*----------------------------------------
 Layout
----------------------------------------*/
.wrapper::before {
  position: fixed;
  z-index: -99;
  top: 0;
  content: "";
  width: 100vw;
  height: 100vh;
  background: #fff6e9;
}
.wrapper::after {
  position: fixed;
  z-index: -98;
  top: 0;
  content: "";
  width: 100vw;
  height: 100vh;
  background: url("../img/pc-wrapper-overlay.png") top/cover;
  mix-blend-mode: color-burn;
}

/*----------------------------------------
 Component
----------------------------------------*/
.campaign-btn {
  display: inline-block;
  width: 62rem;
}

.shop-btn {
  display: inline-block;
  width: 46.4rem;
  filter: drop-shadow(0.1rem 0.7rem 0.3rem rgba(233, 145, 142, 0.4));
}

/*----------------------------------------
	for PC
----------------------------------------*/
.pc-menu,
.pc-sidebar {
  display: none;
}

/* PC menu
------------------------------------------------------ */
@media (min-width: 750px) {
  .pc-menu {
    position: fixed;
    z-index: 99;
    top: 0;
    right: calc(50% + 42.1875rem);
    display: block;
    height: 100vh;
    width: 70.3125rem;
  }
  .pc-menu__inner {
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 12.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .pc-menu__inner::-webkit-scrollbar {
    display: none;
  }
  .pc-menu__logo {
    display: inline-block;
    width: 42.96875rem;
  }
  .pc-menu__list {
    margin-top: 18.75rem;
  }
  .pc-menu__item:not(:first-child) {
    margin-top: 9.375rem;
  }
  .pc-menu__link {
    display: inline-block;
    overflow: hidden;
    width: 42.96875rem;
    height: 10.9375rem;
    text-indent: 100%;
    white-space: nowrap;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .pc-menu__link[href="#campaign"] {
    background-image: url("../img/pc-menu-link_campaign.png");
  }
  .pc-menu__link[href="#campaign"]:hover {
    opacity: 1;
    background-image: url("../img/pc-menu-link_campaign_hover.png");
  }
  .pc-menu__link[href="#ranking"] {
    background-image: url("../img/pc-menu-link_ranking.png");
  }
  .pc-menu__link[href="#ranking"]:hover {
    opacity: 1;
    background-image: url("../img/pc-menu-link_ranking_hover.png");
  }
  .pc-menu__link[href="#about"] {
    background-image: url("../img/pc-menu-link_about.png");
  }
  .pc-menu__link[href="#about"]:hover {
    opacity: 1;
    background-image: url("../img/pc-menu-link_about_hover.png");
  }
  .pc-menu__sub-list {
    display: flex;
    margin-top: 9.375rem;
  }
  .pc-menu__sub-list a {
    display: block;
    width: 14.0625rem;
    margin: 0 1.5625rem;
    border: 1px solid #fff;
    border-radius: 50%;
  }
  .pc-menu__sub-list a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.6);
  }
  .pc-menu__logo--brand {
    margin-top: 6rem;
    width: 44.53125rem;
  }
}
/* PC sidebar
------------------------------------------------------ */
@media (min-width: 750px) {
  .pc-sidebar {
    position: fixed;
    z-index: 99;
    top: 0;
    left: calc(50% + 42.1875rem);
    display: block;
    height: 100vh;
    width: 70.3125rem;
    text-align: center;
  }
  .pc-sidebar__inner {
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    padding: 12.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .pc-sidebar__inner::-webkit-scrollbar {
    display: none;
  }
  .pc-qr {
    width: 59.375rem;
  }
}
/*----------------------------------------
	for SP
----------------------------------------*/
@media (min-width: 750px) {
  .header,
  .sp-menu {
    display: none !important;
    height: 0 !important;
  }
}

/* header
------------------------------------------------------ */
.header {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  display: none;
  width: 100vw;
  height: 10rem;
  background: rgba(255, 255, 255, 0.8);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 4rem;
}

.header__logo {
  width: 22rem;
}

/* hamburger */
.hamburger {
  position: relative;
  width: 5rem;
  height: 5rem;
  background: none;
  cursor: pointer;
}

.hamburger__line {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: #a98048;
  transition: all 0.3s;
}
.hamburger__line:nth-of-type(1) {
  top: 1.2rem;
}
.hamburger__line:nth-of-type(2) {
  top: 2.4rem;
}
.hamburger__line:nth-of-type(3) {
  top: 3.6rem;
}

.hamburger[aria-expanded=true] .hamburger__line:nth-of-type(1) {
  top: 2.4rem;
  transform: rotate(-45deg);
}
.hamburger[aria-expanded=true] .hamburger__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger[aria-expanded=true] .hamburger__line:nth-of-type(3) {
  top: 2.4rem;
  transform: rotate(45deg);
}

/* SP menu
------------------------------------------------------ */
.sp-menu {
  position: fixed;
  z-index: 98;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  padding: 10rem 4rem;
  background: #fff;
}

.sp-menu__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sp-menu__item:not(:first-child) {
  margin-top: 10rem;
}

.sp-menu__link {
  display: inline-block;
  overflow: hidden;
  width: 43.2rem;
  height: 10rem;
  text-indent: 100%;
  white-space: nowrap;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.sp-menu__link[href="#campaign"] {
  background-image: url("../img/sp-menu-link_campaign.png");
}
.sp-menu__link[href="#ranking"] {
  background-image: url("../img/sp-menu-link_ranking.png");
}
.sp-menu__link[href="#about"] {
  background-image: url("../img/sp-menu-link_about.png");
}

.sp-menu__sub-list {
  margin-top: 9rem;
  text-align: center;
}
.sp-menu__sub-list li:not(:first-child) {
  margin-top: 9.5rem;
}
.sp-menu__sub-list a {
  display: inline-block;
  width: 43.2rem;
}

body.is-fixed {
  overflow-y: hidden;
}

/*----------------------------------------
	main contents
----------------------------------------*/
.main-contents {
  max-width: 75rem;
  margin: 0 auto;
  background: #FEE4CC;
}

/* fv
------------------------------------------------------ */
.fv {
  position: relative;
  height: 129rem;
  padding-top: 14rem;
  background: url("../img/fv-bg.jpg?ver=1.1") center/contain no-repeat;
}

.fv-title__sub {
  display: block;
}

.fv-title__main {
  display: block;
  margin-top: -8rem;
}

.fv__title-parts {
  position: absolute;
  top: 55.4rem;
  right: 0;
  width: 40rem;
}

/* intro
------------------------------------------------------ */
.intro {
  position: relative;
  z-index: 0;
  padding-bottom: 17rem;
  background: url("../img/intro-bg-repeat.jpg") top/75rem 73.5rem repeat-y;
}
.intro::before {
  position: absolute;
  z-index: -1;
  top: -24rem;
  content: "";
  width: 75rem;
  height: 90rem;
  background: url("../img/intro-bg-top.png") center/contain no-repeat;
}
.intro::after {
  position: absolute;
  z-index: -1;
  bottom: 0;
  content: "";
  width: 100%;
  height: 16rem;
  background: linear-gradient(transparent, #FEE4CC);
}

.intro__title {
  position: absolute;
  top: -24rem;
  padding-top: 11rem;
}

.intro__text {
  padding-top: 14rem;
}

.intro__comingsoon {
  margin-top: 11rem;
}

/* campaign
------------------------------------------------------ */
.campaign {
  overflow: hidden;
  position: relative;
  z-index: 0;
  width: 69.6rem;
  border-radius: 1.5rem;
  border: 0.3rem solid;
  margin: 0 auto;
  background: #fff;
}
.campaign::before {
  position: absolute;
  z-index: -1;
  top: 0.8rem;
  left: 0.8rem;
  content: "";
  width: calc(100% - 1.6rem);
  height: calc(100% - 1.6rem);
  border: 0.2rem solid;
  border-radius: 0.5rem;
}
.campaign::after {
  position: absolute;
  z-index: -1;
  right: -3.5rem;
  bottom: 3rem;
  transform: rotate(-45deg);
  content: "";
  width: 16rem;
  height: 2.5rem;
}

.campaign__head {
  cursor: pointer;
}
.campaign__head[aria-expanded=true] {
  pointer-events: none;
  cursor: auto;
}
.campaign__head[aria-expanded=true] .campaign__detail {
  display: none;
}

.campaign__body {
  position: relative;
  display: none;
  padding-bottom: 8rem;
  text-align: center;
}

.campaign__arrow {
  position: absolute;
  left: calc(50% - 1.5rem);
  bottom: 3rem;
  display: block;
  width: 3rem;
  height: 3rem;
  border-top: 0.6rem solid;
  border-left: 0.6rem solid;
  border-radius: 0.3rem;
  transform: rotate(45deg);
  opacity: 0.5;
  cursor: pointer;
}

.campaign__body .campaign-btn {
  margin-bottom: 7rem;
}

.campaign-item:nth-of-type(1) .campaign,
.campaign-item:nth-of-type(1) .campaign::before,
.campaign-item:nth-of-type(1) .campaign__arrow {
  border-color: #fbc737;
}
.campaign-item:nth-of-type(1) .campaign::after {
  background: #fbc737;
}

.campaign-item:nth-of-type(2) .campaign,
.campaign-item:nth-of-type(2) .campaign::before,
.campaign-item:nth-of-type(2) .campaign__arrow {
  border-color: #f4aaaa;
}
.campaign-item:nth-of-type(2) .campaign::after {
  background: #f4aaaa;
}

.campaign-item:nth-of-type(3) .campaign,
.campaign-item:nth-of-type(3) .campaign::before,
.campaign-item:nth-of-type(3) .campaign__arrow {
  border-color: #e899bd;
}
.campaign-item:nth-of-type(3) .campaign::after {
  background: #e899bd;
}

.campaign-item:not(:first-child) {
  margin-top: 3.5rem;
}

.campaign-item-list + * {
  margin-top: 2rem;
}

.shop-title {
  margin-top: 2rem;
}

.shop-list li:not(:first-child) {
  margin-top: 2rem;
}

.shop-link {
  display: block;
  width: 58rem;
  margin: 0 auto;
}

.shop-caption {
  margin-top: 3rem;
  margin-bottom: 4rem;
}

/* top
------------------------------------------------------ */
.top {
  position: sticky;
  top: 0;
  height: 130rem;
  padding-top: 25rem;
  padding-bottom: 46rem;
  margin-top: -16rem;
  background: url("../img/top-bg.png?ver=1.1") center/contain no-repeat;
}

/* contents
------------------------------------------------------ */
.contents {
  position: relative;
  margin-top: -13rem;
  padding-top: 27.5rem;
}
.contents::after {
  position: absolute;
  z-index: -1;
  bottom: 0;
  content: "";
  width: 100%;
  height: 31rem;
}

.contents__img {
  width: 54.6rem;
  margin: 0 auto;
}

.contents__btn {
  margin-top: 4rem;
  text-align: center;
}

#ranking-1st {
  position: sticky;
  top: calc(100vh - 384rem);
  height: 384rem;
  background: url("../img/contents-bg-01.png") top/contain no-repeat;
}
#ranking-1st::after {
  background: #E4C0C9;
}

#ranking-2nd {
  position: sticky;
  top: calc(100vh - 362rem);
  height: 362rem;
  background: url("../img/contents-bg-02.png") top/contain no-repeat;
}
#ranking-2nd::after {
  background: #E6B3BD;
}

#ranking-3rd {
  position: relative;
  height: 333rem;
  background: url("../img/contents-bg-03.png") top/contain no-repeat;
}
#ranking-3rd::after {
  display: none;
}

/* voice */
.voice {
  position: relative;
  width: 71rem;
  padding: 13.6rem 3rem 4.4rem;
  border-radius: 2.4rem;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #fff;
}

.voice__title {
  position: absolute;
  top: -4.4rem;
  left: -2rem;
  width: 75rem;
}

.voice__box {
  width: 63rem;
  padding-bottom: 6rem;
  border-radius: 2.4rem;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 0 1rem rgba(209, 155, 168, 0.4);
}
.voice__box + .voice__box {
  margin-top: 3rem;
}

.voice__slider {
  width: 43rem;
  height: 43rem;
  margin: 0 auto;
}

.voice__slide {
  width: 43rem;
  background: #fff;
}
.voice__slide img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 43rem;
}

.voice__list {
  margin-top: 4rem;
}

.voice__item {
  width: 63rem;
  border-radius: 2.4rem;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 0 1rem rgba(209, 155, 168, 0.4);
}
.voice__item:not(:first-child) {
  margin-top: 3rem;
}

/* slickの設定 */
.voice__slider .slick-prev,
.voice__slider .slick-next {
  position: absolute;
  z-index: 3;
  top: 50%;
  cursor: pointer;
  outline: none;
  border-top: 0.6rem solid #fff;
  border-right: 0.6rem solid #fff;
  border-radius: 0.3rem;
  height: 3rem;
  width: 3rem;
}
.voice__slider .slick-prev {
  left: -4.5rem;
  transform: rotate(-135deg);
}
.voice__slider .slick-next {
  right: -4.5rem;
  transform: rotate(45deg);
}
.voice__slider .slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin-top: 2rem;
}
.voice__slider .slick-dots li {
  display: inline-block;
  margin: 0 0.5rem;
}
.voice__slider .slick-dots button {
  color: transparent;
  outline: none;
  width: 1.7rem;
  height: 1.7rem;
  display: block;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e6c5cc;
}
.voice__slider .slick-dots .slick-active button {
  background: #e6c5cc;
}

/* about
------------------------------------------------------ */
.about {
  position: relative;
  z-index: 0;
  padding-top: 5rem;
  padding-bottom: 6rem;
  background: #fff;
}
.about::before {
  position: absolute;
  top: -1rem;
  content: "";
  width: 100%;
  height: 1rem;
  background: linear-gradient(transparent, #fff);
}

.about__img {
  width: 56rem;
  margin-top: 5rem;
  margin-left: auto;
  margin-right: auto;
}

/* brand
------------------------------------------------------ */
.brand {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 15rem;
  background: #fff;
}

.brand__list {
  width: 65rem;
  margin-top: 4rem;
  margin-left: auto;
  margin-right: auto;
}

.brand__item:not(:first-child) {
  margin-top: 2rem;
}

/* footer
------------------------------------------------------ */
.footer {
  position: relative;
  padding-top: 4rem;
  background: #fee9d7;
}

.footer__list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 6rem auto;
}

.footer__link {
  display: block;
  width: 16rem;
}

/*----------------------------------------
	Animation
----------------------------------------*/
/* スクロールアニメーション
------------------------------------------------------ */
.js-animate,
.js-fv-animate {
  opacity: 0;
}

/* その場でフェードイン */
.fadeIn.js-animated {
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 少し下からフェードアップ */
.fadeInUp.js-animated {
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    transform: translateY(6rem);
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ローディング画面
------------------------------------------------------ */
.loading {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: #fff;
}

.loading__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loading__logo {
  width: 40rem;
  animation: blur 1s ease forwards;
  opacity: 0;
}
@keyframes blur {
  0% {
    opacity: 0;
    filter: blur(6rem);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.overlay {
  position: fixed;
  z-index: 998;
  width: 100%;
  height: 100%;
  background: white;
}/*# sourceMappingURL=style.css.map */