@charset "UTF-8";
/* 共通の設定・パーツ
* -------------------------------------------- */
body {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  background-color: #fff;
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
a:hover {
  opacity: 0.7;
}

.container {
  max-width: 1140px;
  padding: 0 30px;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media (max-width: 767px) {
  .container {
    padding: 0 26px;
  }
}

.inner {
  max-width: 828px;
  padding: 0 30px;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media (max-width: 767px) {
  .inner {
    padding: 0 40px;
  }
}

li {
  list-style: none;
}

img {
  width: 100%;
}

/* ====================================
画面幅別 表示・非表示
======================================*/
.pc-only {
  display: block;
}
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}
@media (max-width: 480px) {
  .pc-only {
    display: none;
  }
}

.tab-sp-only {
  display: none;
}
@media (max-width: 767px) {
  .tab-sp-only {
    display: block;
  }
}
@media (max-width: 480px) {
  .tab-sp-only {
    display: block;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 767px) {
  .sp-only {
    display: none;
  }
}
@media (max-width: 480px) {
  .sp-only {
    display: block;
  }
}

/* ボタン
* -------------------------------------------- */
.nav__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  border-radius: 60px;
  border: 2px solid #FF58AE;
  background: rgba(255, 110, 198, 0.6);
  -webkit-box-shadow: 0px 0px 10px 0px #fff inset, 0px 0px 20px 0px #ffc4e4;
          box-shadow: 0px 0px 10px 0px #fff inset, 0px 0px 20px 0px #ffc4e4;
  text-shadow: 0.3px 0.3px 0px #fff;
  height: 48px;
  padding: 0px 24px;
}
.nav__button:hover {
  opacity: 0.7;
}

.nav__button-text {
  font-size: 20px;
  font-weight: normal;
}
.nav__button-text.large {
  font-size: 24px;
}
@media (max-width: 767px) {
  .nav__button-text.large {
    font-size: 20px;
  }
}
@media (max-width: 380px) {
  .nav__button-text.small {
    font-size: 18px;
    font-size: 4.615vw;
  }
}

.nav__button-icon {
  width: 24px;
}

/* コンテストとCheer Boxのボタン
* -------------------------------------------- */
.button__info {
  color: #fff;
  text-align: center;
  font-size: 20px;
  text-shadow: 0.3px 0.3px 0px #fff;
  border-radius: 60px;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.3);
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  margin-top: 16px;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 3;
}
.button__info a {
  width: 100%;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.button__info::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/arrow_white.svg) no-repeat center center/contain;
  width: 14px;
  height: 14px;
}
@media (max-width: 390px) {
  .button__info::after {
    right: 14px;
  }
}
@media (max-width: 767px) {
  .button__info {
    font-size: 16px;
    width: 82%;
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .collab .button__info {
    width: 100%;
  }
}

/* 丸の中に数字があるリスト
* -------------------------------------------- */
.maru_list,
.maru_list2 {
  counter-reset: my-counter;
  list-style: none;
  padding: 0;
}

.maru_list li {
  position: relative;
  padding-left: 16px;
  margin-top: 16px;
}

.maru_list li::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #5CEFFF;
  color: #1E214A;
  display: block;
  line-height: 1em;
  font-size: 24px;
  text-align: center;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  margin-left: -30px;
  position: absolute;
  top: 18px;
  left: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767px) {
  .maru_list li::before {
    font-size: 16px;
    height: 18px;
    width: 18px;
    top: 13px;
    left: 22px;
  }
}

.maru_list2 li {
  position: relative;
  padding-left: 16px;
  margin-top: 16px;
}

.maru_list2 li::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #5CEFFF;
  color: #1E214A;
  display: block;
  line-height: 1em;
  font-size: 20px;
  text-align: center;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  margin-left: -22px;
  position: absolute;
  top: 14px;
  left: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767px) {
  .maru_list2 li::before {
    font-size: 14px;
    height: 16px;
    width: 16px;
    top: 11px;
    left: 18px;
  }
}

.mt24 {
  margin-top: 24px;
}

/* --------------------------------------------
フェードインアニメーション
* -------------------------------------------- */
/*下からフェードインアニメーション*/
.fade-in-bottom {
  opacity: 0;
  -webkit-animation-name: fadein-bottom;
          animation-name: fadein-bottom;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadein-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadein-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fade-in-bottom2 {
  opacity: 0;
  -webkit-animation-name: fadein-bottom;
          animation-name: fadein-bottom;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@keyframes fadein-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fade-in {
  opacity: 0;
  -webkit-transition: opacity 3s ease-in-out;
  transition: opacity 3s ease-in-out;
}

.fadein-up {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 80px;
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 64px;
  }
}

body {
  background: #1e214a;
  color: #fff;
}

/* --------------------------------------------
ヘッダー
* -------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  z-index: 1000;
  height: 4.167vw;
  height: 80px;
}
@media (max-width: 767px) {
  .header {
    height: 19.2vw;
    height: 64px;
  }
}

.header__inner {
  /* max-width: 1340px; */
  margin: 0 auto;
  padding: 0 2.083vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}
@media (max-width: 767px) {
  .header__inner {
    padding: 0 13px 0 6px;
  }
}

.header__logo {
  width: 261px;
}
@media (max-width: 767px) {
  .header__logo {
    width: 100px;
    width: 194px;
  }
}

.header__logo img {
  width: 100%;
  height: auto;
}

.header-nav .nav__button {
  padding: 0 3.5em;
}

@media (max-width: 767px) {
  .sp-header-nav__list {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sp-header-nav__item {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #FF58AE;
    background: rgba(255, 110, 198, 0.6);
    -webkit-box-shadow: 0px 0px 7px 0px #fff inset, 0px 0px 10px 0px #ffc4e4;
            box-shadow: 0px 0px 7px 0px #fff inset, 0px 0px 10px 0px #ffc4e4;
    text-shadow: 0.3px 0.3px 0px #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sp-header-nav__icon {
    width: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/* ドロワーメニュー
* -------------------------------------------- */
/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: relative;
  z-index: 10;
  right: 0px;
  top: 0px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #FF58AE;
  background: rgba(255, 110, 198, 0.6);
  -webkit-box-shadow: 0px 0px 10px 0px #fff inset, 0px 0px 20px 0px #ffc4e4;
          box-shadow: 0px 0px 10px 0px #fff inset, 0px 0px 20px 0px #ffc4e4;
  text-shadow: 0.3px 0.3px 0px #fff;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 18px;
  height: 2px;
  left: 11px;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 13px;
}

.hamburger span:nth-child(2) {
  top: 19px;
}

.hamburger span:nth-child(3) {
  top: 25px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 19px;
  left: 11px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 19px;
  left: 11px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: 8;
  inset: 0;
  color: #fff;
  text-align: center;
  width: 100%;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  display: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(97deg, rgba(19, 22, 63, 0.8) -0.3%, rgba(27, 31, 71, 0.8) 49.85%, rgba(15, 23, 62, 0.8) 100%);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  display: none;
  z-index: 6;
}

.overlay.active {
  display: block;
}

.globalMenuSp__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

nav.globalMenuSp ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li a {
  color: #fff;
  text-decoration: none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
  display: block;
}

/* --------------------------------------------
ファーストビュー
* -------------------------------------------- */
.first-view {
  background: url(../img/fv_bg.jpg) center center/cover;
  position: relative;
}
@media (max-width: 767px) {
  .first-view {
    padding-top: 64px;
    background: url(../img/fv-bg_sp.jpg) center center/cover;
  }
}

.first-view__blur {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 686px;
  height: 686px;
  width: 35.729vw;
  height: 35.729vw;
  background: rgba(255, 187, 232, 0.2);
  -webkit-filter: blur(100px);
          filter: blur(100px);
  opacity: 1;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .first-view__blur {
    width: 400px;
    height: 400px;
    width: 102.564vw;
    height: 102.564vw;
    -webkit-filter: blur(60px);
            filter: blur(60px);
  }
}

.first-view__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: last baseline;
      -ms-flex-align: last baseline;
          align-items: last baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.first-view__main-logo {
  width: 720px;
  width: 37.5vw;
  padding-right: 40px;
  padding-right: 2.083vw;
  position: relative;
}
@media (max-width: 767px) {
  .first-view__main-logo {
    width: 120%;
    padding-right: 0;
  }
}
.first-view__main-logo::before {
  content: "";
  width: 650px;
  height: 686px;
  width: 33.854vw;
  height: 35.729vw;
  background-image: url(../img/Hito1.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 32%;
  left: -54%;
  z-index: 10;
  opacity: 0;
  -webkit-animation-name: fadein-bottom;
          animation-name: fadein-bottom;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@media (max-width: 767px) {
  .first-view__main-logo::before {
    display: none;
  }
}
.first-view__main-logo::after {
  content: "";
  width: 732px;
  height: 708px;
  width: 38.125vw;
  height: 36.875vw;
  background-image: url(../img/Hito2.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 27%;
  right: -64%;
  z-index: 10;
  opacity: 0;
  -webkit-animation-name: fadein-bottom;
          animation-name: fadein-bottom;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@media (max-width: 767px) {
  .first-view__main-logo::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .first-view__person-sp {
    width: 100%;
    height: 354px;
    height: 90.769vw;
    margin-top: -20px;
    position: relative;
    z-index: 2;
  }
}

.first-view__background-left {
  position: absolute;
  top: 37px;
  left: -107px;
  top: 1.927vw;
  left: -5.573vw;
}
.first-view__background-left img {
  width: 600px;
  width: 31.25vw;
}
@media (max-width: 767px) {
  .first-view__background-left {
    display: none;
  }
}

.first-view__background-right {
  position: absolute;
  top: -41px;
  right: 13px;
  top: -2.135vw;
  right: 0.677vw;
}
.first-view__background-right img {
  width: 660px;
  width: 34.375vw;
}
@media (max-width: 767px) {
  .first-view__background-right {
    display: none;
  }
}

/* スクロール誘導アニメーション
* -------------------------------------------- */
.scroll-wrap {
  position: relative;
  height: 127px;
  height: 6.615vw;
  margin-left: 66px;
  margin-left: 3.438vw;
}
@media (max-width: 767px) {
  .scroll-wrap {
    display: none;
  }
}

.scroll-container {
  position: absolute;
  bottom: 1%;
  right: 50%;
  -webkit-animation: arrowmove 1s ease-in-out infinite;
          animation: arrowmove 1s ease-in-out infinite;
}
@media (max-width: 767px) {
  .scroll-container {
    display: none;
  }
}
.scroll-container::before {
  content: "";
  position: absolute;
  bottom: 5px;
  right: -3px;
  width: 2px;
  height: 9px;
  bottom: 0.26vw;
  right: -0.156vw;
  width: 0.104vw;
  height: 0.469vw;
  background: #abffa7;
  -webkit-transform: skewX(-31deg);
          transform: skewX(-31deg);
}
.scroll-container::after {
  content: "";
  position: absolute;
  bottom: 5px;
  right: 0;
  width: 2px;
  bottom: 0.26vw;
  right: 0;
  width: 0.104vw;
  height: 73px;
  height: 3.802vw;
  background: #abffa7;
}

.scroll {
  text-shadow: 0px 0px 20px #abffa7;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #abffa7;
  font-family: "Rounded Mplus 1c";
  font-size: 0.729vw;
  position: absolute;
  bottom: 82px;
  bottom: 4.271vw;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  cursor: pointer;
  z-index: 11;
}

@-webkit-keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 5%;
  }
  00% {
    bottom: 1%;
  }
}

@keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 5%;
  }
  00% {
    bottom: 1%;
  }
}
/* --------------------------------------------
  aboutセクション
* -------------------------------------------- */
.about {
  position: relative;
  padding: 94px 0 120px;
  padding: 4.896vw 0 6.25vw;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffc7f8), to(#bf54b3));
  background: linear-gradient(180deg, #ffc7f8 0%, #bf54b3 100%);
  border-bottom: 6px solid #FFF194;
  -webkit-filter: drop-shadow(0px -6px -20px #fffcc2);
          filter: drop-shadow(0px -6px -20px #fffcc2);
  height: 580px;
  height: 30.208vw;
}
@media (max-width: 767px) {
  .about {
    padding: 88px 0 62px;
    margin-top: -40px;
    height: auto;
  }
}

.about__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url(../img/about_road.png) top 170px left 0px/cover no-repeat;
}
@media (max-width: 1280px) {
  .about__background {
    background: url(../img/about_road.png) top 120px left 0px/cover no-repeat;
  }
}
@media (max-width: 767px) {
  .about__background {
    background: url(../img/about_road-sp.png) top 160px left 30%/cover no-repeat;
    height: 700px;
  }
}

.about_line {
  position: absolute;
  bottom: 117px;
  left: 0;
}
@media (max-width: 1280px) {
  .about_line {
    bottom: 50px;
  }
}
@media (max-width: 767px) {
  .about_line {
    bottom: 250px;
  }
}

.about__photos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media (max-width: 767px) {
  .about__photos {
    display: none;
  }
}

.about__photo-wrap {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 20px 0 #fffddf;
          box-shadow: 0 0 20px 0 #fffddf;
  border: 4px solid #fff194;
  position: absolute;
}
@media (max-width: 767px) {
  .about__photo-wrap {
    display: none;
  }
}

.about__photo1 {
  top: 5.729vw;
  left: -20%;
  left: 8.333vw;
  width: 13.5vw;
}

.about__photo2 {
  top: 56%;
  top: 327px;
  top: 17.031vw;
  left: 11.458vw;
  width: 16.458vw;
}

.about__photo3 {
  top: 5.729vw;
  right: 6.25vw;
  width: 16.458vw;
}

.about__photo4 {
  top: 63%;
  top: 367px;
  top: 19.115vw;
  right: 240px;
  right: 12.5vw;
  width: 13.5vw;
}

.about__photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.about__center {
  width: 768px;
  width: 40vw;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .about__center {
    width: 100%;
    gap: 24px;
  }
}

.about__title-group {
  text-align: center;
}

.about__title-en {
  font-family: "Playwrite US Trad", serif;
  font-size: 32px;
  font-size: 1.667vw;
  color: #fffcbf;
}
@media (max-width: 767px) {
  .about__title-en {
    font-size: 20px;
  }
}

.about__title-ja {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 40px;
  font-size: 2.083vw;
  font-weight: 700;
  color: #fff194;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  margin: 0;
}
@media (max-width: 767px) {
  .about__title-ja {
    font-size: 24px;
  }
}

.about__text-group {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 20px;
  font-size: 1.042vw;
}
@media (max-width: 767px) {
  .about__text-group {
    font-size: 16px;
    margin-top: 30px;
  }
}
.about__text-group img {
  width: 95%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .about__text-group img {
    width: 100%;
  }
}
.about__text-group p {
  margin-top: -18px;
  margin-top: -0.937vw;
}
@media (max-width: 767px) {
  .about__text-group p {
    margin-top: 18px;
  }
}

.swiper-slide.border img {
  border: 4px solid #FFF194;
  border-radius: 10px;
}

.about__swiper {
  margin: 37px 0 0;
}

.conditions {
  background: url(../img/conditions_bg.png) center center/cover;
  padding: 0px 0 192px 0;
  width: auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .conditions {
    padding: 0px 0 306px 0;
    background: url(../img/conditions_bg.png) center left/cover;
  }
}

.conditions__title {
  max-width: 588px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
@media (max-width: 1200px) {
  .conditions__title {
    max-width: 488px;
  }
}
@media (max-width: 767px) {
  .conditions__title {
    width: 90%;
  }
}

.conditions__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
}

.conditions__content {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 768px;
  width: 100%;
  margin: -100px auto 0;
  position: relative;
}
@media (max-width: 1200px) {
  .conditions__content {
    max-width: 600px;
  }
}
@media (max-width: 767px) {
  .conditions__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    margin: -36px auto 0;
  }
}

.conditions__pattern1 {
  width: 130px;
  position: absolute;
  top: 82px;
  left: -80px;
  z-index: 2;
}

.conditions__pattern2 {
  width: 160px;
  position: absolute;
  bottom: 510px;
  left: -100px;
  z-index: 2;
}

.conditions__pattern3 {
  width: 130px;
  position: absolute;
  bottom: 378px;
  right: -80px;
  z-index: 2;
}

.conditions__pattern4 {
  width: 154px;
  position: absolute;
  top: 141px;
  right: -100px;
  z-index: 2;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.conditions__pattern5 {
  width: 130px;
  position: absolute;
  bottom: 82px;
  left: -80px;
  z-index: 2;
}

.conditions__items {
  background: rgba(21, 29, 81, 0.9);
  border-radius: 60px;
  -webkit-box-shadow: 0 0 20px 0 #5cefff, inset 0 0 90px 0 #fff;
          box-shadow: 0 0 20px 0 #5cefff, inset 0 0 90px 0 #fff;
  border: 4px solid #5cefff;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
  padding: 114px 40px 80px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .conditions__items {
    padding: 26px 0px 37px;
    border-radius: 20px;
  }
}

.conditions__item-title--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.conditions__item-title--wrap img {
  max-width: 100%;
}

.conditions__item-title {
  font-size: 1.5rem;
  font-size: 32px;
  color: #5cefff;
  font-weight: bold;
  text-shadow: 0px 0px 20px #5cefff;
  letter-spacing: 0.05em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 767px) {
  .conditions__item-title {
    font-size: 24px;
  }
}

.conditions__item-text {
  font-size: 20px;
  color: #fff;
  text-align: center;
  line-height: 1.7;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .conditions__item-text {
    font-size: 13px;
    margin-top: 12px;
  }
}
.conditions__item-text .underline {
  border-bottom: 4px solid #ff6ec6;
  -webkit-filter: drop-shadow(0px 0px 20px #ffc4e4);
          filter: drop-shadow(0px 0px 20px #ffc4e4);
}

.conditions__list-wrap {
  margin: 0 auto;
  width: 85%;
}
@media (max-width: 1200px) {
  .conditions__list-wrap {
    width: 100%;
  }
}

.conditions__list {
  font-size: 24px;
  margin-top: 18px;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .conditions__list {
    font-size: 16px;
    padding: 0 24px;
  }
}

.conditions__list2 {
  font-size: 20px;
}
@media (max-width: 767px) {
  .conditions__list2 {
    font-size: 14px;
  }
}

.conditions__bottom-text {
  text-align: center;
  font-size: 24px;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .conditions__bottom-text {
    font-size: 16px;
  }
}

.contest {
  padding: 46px 0 0px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .contest {
    padding: 60px 0 40px 0;
    padding: 0;
  }
}
.contest::before {
  content: "";
  width: 100%;
  height: 686px;
  background-image: url(../img/contest-bg1.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -17%;
  left: 0;
  z-index: 1;
}
@media (max-width: 1550px) {
  .contest::before {
    top: -14%;
  }
}
@media (max-width: 1200px) {
  .contest::before {
    top: -10%;
  }
}
@media (max-width: 920px) {
  .contest::before {
    top: -8%;
  }
}
@media (max-width: 767px) {
  .contest::before {
    background-image: url(../img/contest-bg1_sp.png);
    top: -17%;
  }
}
@media (max-width: 670px) {
  .contest::before {
    top: -14%;
  }
}
@media (max-width: 460px) {
  .contest::before {
    top: -12%;
  }
}
.contest::after {
  content: "";
  width: 100%;
  height: 686px;
  background-image: url(../img/contest-bg2.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -30%;
  left: 0;
  z-index: 1;
}
@media (max-width: 1550px) {
  .contest::after {
    bottom: -36%;
  }
}
@media (max-width: 1200px) {
  .contest::after {
    bottom: -40%;
  }
}
@media (max-width: 767px) {
  .contest::after {
    background-image: url(../img/contest-bg2_sp.png);
    bottom: -35%;
  }
}
@media (max-width: 670px) {
  .contest::after {
    bottom: -40%;
  }
}
@media (max-width: 550px) {
  .contest::after {
    bottom: -45%;
  }
}
@media (max-width: 460px) {
  .contest::after {
    bottom: -48%;
  }
}

.contest__container {
  background: -webkit-gradient(linear, left top, left bottom, from(#bf54b3), to(#3d188a));
  background: linear-gradient(180deg, #bf54b3 0%, #3d188a 100%);
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.contest__container::before {
  content: "";
  width: 100%;
  height: 686px;
  background-image: url(../img/contest_road.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 1%;
  left: 0%;
  z-index: 1;
}
@media (max-width: 767px) {
  .contest__container::before {
    display: none;
  }
}
.contest__container::after {
  content: "";
  width: 100%;
  height: 686px;
  background-image: url(../img/contest_road.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 6%;
  right: 0%;
  z-index: 1;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media (max-width: 767px) {
  .contest__container::after {
    display: none;
  }
}

.contest__title-group {
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .contest__title-group {
    margin-bottom: 20px;
  }
}

.contest__title-en {
  font-family: "Playwrite US Trad", serif;
  font-size: 24px;
  color: #fffcbf;
  text-shadow: 0 0 20px #fffddf;
  margin-bottom: 0.5em;
}
@media (max-width: 767px) {
  .contest__title-en {
    font-size: 20px;
  }
}

.contest__title-ja {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff194;
  text-shadow: 0 0 20px #fffddf;
  margin: 0;
}
@media (max-width: 767px) {
  .contest__title-ja {
    font-size: 32px;
  }
}

/* インタビュー
* -------------------------------------------- */
.contest__voice-wrap {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 70px 20px 80px;
}
@media (max-width: 767px) {
  .contest__voice-wrap {
    max-width: 560px;
    padding: 74px 16px 40px;
  }
}

.contest__voice-title {
  text-align: center;
}

.contest__voice-title1 {
  font-size: 28px;
  color: #fff;
}
.contest__voice-title1 img {
  width: 50px;
}
@media (max-width: 767px) {
  .contest__voice-title1 img {
    width: 38px;
  }
}
@media (max-width: 767px) {
  .contest__voice-title1 {
    font-size: 20px;
  }
}

.contest__voice-title2 {
  color: #5cefff;
  text-shadow: 0px 0px 20px #5cefff;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1.44px;
}
@media (max-width: 767px) {
  .contest__voice-title2 {
    font-size: 24px;
  }
}

.contest__voice-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 60px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .contest__voice-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 22px;
    row-gap: 32px;
  }
}

.contest__voice-item {
  width: calc(50% - 20px);
  padding: 32px 40px 48px 40px;
  border-radius: 40px;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0px 0px 32px 0px rgba(255, 255, 255, 0.4) inset, 0px 0px 20px 0px #fffddf;
          box-shadow: 0px 0px 32px 0px rgba(255, 255, 255, 0.4) inset, 0px 0px 20px 0px #fffddf;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  position: relative;
}
.contest__voice-item:nth-child(3) {
  margin: 0 auto;
  width: 50%;
}
@media (max-width: 767px) {
  .contest__voice-item:nth-child(3) {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .contest__voice-item {
    width: 100%;
    padding: 16px 16px 32px 16px;
    border-radius: 20px;
  }
}

.contest__voice-icon1 {
  position: absolute;
  left: 40px;
  bottom: -40px;
  width: 100px;
}
@media (max-width: 767px) {
  .contest__voice-icon1 {
    width: 58px;
    left: 10px;
    bottom: -19px;
  }
}

.contest__voice-icon2 {
  position: absolute;
  right: 40.5px;
  bottom: -40px;
  width: 100px;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media (max-width: 767px) {
  .contest__voice-icon2 {
    width: 58px;
    right: 9px;
    bottom: -18px;
  }
}

.contest__voice-icon3 {
  position: absolute;
  left: 280px;
  bottom: -40px;
  width: 100px;
}
@media (min-width: 768px) {
  .contest__voice-icon3 {
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
}
@media (max-width: 767px) {
  .contest__voice-icon3 {
    width: 58px;
    left: 10px;
    bottom: -19px;
  }
}

.contest__voice-item-text {
  font-size: 24px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .contest__voice-item-text {
    font-size: 14px;
  }
}
.contest__voice-item-text .blue {
  color: #5cefff;
  font-weight: 900;
  line-height: 180%;
}

.contact {
  position: relative;
  background: linear-gradient(97deg, #13163f -0.3%, #1b1f47 49.85%, #0f173e 100%);
  padding: 240px 0 140px 0;
  overflow: hidden;
  z-index: 0;
}
@media (max-width: 767px) {
  .contact {
    padding: 143px 0 90px 0;
  }
}
@media (max-width: 460px) {
  .contact {
    padding: 84px 0 90px 0;
  }
}

.contact__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(0deg, transparent 99px, #333 100px), linear-gradient(90deg, transparent 99px, #333 100px);
  background-image: linear-gradient(0deg, transparent 99px, rgba(171, 255, 167, 0.2) 100px), linear-gradient(90deg, transparent 99px, rgba(171, 255, 167, 0.2) 100px);
  background-size: 100px 100px;
}

.contact__blur {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  max-width: 800px;
  max-height: 800px;
  width: 41.667vw;
  height: 41.667vw;
  background: #fff194;
  border-radius: 50%;
  opacity: 0.16;
  -webkit-filter: blur(100px);
          filter: blur(100px);
}
@media (max-width: 767px) {
  .contact__blur {
    max-width: 600px;
    max-height: 600px;
    width: 153.846vw;
    height: 153.846vw;
    top: -14%;
    -webkit-filter: blur(60px);
            filter: blur(60px);
  }
}

.contact__container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .contact__container {
    padding: 0 16px;
  }
}

.contact__title-wrap {
  text-align: center;
  max-width: 808px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .contact__title-wrap {
    max-width: 620px;
    margin-bottom: -20px;
  }
}

.contact__title-group {
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .contact__title-group {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 60px;
  }
}

.contact__title-group img {
  width: 280px;
}
@media (max-width: 767px) {
  .contact__title-group img {
    width: 220px;
  }
}
@media (max-width: 767px) {
  .contact__title-group .left {
    text-align: left;
    margin-right: auto;
  }
}
.contact__title-group .right {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media (max-width: 767px) {
  .contact__title-group .right {
    margin-left: auto;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

@media (max-width: 767px) {
  .contact__title {
    padding-top: 10px;
    margin-bottom: 20px;
  }
}

.contact__title-en {
  font-family: "Playwrite US Trad", serif;
  font-size: 24px;
  color: #fffcbf;
  text-shadow: 0 0 20px #fffddf;
}
@media (max-width: 767px) {
  .contact__title-en {
    font-size: 20px;
  }
}

.contact__title-ja {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff194;
  text-shadow: 0 0 20px #fffddf;
  white-space: nowrap;
  margin: 0;
  margin-top: -10px;
}
@media (max-width: 767px) {
  .contact__title-ja {
    font-size: 34px;
  }
}

.contact__title-lead {
  font-size: 24px;
  margin-top: 14px;
}
@media (max-width: 767px) {
  .contact__title-lead {
    font-size: 14px;
    margin-top: -10px;
  }
}

.contact__list-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.contact__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 112px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media (max-width: 767px) {
  .contact__list {
    gap: 70px;
  }
}

.contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 40px 34px 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-radius: 40px;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0px 0px 32px 0px rgba(255, 255, 255, 0.4) inset, 0px 0px 20px 0px #fffddf;
          box-shadow: 0px 0px 32px 0px rgba(255, 255, 255, 0.4) inset, 0px 0px 20px 0px #fffddf;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  position: relative;
}
@media (max-width: 767px) {
  .contact__item {
    padding: 38px 22px 34px 22px;
    padding: 22px 20px 24px;
  }
}

.contact__item.step3 {
  width: 400px;
  margin-top: 22px;
  padding: 56px 16px 40px;
}
@media (max-width: 1024px) {
  .contact__item.step3 {
    width: 100%;
    padding: 32px 22px 24px;
    margin-top: 32px;
  }
}
.contact__item.step4 {
  width: 655px;
  padding: 56px 24px 40px 24px;
}
@media (max-width: 1024px) {
  .contact__item.step4 {
    width: 100%;
    padding: 32px 22px 24px;
    margin-top: 24px;
  }
}
.contact__item.step5 {
  padding: 24px 24px 40px 24px;
  padding: 24px;
}
@media (max-width: 1024px) {
  .contact__item.step5 {
    width: 100%;
    padding: 32px 22px 24px;
    margin-top: 24px;
  }
}
.contact__item.step6 {
  padding: 12px 24px;
  border-radius: 20px;
}
@media (max-width: 1024px) {
  .contact__item.step6 {
    margin-top: 24px;
  }
}

.contact__number {
  color: #fff194;
  text-shadow: 0px 0px 20px #fffddf;
  font-family: "Playwrite US Trad";
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
  position: absolute;
  left: 24px;
  top: -50px;
}
@media (max-width: 767px) {
  .contact__number {
    font-size: 36px;
    left: 18px;
    top: -31px;
  }
}
@media (max-width: 480px) {
  .contact__number {
    top: -32px;
  }
}

.contact__arrow {
  width: 80px;
  position: absolute;
  bottom: -90px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 767px) {
  .contact__arrow {
    width: 72px;
    bottom: -86px;
  }
}

.contact__arrow.responsive-arrow {
  display: none;
}
@media (max-width: 1024px) {
  .contact__arrow.responsive-arrow {
    display: block;
  }
}

.contact__item-title {
  color: #5cefff;
  text-align: center;
  text-shadow: 0px 0px 20px #5cefff;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 8px;
  position: relative;
}
@media (max-width: 767px) {
  .contact__item-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
.contact__item-title.font-s {
  font-size: 32px;
}
@media (max-width: 767px) {
  .contact__item-title.font-s {
    font-size: 24px;
  }
}
.contact__item-title.font-ss {
  font-size: 30px;
  letter-spacing: -0.04em;
}
@media (max-width: 767px) {
  .contact__item-title.font-ss {
    font-size: 24px;
  }
}

.step3 .contact__item-title,
.step4 .contact__item-title {
  color: #518ca6;
  text-shadow: 0px 0px 20px #518ca6;
}
.step3.step4,
.step4.step4 {
  font-size: 44px;
}

.event-end {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #5cefff;
  text-align: center;
  text-shadow: 0px 0px 20px #5cefff;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  border: 2px solid #5cefff;
  background: rgba(76, 78, 110, 0.8);
  white-space: nowrap;
}

.end__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.end__bottom-wrap {
  margin-top: 8px;
}

.end__bottom-pick {
  width: 32px;
}
.end__bottom-pick.reverse {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.end__bottom-text {
  color: #fff194;
  text-align: center;
  text-shadow: 0px 0px 20px #fffddf;
  font-size: 14px;
  font-weight: 700;
  margin-left: 8px;
  margin-right: 8px;
  letter-spacing: 0.003em;
}
@media (max-width: 767px) {
  .end__bottom-text {
    font-size: 12px;
  }
}

.end__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.end__image img {
  border-radius: 10px;
  width: calc(50% - 8px);
  max-width: 150px;
  aspect-ratio: 4/3;
}

.contact__item-text {
  font-size: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .contact__item-text {
    font-size: 14px;
  }
}

.contact__item-content {
  font-size: 1.1rem;
  color: #1b1f47;
  text-align: center;
  word-break: break-all;
}

.contact__item-footer {
  border-radius: 20px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.1);
  padding: 24px;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .contact__item-footer {
    margin-top: 22px;
    padding: 18px;
  }
}
.contact__item-footer p {
  font-size: 20px;
  line-height: 1.4s;
}
@media (max-width: 767px) {
  .contact__item-footer p {
    font-size: 14px;
  }
}
.contact__item-footer .contact-nav__button-wrap {
  margin-top: 16px;
}

.contact__item-footerButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  border-radius: 60px;
  border: 2px solid #FF58AE;
  background: rgba(255, 110, 198, 0.6);
  -webkit-box-shadow: 0px 0px 10px 0px #fff inset, 0px 0px 20px 0px #ffc4e4;
          box-shadow: 0px 0px 10px 0px #fff inset, 0px 0px 20px 0px #ffc4e4;
  text-shadow: 0.3px 0.3px 0px #fff;
  width: 216px;
  height: 56px;
  padding: 0px 28px 0 20px;
  font-size: 18px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 767px) {
  .contact__item-footerButton {
    margin-top: 16px;
    font-size: 15px;
    width: 184px;
    height: 48px;
  }
}
.contact__item-footerButton:hover {
  opacity: 0.7;
}
.contact__item-footerButton:after {
  content: "";
  position: absolute;
  top: 51%;
  right: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/arrow_white.svg) no-repeat center center/contain;
  width: 18px;
  height: 18px;
}
@media (max-width: 767px) {
  .contact__item-footerButton:after {
    width: 14px;
    height: 14px;
  }
}

.contact__buttons {
  width: 100%;
  margin-top: 10px;
}
@media (max-width: 1024px) {
  .contact__buttons {
    margin-top: 18px;
  }
}

.contact__button-wrap {
  width: 100%;
}

.contact__button-wrap.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 32px;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  margin-top: 0;
  max-width: 82%;
}
@media (max-width: 1024px) {
  .contact__button-wrap.flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    margin-top: 14px;
    max-width: 100%;
  }
}
.contact__button-wrap.flex .contact__item-button {
  margin-top: 22px;
}
@media (max-width: 1024px) {
  .contact__button-wrap.flex .contact__item-button {
    margin-top: 0;
  }
}

.contact__item-button {
  display: block;
  margin-top: 32px;
  height: 48px;
  width: 100%;
  padding: 0px 20px;
  text-align: center;
  border-radius: 60px;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.3);
  font-size: 20px;
}
.contact__item-button a {
  color: #fff;
  text-shadow: 0.3px 0.3px 0px #fff;
  font-weight: 400;
}
.contact__item-button a img {
  width: 20px;
  margin-right: 8px;
}
@media (max-width: 767px) {
  .contact__item-button {
    height: 48px;
    font-size: 16px;
  }
}
@media (max-width: 370px) {
  .contact__item-button.small {
    font-size: 14px;
    font-size: 3.684vw;
  }
}

.contact__item-button.step3 {
  width: 134px;
  padding: 0px 24px;
  margin-top: 14px;
  font-size: 18px;
  border: 2px solid #FFF194;
  color: #FFF194;
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  .contact__item-button.step3 {
    max-width: 122px;
    font-size: 16px;
    height: 36px;
    padding: 0px 16px;
  }
}
@media (max-width: 375px) {
  .contact__item-button.step3 {
    font-size: 14px;
    padding: 0px 8px;
    min-width: 80px;
  }
}

.contact__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact__item-pinkText {
  color: #fff;
  text-align: center;
  text-shadow: 0px 0px 20px #ff68bb;
  text-shadow: 1.5px 1.5px 0px #ff68bb, -1.5px 1.5px 0px #ff68bb, 1.5px -1.5px 0px #ff68bb, -1.5px -1.5px 0px #ff68bb;
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .contact__item-pinkText {
    font-size: 20px;
  }
}

.contact__item-pinkText .fz24 {
  font-size: 24px;
}
@media (max-width: 767px) {
  .contact__item-pinkText .fz24 {
    font-size: 16px;
  }
}
.contact__item-pinkText .fz16 {
  font-size: 16px;
}
@media (max-width: 767px) {
  .contact__item-pinkText .fz16 {
    font-size: 14px;
  }
}

.contact__item-check {
  color: #fff;
  text-align: center;
  font-size: 20px;
  line-height: normal;
}
@media (max-width: 767px) {
  .contact__item-check {
    font-size: 14px;
  }
}
.contact__item-check img {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  padding-bottom: 4px;
}
@media (max-width: 767px) {
  .contact__item-check img {
    width: 20px;
    height: 20px;
  }
}

.contact-nav__button-wrap {
  width: 100%;
  margin: 0 auto;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .contact-nav__button-wrap {
    margin-top: 16px;
  }
}
.contact-nav__button-wrap.wide {
  margin-top: 32px;
}
@media (max-width: 1024px) {
  .contact-nav__button-wrap.wide {
    margin-top: 12px;
  }
}
.contact-nav__button-wrap .nav__button {
  width: 320px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .contact-nav__button-wrap .nav__button {
    width: 100%;
  }
}
.contact-nav__button-wrap .nav__button.large {
  width: 400px;
  height: 72px;
}
@media (max-width: 1024px) {
  .contact-nav__button-wrap .nav__button.large {
    width: 100%;
    height: 48px;
  }
}

/* Step2
* -------------------------------------------- */
.contact-step2 {
  max-width: 100%;
  width: 100%;
  position: relative;
}

.contact-step2__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -52px;
}
@media (max-width: 767px) {
  .contact-step2__title {
    margin-top: 24px;
  }
}

.contact-step2__items {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 24px;
}
@media (max-width: 1024px) {
  .contact-step2__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}

.contact-step2__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 24px 16px 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-radius: 20px;
  border: 2px solid #5cefff;
  background: rgba(92, 239, 255, 0.2);
  -webkit-box-shadow: 0px 0px 32px 0px rgba(255, 255, 255, 0.4) inset, 0px 0px 10px 0px #5cefff;
          box-shadow: 0px 0px 32px 0px rgba(255, 255, 255, 0.4) inset, 0px 0px 10px 0px #5cefff;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  position: relative;
}
@media (max-width: 767px) {
  .contact-step2__item {
    padding: 0px 24px 16px 24px;
  }
}
.contact-step2__item.green {
  border: 2px solid #abffa7;
  background: rgba(171, 255, 167, 0.2);
  -webkit-box-shadow: 0px 0px 32px 0px rgba(255, 255, 255, 0.4) inset, 0px 0px 10px 0px #abffa7;
          box-shadow: 0px 0px 32px 0px rgba(255, 255, 255, 0.4) inset, 0px 0px 10px 0px #abffa7;
}
.contact-step2__item.yellow {
  border: 2px solid #fff194;
  background: rgba(255, 241, 148, 0.2);
  -webkit-box-shadow: 0px 0px 32px 0px rgba(255, 255, 255, 0.4) inset, 0px 0px 10px 0px #fff194;
          box-shadow: 0px 0px 32px 0px rgba(255, 255, 255, 0.4) inset, 0px 0px 10px 0px #fff194;
}
.contact-step2__item a {
  width: 100%;
}

.contact-step2__arrow {
  width: 92px;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .contact-step2__arrow {
    display: none;
  }
}

.contact-step2__number {
  color: #fff194;
  text-shadow: 0px 0px 20px #fffddf;
  font-family: "Playwrite US Trad";
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
  margin-right: 70px;
  margin-left: 18px;
}
@media (max-width: 767px) {
  .contact-step2__number {
    font-size: 36px;
    margin-right: 10px;
    margin-left: 4px;
  }
}

.contact-step2__lead {
  color: #fff;
  text-align: left;
  text-shadow: 0px 0px 20px #5cefff;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 767px) {
  .contact-step2__lead {
    font-size: 24px;
  }
}

.contact-step2__item-title {
  color: #5cefff;
  text-align: center;
  text-shadow: 0px 0px 20px #fffddf;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 767px) {
  .contact-step2__item-title {
    font-size: 20px;
    text-align: left;
  }
}
.contact-step2__item-title.green {
  color: #abffa7;
}
.contact-step2__item-title.yellow {
  color: #fff194;
}

.contact-step2__item-text {
  color: #5cefff;
  text-align: center;
  text-shadow: 0px 0px 20px #5cefff;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.contact-step2__item-text.green {
  color: #abffa7;
  text-shadow: 0px 0px 20px #abffa7;
}
.contact-step2__item-text.yellow {
  color: #fff194;
  text-shadow: 0px 0px 20px #fffddf;
}

.contact-step2__bottom {
  display: none;
}
@media (max-width: 1024px) {
  .contact-step2__bottom {
    display: block;
    text-align: center;
    padding-bottom: 2px;
    color: #fff;
    text-shadow: 0.3px 0.3px 0px #fff;
    font-size: 20px;
    font-style: normal;
    margin-top: 8px;
  }
  .contact-step2__bottom p {
    border-bottom: 1px solid #fff;
    display: inline-block;
  }
}

/* --------------------------------------------
Footer
* -------------------------------------------- */
.footer {
  text-align: center;
  font-size: 20px;
  padding: 120px 0 200px;
  background: url(../img/footer_bg.png) center center/cover;
}
@media (max-width: 767px) {
  .footer {
    padding: 120px 0 108px;
    background: url(../img/footer-bg_sp.svg) center center/cover;
  }
}

.footer__logo {
  margin: 0 auto;
  max-width: 690px;
  width: 100%;
}

.footer__address {
  margin-top: 28px;
}
@media (max-width: 767px) {
  .footer__address {
    font-size: 14px;
  }
}

.footer__nav {
  margin: 0 auto;
  margin-top: 50px;
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .footer__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#sp_banner {
  display: none;
}
@media (max-width: 767px) {
  #sp_banner {
    display: block;
    width: 100%;
    position: fixed;
    bottom: -150px;
    opacity: 1;
    z-index: 100;
  }
}

#sp_banner .cta-btn.btn_wrap {
  position: relative;
  margin: 0px auto 0;
  max-width: 100%;
  padding: 16px 24px;
  background: linear-gradient(97deg, rgba(19, 22, 63, 0.8) -0.3%, rgba(27, 31, 71, 0.8) 49.85%, rgba(15, 23, 62, 0.8) 100%);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

#sp_banner .btn:active {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

/* --------------------------------------------
collabセクション
-------------------------------------------- */
.collab {
  border-top: 6px solid #FFF194;
  position: relative;
  padding: 77px 0 90px 0;
  background: linear-gradient(135deg, #b858ad 0%, #481e8e 100%);
  z-index: 1;
}
@media (max-width: 767px) {
  .collab {
    padding: 80px 0 100px;
  }
}

.collab__background {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: url(../img/collaboration/road.png) top 112px left 0px/contain no-repeat;
}
@media (max-width: 767px) {
  .collab__background {
    display: none;
  }
}

.collab__background2 {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-size: auto auto;
  background-image: repeating-linear-gradient(180deg, transparent, transparent 4px, rgba(255, 255, 255, 0.05) 4px, rgba(255, 255, 255, 0.05) 8px);
}

.collab .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
}

.collab__title-group {
  text-align: center;
  margin-bottom: 58px;
}
@media (max-width: 767px) {
  .collab__title-group {
    margin-bottom: 36px;
  }
}

.collab__title-en {
  font-family: "Playwrite US Trad", serif;
  font-size: 24px;
  color: #fffcbf;
  text-shadow: 0 0 20px #fffddf;
  margin-bottom: 0.5em;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .collab__title-en {
    font-size: 20px;
  }
}

.collab__title-ja {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff194;
  text-shadow: 0 0 20px #fffddf;
  margin: 0;
}
@media (max-width: 767px) {
  .collab__title-ja {
    font-size: 24px;
  }
}

.collab__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}

.collab-box {
  background: rgba(21, 29, 81, 0.6);
  border-radius: 60px;
  border: 4px solid #fff194;
  -webkit-box-shadow: 0 0 20px 0 #fff194, inset 0 0 90px 0 #fff;
          box-shadow: 0 0 20px 0 #fff194, inset 0 0 90px 0 #fff;
  padding: 36px 20px 56px;
  max-width: 768px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 4;
}
@media (max-width: 767px) {
  .collab-box {
    padding: 36px 20px 34px;
    border-radius: 20px;
    -webkit-box-shadow: 0px 0px 50px 0px #fff inset, 0px 0px 20px 0px #fff299;
            box-shadow: 0px 0px 50px 0px #fff inset, 0px 0px 20px 0px #fff299;
  }
}

.collab-box__header {
  text-align: center;
  gap: 10px;
}

.collab__pattern1 {
  width: 130px;
  position: absolute;
  top: 82px;
  top: 324px;
  left: -80px;
  z-index: 2;
}

.collab__pattern2 {
  width: 160px;
  position: absolute;
  bottom: 170px;
  left: -100px;
  z-index: 2;
}

.collab__pattern3 {
  width: 130px;
  position: absolute;
  bottom: 434px;
  right: -80px;
  z-index: 2;
}

.collab__pattern4 {
  width: 154px;
  position: absolute;
  top: 24px;
  right: -100px;
  z-index: 2;
}

.collab-box__label {
  font-size: 32px;
  font-weight: 700;
  color: #5cefff;
  text-shadow: 0 0 20px #5cefff;
  text-align: center;
}
@media (max-width: 767px) {
  .collab-box__label {
    font-size: 24px;
  }
}

.collab-box__pick {
  font-size: 64px;
  font-weight: 900;
  color: #ff6ec6;
  text-shadow: 0 0 20px #ffc4e4;
  letter-spacing: 2.56px;
  line-height: 1;
}
@media (max-width: 767px) {
  .collab-box__pick {
    font-size: 46px;
  }
}

.collab-box__header-bottom {
  margin-top: -12px;
  max-width: 442px;
  margin: -12px auto 0;
}
@media (max-width: 767px) {
  .collab-box__header-bottom {
    margin: -10px auto 0;
  }
}

.collab-box__item {
  width: 54px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .collab-box__item {
    width: 36px;
  }
}
.collab-box__item.reverse {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.collab__item-title--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.collab__item-title--wrap img {
  max-width: 100%;
}
.collab__item-title--wrap img.reverse {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.collab__item-title {
  font-size: 32px;
  color: #abffa7;
  font-weight: bold;
  text-shadow: 0px 0px 20px #abffa7;
  letter-spacing: 0.05em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0 8px;
}
@media (max-width: 767px) {
  .collab__item-title {
    font-size: 24px;
  }
}

.collab-box__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 22px 0 8px 0;
}
@media (max-width: 767px) {
  .collab-box__title {
    margin: 14px -14px 8px;
  }
}

.collab-box__title-main {
  font-size: 32px;
  color: #abffa7;
  font-weight: 700;
  text-shadow: 0 0 20px #abffa7;
}

.collab-box__text {
  font-size: 20px;
  color: #fff;
  margin: 8px 0;
  padding: 0 52px;
}
@media (max-width: 767px) {
  .collab-box__text {
    font-size: 14px;
    padding: 0;
  }
}

.collab-box__note {
  font-size: 16px;
  color: #fff;
  margin-right: auto;
  margin-top: 20px;
  padding: 0 52px;
}
@media (max-width: 767px) {
  .collab-box__note {
    font-size: 12px;
    padding: 0;
    margin-top: 6px;
  }
}

.collab-box__image {
  width: 100%;
  padding: 0 56px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .collab-box__image {
    padding: 0;
    margin-top: 28px;
  }
}
.collab-box__image img {
  width: 100%;
  border-radius: 10px;
  display: block;
}
@media (max-width: 767px) {
  .collab-box__image img {
    border-radius: 4px;
  }
}

.collab-box__bottom {
  margin-top: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .collab-box__bottom {
    margin-top: 24px;
  }
}

.collab-box__bottom-label {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
}
@media (max-width: 767px) {
  .collab-box__bottom-label {
    font-size: 16px;
  }
}

.collab-box__bottom-item {
  width: 40px;
}
@media (max-width: 767px) {
  .collab-box__bottom-item {
    width: 34px;
  }
}
.collab-box__bottom-item.reverse {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.collab-box__bottom-text {
  font-size: 20px;
  color: #fff;
  display: block;
  margin-top: 18px;
  margin-right: auto;
  text-align: left;
  padding: 0 56px;
}
@media (max-width: 767px) {
  .collab-box__bottom-text {
    font-size: 14px;
    padding: 0;
  }
}

/* クリックでコピー
* -------------------------------------------- */
.collab-box__code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-radius: 10px;
  margin: 10px 56px 0;
}
@media (min-width: 768px) {
  .collab-box__code {
    height: 56px;
  }
}
@media (max-width: 767px) {
  .collab-box__code {
    margin: 16px 0px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 10px;
  }
}

.copy-link__title {
  background: #FFF194;
  width: 60%;
  padding: 5px 0 4px;
  border-radius: 10px 0 0 10px;
  border-top: 2px solid #FFF194;
  border-left: 2px solid #FFF194;
  border-bottom: 2px solid #FFF194;
  position: relative;
}
.copy-link__title::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -27px;
  border-style: solid;
  border-width: 28px 0 28px 28px;
  border-color: transparent transparent transparent #FFF194;
}
@media (max-width: 767px) {
  .copy-link__title::after {
    display: none;
  }
}
.copy-link__title p {
  color: #222b59;
  text-shadow: 0.3px 0.3px 0px #fff;
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .copy-link__title p {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .copy-link__title {
    width: 100%;
    padding: 2px;
    border-radius: 10px 10px 0 0;
    border-top: 2px solid #FFF194;
    border-left: 2px solid #FFF194;
    border-right: 2px solid #FFF194;
    border-bottom: 0;
  }
}

.copy-link {
  position: relative;
  background: #fff;
  border-top: 2px solid #FFF194;
  border-right: 2px solid #FFF194;
  border-bottom: 2px solid #FFF194;
  border-radius: 0 10px 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(255, 241, 148, 0.3);
}
@media (max-width: 767px) {
  .copy-link {
    width: 100%;
    border-top: 0;
    border-left: 2px solid #FFF194;
    border-right: 2px solid #FFF194;
    border-bottom: 2px solid #FFF194;
    border-radius: 0 0 10px 10px;
  }
}
.copy-link input {
  border: none;
  outline: none;
  width: 40%;
  color: #fff;
  text-shadow: 0.3px 0.3px 0px #fff;
  font-size: 32px;
}
@media (max-width: 767px) {
  .copy-link input {
    font-size: 24px;
    width: 120px;
  }
}
.copy-link .copy-link__button {
  padding: 10px;
  color: #555;
  outline: none;
  border: none;
  cursor: pointer;
}
.copy-link .copy-link__button img {
  width: 32px;
}
@media (max-width: 767px) {
  .copy-link .copy-link__button img {
    width: 20px;
  }
}
.copy-link .copy-link__button:active {
  background: #ddd;
}
.copy-link .copy-link__button::before {
  content: "コピーしました！";
  position: absolute;
  top: -48px;
  right: 0px;
  color: #fff;
  color: #1E214A;
  background: #5CEFFF;
  border-radius: 10px;
  padding: 9px 15px;
  font-size: 14px;
  display: none;
}
@media (max-width: 767px) {
  .copy-link .copy-link__button::before {
    right: 25%;
  }
}
.copy-link .copy-link__button::after {
  content: "";
  position: absolute;
  top: -16px;
  right: 25px;
  width: 10px;
  height: 10px;
  background: #5CEFFF;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  display: none;
}
@media (max-width: 767px) {
  .copy-link .copy-link__button::after {
    right: calc(25% + 25px);
  }
}
.copy-link.active button::after, .copy-link.active button::before {
  display: block;
}