@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=BIZ+UDGothic&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");
/*-------------------------
  RESET
-------------------------*/
*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
blockquote,
body,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
ol,
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
ol[role="list"],
ul[role="list"] {
  list-style: none;
}
a {
  outline: none;
  text-decoration: none;
}
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}
img,
picture {
  width: 100%;
  height: auto;
  display: block;
}
button,
input,
select,
textarea {
  font: inherit;
}
/*-------------------------
  SETTINGS
-------------------------*/
:root {
  --white: #fff;
  --gold: #d5cb54;
  --black: #000;
  --dark-gray: #2b2b2b;
  --gray: #c1c1c1;
  --content-width: 90vw;
  --inner-width: 90vw;
  --z-index-menu-contents: 400;
  --z-index-menu: 300;
  --z-index-menu-sns: 200;
  --z-index-navbar: 100;
  --z-index-footer: 100;
  --z-index-kv-img: -1;
}
@media (min-width: 768px) {
  :root {
    --content-width: min(80vw, 1000px);
    --inner-width: min(80vw, 900px);
  }
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
    transition: opacity ease-in 0.2s;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
  overflow-x: hidden;
  background-color: var(--black);
}
body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  color: var(--white);
}
/*-------------------------
  COMMON
-------------------------*/
.c-head {
  font-family: "Josefin Sans";
  font-weight: bold;
  font-size: min(calc(26 / 375 * 100vw), 26px);
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--gold);
}
@media (min-width: 768px) {
  .c-head {
    font-size: min(calc(36 / 1000 * 100vw), 36px);
  }
}
.c-txt {
  font-weight: normal;
  font-size: min(calc(14 / 375 * 100vw), 14px);
  letter-spacing: 0.05em;
  line-height: 1.65;
  text-align: center;
  color: var(--white);
}
.c-txt__left {
  text-align: left;
}
.c-txt__right {
  text-align: right;
}
.c-section {
  padding: 18vw 0;
  background-color: var(--black);
}
@media (min-width: 768px) {
  .c-section {
    padding: 100px 0 120px;
  }
}
.c-section__inner {
  width: var(--content-width);
  margin: auto;
}
.c-button {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  font-family: "Josefin Sans";
  font-weight: bold;
  font-size: min(calc(14 / 375 * 100vw), 14px);
  letter-spacing: 0.05em;
  color: var(--white);
  cursor: pointer;
}
.c-button:after {
  content: "";
  width: 3vw;
  height: 2vw;
  background: url(../img/ic-arrow-right.svg) center / 100% auto no-repeat;
}
@media (min-width: 768px) {
  .c-button:after {
    width: 20px;
    height: 10px;
  }
}
.c-button--primary {
  padding: 0 5vw;
  justify-content: end;
  border: solid 1px var(--white);
}
@media (min-width: 768px) {
  .c-button--primary {
    padding: 0 20px;
  }
}
.c-button--primary span {
  margin: auto;
}
.c-button--secondary {
  padding-bottom: 2vw;
  justify-content: space-between;
  border-bottom: solid 1px var(--white);
}
@media (min-width: 768px) {
  .c-button--secondary {
    padding-bottom: 10px;
  }
}
.c-sns-menu {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 4vw;
  z-index: var(--z-index-menu-sns);
  background-color: rgba(51, 51, 51, 0.7);
  /*display: none; !* ドメイン変更まで非表示 *!*/
}
.c-sns-menu__info {
  max-width: 72vw;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-sns-menu__page-top {
  gap: 1vw 0;
  flex-wrap: wrap;
  padding-left: 8vw;
  font-family: "Josefin Sans";
  font-weight: bold;
  font-size: min(calc(10 / 375 * 100vw), 10px);
  border-left: 1px var(--white) solid;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  color: var(--white);
}
/*.c-sns-menu__page-top::before {
  content: "";
  width: 100%;
  height: 3vw;
  background: url(../img/ic-arrow-up.svg) center / 100% auto no-repeat;
}*/
.c-sns-menu__page-top a {
  display: block;
  padding-top: 15px;
  color: inherit;
  background: url(../img/ic-arrow-up.svg) center -6px / 100% auto no-repeat;
}
@media (min-width: 768px) {
  .c-sns-menu {
    padding: 20px;
  }
  .c-sns-menu__info {
    width: 360px;
    margin: auto; /* gap: 36px; */
  }
  .c-sns-menu__page-top {
    padding-left: 24px;
    gap: 8px 0;
  }
  .c-sns-menu__page-top a {
    padding-top: 16px;
    background: url(../img/ic-arrow-up.svg) center -8px / 100% auto no-repeat;
  }
    /*  .c-sns-menu__page-top::before {
    height: 8px;
  }*/
}
.back__link {
  width: min(calc(204 / 375 * 100vw), 204px);
  height: 13vw;
  margin: 8vw auto 0;
}
@media (min-width: 768px) {
  .back__link {
    width: 280px;
    height: 70px;
    margin-top: 60px;
  }
}
.back__link.app-only {
  margin-bottom: 20vw;
}
@media (min-width: 768px) {
  .back__link.app-only {
    margin-bottom: 150px;
  }
}
.pager {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  margin: 8vw auto 0;
  color: var(--white);
  line-height: 1;
  font-size: min(calc(16 / 375 * 100vw), 16px);
}
@media (min-width: 768px) {
  .pager {
    margin-top: 60px;
  }
}
.pager a {
  color: var(--white);
}
.pager span {
  display: inline-block;
  width: 18px;
  margin: 0 5px;
  text-align: center;
}
.pager .pager__current {
  font-weight: 500;
  color: var(--gray);
}
.pager .pager__first {
  height: 18px;
  background-size: 17px 17px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 20.528 20"><path  d="M250-690v-20h2.609v20Zm18.7-.167L258.864-700l9.833-9.833L270.529-708l-8,8,8,8Z" transform="translate(-250.001 709.999)" fill="%23FFFFFF"/></svg>');
}
.pager .pager__last {
  height: 18px;
  background-size: 17px 17px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="17" viewBox="0 0 20.528 20"><path d="M239.68-690.166,237.847-692l8-8-8-8,1.833-1.833L249.513-700Zm16.087.167v-20h2.609v20Z" transform="translate(-237.847 709.999)" fill="%23FFFFFF"/></svg>');
}

/*-------------------------
  APP
-------------------------*/
.app {
  background: url(../img/bg-app-sp.jpg) center / cover no-repeat;
}
.app__box {
  max-width: var(--content-width);
  margin: 8vw auto 0;
  padding: 9vw 7vw;
  color: var(--white);
  background-color: rgba(0, 0, 0, 0.4);
}
.app__menu {
  margin: 4vw auto;
  display: flex;
  justify-content: space-between;
}
.app-stores {
  display: grid;
  margin: auto;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 0 3vw;
}
.app-stores__item--qr {
  display: none;
  max-width: 16vw;
  margin: 2.4vw auto 0;
  grid-area: 2 / 1 / 3 / 3;
}
@media (min-width: 768px) {
  .app {
    background-image: url(../img/bg-app-pc.jpg);
  }
  .app__box {
    margin-top: 50px;
    padding: min(6vw, 60px);
  }
  .app__menu {
    width: 470px;
    margin: 32px auto 20px;
  }
  .app-stores {
    align-items: center;
  }
  .app__menu li {
    width: 80px;
  }
  .app-stores {
    max-width: 540px;
    grid-template-columns: 1fr 1fr 80px;
    align-items: center;
    grid-template-rows: 1fr;
    gap: 26px;
  }
  .app-stores__item--qr {
    display: block;
    margin: 0;
    grid-area: none;
    grid-area: 1 / 3 / 2 / 4;
  }
}

/*-------------------------
  FOOTER
-------------------------*/
.c-footer {
  position: relative;
  z-index: var(--z-index-footer);
  padding: 7vw 0 20vw;
  border-top: 1px solid var(--gray);
  background-color: var(--black);
  /*display: none; !* ドメイン変更まで非表示 *!*/
}
.c-footer__menu {
  margin: 0 16px 24px;
  text-align: center;
  font-size: min(calc(15 / 375 * 100vw), 15px);
  /*display: none; !* ドメイン変更まで非表示 *!*/
}
@media (min-width: 768px) {
  .c-footer__menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    /*display: none; !* ドメイン変更まで非表示 *!*/
  }
}
.c-footer__menu li {
  display: inline-block;
  margin-right: 20px;
}
.c-footer__menu li:last-of-type {
  margin-right: 0;
}
.c-footer__menu a {
  color: var(--white);
}
.c-footer__copyright {
  font-family: "Josefin Sans";
  font-weight: 500;
  font-size: min(calc(12 / 375 * 100vw), 12px);
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--white);
}
@media (min-width: 768px) {
  .c-footer {
    padding: 24px 0 96px;
  }
}
/*-------------------------
  ANIMATION
-------------------------*/
.js-anime {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.5s;
}
.js-anime.is-active {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}
.js-anime--fade-in-up {
  transform: translate(0, -30px);
}
.js-anime--rotation {
  transform: rotateY(180deg);
}
/* SPで3枚目のスライドに表示アニメーションを実行させない */
@media (max-width: 767px) {
  .js-anime.is-pc {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
}
/*-------------------------
  MAINTENANCE
-------------------------*/
.maintenance {
  text-align: center;
  line-height: 1.65;
}
.maintenance__inner {
  padding-top: 14vw;
  padding-bottom: 20vw;
}
.maintenance__title {
  margin-bottom: 3vw;
  font-weight: 500;
  font-size: min(calc(15 / 375 * 100vw), 18px);
}
.maintenance__subtitle {
  margin-bottom: 6vw;
  font-weight: 500;
  font-size: min(calc(15 / 375 * 100vw), 15px);
}
.maintenance__text {
  font-weight: 300;
  font-size: min(calc(15 / 375 * 100vw), 15px);
  word-break: break-all;
}
.maintenance  footer {
  font-family: "Josefin Sans";
  font-weight: 500;
  font-size: min(calc(12 / 375 * 100vw), 12px);
  text-align: center;
}
@media (min-width: 768px) {
  .maintenance__inner {
    padding-top: 100px;
    padding-bottom: 150px;
  }
  .maintenance__title {
    margin-bottom: 24px;
  }
  .maintenance__subtitle {
    margin-bottom: 28px;
    font-weight: 500;
    font-size: min(calc(15 / 375 * 100vw), 15px);
  }
}