@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html[lang=ja] {
  font-family: "Noto Sans JP", sans-serif;
}

html[lang=en],
html[lang=es],
html[lang=fr] {
  font-family: "Noto Sans", sans-serif;
}

html[lang=zh-cmn-Hant] {
  font-family: "Noto Sans TC", sans-serif;
}

body {
  font-weight: 400;
  color: #030303;
  background: url("../images/global/bg.png") repeat;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 1;
}
@media screen and (max-width: 640px) {
  a:hover {
    opacity: 0.8;
  }
}

.sponly {
  display: none;
}
@media screen and (max-width: 640px) {
  .sponly {
    display: block;
  }
}

.pconly {
  display: block;
}
@media screen and (max-width: 640px) {
  .pconly {
    display: none;
  }
}

@keyframes poyon {
  0% {
    transform: scale(0.5);
  }
  40% {
    transform: scale(1.05); /* ちょっとオーバーシュート */
  }
  70% {
    transform: scale(0.95); /* 下がる */
  }
  100% {
    transform: scale(1); /* 安定 */
  }
}
.layout-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.layout-page-top {
  position: fixed;
  right: 0.9375rem;
  bottom: 0.9375rem;
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
}

.txt-white {
  color: #ffffff;
}

.txt-yellow {
  color: #ffde00;
}

.txt-orange {
  color: #ff9600;
}

.txt-blue1 {
  color: #7cdcee;
}

.txt-blue2 {
  color: #2fc7e3;
}

.txt-shadow {
  position: relative;
  font-weight: bold;
  text-shadow: 1px 0 0 rgb(33, 33, 33), -1px 0 0 rgb(33, 33, 33), 0 1px 0 rgb(33, 33, 33), 0 -1px 0 rgb(33, 33, 33), 1px 1px 0 rgb(33, 33, 33), -1px -1px 0 rgb(33, 33, 33), 1px -1px 0 rgb(33, 33, 33), -1px 1px 0 rgb(33, 33, 33), 0 3px 0 rgb(33, 33, 33);
}
.txt-shadow::after {
  content: attr(data-text);
  position: absolute;
  top: 3px;
  left: 0;
  color: #030303;
  z-index: -1;
  white-space: nowrap;
}
@media screen and (max-width: 640px) {
  .txt-shadow {
    text-shadow: 2px 0 0 rgb(33, 33, 33), -2px 0 0 rgb(33, 33, 33), 0 2px 0 rgb(33, 33, 33), 0 -2px 0 rgb(33, 33, 33), 2px 2px 0 rgb(33, 33, 33), -2px -2px 0 rgb(33, 33, 33), 2px -2px 0 rgb(33, 33, 33), -2px 2px 0 rgb(33, 33, 33), 0 4px 0 rgb(33, 33, 33);
  }
  .txt-shadow::after {
    top: 4px;
  }
}

.txt-outline {
  font-weight: bold;
  text-shadow: -1px -1px 0 #030303, 1px -1px 0 #030303, -1px 1px 0 #030303, 1px 1px 0 #030303;
}
@media screen and (max-width: 640px) {
  .txt-outline {
    txt-shadow: -2px -2px 0 #030303, 2px -2px 0 #030303, -2px 2px 0 #030303, 2px 2px 0 #030303;
  }
}

.font-outfit {
  font-family: "Outfit", sans-serif;
}

.line-bg-orange1 {
  background: linear-gradient(transparent 10%, #ffab00 10%);
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.line-bg-orange1.txt-shadow {
  padding: 0 0.3em;
}

.line-bg-orange2 {
  background: linear-gradient(transparent 10%, #ff9600 10%);
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.line-bg-orange2.txt-shadow {
  padding: 0 0.3em;
}

.line-bg-yellow {
  background: linear-gradient(transparent 10%, #ffde00 10%);
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.line-bg-yellow.txt-shadow {
  padding: 0 0.3em;
}

.line-bg-blue {
  background: linear-gradient(transparent 10%, #2fc7e3 10%);
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.line-bg-blue.txt-shadow {
  padding: 0 0.3em;
}

.line-bg-white {
  background: linear-gradient(transparent 10%, #ffffff 10%);
  display: inline;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.line-bg-white.txt-shadow {
  padding: 0 0.3em;
}

.bg-white {
  background-color: #ffffff;
}

.bg-yellow {
  background-color: #ffde00;
}

.bg-orange {
  background-color: #ffab00;
}

.bg-blue1 {
  background-color: #7cdcee;
}

.bg-blue2 {
  background-color: #2fc7e3;
}

.title-area {
  position: relative;
}
@media screen and (max-width: 640px) {
  .title-area {
    overflow: hidden;
  }
}
.title-area .title-box {
  text-align: center;
  position: relative;
  padding: 2.5625rem 0 2.25rem;
  background: none;
}
@media screen and (max-width: 640px) {
  .title-area .title-box {
    padding: 2.5625rem 0 1.6875rem;
  }
}
.title-area .title-box::before {
  content: "";
  display: block;
  position: absolute;
  border: solid 1px #030303;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  width: 100%;
  height: 100%;
  top: 0;
  transform: translateY(var(--beforeY, -50px));
  opacity: var(--beforeOpacity, 0);
  will-change: transform, opacity;
}
.title-area .title-box.bg-orange::before {
  background: #ffab00;
}
.title-area .title-box.bg-white::before {
  background: #ffffff;
}
.title-area .title-box.bg-blue2::before {
  background: #2fc7e3;
}
.title-area .title-box h2 {
  z-index: 2;
  position: relative;
  opacity: 0;
}
.title-area .title-box h2 .title-main-en {
  font-size: 3.25rem;
  line-height: 0.75;
  letter-spacing: 0.04em;
  display: block;
}
.title-area .title-box h2 .title-sub-en {
  font-size: 0.875rem;
  font-weight: 400;
  display: block;
  margin-top: 0.3125rem;
}
.title-area .title-box h2 .title-main-lang {
  font-size: 1.5rem;
  margin-top: 0.4375rem;
  display: block;
}
@media screen and (max-width: 640px) {
  .title-area .title-box h2 .title-main-lang {
    font-size: 1.875rem;
  }
}
.title-area .inner {
  position: absolute;
  width: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%);
}
.title-area .inner .title-deco {
  position: absolute;
  width: 100%;
  top: 0;
}
.title-area .inner .title-deco div {
  position: absolute;
}
.title-area .inner .title-deco .title-deco01 {
  top: 11.25rem;
  left: -3.6875rem;
  width: 4.5625rem;
}
@media screen and (max-width: 640px) {
  .title-area .inner .title-deco .title-deco01 {
    display: none;
  }
}
.title-area .inner .title-deco .title-deco02 {
  top: 2.125rem;
  right: -1.5625rem;
  width: 4.5625rem;
}
@media screen and (max-width: 640px) {
  .title-area .inner .title-deco .title-deco02 {
    top: 0.3125rem;
    right: -0.0625rem;
    width: 3.3125rem;
  }
}
.title-area .inner .title-deco .title-deco03 {
  top: 8.3125rem;
  right: -3.75rem;
  width: 8.25rem;
}
@media screen and (max-width: 640px) {
  .title-area .inner .title-deco .title-deco03 {
    top: 3.625rem;
    right: -1rem;
    width: 5.875rem;
  }
}
.title-area .inner .title-deco .title-deco04 {
  top: -0.8125rem;
  left: -1.625rem;
  width: 7.1875rem;
}
@media screen and (max-width: 640px) {
  .title-area .inner .title-deco .title-deco04 {
    top: -0.625rem;
    left: 0.0625rem;
    width: 5.1875rem;
  }
}
.title-area .inner .title-deco .title-deco05 {
  top: 3.75rem;
  left: 4.75rem;
  width: 4.5625rem;
}
@media screen and (max-width: 640px) {
  .title-area .inner .title-deco .title-deco05 {
    top: 5.375rem;
    left: 0.4375rem;
    width: 3.1875rem;
  }
}
.title-area .inner .title-deco .title-deco06 {
  top: -0.375rem;
  right: 4.375rem;
  width: 4.5625rem;
}
@media screen and (max-width: 640px) {
  .title-area .inner .title-deco .title-deco06 {
    display: none;
  }
}

.txt-loop {
  overflow: hidden;
  white-space: nowrap;
  line-height: 0.75;
}

.txt-loop-inner {
  display: inline-block;
  animation: animate-txt-loop 90s linear infinite;
}

.txt-loop-content {
  display: inline-block;
  font-size: 4.375rem;
  white-space: nowrap;
}
@media screen and (max-width: 640px) {
  .txt-loop-content {
    font-size: 3.75rem;
  }
}
.txt-loop-content > * {
  display: inline-block;
}

/* アニメーション */
@keyframes animate-txt-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.btn {
  position: relative;
  max-width: 46.25rem;
  width: 90%;
  text-align: center;
  line-height: 1;
  font-size: 2rem;
  background: #ff3366;
  margin: 0 auto;
  padding: 1.25rem 0 1.5rem;
  border: solid 1px #030303;
  border-radius: 2.5rem;
  box-shadow: 0 0.4375rem 0 rgb(0, 0, 0);
  transition: all 0.3s ease;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .btn {
    font-size: 2.25rem;
    width: 88%;
    line-height: 1.2;
    border-radius: 9999px;
  }
}
.btn a {
  position: relative;
  color: #fff;
  display: block;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #ffab00;
  transition: all 0.35s ease;
}
.btn::after {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  content: "";
  color: #030303;
  top: 50%;
  right: 1.125rem;
  left: inherit;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-shadow: none;
  z-index: 1;
  background: url("../images/global/btn_arrow.png") no-repeat center center #ffffff;
  background-size: 1.125rem auto;
}
@media screen and (max-width: 640px) {
  .btn::after {
    right: 1.375rem;
    width: 2.8125rem;
    height: 2.8125rem;
    font-size: 1.875rem;
    background-size: 1.125rem auto;
  }
}
.btn:hover a {
  opacity: 1;
}
.btn:hover::before {
  width: 100%;
}
@media screen and (max-width: 640px) {
  .btn:hover::before {
    display: none;
  }
}
.btn:hover::after {
  transform: translateY(-50%) scale(1.1);
}
@media screen and (max-width: 640px) {
  .btn:hover::after {
    transform: translateY(-50%);
  }
}

.pagetop {
  padding-top: 0.9375rem;
  position: fixed;
  width: 3.125rem;
  height: 3.125rem;
  cursor: pointer;
  right: 1.375rem;
  bottom: 3.125rem;
  z-index: 10;
}
@media screen and (max-width: 640px) {
  .pagetop {
    width: 4.25rem;
    height: 4.25rem;
  }
}
.pagetop img {
  width: 100%;
  height: auto;
}

.js-pagetop {
  display: none;
}

.header {
  height: 3.1875rem;
  background-color: #ffffff;
  border-bottom: solid 1px #030303;
}
@media screen and (max-width: 1300px) {
  .header {
    height: 5rem;
  }
}
.header .header__inner {
  padding-left: 2.4375rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1300px) {
  .header .header__inner {
    padding-left: 1.0625rem;
  }
}
.header .header__inner .header__logo {
  height: inherit;
  font-size: 1.125rem;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
}
@media screen and (max-width: 1300px) {
  .header .header__inner .header__logo {
    font-size: 1.3125rem;
  }
}
.header .header__inner .header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
  letter-spacing: 0.02em;
}
.header .header__inner .header__nav {
  position: relative;
  height: inherit;
  display: block;
  margin-right: 3.4375rem;
  margin-top: 0.625rem;
}
@media screen and (max-width: 1300px) {
  .header .header__inner .header__nav {
    display: none;
  }
}
.header .header__inner .header__nav-list {
  display: flex;
  height: inherit;
  gap: 2.125rem;
}
.header .header__inner .header__nav-item {
  height: inherit;
  display: flex;
  align-items: center;
}
.header .header__inner .header__nav-item > a {
  display: flex;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 4px;
  padding: 0.4375rem 0.9375rem;
}
.header .header__inner .header__nav-item > a:hover {
  background: #ffab00;
}
.header .header__inner .header__nav-item.header__nav-item--language {
  margin-left: 0.9375rem;
  position: relative;
}
.header .header__inner .header__nav-item.header__nav-item--language p {
  padding: 0.375rem 0.9375rem;
  margin-top: -0.1875rem;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  background: #030303;
  color: #ffffff;
  transition: 0.3s;
  border: solid 1px #030303;
  border-radius: 4px;
}
.header .header__inner .header__nav-item.header__nav-item--language p img {
  filter: brightness(0) invert(1);
  margin-right: 0.8125rem;
  margin-left: -0.25rem;
}
.header .header__inner .header__nav-modal-wrap {
  height: inherit;
  display: flex;
  align-items: center;
}
.header .header__inner .header__nav-toggle + .header__nav-label img {
  width: 0.9375rem;
}
.header .header__inner .header__nav-toggle:checked + .header__nav-label p {
  background: #ffffff;
  color: #030303;
}
.header .header__inner .header__nav-toggle:checked + .header__nav-label p img {
  filter: brightness(1) invert(0);
}
.header .header__inner .header__nav-toggle:checked + label + .header__nav-modal {
  max-height: 10.0625rem;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.header .header__inner .header__nav-modal {
  position: absolute;
  top: 1.84375rem;
  width: 100%;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, visibility 0s linear 0.4s;
}
.header .header__inner .header__nav-modal-item {
  margin-bottom: 0.15625rem;
}
.header .header__inner .header__nav-modal-item a {
  padding: 0.4375rem 0;
  position: relative;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  background: #030303;
  border: solid 1px #030303;
  text-align: center;
  border-radius: 4px;
}
.header .header__inner .header__nav-modal-item a:hover {
  color: #030303;
  background: #ffffff;
}
.header .header__inner .sponly {
  display: none;
}
@media screen and (max-width: 1300px) {
  .header .header__inner .sponly {
    display: flex;
  }
}
.header .header__inner .sponly .lang-btn .header-drawer-accordion {
  background: none;
  border: none;
  margin: 1.25rem 1.8125rem;
}
.header .header__inner .sponly .lang-btn .header-drawer-accordion img {
  width: 2.4375rem;
}
.header .header__inner .sponly .header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 5rem;
  height: inherit;
  background-color: #ffab00;
  cursor: pointer;
  transition: 0.3s;
  display: block;
  border-bottom: solid 1px #030303;
}
.header .header__inner .sponly span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 2.8125rem;
  height: 0.125rem;
  background-color: #030303;
  transition: 0.5s;
}
.header .header__inner .sponly span:nth-of-type(1) {
  top: -0.625rem;
}
.header .header__inner .sponly span:nth-of-type(2) {
  top: 0;
}
.header .header__inner .sponly span:nth-of-type(3) {
  top: 0.625rem;
}
.header .header__inner .sponly .is-open span:nth-of-type(1) {
  top: 0.125rem;
  transform: translateX(-50%) rotate(15deg);
}
.header .header__inner .sponly .is-open span:nth-of-type(2) {
  opacity: 0;
}
.header .header__inner .sponly .is-open span:nth-of-type(3) {
  top: -0.125rem;
  transform: translateX(-50%) rotate(-15deg);
}
.header .header__inner .sponly .header__drawer {
  margin-top: 4rem;
  padding-bottom: 6.875rem;
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url("../images/top/drawer_bg.png") repeat;
  overflow-y: scroll;
  scrollbar-width: none;
  border-top: solid 1px #030303;
}
@media screen and (max-width: 1300px) {
  .header .header__inner .sponly .header__drawer {
    top: 100%;
    margin: 0;
  }
}
.header .header__inner .sponly .header__drawer::-webkit-scrollbar {
  display: none;
}
.header .header__inner .sponly .header__drawer .drawer-deco {
  z-index: 1;
  position: absolute;
  width: 100%;
}
.header .header__inner .sponly .header__drawer .drawer-deco div {
  position: absolute;
}
.header .header__inner .sponly .header__drawer .drawer-deco .drawer-deco01 {
  top: 8.9375rem;
  left: -0.25rem;
  width: 3.1875rem;
}
.header .header__inner .sponly .header__drawer .drawer-deco .drawer-deco02 {
  top: 14.5rem;
  left: 1.6875rem;
  width: 3.3125rem;
}
.header .header__inner .sponly .header__drawer .drawer-deco .drawer-deco03 {
  top: 17.1875rem;
  right: -0.0625rem;
  width: 5.875rem;
}
.header .header__inner .sponly .header__drawer .drawer-deco .drawer-deco04 {
  top: 1.0625rem;
  left: 0.125rem;
  width: 5.1875rem;
}
.header .header__inner .sponly .header__drawer .drawer-deco .drawer-deco05 {
  top: 8.9375rem;
  left: -0.25rem;
  width: 3.1875rem;
}
.header .header__inner .sponly .header__drawer .drawer-deco .drawer-deco06 {
  top: 30rem;
  right: 1.25rem;
  width: 5.1875rem;
}
.header .header__inner .sponly .header__nav-modal-item {
  margin-bottom: 0;
}
.header .header__inner .sponly .header__nav-modal-item a {
  background: #ffffff;
  color: #030303;
  border-radius: 0;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: solid 1px #030303;
  font-size: 1.875rem;
  padding: 1.75rem 0;
}
.header .header__inner .sponly .header__drawer-item {
  border-bottom: 1px solid #ffffff;
}
.header .header__inner .sponly .header__drawer-item > a {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 1.6875rem 2rem 1.775rem;
  display: block;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  border-bottom: solid 1px #030303;
  text-align: center;
}
.header .header__inner .sponly .header__drawer-accordion-list {
  padding-bottom: 0.625rem;
  display: none;
}
.header .header__inner .sponly .header__drawer-accordion-list a {
  padding: 0.625rem 2rem;
  display: block;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.05em;
}

#kv {
  background: url(../images/global/kv-bg-after.png) no-repeat top 2.1428571429vw center/100%, url(../images/global/kv-bg-before.png) repeat;
  position: relative;
  padding: 2.1428571429vw 0 2.5714285714vw;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1400/690;
}
@media screen and (max-width: 640px) {
  #kv {
    background: url(../images/global/kv-bg-after-sp.png) no-repeat top 5.15625vw center/100%, url(../images/global/kv-bg-before.png) repeat;
    padding: 2.0625rem 0 1.9375rem;
    aspect-ratio: 640/890;
  }
}
#kv .inner {
  width: calc(100% - 42.7142857143vw);
  margin: 0 auto;
  padding: 10vw 4.7142857143vw 0;
  display: block;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 640px) {
  #kv .inner {
    min-width: auto;
    width: 27.625rem;
    height: 50.125rem;
    padding: 1.375rem perm(78) 0;
  }
}
#kv .inner h1 img {
  width: 100%;
}
@media screen and (max-width: 640px) {
  #kv .inner h1 img {
    display: block;
    margin: 0 auto;
  }
}
#kv.main_kv {
  margin-top: 50px;
}
@media screen and (max-width: 640px) {
  #kv.main_kv {
    margin-top: 5rem;
  }
}
#kv.main_kv .inner {
  padding: 3.5714285714vw 0 0;
}
@media screen and (max-width: 640px) {
  #kv.main_kv .inner {
    padding: 1.375rem 0 0;
  }
}
#kv.main_kv .inner .kv_box {
  display: flex;
  flex-direction: column;
  height: calc(100% - 0.5714285714vw);
  border-bottom-left-radius: 1.4285714286vw;
  border-bottom-right-radius: 1.4285714286vw;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  #kv.main_kv .inner .kv_box {
    height: calc(100% - 10px);
    overflow: visible;
    z-index: 1;
    position: relative;
  }
}
#kv.main_kv .inner .kv_box h1 {
  flex-shrink: 0;
  margin: 0 4.7142857143vw 3.5714285714vw;
  opacity: 0;
}
@media screen and (max-width: 640px) {
  #kv.main_kv .inner .kv_box h1 {
    padding: 0.5625rem 3rem 2.875rem;
    margin: 0 1.875rem 1.3125rem;
  }
}
#kv.main_kv .inner .kv_box .read {
  text-align: center;
  flex: 1;
  font-size: 2vw;
  padding-top: 1vw;
  font-weight: 800;
  aspect-ratio: 89/23;
  font-feature-settings: "palt";
  opacity: 0;
}
@media screen and (max-width: 640px) {
  #kv.main_kv .inner .kv_box .read {
    padding-top: 0;
    font-size: 2rem;
    background: none;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    position: relative;
    line-height: 1.3;
  }
}
#kv.main_kv .kv-deco {
  position: absolute;
  top: -1.4285714286vw;
  width: 100%;
}
#kv.main_kv .kv-deco div {
  position: absolute;
  opacity: 0;
}
#kv.main_kv .kv-deco .kv-deco01 {
  top: 11.9285714286vw;
  left: -20.1428571429vw;
  width: 5.2142857143vw;
}
@media screen and (max-width: 640px) {
  #kv.main_kv .kv-deco .kv-deco01 {
    top: 38.3125rem;
    left: -7.1875rem;
    width: 4.5625rem;
  }
}
#kv.main_kv .kv-deco .kv-deco02 {
  top: 27.8571428571vw;
  right: -17.5714285714vw;
  width: 5.2142857143vw;
}
@media screen and (max-width: 640px) {
  #kv.main_kv .kv-deco .kv-deco02 {
    top: 19.0625rem;
    right: -7.3125rem;
    width: 4.5625rem;
  }
}
#kv.main_kv .kv-deco .kv-deco03 {
  top: 35vw;
  right: -20vw;
  width: 9.4285714286vw;
}
@media screen and (max-width: 640px) {
  #kv.main_kv .kv-deco .kv-deco03 {
    top: 27.6875rem;
    right: -7.5625rem;
    width: 8.25rem;
  }
}
#kv.main_kv .kv-deco .kv-deco04 {
  top: 0;
  left: -17.7857142857vw;
  width: 8.2142857143vw;
}
@media screen and (max-width: 640px) {
  #kv.main_kv .kv-deco .kv-deco04 {
    top: -0.625rem;
    left: -4.75rem;
    width: 7.1875rem;
  }
}
#kv.main_kv .kv-deco .kv-deco05 {
  top: 5vw;
  left: -10.5vw;
  width: 5.2142857143vw;
}
@media screen and (max-width: 640px) {
  #kv.main_kv .kv-deco .kv-deco05 {
    top: 10.125rem;
    left: -6.625rem;
    width: 4.3125rem;
  }
}
#kv.main_kv .kv-deco .kv-deco06 {
  top: 25vw;
  right: -10.7857142857vw;
  width: 5.2142857143vw;
}
@media screen and (max-width: 640px) {
  #kv.main_kv .kv-deco .kv-deco06 {
    top: 43.1875rem;
    right: -7.1875rem;
    width: 4.5625rem;
  }
}
#kv.main_kv .kv-deco .kv-deco07 {
  top: 19.2142857143vw;
  left: -10.4285714286vw;
  width: 5vw;
}
@media screen and (max-width: 640px) {
  #kv.main_kv .kv-deco .kv-deco07 {
    display: none;
  }
}
#kv.main_kv .kv-deco .kv-deco08 {
  top: 34.8571428571vw;
  left: -11.2142857143vw;
  width: 10.6428571429vw;
}
@media screen and (max-width: 640px) {
  #kv.main_kv .kv-deco .kv-deco08 {
    top: 27.5625rem;
    left: -9.875rem;
    width: 9.0625rem;
  }
}
#kv.main_kv .kv-deco .kv-deco09 {
  top: 0;
  right: -19vw;
  width: 18.1428571429vw;
}
@media screen and (max-width: 640px) {
  #kv.main_kv .kv-deco .kv-deco09 {
    top: -0.0625rem;
    right: -16.9375rem;
    width: 15.75rem;
  }
}
#kv.main_kv .kv-deco .kv-deco10 {
  top: 16.5714285714vw;
  right: -11.2142857143vw;
  width: 6vw;
}
@media screen and (max-width: 640px) {
  #kv.main_kv .kv-deco .kv-deco10 {
    top: 13.25rem;
    right: -7.4375rem;
    width: 5.0625rem;
  }
}
#kv.main_kv .kv-deco .kv-deco11 {
  top: 32.7142857143vw;
  left: -17.1428571429vw;
  width: 4.2142857143vw;
}
@media screen and (max-width: 640px) {
  #kv.main_kv .kv-deco .kv-deco11 {
    top: 20.4375rem;
    left: -5.5rem;
    width: 3.5625rem;
  }
}

html[lang=en] #kv {
  aspect-ratio: 1400/690;
}
@media screen and (max-width: 640px) {
  html[lang=en] #kv {
    aspect-ratio: 640/850;
  }
}

html[lang=ja] #kv,
html[lang=zh-cmn-Hant] #kv {
  aspect-ratio: 1400/690;
}
@media screen and (max-width: 640px) {
  html[lang=ja] #kv,
  html[lang=zh-cmn-Hant] #kv {
    aspect-ratio: 640/850;
  }
}
html[lang=ja] #kv.main_kv .inner .kv_box .read,
html[lang=zh-cmn-Hant] #kv.main_kv .inner .kv_box .read {
  padding-top: 4.0714285714vw;
}

.contest-intro {
  padding: 50px 0 26px;
}
@media screen and (max-width: 640px) {
  .contest-intro {
    padding-bottom: 16px;
  }
}
.contest-intro .inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 105px;
}
@media screen and (max-width: 640px) {
  .contest-intro .inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 42px;
  }
}
@media screen and (max-width: 640px) {
  .contest-intro .contest-intro__logo img {
    width: 260px;
  }
}
.contest-intro .contest-intro__text {
  font-size: 1.125rem;
  font-weight: 800;
}
@media screen and (max-width: 640px) {
  .contest-intro .contest-intro__text {
    font-size: 22px;
  }
}
.contest-intro .contest-intro__text p {
  margin-bottom: 24px;
  font-feature-settings: "palt";
}
@media screen and (max-width: 640px) {
  .contest-intro .contest-intro__text p {
    line-height: 1.8;
  }
}
.contest-intro .contest-intro__text p strong {
  font-size: 1.5rem;
  background: #fff000;
}
@media screen and (max-width: 640px) {
  .contest-intro .contest-intro__text p strong {
    font-size: 26px;
    line-height: 1.6;
  }
}

.contest-comingsoon {
  padding: 50px 0 19px;
  margin-bottom: 70px;
  border-top: solid 1px #000000;
  border-bottom: solid 1px #000000;
  background: #fff;
}
@media screen and (max-width: 640px) {
  .contest-comingsoon {
    padding: 48px 0 25px;
  }
}
.contest-comingsoon .inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.contest-comingsoon .contest-comingsoon__heading img {
  display: block;
  margin: 0 auto 35px;
}
@media screen and (max-width: 640px) {
  .contest-comingsoon .contest-comingsoon__heading img {
    margin: 0 auto 33px;
  }
}
.contest-comingsoon .contest-comingsoon__text {
  font-size: 1.125rem;
  font-weight: 800;
}
@media screen and (max-width: 640px) {
  .contest-comingsoon .contest-comingsoon__text {
    font-size: 22px;
  }
}
.contest-comingsoon .contest-comingsoon__text p {
  margin-bottom: 24px;
  font-feature-settings: "palt";
}
@media screen and (max-width: 640px) {
  .contest-comingsoon .contest-comingsoon__text p {
    line-height: 1.3;
  }
}
.contest-comingsoon .contest-comingsoon__text p strong {
  font-size: 1.5rem;
  background: #fff000;
}
@media screen and (max-width: 640px) {
  .contest-comingsoon .contest-comingsoon__text p strong {
    font-size: 26px;
    line-height: 1.5;
  }
}

#news {
  border-top: solid 1px #030303;
  border-bottom: solid 1px #030303;
  z-index: 1;
  position: relative;
  padding: 2.1875rem 0 1.875rem;
  background: #efefef;
}
@media screen and (max-width: 640px) {
  #news {
    padding: 2.5625rem 0 1.25rem;
  }
}
#news .inner {
  display: flex;
  max-width: 81.25rem;
  width: 94%;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  #news .inner {
    flex-direction: column;
    align-items: left;
    width: 91%;
  }
}
#news .inner h2 {
  font-size: 3.75rem;
  line-height: 0.33;
  position: relative;
  margin: 1rem 5.25rem 0 0;
}
@media screen and (max-width: 640px) {
  #news .inner h2 {
    font-size: 3.125rem;
    margin: 0 0 1.4375rem 0;
    text-align: center;
    line-height: 0.29;
  }
}
#news .inner h2 .title-sub-en {
  font-size: 0.5625rem;
  letter-spacing: 0.025em;
  font-weight: 400;
}
@media screen and (max-width: 640px) {
  #news .inner h2 .title-sub-en {
    font-size: 0.4375rem;
  }
}
#news .inner .news-list {
  max-height: 7.5rem;
  overflow-y: scroll;
}
@media screen and (max-width: 640px) {
  #news .inner .news-list {
    max-height: 13.4375rem;
  }
}
#news .inner .news-list::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
#news .inner .news-list::-webkit-scrollbar-track {
  background: transparent;
}
#news .inner .news-list::-webkit-scrollbar-thumb {
  background-color: #bfbebf;
  border-radius: 3px;
  border: none;
}
#news .inner .news-list::-webkit-scrollbar-button {
  display: none;
}
#news .inner .news-list li {
  display: flex;
  margin-bottom: 1.4375rem;
  padding-right: 3.75rem;
  gap: 1.375rem;
}
@media screen and (max-width: 640px) {
  #news .inner .news-list li {
    /*flex-direction: column;*/
    gap: 1rem;
    padding: 0 1.25rem 0 0.8125rem;
    margin-bottom: 1.75rem;
  }
}
#news .inner .news-list li .news-date {
  /*width: prem(120);*/
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 640px) {
  #news .inner .news-list li .news-date {
    width: auto;
    font-size: 1.25rem;
    line-height: 1;
  }
}
#news .inner .news-list li .news-text {
  font-size: 0.9375rem;
}
@media screen and (max-width: 640px) {
  #news .inner .news-list li .news-text {
    font-size: 1.25rem;
    line-height: 1.2;
  }
}
#news h2 {
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.35s ease;
}
@media screen and (max-width: 640px) {
  #news h2 {
    transform: translateY(3.125rem);
  }
}
#news .news-list {
  opacity: 0;
  transition: all 0.35s 0.3s ease;
}
#news.move-on h2 {
  opacity: 1;
  transform: translate(0);
}
#news.move-on .news-list {
  opacity: 1;
}

#summary {
  text-align: center;
  background: url("../images/top/summary-deco.png") no-repeat top 28.75rem left -11.25rem, url("../images/top/summary-deco.png") no-repeat top 56.25rem right -11.25rem;
  margin-top: -0.25rem;
  overflow: hidden;
}
#summary .circle-box {
  background: #f8f8f8;
  border-radius: 9999px;
  width: 22.5rem;
  height: 22.5rem;
  margin: 4.375rem auto -1.25rem;
  padding: 1.4375rem 0;
  font-size: 1.3125rem;
  font-weight: 800;
}
@media screen and (max-width: 640px) {
  #summary .circle-box {
    width: 35rem;
    height: 35rem;
    font-size: 2rem;
    margin: 4.375rem auto -2.5rem;
    padding: 2.5625rem 0;
  }
}
#summary .circle-box img {
  margin: 0 auto;
}
#summary .circle-box img.icon {
  width: 5.75rem;
}
@media screen and (max-width: 640px) {
  #summary .circle-box img.icon {
    width: 8.8125rem;
  }
}
#summary .circle-box .bnr img {
  width: 15.75rem;
}
@media screen and (max-width: 640px) {
  #summary .circle-box .bnr img {
    width: 24.375rem;
  }
}
#summary .circle-box p {
  margin: 0.75rem auto 0.875rem;
}
@media screen and (max-width: 640px) {
  #summary .circle-box p {
    margin: 1.125rem auto 1.4375rem;
  }
}
#summary .circle-box p strong {
  font-feature-settings: "palt";
}
html[lang=es] #summary .circle-box, html[lang=fr] #summary .circle-box {
  width: 25rem;
  height: 25rem;
}
@media screen and (max-width: 640px) {
  html[lang=es] #summary .circle-box, html[lang=fr] #summary .circle-box {
    width: 37.5rem;
    height: 37.5rem;
  }
}
#summary .arrow img {
  margin: 0 auto;
  width: 2.8125rem;
}
@media screen and (max-width: 640px) {
  #summary .arrow img {
    width: 4.125rem;
  }
}
#summary .txt-box {
  font-weight: 800;
  margin: 0.75rem 0;
  font-feature-settings: "palt";
}
@media screen and (max-width: 640px) {
  #summary .txt-box {
    margin: 1.4375rem 0;
  }
}
#summary .txt-box .txt-lg {
  font-size: 1.75rem;
  line-height: 1.3;
}
@media screen and (max-width: 640px) {
  #summary .txt-box .txt-lg {
    font-size: 2.125rem;
    line-height: 1.5;
  }
}
#summary .txt-box .txt-lg strong {
  font-size: 2rem;
  padding: 0 0.4375rem;
}
@media screen and (max-width: 640px) {
  #summary .txt-box .txt-lg strong {
    font-size: 2.125rem;
  }
}
#summary .txt-box .txt-md {
  font-size: 1.25rem;
  line-height: 1.8;
}
@media screen and (max-width: 640px) {
  #summary .txt-box .txt-md {
    font-size: 1.625rem;
  }
}
#summary .txt-box .txt-xl {
  font-size: 2.25rem;
  line-height: 1.7;
}
@media screen and (max-width: 640px) {
  #summary .txt-box .txt-xl {
    font-size: 2.625rem;
    line-height: 1.52;
  }
}
#summary .txt-box .txt02 {
  margin: 2.3125rem auto 2.5rem;
}
@media screen and (max-width: 640px) {
  #summary .txt-box .txt02 {
    margin: 0.9375rem auto 1.4375rem;
  }
}
#summary .txt-box .txt03 {
  margin: 0 auto 1.875rem;
}
@media screen and (max-width: 640px) {
  #summary .txt-box .txt03 {
    margin: 0 auto 1.75rem;
  }
}
#summary .txt-box .txt04 {
  margin: 0 auto 3.875rem;
}
@media screen and (max-width: 640px) {
  #summary .txt-box .txt04 {
    margin: 0 auto 4.3125rem;
  }
}
#summary .summary-box {
  border: 1px solid #030303;
  box-shadow: 0 7px 0 rgb(0, 0, 0);
  background: #ffffff;
  padding: 2.4375rem 0 3.0625rem;
  position: relative;
}
@media screen and (max-width: 640px) {
  #summary .summary-box {
    overflow: hidden;
    border-right: none;
    border-left: none;
    padding: 2.125rem 0 2.875rem;
  }
}
#summary .summary-box.comic {
  border-radius: 9999px;
}
@media screen and (max-width: 640px) {
  #summary .summary-box.comic {
    border-radius: 0;
  }
}
#summary .summary-box.comic h3 {
  margin: 0 auto 1.875rem;
}
@media screen and (max-width: 640px) {
  #summary .summary-box.comic h3 {
    margin: 0 auto 1.4375rem;
    line-height: 1.2;
  }
}
#summary .summary-box.wordlesscomic {
  border-radius: 9999px;
  margin: 2.375rem 0 1.5rem;
}
@media screen and (max-width: 640px) {
  #summary .summary-box.wordlesscomic {
    border-radius: 0;
    margin: 2.375rem 0 1.875rem;
  }
}
#summary .summary-box.wordlesscomic h3 {
  margin: 0 auto 1.3125rem;
  line-height: 1.2;
}
#summary .summary-box.wordlesscomic .note {
  margin-top: -0.3125rem;
}
#summary .summary-box.wordlesscomic .note li + li {
  margin-top: 0.625rem;
}
@media screen and (max-width: 640px) {
  #summary .summary-box.wordlesscomic .note li + li {
    margin-top: 0;
  }
}
#summary .summary-box h3 {
  font-size: 2.25rem;
  width: 46.25rem;
  border-bottom: solid 1px #030303;
  padding-bottom: 1.4375rem;
}
@media screen and (max-width: 640px) {
  #summary .summary-box h3 {
    font-size: 3rem;
    width: 33.5625rem;
    padding-bottom: 1.1875rem;
  }
}
#summary .summary-box .summary-title-deco {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
#summary .summary-box .summary-title-deco div {
  position: absolute;
}
#summary .summary-box .summary-title-deco .summary-title-deco01 {
  top: 2.375rem;
  left: -24.4375rem;
  width: 5.0625rem;
}
@media screen and (max-width: 640px) {
  #summary .summary-box .summary-title-deco .summary-title-deco01 {
    top: 2.8125rem;
    left: -19.625rem;
    width: 5.0625rem;
  }
}
#summary .summary-box .summary-title-deco .summary-title-deco02 {
  top: 4.8125rem;
  left: -19.9375rem;
  width: 3.1875rem;
}
@media screen and (max-width: 640px) {
  #summary .summary-box .summary-title-deco .summary-title-deco02 {
    top: 5.1875rem;
    left: -15.125rem;
    width: 5.0625rem;
  }
}
#summary .summary-box .summary-title-deco .summary-title-deco03 {
  top: 2.75rem;
  right: -24.5625rem;
  width: 5.0625rem;
}
@media screen and (max-width: 640px) {
  #summary .summary-box .summary-title-deco .summary-title-deco03 {
    top: 2.75rem;
    right: -19.6875rem;
    width: 5.5rem;
  }
}
#summary .summary-box .summary-inner {
  width: 46.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  #summary .summary-box .summary-inner {
    width: 34.75rem;
    text-align: left;
  }
}
#summary .summary-box .txt-md {
  font-size: 1.25rem;
  font-weight: 700;
  font-feature-settings: "palt";
  line-height: 1.7;
  margin-bottom: 1.3125rem;
}
@media screen and (max-width: 640px) {
  #summary .summary-box .txt-md {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 640px) {
  #summary .summary-box .note {
    font-size: 1.3125rem;
  }
}
#summary .circle-box {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.35s 0.5s ease;
}
#summary .arrow {
  opacity: 0;
  transform: translateY(-50px);
  transition: all 0.35s 0.6s ease;
}
#summary .txt-box p {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.4s 0.8s ease;
}
#summary .txt-box p.txt02 {
  transition-delay: 0.9s;
}
#summary .txt-box p.txt03 {
  transition-delay: 1s;
}
#summary .txt-box p.txt04 {
  transition-delay: 1.1s;
}
#summary .summary-box {
  opacity: 0;
  transition: all 0.4s 1.3s ease;
}
@media screen and (max-width: 640px) {
  #summary .summary-box {
    transform: scale(1.1);
  }
}
#summary.move-on .circle-box {
  opacity: 1;
  transform: scale(1);
}
#summary.move-on .arrow {
  opacity: 1;
  transform: translateY(0);
}
#summary.move-on .txt-box p {
  opacity: 1;
  transform: translateY(0);
}
#summary.move-on .summary-box {
  opacity: 1;
  animation: poyon 0.6s 1.2s ease-out forwards;
}
@media screen and (max-width: 640px) {
  #summary.move-on .summary-box {
    animation: unset;
    transform: scale(1);
  }
}
#summary.move-on .summary-box.wordlesscomic {
  animation-delay: 1.3s;
}

#awards {
  background: url("../images/top/awards_bg.png") repeat;
  padding-bottom: 4.3125rem;
}
#awards .inner {
  max-width: 760px;
}
#awards .inner ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0.75rem 0.625rem;
  margin-top: 4.375rem;
}
@media screen and (max-width: 640px) {
  #awards .inner ul {
    display: flex;
    flex-direction: column;
    align-content: center;
    margin-top: 4.5625rem;
    gap: 1.1875rem;
  }
}
#awards .inner ul .gold {
  grid-area: 1/1/2/3;
}
@media screen and (max-width: 640px) {
  #awards .inner ul .gold {
    align-self: center;
  }
}
#awards .inner ul .silver {
  grid-area: 2/1/3/2;
  align-self: end;
}
@media screen and (max-width: 640px) {
  #awards .inner ul .silver {
    align-self: center;
  }
}
#awards .inner ul .bronze {
  grid-area: 2/2/3/3;
  align-self: end;
}
@media screen and (max-width: 640px) {
  #awards .inner ul .bronze {
    align-self: center;
  }
}
#awards ul li {
  opacity: 0;
  transform: scale(1.1);
  transition: all 0.4s 0.5s ease-out;
}
#awards ul li:nth-child(2) {
  transition-delay: 0.6s;
}
#awards ul li:nth-child(3) {
  transition-delay: 0.7s;
}
#awards.move-on ul li {
  opacity: 1;
  transform: scale(1);
}

#benefits {
  text-align: center;
  margin-bottom: 4.0625rem;
  /*html[lang='en'] & .txt-lg,
  html[lang='fr'] & .txt-lg {
   font-size: prem(16);
   @include mq('md') {
    font-size: prem(22);
   }
  }
  html[lang='es'] & .txt-lg {
   font-size: prem(16);
   @include mq('md') {
    font-size: prem(20);
   }
  }*/
}
@media screen and (max-width: 640px) {
  #benefits {
    margin-bottom: 4.375rem;
  }
  #benefits .title-box {
    padding: 2.8125rem 0 1.8125rem;
  }
  #benefits .title-box h2 .title-main-en {
    font-size: 2.875rem;
  }
}
#benefits .txt-lg {
  font-size: 1.5rem;
  font-weight: 800;
}
@media screen and (max-width: 640px) {
  #benefits .txt-lg {
    font-size: 1.75rem;
  }
}
#benefits .txt-lg.txt01 {
  margin: 3.9375rem 0 3.375rem;
}
@media screen and (max-width: 640px) {
  #benefits .txt-lg.txt01 {
    margin: 3.9375rem 0 3.8125rem;
    font-size: 1.875rem;
    line-height: 1.2;
  }
}
#benefits ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2.8125rem 2rem;
}
@media screen and (max-width: 640px) {
  #benefits ul {
    display: flex;
    flex-direction: column;
    gap: 2.6875rem;
  }
}
#benefits ul li {
  background: #ffffff;
  box-shadow: 0 7px 0 rgb(0, 0, 0);
  border: solid 1px #030303;
  border-radius: 1.875rem;
  position: relative;
  width: 100%;
  height: 14rem;
}
@media screen and (max-width: 640px) {
  #benefits ul li {
    width: 88%;
    height: 16.1875rem;
    margin: 0 auto;
  }
}
#benefits ul li .num {
  font-size: 4.5rem;
  position: absolute;
  top: -2.4375rem;
  left: 2.8125rem;
}
@media screen and (max-width: 640px) {
  #benefits ul li .num {
    font-size: 5.25rem;
    top: -2.9375rem;
    left: 3.375rem;
  }
}
#benefits ul li img {
  position: absolute;
}
#benefits ul li .txt-lg {
  position: absolute;
  line-height: 1.2;
  padding-right: 1rem;
}
#benefits ul li.one img {
  top: 1.25rem;
  left: 1.5rem;
  width: 8rem;
}
@media screen and (max-width: 640px) {
  #benefits ul li.one img {
    top: 1.875rem;
    left: 1.875rem;
    width: 8.9375rem;
  }
}
#benefits ul li.one .txt-lg {
  top: 4.0625rem;
  left: 11.875rem;
}
@media screen and (max-width: 640px) {
  #benefits ul li.one .txt-lg {
    top: 4.375rem;
    left: 13.125rem;
  }
}
html[lang=en] #benefits ul li.one .txt-lg {
  top: 4.375rem;
  left: 10rem;
  text-align: left;
}
@media screen and (max-width: 640px) {
  html[lang=en] #benefits ul li.one .txt-lg {
    top: 3.125rem;
    left: 11.5625rem;
  }
}
html[lang=es] #benefits ul li.one .txt-lg {
  top: 3.125rem;
  left: 10.625rem;
  text-align: left;
}
@media screen and (max-width: 640px) {
  html[lang=es] #benefits ul li.one .txt-lg {
    top: 2.5rem;
    left: 11.5625rem;
  }
}
html[lang=fr] #benefits ul li.one .txt-lg {
  top: 4.0625rem;
  left: 10.625rem;
  text-align: left;
}
@media screen and (max-width: 640px) {
  html[lang=fr] #benefits ul li.one .txt-lg {
    top: 3.75rem;
    left: 11.5625rem;
  }
}
html[lang=zh-cmn-Hant] #benefits ul li.one .txt-lg {
  top: 4.375rem;
  left: 10.625rem;
}
@media screen and (max-width: 640px) {
  html[lang=zh-cmn-Hant] #benefits ul li.one .txt-lg {
    top: 4.375rem;
    left: 11.25rem;
  }
}
#benefits ul li.two img {
  top: 0;
  left: 1.0625rem;
  width: 27.75rem;
}
@media screen and (max-width: 640px) {
  #benefits ul li.two img {
    top: 0;
    left: 1.8125rem;
    width: 30.5rem;
  }
}
#benefits ul li.two .txt-lg {
  top: 7.1875rem;
  left: 3.4375rem;
}
@media screen and (max-width: 640px) {
  #benefits ul li.two .txt-lg {
    top: 7.9375rem;
    left: 4.25rem;
  }
}
html[lang=en] #benefits ul li.two .txt-lg {
  top: 8.125rem;
  left: 2.1875rem;
  text-align: left;
}
@media screen and (max-width: 640px) {
  html[lang=en] #benefits ul li.two .txt-lg {
    top: 9.375rem;
    left: 1.25rem;
  }
}
html[lang=es] #benefits ul li.two .txt-lg {
  top: 7.5rem;
  left: 0.9375rem;
  text-align: left;
}
@media screen and (max-width: 640px) {
  html[lang=es] #benefits ul li.two .txt-lg {
    top: 8.75rem;
    left: 1.25rem;
  }
}
html[lang=fr] #benefits ul li.two .txt-lg {
  top: 7.5rem;
  left: 1.875rem;
  text-align: left;
}
@media screen and (max-width: 640px) {
  html[lang=fr] #benefits ul li.two .txt-lg {
    top: 8.75rem;
    left: 1.25rem;
  }
}
html[lang=zh-cmn-Hant] #benefits ul li.two .txt-lg {
  top: 7.3125rem;
  left: 4.0625rem;
}
@media screen and (max-width: 640px) {
  html[lang=zh-cmn-Hant] #benefits ul li.two .txt-lg {
    top: 7.9375rem;
    left: 4.375rem;
  }
}
#benefits ul li.two .note {
  font-size: 1rem;
}
@media screen and (max-width: 640px) {
  #benefits ul li.two .note {
    font-size: 1.125rem;
  }
}
#benefits ul li.three img {
  top: 3.125rem;
  left: 2.875rem;
  width: 9.625rem;
}
@media screen and (max-width: 640px) {
  #benefits ul li.three img {
    top: 3.875rem;
    left: 2.8125rem;
    width: 9.625rem;
  }
}
#benefits ul li.three .txt-lg {
  top: 4.25rem;
  left: 14.375rem;
}
@media screen and (max-width: 640px) {
  #benefits ul li.three .txt-lg {
    top: 4.8125rem;
    left: 15.625rem;
  }
}
html[lang=en] #benefits ul li.three .txt-lg {
  top: 3.75rem;
  left: 14.375rem;
  text-align: left;
}
@media screen and (max-width: 640px) {
  html[lang=en] #benefits ul li.three .txt-lg {
    top: 3.125rem;
    left: 14.375rem;
  }
}
html[lang=es] #benefits ul li.three .txt-lg {
  top: 2.8125rem;
  left: 13.75rem;
  text-align: left;
}
@media screen and (max-width: 640px) {
  html[lang=es] #benefits ul li.three .txt-lg {
    top: 2.5rem;
    left: 14.375rem;
  }
}
html[lang=fr] #benefits ul li.three .txt-lg {
  top: 4.0625rem;
  left: 13.75rem;
  text-align: left;
}
@media screen and (max-width: 640px) {
  html[lang=fr] #benefits ul li.three .txt-lg {
    top: 3.75rem;
    left: 14.375rem;
  }
}
html[lang=zh-cmn-Hant] #benefits ul li.three .txt-lg {
  top: 4.25rem;
  left: 14.8125rem;
}
@media screen and (max-width: 640px) {
  html[lang=zh-cmn-Hant] #benefits ul li.three .txt-lg {
    top: 4.8125rem;
    left: 16.5625rem;
  }
}
#benefits ul li.four img {
  top: 1.6875rem;
  left: 3.125rem;
  width: 7.125rem;
}
@media screen and (max-width: 640px) {
  #benefits ul li.four img {
    top: 2.5625rem;
    left: 2.5rem;
    width: 7.8125rem;
  }
}
#benefits ul li.four .txt-lg {
  top: 4.125rem;
  left: 9.3125rem;
}
@media screen and (max-width: 640px) {
  #benefits ul li.four .txt-lg {
    top: 4.6875rem;
    left: 9.6875rem;
  }
}
html[lang=en] #benefits ul li.four .txt-lg {
  top: 4.375rem;
  left: 10.3125rem;
  text-align: left;
}
@media screen and (max-width: 640px) {
  html[lang=en] #benefits ul li.four .txt-lg {
    top: 5.625rem;
    left: 9.375rem;
  }
}
html[lang=es] #benefits ul li.four .txt-lg {
  top: 4.125rem;
  left: 11.25rem;
  text-align: left;
}
@media screen and (max-width: 640px) {
  html[lang=es] #benefits ul li.four .txt-lg {
    top: 4.6875rem;
    left: 12.1875rem;
  }
}
html[lang=fr] #benefits ul li.four .txt-lg {
  top: 4.6875rem;
  left: 10.3125rem;
  text-align: left;
}
@media screen and (max-width: 640px) {
  html[lang=fr] #benefits ul li.four .txt-lg {
    top: 4.6875rem;
    left: 9.875rem;
  }
}
html[lang=zh-cmn-Hant] #benefits ul li.four .txt-lg {
  top: 4.125rem;
  left: 8.75rem;
}
@media screen and (max-width: 640px) {
  html[lang=zh-cmn-Hant] #benefits ul li.four .txt-lg {
    top: 4.6875rem;
    left: 10.3125rem;
  }
}
html[lang=en] #benefits .one {
  height: 25rem;
}
@media screen and (max-width: 640px) {
  html[lang=en] #benefits .one {
    height: 23.125rem;
  }
}
html[lang=es] #benefits .one {
  height: 28.125rem;
}
@media screen and (max-width: 640px) {
  html[lang=es] #benefits .one {
    height: 24.375rem;
  }
}
html[lang=fr] #benefits .one {
  height: 20rem;
}
@media screen and (max-width: 640px) {
  html[lang=fr] #benefits .one {
    height: 20rem;
  }
}
html[lang=en] #benefits .two {
  height: 25rem;
}
@media screen and (max-width: 640px) {
  html[lang=en] #benefits .two {
    height: 23.125rem;
  }
}
html[lang=es] #benefits .two {
  height: 28.125rem;
}
@media screen and (max-width: 640px) {
  html[lang=es] #benefits .two {
    height: 24.375rem;
  }
}
html[lang=fr] #benefits .two {
  height: 20rem;
}
@media screen and (max-width: 640px) {
  html[lang=fr] #benefits .two {
    height: 25rem;
  }
}
html[lang=en] #benefits .three {
  height: 25rem;
}
@media screen and (max-width: 640px) {
  html[lang=en] #benefits .three {
    height: 25rem;
  }
}
html[lang=es] #benefits .three {
  height: 28.125rem;
}
@media screen and (max-width: 640px) {
  html[lang=es] #benefits .three {
    height: 28.125rem;
  }
}
html[lang=fr] #benefits .three {
  height: 20rem;
}
@media screen and (max-width: 640px) {
  html[lang=fr] #benefits .three {
    height: 20rem;
  }
}
html[lang=en] #benefits .four {
  height: 25rem;
}
@media screen and (max-width: 640px) {
  html[lang=en] #benefits .four {
    height: 20rem;
  }
}
html[lang=es] #benefits .four {
  height: 28.125rem;
}
@media screen and (max-width: 640px) {
  html[lang=es] #benefits .four {
    height: 20rem;
  }
}
html[lang=fr] #benefits .four {
  height: 20rem;
}
@media screen and (max-width: 640px) {
  html[lang=fr] #benefits .four {
    height: 20rem;
  }
}
#benefits .note-box {
  background: #ffffff;
  -moz-text-align-last: left;
       text-align-last: left;
  margin: 3.125rem auto 4.125rem;
  padding: 0.9375rem 2rem;
}
@media screen and (max-width: 640px) {
  #benefits .note-box {
    margin: 3.125rem 2.5rem 4.125rem;
    padding: 2rem 1.625rem;
    line-height: 1.6;
  }
}
#benefits .note {
  font-weight: 700;
}
@media screen and (max-width: 640px) {
  #benefits .note {
    font-size: 1.3125rem;
  }
}
#benefits h3 {
  font-size: 2rem;
  padding: 0 0.5rem;
}
@media screen and (max-width: 640px) {
  #benefits h3 {
    font-size: 2.625rem;
  }
}
#benefits .txt02 {
  margin: 1.5rem 0 0.9375rem;
  line-height: 1.3;
}
@media screen and (max-width: 640px) {
  #benefits .txt02 {
    margin: 2.125rem 0 1.875rem;
    font-size: 1.875rem;
    line-height: 1.2;
  }
}
#benefits .txt01 {
  opacity: 0;
  transition: all 0.4s 0.5s ease;
}
#benefits .note-box {
  opacity: 0;
  transition: all 0.4s 1.1s ease;
}
#benefits ul li {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(50px);
  transition: all 0.35s 0.7s ease-out;
}
#benefits ul li:nth-child(2) {
  transition-delay: 0.8s;
}
#benefits ul li:nth-child(3) {
  transition-delay: 0.9s;
}
#benefits ul li:nth-child(4) {
  transition-delay: 1s;
}
#benefits h3,
#benefits .txt02,
#benefits .txt03 {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s 1.2s ease;
}
#benefits.move-on .txt01,
#benefits.move-on .note-box {
  opacity: 1;
}
#benefits.move-on ul li {
  opacity: 1;
  filter: blur(0px);
  transform: translateY(0);
}
#benefits.move-on h3,
#benefits.move-on .txt02,
#benefits.move-on .txt03 {
  opacity: 1;
  transform: scale(1);
}

#period {
  background: url("../images/top/period_bg.png") repeat;
  padding-bottom: 1.0625rem;
  text-align: center;
}
@media screen and (max-width: 640px) {
  #period {
    padding-bottom: 1.375rem;
  }
  #period .title-box {
    padding: 2.8125rem 0 1.8125rem;
  }
  #period .title-box h2 .title-main-en {
    font-size: 2.875rem;
  }
}
#period .period-intro {
  margin: 3.75rem auto;
}
#period .period-intro .txt-xl {
  font-size: 1.875rem;
  font-weight: 800;
}
@media screen and (max-width: 640px) {
  #period .period-intro .txt-xl {
    font-size: 2.25rem;
    line-height: 1.4;
  }
}
#period .period-intro .note {
  font-weight: 700;
  margin: 0.9375rem 0 3rem;
}
@media screen and (max-width: 640px) {
  #period .period-intro .note {
    font-size: 1.25rem;
    margin: 0.9375rem 0 2.3125rem;
  }
}
#period .txt-xl, #period .note {
  opacity: 0;
  transition: all 0.4s 0.5s ease;
}
#period .btn {
  opacity: 0;
  transition: all 0.4s 0.7s ease;
}
#period.move-on .txt-xl, #period.move-on .note {
  opacity: 1;
}
#period.move-on .btn {
  opacity: 1;
  animation: poyon 0.6s 0.7s ease-out forwards;
}

#judges {
  text-align: center;
}
#judges .txt-lg {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 4.1875rem 0;
  line-height: 1.3;
}
@media screen and (max-width: 640px) {
  #judges .txt-lg {
    font-size: 1.875rem;
    line-height: 1.2;
    margin: 4.1875rem 0 4.375rem;
  }
}
#judges .txt-lg {
  opacity: 0;
  transition: all 0.4s 0.5s ease;
}
#judges.move-on .txt-lg {
  opacity: 1;
}

#application {
  padding-bottom: 2.5rem;
}
#application .title-box {
  padding-top: 2.125rem;
}
#application .title-box h2 .title-main-en {
  font-size: 3.625rem;
  z-index: 2;
}
@media screen and (max-width: 640px) {
  #application {
    padding-bottom: 2.625rem;
  }
  #application .title-box {
    padding: 2.5rem 0 1.3125rem;
  }
  #application .title-box h2 .title-main-en {
    font-size: 3rem;
    line-height: 0.9;
  }
}
#application .txt-md {
  font-size: 1rem;
}
#application .txt-sm {
  font-size: 0.875rem;
  line-height: 1.66;
}
@media screen and (max-width: 640px) {
  #application .txt-sm {
    font-size: 1.375rem;
  }
}
#application .txt-ss {
  font-size: 0.75rem;
}
@media screen and (max-width: 640px) {
  #application .txt-ss {
    font-size: 1.5rem;
  }
}
#application .txt-reguler {
  font-weight: 400;
}
#application .txt-bold {
  font-weight: 700;
}
#application .application-intro {
  margin: 4.5625rem auto 0;
}
@media screen and (max-width: 640px) {
  #application .application-intro {
    margin: 4.5625rem 2.5rem 0;
  }
}
#application .application-intro .application-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 640px) {
  #application .application-intro .application-list {
    display: block;
  }
}
#application .application-intro .application-list .application-list-img {
  float: right;
  width: 7.25rem;
  margin-top: 0.1875rem;
}
#application .application-intro .application-list .application-list-img-sp img {
  width: 12.6875rem;
  margin: 0 auto;
}
#application .application-intro .application-list > dt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15rem;
  height: auto;
  text-align: center;
  background: #efefef;
  border-radius: 1.875rem 0 0 1.875rem;
  font-size: 1.25rem;
  font-weight: 800;
}
@media screen and (max-width: 640px) {
  #application .application-intro .application-list > dt {
    width: 100%;
    padding: 0.6875rem 0 1rem;
    border-radius: 1.25rem 1.25rem 0 0;
    font-size: 1.78125rem;
  }
}
#application .application-intro .application-list > dd {
  width: 45.625rem;
  font-weight: 400;
  padding: 0.75rem 0 0.625rem;
}
@media screen and (max-width: 640px) {
  #application .application-intro .application-list > dd {
    width: 100%;
    padding: 1.5625rem 0 0.625rem;
  }
}
#application .application-intro .application-list > dd p {
  margin-bottom: 0.5625rem;
  font-size: 0.875rem;
  line-height: 1.7;
  font-feature-settings: "palt";
}
@media screen and (max-width: 640px) {
  #application .application-intro .application-list > dd p {
    font-size: 1.375rem;
  }
}
#application .application-intro .application-list > dd p.mt10 {
  margin-top: 0.625rem;
}
#application .application-intro .application-list > dd p.txt-md {
  font-size: 1rem;
}
#application .application-intro .application-list > dd.sp-center {
  text-align: center;
}
#application .application-intro .application-list .application-list-size {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: baseline;
  font-weight: 900;
}
#application .application-intro .application-list .application-list-size dt {
  width: 9rem;
  text-align: center;
  margin: 0 0.625rem 0 0;
  padding: 0.25rem 0 0;
}
@media screen and (max-width: 640px) {
  #application .application-intro .application-list .application-list-size dt {
    width: 12.8125rem;
    font-size: 1.5rem;
  }
}
#application .application-intro .application-list .application-list-size dd {
  width: calc(100% - 154px);
  text-align: left;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.4375rem;
  padding: 4px 0;
}
@media screen and (max-width: 640px) {
  #application .application-intro .application-list .application-list-size dd {
    width: 21.3125rem;
    font-size: 1.5rem;
  }
}
#application .application-intro .application-list .application-list-size dd .reguler {
  font-size: 0.875rem;
  font-weight: 400;
  margin: 0.375rem 0.625rem 0 0;
  line-height: 1.7;
}
#application .application-intro .application-list .application-list-size dd .reguler.pconly {
  display: block;
}
@media screen and (max-width: 640px) {
  #application .application-intro .application-list .application-list-size dd .reguler.pconly {
    display: none;
  }
}
#application .application-intro .application-list .application-list-size .reguler.sponly {
  display: none;
}
@media screen and (max-width: 640px) {
  #application .application-intro .application-list .application-list-size .reguler.sponly {
    display: block;
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 1.6;
  }
}
#application .application-intro h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 640px) {
  #application .application-intro h3 {
    font-size: 2.125rem;
  }
}
#application .application-intro h3 span {
  min-width: 7rem;
  text-align: center;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0.625rem;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  #application .application-intro h3 span {
    width: -moz-fit-content;
    width: fit-content;
  }
}
#application .application-intro .btn {
  margin: -0.25rem auto 2.3125rem;
}
@media screen and (max-width: 640px) {
  #application .application-intro .btn {
    margin: -1.8125rem auto 2.3125rem;
    width: 100%;
  }
}
#application .application-intro .faq-menu {
  display: flex;
  justify-content: space-around;
  border: 0.25rem solid #efefef;
  padding: 0.75rem 1.6875rem 1.125rem;
  margin: 2.5rem auto 0.375rem;
  width: 45.3125rem;
  list-style: none;
}
@media screen and (max-width: 640px) {
  #application .application-intro .faq-menu {
    width: 31.25rem;
    padding: 1.875rem 2.5rem 0.1875rem;
    margin: 2.5rem auto 0.8125rem;
    display: block;
  }
}
#application .application-intro .faq-menu li {
  position: relative;
  padding-right: 1.875rem;
  padding-bottom: 0.3125rem;
}
@media screen and (max-width: 640px) {
  #application .application-intro .faq-menu li {
    margin-bottom: 1.3125rem;
  }
}
#application .application-intro .faq-menu li::after {
  content: "〉";
  color: #ff9600;
  display: inline-block;
  position: absolute;
  right: 0.625rem;
  top: 60%;
  transform: translateY(-50%) rotate(90deg);
  font-weight: 800;
}
@media screen and (max-width: 640px) {
  #application .application-intro .faq-menu li::after {
    font-size: 1.625rem;
  }
}
#application .application-intro .faq-menu li a {
  color: #030303;
  border-bottom: solid 1px #030303;
  font-size: 1.125rem;
  font-weight: 800;
  padding-bottom: 0.3125rem;
  display: block;
}
@media screen and (max-width: 640px) {
  #application .application-intro .faq-menu li a {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 640px) {
  #application .application-intro .faq-menu li a {
    border-bottom: none;
  }
}
#application .application-intro .faq-menu li a:hover {
  color: #ff9600;
  text-decoration: none;
}
html[lang=es] #application .application-intro .faq-menu li a, html[lang=fr] #application .application-intro .faq-menu li a, html[lang=zh-cmn-Hant] #application .application-intro .faq-menu li a {
  font-size: 0.875rem;
}
@media screen and (max-width: 640px) {
  html[lang=es] #application .application-intro .faq-menu li a, html[lang=fr] #application .application-intro .faq-menu li a, html[lang=zh-cmn-Hant] #application .application-intro .faq-menu li a {
    font-size: 1.375rem;
  }
}
#application .application-intro .faq-menu + .txt-sm {
  text-align: center;
}
#application .application-intro .faq-list {
  padding-top: 1.875rem;
}
@media screen and (max-width: 640px) {
  #application .application-intro .faq-list {
    padding-top: 2.25rem;
  }
}
#application .application-intro .faq-list + .faq-list {
  padding-top: 1.25rem;
}
#application .application-intro .faq-list li:not(:last-child) {
  margin-bottom: 1.25rem;
}
#application .application-intro .faq-list li .ttl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.875rem;
  background-color: #efefef;
  border-radius: 1.25rem 1.25rem 0 0;
}
@media screen and (max-width: 640px) {
  #application .application-intro .faq-list li .ttl {
    padding: 1.5rem 0.9375rem;
  }
}
#application .application-intro .faq-list li .ttl p {
  width: calc(100% - 4.125rem);
  font-size: 1rem;
  font-weight: 900;
}
@media screen and (max-width: 640px) {
  #application .application-intro .faq-list li .ttl p {
    font-size: 1.5rem;
    width: 100%;
  }
}
#application .application-intro .faq-list li .box {
  padding: 1.625rem 1.75rem 0.5rem;
}
@media screen and (max-width: 640px) {
  #application .application-intro .faq-list li .box {
    padding: 1.5625rem 0 0.3125rem;
  }
}
#application .application-intro .faq-list li .box p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 640px) {
  #application .application-intro .faq-list li .box p {
    font-size: 1.375rem;
  }
}
#application .application-intro .faq-list + h3 {
  margin-top: 2.6875rem;
}
#application .application-intro .application-note {
  font-weight: 400;
  font-size: 0.75rem;
  margin: 2.25rem 0;
}
@media screen and (max-width: 640px) {
  #application .application-intro .application-note {
    font-size: 1.25rem;
  }
}
#application .application-intro .application-note li {
  margin-bottom: 0.75rem;
}
#application .application-intro .application-note a {
  text-decoration: underline;
}
#application .application-intro .contact h3 {
  margin: 3.125rem 0 1.25rem;
  text-align: left;
  font-size: 1.25rem;
}
@media screen and (max-width: 640px) {
  #application .application-intro .contact h3 {
    font-size: 1.875rem;
    margin: 2.25rem 0 0.8125rem;
  }
}
#application .application-intro .contact h3 + p {
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 640px) {
  #application .application-intro .contact h3 + p {
    font-size: 1.5rem;
    margin-bottom: 1.0625rem;
  }
}
#application .application-intro .contact h3 + p a {
  text-decoration: underline;
}
#application .application-intro .contact .note {
  line-height: 1.28;
  margin: 1.875rem 0 2.875rem;
}
@media screen and (max-width: 640px) {
  #application .application-intro .contact .note {
    margin: 0 0 4rem;
  }
}
#application .application-intro .last-year {
  background-color: #fff9d4;
  padding: 3.875rem 1.875rem 1.875rem;
}
#application .application-intro .last-year p {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1.9375rem;
}
@media screen and (max-width: 640px) {
  #application .application-intro .last-year p {
    font-size: 1.875rem;
    line-height: 1.2;
    margin-bottom: 3.625rem;
  }
}
#application section::before {
  content: "";
  display: block;
  padding-top: 50px;
  margin-top: -50px;
}
#application .application-intro {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.4s 0.7s ease;
}
#application.move-on .application-intro {
  opacity: 1;
  transform: translateY(0);
}

#copy {
  position: relative;
}
#copy .copy-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#copy .inner {
  padding: 4.375rem 0;
}
@media screen and (max-width: 640px) {
  #copy .inner {
    padding: 4.6875rem 2.5rem 4.375rem;
  }
}
#copy .copy-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 10px;
}
@media screen and (max-width: 640px) {
  #copy .copy-list {
    margin-bottom: 0;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.5625vw;
  }
}

footer {
  text-align: center;
  background: #fff;
  padding: 50px 0 58px;
  position: relative;
}
footer .footer_deco {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1118px;
  top: -47px;
  z-index: 0;
}
footer .inner {
  position: relative;
}
footer .inner .share {
  position: relative;
  width: 100px;
  font-size: 1.125rem;
  font-weight: 900;
  background: #fff;
  margin: 0 auto 18px;
  border-radius: 13px;
  border: solid 1px #000;
  line-height: 1.4;
}
footer .inner .share span {
  position: relative;
  z-index: 2;
}
footer .inner .share::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 10px 6px 0 6px;
  border-color: #000000 transparent transparent;
  translate: -50% 100%;
}
footer .inner .share::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 8.1px 4.8px 0 4.8px;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}
footer .inner .sns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
}
@media screen and (max-width: 640px) {
  footer .inner .sns li {
    width: 3.625rem;
  }
}
footer .inner .sns li:not(:last-child) {
  margin: 0 22px 0 0;
}
footer .inner .cookie {
  margin-bottom: 29px;
}
footer .inner .logo {
  margin-bottom: 20px;
}
footer .inner .logo img {
  margin: 0 auto;
}
footer .inner small {
  font-size: 0.75rem;
  font-weight: 400;
}
footer .inner .title-deco {
  position: absolute;
  width: 100%;
  top: -5.3125rem;
}
@media screen and (max-width: 640px) {
  footer .inner .title-deco {
    height: 100%;
    overflow: hidden;
    top: -7.625rem;
  }
}
footer .inner .title-deco div {
  position: absolute;
}
footer .inner .title-deco .title-deco01 {
  top: 11.25rem;
  left: -3.6875rem;
  width: 4.5625rem;
  opacity: 0;
}
@media screen and (max-width: 640px) {
  footer .inner .title-deco .title-deco01 {
    top: 6rem;
    left: 0.4375rem;
    width: 3.1875rem;
  }
}
footer .inner .title-deco .title-deco02 {
  top: 2.125rem;
  right: -1.5625rem;
  width: 4.5625rem;
  opacity: 0;
}
@media screen and (max-width: 640px) {
  footer .inner .title-deco .title-deco02 {
    top: 0.9375rem;
    right: -0.125rem;
    width: 3.3125rem;
  }
}
footer .inner .title-deco .title-deco03 {
  top: 8.3125rem;
  right: -3.75rem;
  width: 8.25rem;
  opacity: 0;
}
@media screen and (max-width: 640px) {
  footer .inner .title-deco .title-deco03 {
    top: 4.1875rem;
    right: -1.0625rem;
    width: 5.875rem;
  }
}
footer .inner .title-deco .title-deco04 {
  top: -0.8125rem;
  left: -1.625rem;
  width: 7.1875rem;
  opacity: 0;
}
@media screen and (max-width: 640px) {
  footer .inner .title-deco .title-deco04 {
    top: 0;
    left: 0.125rem;
    width: 5.1875rem;
  }
}
footer .inner .title-deco .title-deco05 {
  top: 3.75rem;
  left: 4.75rem;
  width: 4.5625rem;
}
@media screen and (max-width: 640px) {
  footer .inner .title-deco .title-deco05 {
    display: none;
  }
}
footer .inner .title-deco .title-deco06 {
  top: -0.375rem;
  right: 4.375rem;
  width: 4.5625rem;
}
@media screen and (max-width: 640px) {
  footer .inner .title-deco .title-deco06 {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  footer {
    padding: 66px 0 68px;
  }
  footer .footer_deco {
    width: 638px;
    top: -54px;
  }
  footer .inner .share {
    width: 132px;
    font-size: 24px;
    margin: 0 auto 24px;
    border-radius: 100px;
    z-index: 1;
  }
  footer .inner .share::before {
    border-width: 13px 8px 0 8px;
    translate: -50% 100%;
  }
  footer .inner .share::after {
    bottom: 1px;
    left: 65px;
    width: 6px;
    border-width: 11px 7px 0 7px;
  }
  footer .inner .sns {
    width: 320px;
    margin: 0 auto 51px;
    position: relative;
    z-index: 1;
  }
  footer .inner .sns li img {
    width: 100%;
  }
  footer .inner .sns li:not(:last-child) {
    margin: 0 30px 0 0;
  }
  footer .inner .cookie {
    font-size: 18px;
    margin-bottom: 48px;
  }
  footer .inner .logo {
    width: 317px;
    margin: 0 auto 32px;
  }
  footer .inner .logo img {
    margin: 0;
    width: 100%;
  }
  footer .inner small {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */