@charset "utf-8";

body.is-fixed {
  overflow: hidden;
  height: 100%;
}

/* ==========================================================================
  Component (c-)
========================================================================== */
/* --- swiper --- */
.swiper {
  width: 100%;
  height: auto;
}
.swiper-slide {
  height: auto;
}

/* --- ボタン --- */
.c-btn-group {
  margin-top: calc(75 * var(--px-unit));

  @media screen and (min-width: 768px) {
    margin-top: 75px;
  }
}
.c-link-information {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: underline;
  text-align: center;
  font-family: var(--font-serif-ja);
  font-size: calc(20 * var(--px-unit));
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: calc(16 * var(--px-unit));
  color: #272727;

  @media screen and (min-width: 768px) {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.c-link-information--large-mb {
  margin-bottom: calc(42 * var(--px-unit));

  @media screen and (min-width: 768px) {
    margin-bottom: 42px;
  }
}
.c-entry-btn-wrap__deadline {
  text-align: center;
  font-family: var(--font-serif-ja);
  margin-bottom: calc(11 * var(--px-unit));
  font-size: calc(21 * var(--px-unit));
  font-weight: 600;

  @media screen and (min-width: 768px) {
    margin-bottom: 11px;
    font-size: 21px;
  }
}
.c-btn {
  height: calc(88 * var(--px-unit));
  font-family: var(--font-serif-ja);
  border: 1px solid #961a1d;
  padding-top: calc(10 * var(--px-unit));
  padding-bottom: calc(16 * var(--px-unit));
  font-weight: 700;
  font-size: calc(18 * var(--px-unit));
  color: #d13800;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: calc(6 * var(--px-unit));
  text-align: center;
  border-radius: 999px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;

  @media screen and (min-width: 768px) {
    height: 88px;
    padding-top: 10px;
    padding-bottom: 16px;
    font-size: 18px;
    gap: 6px;
  }
}
.c-btn--non-entry {
  border: 1px solid rgba(255, 255, 255, 0);
  font-size: calc(20 * var(--px-unit));

  @media screen and (min-width: 768px) {
    font-size: 20px;
  }
}
.c-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
  -ms-transform: translate(-50%, -50%) rotate(135deg);
  transform: translate(-50%, -50%) rotate(135deg);
  width: calc(12 * var(--px-unit)) !important;
  height: calc(12 * var(--px-unit)) !important;
  border-top: max(2px, calc(3 * var(--px-unit))) solid #d13800;
  border-left: max(2px, calc(3 * var(--px-unit))) solid #d13800;
}
/* safari対策のためメディアクエリ外出し */
@media screen and (min-width: 768px) {
  .c-btn::after {
    width: 12px !important;
    height: 12px !important;
    border-top: 3px solid #d13800;
    border-left: 3px solid #d13800;
  }
}
.c-btn__entry-sub {
  display: block;
  font-size: calc(12 * var(--px-unit));
  line-height: 1;

  @media screen and (min-width: 768px) {
    font-size: 12px;
  }
}
.c-btn__entry-main {
  display: block;
  font-family: var(--font-serif-en);
  font-size: calc(40 * var(--px-unit));
  font-weight: 500;
  line-height: 1;

  @media screen and (min-width: 768px) {
    font-size: 40px;
  }
}
.c-btn__normal-txt {
  position: relative;
  top: calc(8 * var(--px-unit));

  @media screen and (min-width: 768px) {
    top: 8px;
  }
}
.c-entry-btn-wrap__link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: underline;
  font-family: var(--font-serif-ja);
  margin-top: calc(21 * var(--px-unit));
  margin-left: auto;
  margin-right: auto;
  font-size: calc(20 * var(--px-unit));
  line-height: 1.7;
  font-weight: 700;
  text-align: center;
  color: #272727;

  @media screen and (min-width: 768px) {
    margin-top: 21px;
    font-size: 20px;
  }
}
.c-entry-btn-wrap__link.--large {
  font-size: calc(22 * var(--px-unit));

  @media screen and (min-width: 768px) {
    font-size: 22px;
  }
}

/* --- 見出し --- */
.c-sec-heading {
  line-height: 1;
  text-align: center;
  color: #d13800;
}
.c-sec-heading::after {
  content: "";
  display: block;
  width: calc(48 * var(--px-unit));
  height: 1px;
  background-color: #a37a00;
  margin-top: calc(24 * var(--px-unit));
  margin-left: auto;
  margin-right: auto;
}
/* safari対策のためメディアクエリ外出し */
@media screen and (min-width: 768px) {
  .c-sec-heading::after {
    width: 48px;
    margin-top: 24px;
  }
}
.c-sec-heading__en {
  display: block;
  font-family: var(--font-serif-en);
  font-size: calc(16 * var(--px-unit));
  font-weight: 400;

  @media screen and (min-width: 768px) {
    font-size: 16px;
  }
}
.c-sec-heading__ja {
  display: block;
  font-family: var(--font-serif-ja);
  font-size: calc(32 * var(--px-unit));
  font-weight: 600;
  margin-top: calc(8 * var(--px-unit));

  @media screen and (min-width: 768px) {
    font-size: 32px;
    margin-top: 8px;
  }
}

/* sns */
.c-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.c-sns__instagram {
  width: calc(37 * var(--px-unit));
  margin-top: calc(22 * var(--px-unit));

  @media screen and (min-width: 768px) {
    width: 37px;
    margin-top: 22px;
  }
}

/* coming soon */
.c-coming-soon {
  position: relative;
  pointer-events: none;
}
.c-coming-soon::before {
  content: "";
  display: -ms-grid;
  display: grid;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  place-content: center;
  color: #fff;
  font-size: calc(24 * var(--px-unit));
  z-index: 1;
  border-radius: 999px;
}
/* safari対策のためメディアクエリ外出し */
@media screen and (min-width: 768px) {
  .c-coming-soon::before {
    font-size: 24px;
  }
}
.c-coming-soon--sp-fixed-btn::before {
  font-size: calc(20 * var(--px-unit));
  border-radius: 0;
}

/* ==========================================================================
  Utility (u-)
========================================================================== */
.u-mt-21 {
  margin-top: calc(21 * var(--px-unit));

  @media screen and (min-width: 768px) {
    margin-top: 21px;
  }
}

.u-mt-35 {
  margin-top: calc(35 * var(--px-unit));

  @media screen and (min-width: 768px) {
    margin-top: 35px;
  }
}

.u-mr-20 {
  margin-right: calc(20 * var(--px-unit));

  @media screen and (min-width: 768px) {
    margin-right: 20px;
  }
}

.u-mb-42 {
  margin-bottom: calc(42 * var(--px-unit));

  @media screen and (min-width: 768px) {
    margin-bottom: 42px;
  }
}

.u-pl-46 {
  padding-left: calc(46 * var(--px-unit));

  @media screen and (min-width: 768px) {
    padding-left: 46px;
  }
}

.u-sp-only {
  display: initial;

  @media screen and (min-width: 768px) {
    display: none;
  }
}

.u-pc-only {
  display: none;

  @media screen and (min-width: 768px) {
    display: initial;
  }
}
