@charset "UTF-8";

:root {
  /* custom root font size */
  --crfs: 2.6666666667vw;
}
@media only screen and (min-width: 768px) {
  :root {
    --crfs: 12.8px;
  }
}

@media print {
  html,
  body {
    width: 1600px;
    margin: 0;
  }
  body {
    -webkit-print-color-adjust: exact;
  }
  @page {
    margin: 0;
    size: 11in 14.028in;
  }
  @page :left {
    margin: 0;
  }
  @page :right {
    margin: 0;
  }
  @page :first {
    margin-top: 0;
  }
}
html {
  opacity: 0.01;
  line-height: 1;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}
html.is-visible {
  opacity: 1;
}
@media print, (min-width: 768px) {
  html {
    font-size: 62.5%;
  }
}
@media only screen and (max-width: 767.98px) {
  html {
    min-height: 100vh;
    font-size: 2.6666666667vw;
  }
  html::-webkit-scrollbar {
    width: 0;
    opacity: 0;
  }
}

body {
  color: #000;
  font-family: '游ゴシック体', yugothic, '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic', 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', meiryo, 'メイリオ', sans-serif;
  line-height: 1.7142857143;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
@media print, (min-width: 768px) {
  body {
    font-size: calc(1.4 * var(--crfs));
    font-weight: 400;
  }
}
@media only screen and (max-width: 767.98px) {
  body {
    font-size: calc(1.4 * var(--crfs));
    font-weight: 400;
  }
}

img,
svg {
  image-rendering: smooth;
  shape-rendering: geometricPrecision;
}

.hidden {
  display: none;
}

.trans {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 1;
  text-decoration: none;
}
.trans:hover {
  opacity: 0.8;
}

.load {
  opacity: 0.001;
}
html.is-visible .load {
  opacity: 1;
}

.image-common {
  display: block;
  width: 100%;
}

.object-common {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (max-width: 767.98px) {
  .container {
    min-width: 320px;
  }
}

@media print, (min-width: 768px) {
  .sm {
    /* stylelint-disable-next-line declaration-no-important */
    display: none !important;
  }
}

@media only screen and (max-width: 767.98px) {
  .md {
    /* stylelint-disable-next-line declaration-no-important */
    display: none !important;
  }
}

.wow {
  visibility: hidden;
  opacity: 0;
}

@media print {
  .wow {
    visibility: visible !important;
  }
}
.animated {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fade-in-right {
  -webkit-animation-name: fade-in-right;
  animation-name: fade-in-right;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fade-in-right {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20%, 20%, 0);
    transform: translate3d(20%, 20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fade-in-right {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20%, 20%, 0);
    transform: translate3d(20%, 20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fade-in-left {
  -webkit-animation-name: fade-in-left;
  animation-name: fade-in-left;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fade-in-left {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20%, 20%, 0);
    transform: translate3d(-20%, 20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fade-in-left {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-20%, 20%, 0);
    transform: translate3d(-20%, 20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fade-right {
  -webkit-animation-name: fade-right;
  animation-name: fade-right;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fade-right {
  0% {
    -webkit-transform: translateX(180px);
    transform: translateX(180px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  40%,
  100% {
    opacity: 1;
  }
}

@keyframes fade-right {
  0% {
    -webkit-transform: translateX(180px);
    transform: translateX(180px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  40%,
  100% {
    opacity: 1;
  }
}
.animation-zoom-in {
  -webkit-animation: animation-zoom-in 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation: animation-zoom-in 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@-webkit-keyframes animation-zoom-in {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes animation-zoom-in {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animation-fade-up {
  -webkit-animation: animation-fade-up 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation: animation-fade-up 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@-webkit-keyframes animation-fade-up {
  0% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes animation-fade-up {
  0% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.paper-fireworks {
  position: fixed;
  z-index: 3;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

body {
  overflow-x: hidden;
}

img {
  height: auto;
}

.container {
  overflow: hidden;
}

@media print, (min-width: 768px) {
  header {
    position: relative;
  }
  header::before {
    position: absolute;
    content: '';
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 0;
    width: 100vw;
    height: 62px;
    background: #fff;
    pointer-events: none;
  }
}

.keyvisual-main {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  height: 100vh;
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(33, 101, 174)), color-stop(20%, rgb(80, 163, 205)), color-stop(60%, rgb(163, 223, 231)), color-stop(90%, rgb(225, 248, 238)));
  background: linear-gradient(180deg, rgb(33, 101, 174) 0%, rgb(80, 163, 205) 20%, rgb(163, 223, 231) 60%, rgb(225, 248, 238) 90%);
}
.keyvisual-main::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: url('../img/keyvisual_main_bg_01.png') center/cover no-repeat;
  z-index: -1;
}

@-webkit-keyframes animationFlash {
  0%,
  40%,
  60%,
  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50%,
  70% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}

@keyframes animationFlash {
  0%,
  40%,
  60%,
  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50%,
  70% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}
.keyvisual-main-inner {
  position: absolute;
  content: '';
  left: calc(50% - 578px);
  top: 105px;
  width: 768px;
  height: calc(100% - 176px);
  background: url('../img/keyvisual_main_bg_02.png') center/contain no-repeat;
}
.keyvisual-main-inner::before {
  position: absolute;
  content: '';
  left: -32px;
  top: -13px;
  width: 480px;
  height: 610px;
  background: url('../img/keyvisual_main_bg_03.png') center/contain no-repeat;
  z-index: -1;
  -webkit-animation: animationFlash 2s ease-out;
  animation: animationFlash 2s ease-out;
}

@media only screen and (max-height: 980px) {
  .keyvisual-main-inner::before {
    top: -6vh;
    height: 63vh;
    left: 1vh;
  }
}

.keyvisual-navigation {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.keyvisual-menu {
  position: absolute;
  left: calc(50% + 434px);
  top: 50%;
  margin-top: -218px;
  margin-bottom: 0;
  width: 260px;
  background: #fff;
  list-style-type: none;
  padding: 25px 25px 17px;
  border-radius: 20px;
  pointer-events: auto;
}
@media print, (min-width: 768px) and (max-width: 1500px) {
  .keyvisual-menu {
    left: unset;
    right: 60px;
  }
}
@media print, (min-width: 768px) and (max-width: 850px) {
  .keyvisual-menu {
    right: 20px;
    width: 29vw;
    padding: 20px 10px;
  }
}
.keyvisual-menu .menu-item {
  border-bottom: 1px solid #cecece;
  padding: 6px 0 4px;
  margin-bottom: 2px;
}
.keyvisual-menu .menu-item:last-child {
  border-bottom: none;
}
.keyvisual-menu .menu-item-link {
  display: block;
  padding: 12px 11px;
  transition: opacity 0.3s ease;
}
.is-tablet .keyvisual-menu .menu-item-link:hover {
  opacity: 0.8;
}
.is-tablet .keyvisual-menu .menu-item-link:hover .is-hover {
  opacity: 0;
}
.is-tablet .keyvisual-menu .menu-item-link:hover .is-default {
  opacity: 1;
}
.keyvisual-menu .menu-item-link.is-active .is-default,
.keyvisual-menu .menu-item-link:hover .is-default {
  opacity: 0;
}
.keyvisual-menu .menu-item-link.is-active .is-hover,
.keyvisual-menu .menu-item-link:hover .is-hover {
  opacity: 1;
}

.keyvisual-menu .menu-item-link .menu-item-image {
  position: relative;
  line-height: 1;
}
.keyvisual-menu .menu-item-link img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  max-width: 100%;
  top: 0;
}
.keyvisual-menu .menu-item-link img.is-hover {
  opacity: 0;
  position: absolute;
  left: 0;
  bottom: 0;
}

.main-content {
  min-height: 100vh;
  position: relative;
  z-index: 2;
  background: #fff;
}
@media print, (min-width: 768px) {
  .main-content {
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    left: 144px;
  }
}
@media print, print and (min-width: 768px) and (max-width: 1500px), print and (min-width: 768px), (min-width: 768px) and (min-width: 768px) and (max-width: 1500px) {
  .main-content {
    left: 0;
    margin-right: 400px;
  }
}
@media print, print and (min-width: 768px) and (max-width: 950px), print and (min-width: 768px), (min-width: 768px) and (min-width: 768px) and (max-width: 950px) {
  .main-content {
    margin-right: 350px;
  }
}
@media print, print and (min-width: 768px) and (max-width: 900px), print and (min-width: 768px), (min-width: 768px) and (min-width: 768px) and (max-width: 900px) {
  .main-content {
    margin-right: auto;
    margin-left: 20px;
  }
}

.section-top-keyvisual {
  position: relative;
  background: #e60012;
  z-index: 1;
  overflow: hidden;
}
.section-top-keyvisual::after {
  position: absolute;
  content: '';
  left: 0;
  bottom: calc(-0.3 * var(--crfs));
  width: 100%;
  height: calc(26.2 * var(--crfs));
  background: url('../img/keyvisual_decor_08.png') center/100% 100% no-repeat;
  z-index: 1;
  pointer-events: none;
  -webkit-animation: animation-fade-up 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation: animation-fade-up 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
.section-top-keyvisual .keyvisual-intro {
  position: relative;
  padding-top: calc(1.6 * var(--crfs));
  z-index: 1;
}
.section-top-keyvisual .keyvisual-intro::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: calc(-8.3 * var(--crfs));
  width: 100%;
  height: calc(34.8 * var(--crfs));
  background: url('../img/keyvisual_bg_01.png') center/cover no-repeat;
  z-index: -1;
}
.section-top-keyvisual .keyvisual-intro::after {
  position: absolute;
  content: '';
  right: calc(2 * var(--crfs));
  bottom: calc(-7 * var(--crfs));
  width: calc(18.1 * var(--crfs));
  height: calc(4.5 * var(--crfs));
  background: url('../img/keyvisual_decor_05.png') center/contain no-repeat;
  z-index: -1;
  -webkit-animation: animationUpDown 3s ease-in-out infinite alternate;
  animation: animationUpDown 3s ease-in-out infinite alternate;
}
.section-top-keyvisual .intro-head {
  width: calc(33.6 * var(--crfs));
  margin: calc(0.5 * var(--crfs)) auto calc(-11.4 * var(--crfs));
}
.section-top-keyvisual .keyvisual-title {
  width: 100%;
  margin: calc(0 * var(--crfs)) auto calc(1.5 * var(--crfs));
  position: relative;
  top: calc(-0.5 * var(--crfs));
}


@-webkit-keyframes animationUpDown {
  0% {
    -webkit-transform: translate(0, 0) rotate(-7deg);
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    -webkit-transform: translate(0, -7px) rotate(0deg);
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(7deg);
    transform: translate(0, 0) rotate(7deg);
  }
}
@keyframes animationUpDown {
  0% {
    -webkit-transform: translate(0, 0) rotate(-7deg);
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    -webkit-transform: translate(0, -7px) rotate(0deg);
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(7deg);
    transform: translate(0, 0) rotate(7deg);
  }
}
.section-top-keyvisual .keyvisual-text {
  width: calc(27.9 * var(--crfs));
  margin: 0 auto;
  position: relative;
}


.section-top-keyvisual .keyvisual-text::before {
  position: absolute;
  content: '';
  right: calc(-4.15 * var(--crfs));
  top: calc(-2.2 * var(--crfs));
  background: url('../img/keyvisual_decor_03.png') center/contain no-repeat;
  width: calc(7.8 * var(--crfs));
  height: calc(6.4 * var(--crfs));
  -webkit-animation: animationUpDown 3s ease-in-out infinite alternate;
  animation: animationUpDown 3s ease-in-out infinite alternate;
}
.section-top-keyvisual .keyvisual-text::after {
  position: absolute;
  content: '';
  left: calc(-3.6 * var(--crfs));
  bottom: calc(-0.6 * var(--crfs));
  background: url('../img/keyvisual_decor_04.png') center/contain no-repeat;
  width: calc(4.7 * var(--crfs));
  height: calc(6.7 * var(--crfs));
  -webkit-animation: animationUpDown 3s ease-in-out infinite alternate;
  animation: animationUpDown 3s ease-in-out infinite alternate;
}
.section-top-keyvisual .keyvisual-content {
  position: relative;
  padding: calc(10.2 * var(--crfs)) 0 calc(5.3 * var(--crfs));
}

.section-top-keyvisual .keyvisual-content::before {
  position: absolute;
  content: '';
  left: 0;
  top: calc(-5 * var(--crfs));
  width: 100%;
  height: calc(31.9 * var(--crfs));
  background: url('../img/keyvisual_bg_02.png') center/cover no-repeat;
  z-index: -2;
}
@-webkit-keyframes animationVibrate {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }
  21% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }
  22% {
    -webkit-transform: translate(0, 0) rotate(-3deg);
    transform: translate(0, 0) rotate(-3deg);
  }
  23% {
    -webkit-transform: translate(0, -1px) rotate(0deg);
    transform: translate(0, -1px) rotate(0deg);
  }
  24% {
    -webkit-transform: translate(0, -1px) rotate(3deg);
    transform: translate(0, -1px) rotate(3deg);
  }
  25% {
    -webkit-transform: translate(1px, 0) rotate(-2deg);
    transform: translate(1px, 0) rotate(-2deg);
  }
  26% {
    -webkit-transform: translate(0, 1px) rotate(0deg);
    transform: translate(0, 1px) rotate(0deg);
  }
  27% {
    -webkit-transform: translate(0, 0) rotate(3deg);
    transform: translate(0, 0) rotate(3deg);
  }
  28% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes animationVibrate {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }
  21% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }
  22% {
    -webkit-transform: translate(0, 0) rotate(-3deg);
    transform: translate(0, 0) rotate(-3deg);
  }
  23% {
    -webkit-transform: translate(0, -1px) rotate(0deg);
    transform: translate(0, -1px) rotate(0deg);
  }
  24% {
    -webkit-transform: translate(0, -1px) rotate(3deg);
    transform: translate(0, -1px) rotate(3deg);
  }
  25% {
    -webkit-transform: translate(1px, 0) rotate(-2deg);
    transform: translate(1px, 0) rotate(-2deg);
  }
  26% {
    -webkit-transform: translate(0, 1px) rotate(0deg);
    transform: translate(0, 1px) rotate(0deg);
  }
  27% {
    -webkit-transform: translate(0, 0) rotate(3deg);
    transform: translate(0, 0) rotate(3deg);
  }
  28% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }
}
.section-top-keyvisual .content-text {
  width: calc(35 * var(--crfs));
  position: relative;
  left: calc(50% - calc(18.2 * var(--crfs)));
  bottom: calc(4.9 * var(--crfs));
  z-index: 2;
}
.section-top-keyvisual .content-text::before {
  position: absolute;
  content: '';
  width: calc(10.5 * var(--crfs));
  height: calc(8.2 * var(--crfs));
  background: url('../img/keyvisual_decor_07.png') center/contain no-repeat;
  z-index: -1;
  pointer-events: none;
  right: calc(-1.3 * var(--crfs));
  top: calc(1 * var(--crfs));
  -webkit-animation: animationVibrate 6s infinite ease-in-out alternate;
  animation: animationVibrate 6s infinite ease-in-out alternate;
}

.section-top-application {
  padding: calc(5.2 * var(--crfs)) 0 calc(4.5 * var(--crfs));
  background: url('../img/application_bg.jpg') top center/cover no-repeat;
}
.section-top-application .application-title {
  width: calc(28.6 * var(--crfs));
  margin: 0 auto calc(2.4 * var(--crfs));
}
.section-top-application .application-date {
  width: calc(34.2 * var(--crfs));
  margin: 0 auto calc(4.9 * var(--crfs));
}
.section-top-application .application-image {
  width: calc(35.3 * var(--crfs));
  margin: calc(-0.8 * var(--crfs)) auto calc(4.5 * var(--crfs));
}

.section-top-application .application-text {
  width: calc(34.5 * var(--crfs));
  margin: 0 auto calc(2.7 * var(--crfs));
}
.section-top-application .application-photo {
  width: calc(25.6 * var(--crfs));
  margin: calc(4.7 * var(--crfs)) auto 0;
  -webkit-animation: animationVibrate 6s infinite ease-in-out alternate;
  animation: animationVibrate 6s infinite ease-in-out alternate;
}
.section-top-application .campaign-end {
  margin: calc(0.6 * var(--crfs)) 0 calc(1.2 * var(--crfs));
  width: 100%;
}


.section-top-application .application-button {
  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;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: calc(1.3 * var(--crfs));
  letter-spacing: 0.1em;
  border: calc(0.2 * var(--crfs)) solid #fff;
  border-radius: calc(0.7 * var(--crfs));
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(226, 36, 37)), color-stop(80%, rgb(186, 26, 26)));
  background: linear-gradient(180deg, rgb(226, 36, 37) 0%, rgb(186, 26, 26) 80%);
  position: relative;
  padding: calc(0.5 * var(--crfs)) calc(3 * var(--crfs)) calc(0.5 * var(--crfs)) calc(4 * var(--crfs));
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  width: calc(33.5 * var(--crfs));
  min-height: calc(4.5 * var(--crfs));
  margin: 0 auto calc(1 * var(--crfs));
  overflow: hidden;
  z-index: 1;
}


.is-mac.is-safari .section-top-application .application-button {
  overflow: unset;
}

.section-top-application .application-button::before {
  position: absolute;
  content: '';
  right: calc(1.4 * var(--crfs));
  top: 50%;
  width: calc(0.6 * var(--crfs));
  height: calc(0.9 * var(--crfs));
  background: url('../img/application_icn.png') center/contain no-repeat;
  margin-top: calc(-0.4 * var(--crfs));
}
.section-top-application .application-button::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(254, 236, 101)), color-stop(80%, rgb(221, 169, 17)));
  background: linear-gradient(180deg, rgb(254, 236, 101) 0%, rgb(221, 169, 17) 80%);
  opacity: 0;
  z-index: -1;
}

.is-mac.is-safari .section-top-application .application-button::after {
  border-radius: calc(0.5 * var(--crfs));
}
.section-top-application .application-button:hover::after {
  opacity: 1;
}

.section-top-prize {
  background: url('../img/prize_bg.jpg') top center/cover no-repeat;
  padding: calc(11.7 * var(--crfs)) calc(2 * var(--crfs)) calc(13 * var(--crfs));
  position: relative;
  overflow: hidden;
}
.section-top-prize .campaign-end  {
  position: absolute;
  left: 0;
  top: calc(5.2 * var(--crfs));
  width: 100%;
}
.is-tablet .section-top-prize {
  margin-bottom: -1px;
}
.section-top-prize .prize-decor {
  position: absolute;
  content: '';
  right: -1px;
  bottom: calc(8.4 * var(--crfs));
  width: 95.52083333%;
  height: auto;
  background: url('../img/prize_decor_02.png') center/contain no-repeat;
  aspect-ratio: 717/121;
}
.section-top-prize .prize-title {
  width: calc(16.1 * var(--crfs));
  margin: 0 auto calc(6.4 * var(--crfs));
}
.section-top-prize ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.section-top-prize .prize-item {
  border-radius: calc(1.5 * var(--crfs));
  background: url('../img/prize_bg_02.webp') top left/100% auto repeat-y;
  position: relative;
  padding: calc(5.2 * var(--crfs)) calc(0.9 * var(--crfs)) calc(4.7 * var(--crfs));
  margin-bottom: calc(9.8 * var(--crfs));
}
.section-top-prize .prize-item-head {
  width: calc(7.1 * var(--crfs));
  position: absolute;
  left: 50%;
  margin-left: calc(-3.5 * var(--crfs));
  top: calc(-3 * var(--crfs));
}
.section-top-prize .prize-item-image {
  max-width: calc(31.7 * var(--crfs));
  margin: 0 auto;
}
.section-top-prize .prize-item-note {
  font-size: calc(1 * var(--crfs));
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
  padding: 0 calc(0.6 * var(--crfs));
  max-width: calc(31.7 * var(--crfs));
  margin: calc(1.5 * var(--crfs)) auto 0;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  color: #333;
}
.section-top-prize .sub-list {
  font-size: calc(1 * var(--crfs));
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.9;
  padding: 0 0 0 calc(0.6 * var(--crfs));
  max-width: calc(31.7 * var(--crfs));
  margin: 0 auto calc(1.5 * var(--crfs));
  color: #333;
}


.section-top-prize .sub-list span {
  padding-left: 1em;
  display: inline-block;
}
.section-top-prize .prize-item-decor {
  width: calc(24.2 * var(--crfs));
  margin: calc(1.8 * var(--crfs)) auto calc(1 * var(--crfs));
}


.section-top-prize .prize-item-label {
  position: absolute;
  width: calc(22.6 * var(--crfs));
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: calc(-2.8 * var(--crfs));
}
.section-top-prize .text-note {
  color: #e60012;
  font-weight: bold;
  font-size: calc(1 * var(--crfs));
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding-left: calc(2.4 * var(--crfs));
  text-indent: calc(-1 * var(--crfs));
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  max-width: calc(31.7 * var(--crfs));
  margin: calc(1.1 * var(--crfs)) auto 0;
}
.section-top-prize .prize-cooperate {
  position: absolute;
  bottom: calc(1.6 * var(--crfs));
  right: calc(1.2 * var(--crfs));
  font-size: calc(0.9 * var(--crfs));
  color: #fff;
}

.section-top-method {
  background: url('../img/method_bg.jpg') top center/cover no-repeat;
  padding: calc(3.4 * var(--crfs)) 0 calc(4.2 * var(--crfs));
}
.section-top-method .method-wrapper {
  max-width: calc(33.5 * var(--crfs));
  margin: 0 auto;
}


.section-top-method .block-method {
  margin-bottom: calc(3.9 * var(--crfs));
}
.section-top-method .block-shipping {
  margin-bottom: calc(3.8 * var(--crfs));
}
.section-top-method .block-shipping .method-inner {
  padding-top: calc(1.4 * var(--crfs));
}
.section-top-method .block-shipping .detail-head {
  margin-top: calc(0.8 * var(--crfs));
}
.section-top-method .block-term .method-detail {
  margin-right: calc(-1 * var(--crfs));
  margin-left: calc(0.2 * var(--crfs));
  padding-right: calc(0.8 * var(--crfs));
}
.section-top-method .method-title {
  width: calc(21.1 * var(--crfs));
  margin: 0 auto calc(2.3 * var(--crfs));
}
.section-top-method .method-text {
  width: calc(33.5 * var(--crfs));
  margin: 0 auto calc(2.4 * var(--crfs));
}
.section-top-method .method-inner {
  background: #fff;
  border-radius: calc(1.5 * var(--crfs));
  padding: calc(2.9 * var(--crfs)) calc(2 * var(--crfs)) calc(0.1 * var(--crfs));
}
.section-top-method .method-list {
  list-style-type: none;
  padding: 0;
  margin: 0 0 calc(2 * var(--crfs));
  font-weight: bold;
  font-size: calc(1.2 * var(--crfs));
  line-height: 1.5833333333;
}
.section-top-method .method-item {
  border-bottom: calc(0.1 * var(--crfs)) solid #cecece;
  margin-bottom: calc(1.3 * var(--crfs));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0 calc(1.1 * var(--crfs)) calc(1.1 * var(--crfs));
}
.section-top-method .method-item-number {
  color: #fff;
  font-size: calc(1.3 * var(--crfs));
  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;
  text-align: center;
  width: calc(1.5 * var(--crfs));
  height: calc(1.5 * var(--crfs));
  font-weight: 500;
  background: #e60012;
  border-radius: 50%;
  margin-right: calc(0.8 * var(--crfs));
  margin-top: calc(0.1 * var(--crfs));
}
.is-mac.is-safari .section-top-method .method-item-number {
  padding-top: 1px;
}
.section-top-method .method-item-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #333;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
}
.section-top-method .method-image {
  margin-bottom: calc(3 * var(--crfs));
}
.section-top-method .detail-head {
  text-align: center;
  font-weight: bold;
  color: #333;
  font-size: calc(1.3 * var(--crfs));
  letter-spacing: 0.1em;
  margin-bottom: calc(0.36 * var(--crfs));
}
.section-top-method .method-detail {
  overflow: auto;
  max-height: calc(21 * var(--crfs));
  margin-right: calc(-0.7 * var(--crfs));
  margin-left: calc(0.6 * var(--crfs));
}
.section-top-method .method-detail::-webkit-scrollbar {
  width: calc(0.5 * var(--crfs));
}
.section-top-method .method-detail::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: calc(0.5 * var(--crfs));
}
.section-top-method .detail-table {
  margin-bottom: calc(1 * var(--crfs));
}
.section-top-method .detail-table th,
.section-top-method .detail-table td {
  padding: calc(0.5 * var(--crfs)) calc(0.4 * var(--crfs));
  font-size: calc(1.2 * var(--crfs));
  font-weight: bold;
  vertical-align: middle;
}
.section-top-method .detail-table th {
  width: calc(22 * var(--crfs));
  border-right: calc(0.1 * var(--crfs)) solid #e60012;
  text-align: left;
  line-height: 1.2;
  color: #333;
  padding-left: calc(0.8 * var(--crfs));
  letter-spacing: 0.1em;
}

.section-top-method .detail-table tr {
  border-bottom: calc(0.1 * var(--crfs)) solid #e60012;
}
.section-top-method .detail-table tr:first-child th {
  border-right: none;
}
.section-top-method .detail-table td {
  text-align: center;
  color: #e60012;
}
.section-top-method .detail-table td.is-head {
  font-size: calc(1 * var(--crfs));
  line-height: 1.2;
  text-align: left;
  padding-bottom: calc(0.3 * var(--crfs));
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
}
.section-top-method .shipping-note {
  margin-top: calc(1.4 * var(--crfs));
  font-size: calc(1 * var(--crfs));
  font-weight: bold;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding-left: calc(1.4 * var(--crfs));
  text-indent: calc(-1.2 * var(--crfs));
  margin-right: calc(-0.8 * var(--crfs));
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
}
.section-top-method .detail-text {
  font-size: calc(1.2 * var(--crfs));
  font-weight: 500;
  line-height: 1.8333333333;
  margin-top: calc(1.4 * var(--crfs));
  margin-bottom: calc(1 * var(--crfs));
}

.section-top-method .detail-text a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section-top-method .detail-text a.link-custom {
  text-decoration: none;
  transition: all 0.3s ease;
}

.section-top-method .detail-text a.link-custom:hover {
  opacity: 0.8;
}

.section-top-method .detail-text a:hover {
  text-decoration: none;
}

.section-top-method .term-banner {
  width: 100%;
  height: calc(14.3 * var(--crfs));
  margin-top: calc(5 * var(--crfs));
  display: block;
  background: url('../img/method_bnr.jpg') center/cover no-repeat;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.section-top-method .term-banner::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.2);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0;
}
.section-top-method .term-banner:hover::before {
  opacity: 1;
}

.button-menu {
  position: absolute;
  right: 0;
  top: 0;
  width: calc(5.5 * var(--crfs));
  height: calc(5.3 * var(--crfs));
  background: #1d2088;
  z-index: 100;
  cursor: pointer;
}

.button-menu span {
  display: block;
  position: absolute;
  transition: all 0.3s ease;
  width: calc(3 * var(--crfs));
  height: calc(0.2 * var(--crfs));
  border-top: calc(0.2 * var(--crfs)) solid #fff;
  left: 50%;
  transform: translateX(-50%);
}

.button-menu span:nth-child(1) {
  top: calc(1.4 * var(--crfs));
}

.button-menu span:nth-child(2) {
  top: calc(2.6 * var(--crfs));
}

.button-menu span:nth-child(3) {
  top: calc(3.8 * var(--crfs));
}

.button-menu.is-active span:nth-child(1) {
  transform: translateX(-50%) rotate(45deg);
  top: calc(2.6 * var(--crfs));
  width: calc(4 * var(--crfs));
}

.button-menu.is-active span:nth-child(2) {
  opacity: 0;
}

.button-menu.is-active span:nth-child(3) {
  transform: translateX(-50%) rotate(-45deg);
  top: calc(2.6 * var(--crfs));
  width: calc(4 * var(--crfs));
}

.navigation {
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 99;
  padding: calc(7 * var(--crfs)) calc(5.9 * var(--crfs)) calc(20 * var(--crfs));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s, background-color 0.5s, visibility 0.5s;
}

.navigation .navigation-menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.navigation .navigation-menu .menu-item {
  border-bottom: 1px solid #cecece;
  padding: calc(1 * var(--crfs)) 0;
}

.navigation .navigation-menu .menu-item:nth-child(1) {
  border-top: 1px solid #cecece;
}
.navigation .navigation-menu .menu-item-link {
  display: inline-block;
}
.navigation .navigation-menu .menu-item-link:hover .is-default {
  opacity: 0;
}
.navigation .navigation-menu .menu-item-link:hover .is-hover {
  opacity: 1;
}
.navigation .navigation-menu .menu-item-image {
  position: relative;
  top: calc(0.3 * var(--crfs));
  height: calc(1.4 * var(--crfs));
}
.navigation .navigation-menu .menu-item-image.is-long {
  height: calc(3.5 * var(--crfs));
}
.navigation .navigation-menu .menu-item-image img {
  width: auto;
  height: 100%;
  display: block;
  transition: all 0.3s ease;
}
.navigation .navigation-menu .menu-item-image img.is-hover {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}

.navigation.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

body.is-fixed .button-menu,
body.is-fixed .navigation {
  position: fixed;
}

@media print {
  .keyvisual-main {
    height: 100% !important;
  }
  .main-content {
    margin: 0 auto !important;
  }
}
/*# sourceMappingURL=top.css.map */
