@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 {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !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;
  -webkit-text-size-adjust: 100%;
}

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;
  }
}

@-webkit-keyframes poyon {
  0% {
    transform: scale(0.5);
  }
  40% {
    transform: scale(1.05); /* ちょっとオーバーシュート */
  }
  70% {
    transform: scale(0.95); /* 下がる */
  }
  100% {
    transform: scale(1); /* 安定 */
  }
}

@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-blue1::before {
  background: #7cdcee;
}
.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;
  -webkit-animation: animate-txt-loop 90s linear infinite;
          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;
}

/* アニメーション */
@-webkit-keyframes animate-txt-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@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%);
  }
}

.btn-close {
  position: relative;
  max-width: 46.25rem;
  width: 90%;
  text-align: center;
  line-height: 1;
  font-size: 1.75rem;
  font-weight: 800;
  background: #cccccc;
  color: #fff;
  margin: 0 auto;
  padding: 1.25rem 0 1.5rem;
  border: solid 1px #b5b5b5;
  border-radius: 2.5rem;
  box-shadow: 0 0.4375rem 0 rgb(181, 181, 181);
  transition: all 0.3s ease;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .btn-close {
    font-size: 1.75rem;
    width: 88%;
    line-height: 1.2;
    border-radius: 9999px;
  }
}

.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: 640px) {
  .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: 0.75rem;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  line-height: 1.2;
  padding-top: 0.5rem;
}
@media screen and (max-width: 640px) {
  .header .header__inner .header__logo {
    padding-top: 1.25rem;
    font-size: 0.875rem;
  }
}
.header .header__inner .header__logo strong {
  font-size: 1.125rem;
}
@media screen and (max-width: 640px) {
  .header .header__inner .header__logo strong {
    font-size: 1.3125rem;
  }
}
.header .header__inner .header__logo a {
  height: inherit;
  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 {
  position: relative;
  height: inherit;
  display: flex;
  align-items: center;
}
.header .header__inner .header__nav-item::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -1rem;
  width: 1px;
  height: 27px;
  background: #212121;
}
.header .header__inner .header__nav-item:last-of-type::after {
  display: none;
}
.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: -webkit-fit-content;
  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: -webkit-fit-content;
  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.5rem;
  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/online/kb-bg.jpg) no-repeat top 2.8571428571vw center/100%;
  background-color: #ffffff;
  position: relative;
  padding: 3.125rem 0 0;
  overflow: hidden;
  width: 100%;
}
@media screen and (max-width: 640px) {
  #kv {
    background: url(../images/online/kb-bg-sp.jpg) no-repeat top 12.5vw center/100%;
    background-color: #ffffff;
    padding: 6.75rem 0 0;
  }
}
#kv .inner {
  margin: 0 auto;
  display: block;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 640px) {
  #kv .inner {
    min-width: auto;
    width: 36.25rem;
    padding: 0;
  }
}
#kv .inner .kv_box {
  aspect-ratio: 1400/518;
  margin-top: 2.1428571429vw;
}
@media screen and (max-width: 640px) {
  #kv .inner .kv_box {
    aspect-ratio: 640/624;
    margin-top: 3.125vw;
  }
}
#kv .inner h1 {
  width: 47.8571428571vw;
  margin: 0 auto 2.1428571429vw;
}
@media screen and (max-width: 640px) {
  #kv .inner h1 {
    width: 36.125rem;
    margin: 0 auto 4rem;
  }
}
#kv .inner h1 img {
  width: 100%;
}
#kv .kv-read {
  text-align: center;
  font-size: 1.125rem;
  padding: 1.875rem 0 1.875rem;
}
@media screen and (max-width: 640px) {
  #kv .kv-read {
    font-size: 1.375rem;
    padding: 0;
  }
}
#kv .kv-read .line-bg-yellow {
  display: inline;
  font-size: 1.5rem;
  background: linear-gradient(transparent 10%, #fff000 10%);
  margin-top: 0.9375rem;
  padding: 0 0.5rem;
}
@media screen and (max-width: 640px) {
  #kv .kv-read .line-bg-yellow {
    font-size: 1.75rem;
    margin-top: 0.875rem;
  }
}
#kv.main_kv .inner {
  padding: 0;
}
#kv.main_kv .kv-deco {
  position: absolute;
  top: -1.4285714286vw;
  width: 100%;
}
@media screen and (max-width: 640px) {
  #kv.main_kv .kv-deco {
    display: none;
  }
}
#kv.main_kv .kv-deco div {
  position: absolute;
  opacity: 0;
}
#kv.main_kv .kv-deco .kv-deco01 {
  top: 37.8571428571vw;
  left: -21.1428571429vw;
  width: 5.2142857143vw;
}
@media screen and (max-width: 640px) {
  #kv.main_kv .kv-deco .kv-deco01 {
    display: none;
  }
}
#kv.main_kv .kv-deco .kv-deco02 {
  top: 2vw;
  right: -23.5714285714vw;
  width: 8.2142857143vw;
}
@media screen and (max-width: 640px) {
  #kv.main_kv .kv-deco .kv-deco02 {
    display: none;
  }
}
#kv.main_kv .kv-deco .kv-deco03 {
  top: 7.2857142857vw;
  right: -12.8571428571vw;
  width: 9.4285714286vw;
}
@media screen and (max-width: 640px) {
  #kv.main_kv .kv-deco .kv-deco03 {
    top: -1.25rem;
    right: -3.125rem;
    width: 5.625rem;
  }
}
#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: -3.5rem;
    width: 6.25rem;
  }
}
#kv.main_kv .kv-deco .kv-deco05 {
  top: 10.1428571429vw;
  left: -20.3571428571vw;
  width: 4.8571428571vw;
}
@media screen and (max-width: 640px) {
  #kv.main_kv .kv-deco .kv-deco05 {
    top: 6rem;
    left: -2.375rem;
    width: 3.5625rem;
  }
}
#kv.main_kv .kv-deco .kv-deco06 {
  top: 40.2857142857vw;
  right: -17.1428571429vw;
  width: 4.8571428571vw;
}
@media screen and (max-width: 640px) {
  #kv.main_kv .kv-deco .kv-deco06 {
    display: none;
  }
}
#kv.main_kv .kv-deco .kv-deco07 {
  top: 15.7857142857vw;
  left: -13.5714285714vw;
  width: 4.7857142857vw;
}
@media screen and (max-width: 640px) {
  #kv.main_kv .kv-deco .kv-deco07 {
    display: none;
  }
}
#kv.main_kv .kv-deco .kv-deco08 {
  top: 21.2142857143vw;
  left: -21.2857142857vw;
  width: 10.3571428571vw;
}
@media screen and (max-width: 640px) {
  #kv.main_kv .kv-deco .kv-deco08 {
    display: none;
  }
}
#kv.main_kv .kv-deco .kv-deco09 {
  top: 34.0714285714vw;
  left: -14.2857142857vw;
  width: 18.1428571429vw;
}
@media screen and (max-width: 640px) {
  #kv.main_kv .kv-deco .kv-deco09 {
    display: none;
  }
}
#kv.main_kv .kv-deco .kv-deco10 {
  top: 22.5714285714vw;
  right: -29.6428571429vw;
  width: 18vw;
}
@media screen and (max-width: 640px) {
  #kv.main_kv .kv-deco .kv-deco10 {
    display: none;
  }
}
#kv.main_kv .kv-deco .kv-deco11 {
  top: 32.7142857143vw;
  right: -14.2857142857vw;
  width: 5.7857142857vw;
}
@media screen and (max-width: 640px) {
  #kv.main_kv .kv-deco .kv-deco11 {
    display: none;
  }
}
#kv.main_kv .kv-deco .kv-deco12 {
  top: 14.7857142857vw;
  right: -16.4285714286vw;
  width: 6.4285714286vw;
}
@media screen and (max-width: 640px) {
  #kv.main_kv .kv-deco .kv-deco12 {
    top: 4.375rem;
    right: -3.125rem;
    width: 3.75rem;
  }
}

#introduction {
  padding: 0 0 4.875rem;
}
@media screen and (max-width: 640px) {
  #introduction {
    padding: 0 0 5rem;
  }
}
#introduction .title-area {
  overflow: visible;
}
#introduction .title-box {
  margin-bottom: 3.25rem;
  padding: 2.1875rem 0 1.875rem;
}
@media screen and (max-width: 640px) {
  #introduction .title-box {
    padding: 2rem 0 1.875rem;
  }
}
#introduction .title-box h2 .title-sub-en {
  margin: 0 0 0.5rem;
}
#introduction .title-box .title-deco .title-deco01 {
  top: -7.25rem;
  left: -2.625rem;
}
@media screen and (max-width: 640px) {
  #introduction .title-box .title-deco .title-deco01 {
    top: -0.25rem;
    right: 4.625rem;
    left: auto;
    width: 3.125rem;
    display: block;
  }
}
#introduction .title-box .title-deco .title-deco02 {
  top: -8.4375rem;
  right: -10.625rem;
}
@media screen and (max-width: 640px) {
  #introduction .title-box .title-deco .title-deco02 {
    top: 1.125rem;
    right: 0.125rem;
    width: 3.125rem;
  }
}
#introduction .title-box .title-deco .title-deco03 {
  top: -10.625rem;
  right: -3.875rem;
  width: 4.5625rem;
}
@media screen and (max-width: 640px) {
  #introduction .title-box .title-deco .title-deco03 {
    top: 0.125rem;
    left: 3.375rem;
    width: 3.125rem;
    display: block;
  }
}
#introduction .title-box .title-deco .title-deco04 {
  top: -11.625rem;
  left: -9.1875rem;
}
@media screen and (max-width: 640px) {
  #introduction .title-box .title-deco .title-deco04 {
    top: -2.375rem;
    left: -0.3125rem;
    width: 5rem;
  }
}
#introduction .title-box .title-deco .title-deco05 {
  width: 4.5625rem;
  top: 0.625rem;
  left: -11.375rem;
}
@media screen and (max-width: 640px) {
  #introduction .title-box .title-deco .title-deco05 {
    top: 6.5rem;
    left: 0.25rem;
    width: 3.125rem;
    display: block;
  }
}
#introduction .title-box .title-deco .title-deco06 {
  width: 8.25rem;
  top: -2.75rem;
  right: -12.5rem;
}
@media screen and (max-width: 640px) {
  #introduction .title-box .title-deco .title-deco06 {
    top: 5.5rem;
    right: 0rem;
    width: 5.6875rem;
    display: block;
  }
}
#introduction .introduction-box {
  border: 1px solid #030303;
  box-shadow: 0 7px 0 rgb(0, 0, 0);
  background: #ffffff;
  margin-bottom: 1.75rem;
  padding: 2.4375rem 0 3.0625rem;
  position: relative;
  border-radius: 9999px;
}
@media screen and (max-width: 640px) {
  #introduction .introduction-box {
    overflow: hidden;
    margin: 0 auto 1.75rem;
    padding: 3.125rem 2.75rem 3.125rem;
    border-radius: 2.5rem;
    width: 36.25rem;
    font-size: 1.375rem;
  }
}
#introduction .introduction-box h3 {
  max-width: 800px;
  font-size: 1.375rem;
  text-align: center;
  margin: 0 auto 1.875rem;
  padding-bottom: 0.875rem;
  border-bottom: solid 1px #7cdcee;
}
@media screen and (max-width: 640px) {
  #introduction .introduction-box h3 {
    font-size: 1.75rem;
    margin: 0 auto 1.625rem;
    line-height: 1.2;
  }
}
#introduction .introduction-box .introduction-inner {
  max-width: 800px;
  line-height: 1.8;
  margin: 0 auto;
}
#introduction .introduction-box .introduction-inner p {
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 640px) {
  #introduction .introduction-box .introduction-inner p {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 640px) {
  #introduction .introduction-box .introduction-inner .note {
    font-size: 1.25rem;
  }
}
#introduction a.btn {
  position: relative;
  display: block;
  max-width: 46.25rem;
  width: 90%;
  text-align: center;
  line-height: 1;
  font-size: 2rem;
  background: #5d3dff;
  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) {
  #introduction a.btn {
    font-size: 2.25rem;
    width: 88%;
    line-height: 1.2;
    border-radius: 9999px;
  }
}
#introduction a.btn div {
  position: relative;
  z-index: 10;
}
#introduction a.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #ffab00;
  transition: all 0.35s ease;
  z-index: 1;
}
#introduction a.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) {
  #introduction a.btn::after {
    right: 1.375rem;
    width: 2.8125rem;
    height: 2.8125rem;
    font-size: 1.875rem;
    background-size: 1.125rem auto;
  }
}
#introduction a.btn:hover::before {
  width: 100%;
}
@media screen and (max-width: 640px) {
  #introduction a.btn:hover::before {
    display: none;
  }
}
#introduction a.btn:hover::after {
  transform: translateY(-50%) scale(1.1);
}
@media screen and (max-width: 640px) {
  #introduction a.btn:hover::after {
    transform: translateY(-50%);
  }
}
#introduction .introduction-box {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.35s 0.7s ease-out;
}
#introduction a.btn {
  opacity: 0;
  transition: all 0.4s 1.7s ease;
}
#introduction.move-on .introduction-box {
  opacity: 1;
  transform: translateY(0);
}
#introduction.move-on .btn {
  opacity: 1;
  -webkit-animation: poyon 0.6s 0.7s ease-out forwards;
          animation: poyon 0.6s 0.7s ease-out forwards;
}

#guidelines {
  background: #ffffff;
  padding: 0 0 4.875rem;
}
#guidelines .title-area {
  overflow: visible;
}
#guidelines .title-box {
  margin-bottom: 3.25rem;
  padding: 2.1875rem 0 1.875rem;
}
@media screen and (max-width: 640px) {
  #guidelines .title-box {
    padding: 2.25rem 0 2rem;
  }
}
@media screen and (max-width: 640px) {
  #guidelines .title-box h2 .title-main-en {
    font-size: 3rem;
  }
}
#guidelines .title-box h2 .title-sub-en {
  margin: 0 0 0.5rem;
}
#guidelines .title-box .title-deco .title-deco01 {
  top: 4.75rem;
  left: -2.625rem;
}
@media screen and (max-width: 640px) {
  #guidelines .title-box .title-deco .title-deco01 {
    top: -0.25rem;
    right: 4.625rem;
    left: auto;
    width: 3.125rem;
    display: block;
  }
}
#guidelines .title-box .title-deco .title-deco02 {
  top: 3.5rem;
  right: -10.625rem;
}
@media screen and (max-width: 640px) {
  #guidelines .title-box .title-deco .title-deco02 {
    top: 1.125rem;
    right: 0.125rem;
    width: 3.125rem;
  }
}
#guidelines .title-box .title-deco .title-deco03 {
  top: 0.375rem;
  right: -3.875rem;
  width: 4.5625rem;
}
@media screen and (max-width: 640px) {
  #guidelines .title-box .title-deco .title-deco03 {
    top: 0.125rem;
    left: 3.375rem;
    width: 3.125rem;
    display: block;
  }
}
#guidelines .title-box .title-deco .title-deco04 {
  top: 0.375rem;
  left: -9.1875rem;
}
@media screen and (max-width: 640px) {
  #guidelines .title-box .title-deco .title-deco04 {
    top: -2.375rem;
    left: -0.3125rem;
    width: 5rem;
  }
}
#guidelines .title-box .title-deco .title-deco05 {
  width: 4.5625rem;
  top: 14.125rem;
  left: -11.375rem;
}
@media screen and (max-width: 640px) {
  #guidelines .title-box .title-deco .title-deco05 {
    top: 7.75rem;
    left: 0.25rem;
    width: 3.125rem;
    display: block;
  }
}
#guidelines .title-box .title-deco .title-deco06 {
  width: 8.25rem;
  top: 10.75rem;
  right: -12.5rem;
}
@media screen and (max-width: 640px) {
  #guidelines .title-box .title-deco .title-deco06 {
    top: 6.125rem;
    right: 0rem;
    width: 5.6875rem;
    display: block;
  }
}
#guidelines a.btn {
  position: relative;
  display: block;
  max-width: 46.25rem;
  width: 90%;
  text-align: center;
  line-height: 1;
  font-size: 2rem;
  background: #5d3dff;
  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;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  #guidelines a.btn {
    font-size: 2.25rem;
    width: 88%;
    line-height: 1.2;
    border-radius: 9999px;
  }
}
#guidelines a.btn div {
  position: relative;
  z-index: 10;
}
#guidelines a.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #ffab00;
  transition: all 0.35s ease;
  z-index: 1;
}
#guidelines a.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) {
  #guidelines a.btn::after {
    right: 1.375rem;
    width: 2.8125rem;
    height: 2.8125rem;
    font-size: 1.875rem;
    background-size: 1.125rem auto;
  }
}
#guidelines a.btn:hover::before {
  width: 100%;
}
@media screen and (max-width: 640px) {
  #guidelines a.btn:hover::before {
    display: none;
  }
}
#guidelines a.btn:hover::after {
  transform: translateY(-50%) scale(1.1);
}
@media screen and (max-width: 640px) {
  #guidelines a.btn:hover::after {
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 640px) {
  #guidelines .guidelines-intro .inner {
    width: 35rem;
  }
}
#guidelines .guidelines-intro .guidelines-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 640px) {
  #guidelines .guidelines-intro .guidelines-list {
    display: block;
    margin-bottom: 0;
  }
}
#guidelines .guidelines-intro .guidelines-list > dt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15rem;
  height: auto;
  text-align: center;
  background: #e7f9fc;
  border-radius: 1.875rem 0 0 1.875rem;
  font-size: 1.125rem;
  font-weight: 800;
}
@media screen and (max-width: 640px) {
  #guidelines .guidelines-intro .guidelines-list > dt {
    width: 100%;
    padding: 1.25rem 0 1.125rem;
    border-radius: 1.25rem 1.25rem 0 0;
    font-size: 1.60625rem;
  }
}
#guidelines .guidelines-intro .guidelines-list > dd {
  width: 45.625rem;
  font-weight: 400;
  padding: 0.75rem 0 0.625rem;
}
@media screen and (max-width: 640px) {
  #guidelines .guidelines-intro .guidelines-list > dd {
    width: 100%;
    padding: 1.5625rem 0 0.625rem;
  }
}
#guidelines .guidelines-intro .guidelines-list > dd p {
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.7;
  font-feature-settings: "palt";
}
@media screen and (max-width: 640px) {
  #guidelines .guidelines-intro .guidelines-list > dd p {
    margin-bottom: 1.25rem;
    font-size: 1.375rem;
  }
}
#guidelines .guidelines-intro .guidelines-list > dd p .txt-bold {
  font-weight: 700;
}
#guidelines .guidelines-intro {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.4s 0.7s ease;
}
#guidelines.move-on .guidelines-intro {
  opacity: 1;
  transform: translateY(0);
}

#insta {
  text-align: center;
  padding: 3.125rem 0;
  border-bottom: solid 1px #212121;
}
@media screen and (max-width: 640px) {
  #insta {
    padding: 3.25rem 0;
  }
}
#insta .insta-link {
  width: 5.375rem;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  #insta .insta-link {
    width: 4.875rem;
  }
}
#insta .share {
  position: relative;
  width: 530px;
  font-size: 1.25rem;
  font-weight: 900;
  background: #fff;
  margin: 0 auto 32px;
  padding: 6px;
  border-radius: 50px;
  border: solid 1px #000;
  line-height: 1.4;
}
@media screen and (max-width: 640px) {
  #insta .share {
    width: 33.125rem;
    margin: 0 auto 2rem;
    padding: 0.375rem;
  }
}
#insta .share span {
  position: relative;
  z-index: 2;
}
#insta .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%;
}
#insta .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%;
}

#potaltop {
  background: url("../images/contest/potaltop-bg.jpg");
  padding: 2.5rem 3.125rem;
}
@media screen and (max-width: 640px) {
  #potaltop {
    padding: 2.5rem 1.875rem;
  }
}
#potaltop .potaltop-list {
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 640px) {
  #potaltop .potaltop-list {
    flex-direction: column;
  }
}

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;
  max-width: 1050px;
}
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: 3rem;
  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: 9.5625rem;
  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.5rem;
  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: 5rem;
  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.875rem;
  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 32px 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=online.css.map */