@charset "UTF-8";
/* リセット */

.main-contents :where(ul, ol) {
  list-style: none;
  margin-inline: 0;
  padding-inline-start: 0;
}
.main-contents :where(*, *:before, *:after) {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.main-contents :where(img) {
  display: block;
  width: 100%;
  height: auto;
}
/* 全体 */
:root {
  --font-primary: Arial, Hiragino Sans, "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3",
    "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", Meiryo, "メイリオ", sans-serif;
  --color-background: #c30d23;
}
.main-contents {
  font-family: var(--font-primary);
  font-weight: 500;
  background-color: black;
  color: white;
}
.container {
  width: 100%;
  max-width: 750px;
  margin-inline: auto;
}
.main {
  margin-inline: auto;
  padding-inline: 4.4%;
  width: 100%;
  max-width: 750px;
}
.swiper-navigation-icon {
  display: none;
}
@media (min-width: 768px) {
  .main {
    max-width: 910px;
    padding-inline: 0px;
  }
}
.sticky-wrapper {
  background-color: var(--color-background);
}
@media (min-width: 768px) {
  .sticky-wrapper {
    background-color: transparent;
  }
}
@media (min-width: 768px) {
  .main-contents {
    background-image: url(../images/bg_pc.webp);
    background-size: 100% auto;
    background-position: top;
    background-repeat: no-repeat;
  }
}

/* コンポーネント */
@media (min-width: 768px) {
  .firstview {
    max-width: 910px;
    margin-inline: auto;
    padding-block: 90px;
  }
}
.header {
  position: sticky;
  top: 0;
  left: 0;
  background-color: #126dcb;
  color: white;
  z-index: 1001;
  margin-inline: auto;
  width: 100%;
  padding-block: 0.25em;
}
.header .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1.3333333333vw;
}
@supports (width: 1cqw) {
  .header .header__inner {
    padding-inline: 1.3333333333cqw;
  }
}
.header .header__inner .header__menu-button {
  display: block;
  position: relative;
  width: 100%;
  background-color: #126dcb;
  height: 100%;
  aspect-ratio: 1;
  border: none;
  cursor: pointer;
  max-width: 12.8vw;
}
@supports (width: 1cqw) {
  .header .header__inner .header__menu-button {
    max-width: 12.8cqw;
  }
}
.header .header__inner .header__menu-button .header__menu-icon-bar {
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  height: 1px;
  width: 100%;
  max-width: 7.2vw;
  background-color: white;
  margin: auto;
  top: 0;
  bottom: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@supports (width: 1cqw) {
  .header .header__inner .header__menu-button .header__menu-icon-bar {
    max-width: 7.2cqw;
  }
}
.header .header__inner .header__menu-button .header__menu-icon-bar:nth-of-type(1) {
  --offset: 1.4666666667vw;
  transform: translateY(calc(var(--offset) * -1));
}
@supports (width: 1cqw) {
  .header .header__inner .header__menu-button .header__menu-icon-bar:nth-of-type(1) {
    --offset: 1.4666666667cqw;
  }
}
.header .header__inner .header__menu-button .header__menu-icon-bar:nth-of-type(2) {
  --offset: 1.4666666667vw;
  transform: translateY(var(--offset));
}
@supports (width: 1cqw) {
  .header .header__inner .header__menu-button .header__menu-icon-bar:nth-of-type(2) {
    --offset: 1.4666666667cqw;
  }
}
.header .header__inner .header__menu-button.is-active .header__menu-icon-bar:nth-of-type(1) {
  transform: rotate(45deg);
}
.header .header__inner .header__menu-button.is-active .header__menu-icon-bar:nth-of-type(2) {
  opacity: 0;
}
.header .header__inner .header__menu-button.is-active .header__menu-icon-bar:nth-of-type(3) {
  transform: rotate(-45deg);
}
.header__menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
  padding-top: var(--header-height, 24px);
  background-color: #126dcb;
}
.header__menu.is-open {
  transform: translateY(0);
}
.header__menu .header__menu-inner {
  padding-block: 4vw;
  padding-inline: 4vw;
  display: flex;
  flex-direction: column;
  row-gap: 8vw;
}
@supports (width: 1cqw) {
  .header__menu .header__menu-inner {
    padding-block: 4cqw;
  }
}
@supports (width: 1cqw) {
  .header__menu .header__menu-inner {
    padding-inline: 4cqw;
  }
}
@supports (width: 1cqw) {
  .header__menu .header__menu-inner {
    row-gap: 8cqw;
  }
}
.header__menu .header__menu-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.header__menu .header__menu-top .header__mypageid {
  display: flex;
  -moz-column-gap: 0.5em;
  column-gap: 0.5em;
  color: white;
  font-size: clamp(10px, 4vw, 30px);
  font-weight: 500;
  letter-spacing: 0.1em;
}
@supports (width: 1cqw) {
  .header__menu .header__menu-top .header__mypageid {
    font-size: clamp(10px, 4cqw, 30px);
  }
}
.header__menu .header__menu-nav {
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  padding-block: 8vw;
}
@supports (width: 1cqw) {
  .header__menu .header__menu-nav {
    padding-block: 8cqw;
  }
}
.header__menu .header__menu-nav ul {
  display: flex;
  flex-direction: column;
  row-gap: 5.3333333333vw;
}
@supports (width: 1cqw) {
  .header__menu .header__menu-nav ul {
    row-gap: 5.3333333333cqw;
  }
}
.header__menu .header__menu-nav ul a {
  text-decoration: none;
  color: white;
  font-family: var(--font-mp2);
  font-weight: 500;
  font-size: clamp(10px, 5.3333333333vw, 40px);
  letter-spacing: 0.001em;
}
@supports (width: 1cqw) {
  .header__menu .header__menu-nav ul a {
    font-size: clamp(10px, 5.3333333333cqw, 40px);
  }
}
.header__menu .header__menu-nav ul a:hover {
  text-decoration: underline;
}
.about {
  padding-block: 3.3333333333vw;
}
@supports (width: 1cqw) {
  .about {
    padding-block: 3.3333333333cqw;
  }
}
.about .about__title {
  max-width: 66%;
  margin-inline: auto;
}
.about .about__description {
  text-align: center;
  font-size: clamp(10px, 3.2vw, 24px);
  margin-block: 4vw;
  letter-spacing: -0.05em;
}
@supports (width: 1cqw) {
  .about .about__description {
    font-size: clamp(10px, 3.2cqw, 24px);
  }
}
@supports (width: 1cqw) {
  .about .about__description {
    margin-block: 4cqw;
  }
}
@media (min-width: 768px) {
  .about .about__description {
    font-size: 18px;
  }
}
.about .about__toc {
  display: flex;
  -moz-column-gap: 2.6666666667vw;
  column-gap: 2.6666666667vw;
  justify-content: center;
}
@supports (width: 1cqw) {
  .about .about__toc {
    -moz-column-gap: 2.6666666667cqw;
    column-gap: 2.6666666667cqw;
  }
}
.about .about__slider {
  margin-bottom: 8vw;
}
@supports (width: 1cqw) {
  .about .about__slider {
    margin-bottom: 8cqw;
  }
}
.about .swiper {
  overflow: hidden;
}
.about .slide-item {
  display: flex;
  flex-direction: column;
  row-gap: 5.3333333333vw;
}
@supports (width: 1cqw) {
  .about .slide-item {
    row-gap: 5.3333333333cqw;
  }
}
@media (min-width: 768px) {
  .about .slide-item {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
.about .slide-item .slide-img {
  max-width: 72.1333333333vw;
  margin-inline: auto;
}
@supports (width: 1cqw) {
  .about .slide-item .slide-img {
    max-width: 72.1333333333cqw;
  }
}
@media (min-width: 768px) {
  .about .slide-item .slide-img {
    max-width: 350px;
    margin-inline-start: 0;
  }
}
.about .slide-item .slide-note {
  text-align: center;
  font-size: clamp(10px, 3.2vw, 24px);
}
@supports (width: 1cqw) {
  .about .slide-item .slide-note {
    font-size: clamp(10px, 3.2cqw, 24px);
  }
}
@media (min-width: 768px) {
  .about .slide-item .slide-note {
    font-size: 18px;
  }
}
.about .slider-controls {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1em;
  margin-top: 1em;
}
.about .swiper-button-prev,
.about .swiper-button-next {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: 2em;
  height: 2em;
  margin: 0 !important;
  cursor: pointer;
  flex-shrink: 0 !important;
  aspect-ratio: 1;
}
.about .swiper-button-prev::after,
.about .swiper-button-next::after {
  display: none;
}
.about .swiper-button-prev {
  transform: rotate(180deg);
}
.about .swiper-button-prev img,
.about .swiper-button-next img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}
.about .swiper-pagination {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  width: auto !important;
  display: flex;
  gap: 0.5em;
}
.about .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: #ffffff !important;
  opacity: 0.5 !important;
  border-radius: 50% !important;
  margin: 0 !important;
}
.about .swiper-pagination-bullet-active {
  opacity: 1 !important;
  background: #ffffff !important;
}
.about .about__subtitle {
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: auto;
  color: #550000;
  font-weight: 700;
  background-image: linear-gradient(to bottom, #d7b154, #eae2aa);
  border-radius: 9999px;
  font-size: clamp(10px, 4vw, 30px);
  padding-block: 0.66em;
  padding-inline: 1.25em;
}
@supports (width: 1cqw) {
  .about .about__subtitle {
    font-size: clamp(10px, 4cqw, 30px);
  }
}
.about .about__message {
  margin-block: 5.3333333333vw;
}
@supports (width: 1cqw) {
  .about .about__message {
    margin-block: 5.3333333333cqw;
  }
}
.about .about__searchbox {
  margin-block: 5.3333333333vw;
  display: flex;
  -moz-column-gap: 1.6vw;
  column-gap: 1.6vw;
  font-size: clamp(10px, 5.3333333333vw, 40px);
}
@supports (width: 1cqw) {
  .about .about__searchbox {
    margin-block: 5.3333333333cqw;
  }
}
@supports (width: 1cqw) {
  .about .about__searchbox {
    -moz-column-gap: 1.6cqw;
    column-gap: 1.6cqw;
  }
}
@supports (width: 1cqw) {
  .about .about__searchbox {
    font-size: clamp(10px, 5.3333333333cqw, 40px);
  }
}
@media (min-width: 768px) {
  .about .about__searchbox {
    max-width: 570px;
    margin-inline: auto;
    font-size: 30px;
  }
}
.about .about__searchbox .about__searchbox__input {
  display: grid;
  place-content: center;
  background-color: white;
  color: black;
  border-radius: 5px;
  width: 74.4047619048%;
  padding-block: 3.3333333333vw;
  font-weight: 700;
}
@supports (width: 1cqw) {
  .about .about__searchbox .about__searchbox__input {
    padding-block: 3.3333333333cqw;
  }
}
@media (min-width: 768px) {
  .about .about__searchbox .about__searchbox__input {
    padding-block: 0.5em;
  }
}
.about .about__searchbox .about__searchbox__btn {
  padding-block: 3.3333333333vw;
  background-color: black;
  color: white;
  border-radius: 5px;
  width: 23.8095238095%;
  display: grid;
  place-content: center;
}
@supports (width: 1cqw) {
  .about .about__searchbox .about__searchbox__btn {
    padding-block: 3.3333333333cqw;
  }
}
@media (min-width: 768px) {
  .about .about__searchbox .about__searchbox__btn {
    padding-block: 0.5em;
  }
}
.about .about__slider-overlay {
  position: relative;
}
.about .about__slider-overlay .about__slider-overlay__content {
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  width: 100%;
  height: 88%;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1em;
  column-gap: 1em;
  z-index: 10;
}
@media (min-width: 768px) {
  .about .about__slider-overlay .about__slider-overlay__content {
    height: 88%;
    font-size: 20px;
  }
}
.about .about__slider-overlay .about__slider-overlay__content .about__slider-overlay__arrow {
  max-width: 19.6vw;
}
@supports (width: 1cqw) {
  .about .about__slider-overlay .about__slider-overlay__content .about__slider-overlay__arrow {
    max-width: 19.6cqw;
  }
}
.about .about__slider-overlay .about__slider-overlay__content .about__slider-overlay__arrow:first-of-type {
  transform: rotateZ(180deg);
}
.cta {
  position: sticky;
  bottom: 0;
  inset-inline: 0;
  margin: auto;
  z-index: 20;
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  background-image: linear-gradient(to top, #8c171d, #bd212e);
}
.cta .cta__inner {
  padding-block: 1.3333333333% 5.0666666667%;
  padding-inline: 4.4%;
}
@media (min-width: 768px) {
  .cta .cta__inner {
    padding-top: 20px;
    padding-bottom: 26px;
  }
}
.cta .cta__button {
  display: block;
  max-width: 400px;
  margin-inline: auto;
}
.cta .cta__annotation {
  text-align: center;
  font-size: clamp(10px, 2.6666666667vw, 20px);
  margin-top: 5.3333333333vw;
  letter-spacing: -0.05em;
}
@supports (width: 1cqw) {
  .cta .cta__annotation {
    font-size: clamp(10px, 2.6666666667cqw, 20px);
  }
}
@supports (width: 1cqw) {
  .cta .cta__annotation {
    margin-top: 5.3333333333cqw;
  }
}
.cta .cta__annotation a:hover {
  text-decoration: none;
}
@media (min-width: 768px) {
  .cta .cta__annotation {
    font-size: 14px;
    margin-top: 24px;
  }
}
.regulation {
  padding-block: 3.3333333333vw;
}
@supports (width: 1cqw) {
  .regulation {
    padding-block: 3.3333333333cqw;
  }
}
.footer {
  background-color: black;
  color: white;
  font-size: clamp(10px, 3.7333333333vw, 28px);
  display: flex;
  flex-direction: column;
  row-gap: 1em;
}
@supports (width: 1cqw) {
  .footer {
    font-size: clamp(10px, 3.7333333333cqw, 28px);
  }
}
.footer .footer__inner {
  padding-block: 4vw;
  padding-inline: 4vw;
}
@supports (width: 1cqw) {
  .footer .footer__inner {
    padding-block: 4cqw;
  }
}
@supports (width: 1cqw) {
  .footer .footer__inner {
    padding-inline: 4cqw;
  }
}
.footer a {
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer a[target="_blank"]::after {
  content: "";
  display: inline-block;
  margin-left: 0.3em;
  width: 0.8em;
  height: 0.8em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='32' d='M388.364 242.764v178.691A42.547 42.547 0 0 1 345.818 464H90.546A42.544 42.544 0 0 1 48 421.455V166.182a42.543 42.543 0 0 1 42.546-42.546h178.69M464 180.364V48H331.636M216 296L464 48'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.footer .footer__nav {
  display: grid;
  row-gap: 1em;
  margin-bottom: 1em;
}
.footer .footer__nav > *:not(:last-child) {
  padding-bottom: 1em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer .footer__nav > ul {
  display: grid;
  row-gap: 0.5em;
}
.footer .footer__copylight {
  display: flex;
  -moz-column-gap: 1em;
  column-gap: 1em;
}
.footer .footer__copylight small {
  font-size: 1em;
  opacity: 0.5;
}
.notes {
  background-color: white;
  color: black;
  border-radius: 10px;
  padding: 3.6vw;
  display: grid;
  row-gap: 1em;
}
@supports (width: 1cqw) {
  .notes {
    padding: 3.6cqw;
  }
}
.notes .notes__title {
  font-weight: 700;
  font-size: clamp(10px, 4vw, 30px);
}
@supports (width: 1cqw) {
  .notes .notes__title {
    font-size: clamp(10px, 4cqw, 30px);
  }
}
@media (min-width: 768px) {
  .notes .notes__title {
    font-size: 24px;
  }
}
.notes .notes__content {
  font-size: clamp(10px, 4vw, 30px);
  letter-spacing: 0.01em;
}
@supports (width: 1cqw) {
  .notes .notes__content {
    font-size: clamp(10px, 4cqw, 30px);
  }
}
@media (min-width: 768px) {
  .notes .notes__content {
    font-size: 18px;
  }
}
.prizes {
  padding-top: 3.6vw;
  padding-bottom: 10.6666666667vw;
}
@supports (width: 1cqw) {
  .prizes {
    padding-top: 3.6cqw;
    padding-bottom: 10.6666666667cqw;
  }
}
.prizes .prizes__card {
  position: relative;
  background-image: url(../images/prize_card_bg_sp.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 3.6vw;
  padding-inline: 3.6vw;
  padding-bottom: 10.6666666667vw;
  border-radius: 16px;
  margin-top: 14vw;
  margin-bottom: 6.9333333333vw;
}
@supports (width: 1cqw) {
  .prizes .prizes__card {
    padding-top: 3.6cqw;
    padding-inline: 3.6cqw;
  }
}
@supports (width: 1cqw) {
  .prizes .prizes__card {
    padding-bottom: 10.6666666667cqw;
  }
}
@supports (width: 1cqw) {
  .prizes .prizes__card {
    margin-top: 14cqw;
  }
}
@supports (width: 1cqw) {
  .prizes .prizes__card {
    margin-bottom: 6.9333333333cqw;
  }
}
.prizes .prizes__title {
  position: absolute;
  top: 0;
  inset-inline: 0;
  margin-inline: auto;
  transform: translateY(-50%);
  max-width: 66%;
  margin-inline: auto;
  z-index: 10;
}
.prizes .prizes__contents {
  display: grid;
  row-gap: 4vw;
  margin-bottom: 4vw;
}
@supports (width: 1cqw) {
  .prizes .prizes__contents {
    row-gap: 4cqw;
  }
}
@supports (width: 1cqw) {
  .prizes .prizes__contents {
    margin-bottom: 4cqw;
  }
}
.prizes .prizes__annotations {
  font-size: clamp(10px, 3.4666666667vw, 26px);
  letter-spacing: -0.05em;
  font-weight: 700;
  margin-bottom: 3.8666666667vw;
  color: black;
}
@supports (width: 1cqw) {
  .prizes .prizes__annotations {
    font-size: clamp(10px, 3.4666666667cqw, 26px);
  }
}
@supports (width: 1cqw) {
  .prizes .prizes__annotations {
    margin-bottom: 3.8666666667cqw;
  }
}
@media (min-width: 768px) {
  .prizes .prizes__annotations > li {
    display: inline;
  }
}
.prizes .prizes__notes {
  font-size: clamp(10px, 3.2vw, 24px);
  display: grid;
  row-gap: 1em;
  color: black;
}
@supports (width: 1cqw) {
  .prizes .prizes__notes {
    font-size: clamp(10px, 3.2cqw, 24px);
  }
}
@media (min-width: 768px) {
  .prizes .prizes__notes {
    font-size: 18px;
  }
}
.prizes .prizes__notes li {
  display: flex;
}
.prizes .prizes__notes li::before {
  content: "・";
}
.prizes .prizes__notes strong {
  font-size: 1.25em;
  font-weight: inherit;
}
@media (min-width: 768px) {
  .join {
    margin-top: 69px;
  }
}
.join .join__title {
  max-width: 66%;
  margin-inline: auto;
}
.join .join__period {
  position: relative;
  margin-block: 5.3333333333vw;
  border: 2px solid black;
  border-radius: 10px;
  background-color: white;
  overflow: hidden;
}
@supports (width: 1cqw) {
  .join .join__period {
    margin-block: 5.3333333333cqw;
  }
}
.join .join__period .join__period__title {
  background-color: black;
  color: white;
  font-size: clamp(10px, 3.2vw, 24px);
  padding-block: 2.6666666667vw;
  text-align: center;
}
@supports (width: 1cqw) {
  .join .join__period .join__period__title {
    font-size: clamp(10px, 3.2cqw, 24px);
  }
}
@supports (width: 1cqw) {
  .join .join__period .join__period__title {
    padding-block: 2.6666666667cqw;
  }
}
@media (min-width: 768px) {
  .join .join__period .join__period__title {
    font-size: 28px;
    padding-block: 0.5em;
  }
}
.join .join__period .join__period__time {
  color: black;
  font-size: clamp(10px, 4.2666666667vw, 32px);
  font-weight: 700;
  padding-block: 5.0666666667vw;
  text-align: center;
}
@supports (width: 1cqw) {
  .join .join__period .join__period__time {
    font-size: clamp(10px, 4.2666666667cqw, 32px);
  }
}
@supports (width: 1cqw) {
  .join .join__period .join__period__time {
    padding-block: 5.0666666667cqw;
  }
}
@media (min-width: 768px) {
  .join .join__period .join__period__time {
    font-size: 28px;
    padding-block: 1em;
  }
}
.join .join__period::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.join .join__steps {
  position: relative;
  display: grid;
  row-gap: 5.3333333333vw;
}
@supports (width: 1cqw) {
  .join .join__steps {
    row-gap: 5.3333333333cqw;
  }
}
@media (min-width: 768px) {
  .join .join__steps {
    display: flex;
    -moz-column-gap: 2em;
    column-gap: 2em;
  }
}
.join .join__steps > .join__step:not(:last-child)::after {
  content: "";
  background-image: url(../images/arrow.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  margin-inline: auto;
  width: 3.2vw;
  height: 2vw;
  transform: translateY(150%);
}
@supports (width: 1cqw) {
  .join .join__steps > .join__step:not(:last-child)::after {
    width: 3.2cqw;
  }
}
@supports (width: 1cqw) {
  .join .join__steps > .join__step:not(:last-child)::after {
    height: 2cqw;
  }
}
@media (min-width: 768px) {
  .join .join__steps > .join__step:not(:last-child)::after {
    width: 10px;
    height: 16px;
    inset-inline: auto;
    right: 0;
    inset-block: 0;
    margin-block: auto;
    transform: rotateZ(270deg) translateY(125%);
  }
}
.join .join__steps .join__step {
  position: relative;
}
.join .join__message {
  text-align: center;
  font-size: clamp(10px, 4vw, 30px);
  font-weight: 700;
  margin-block: 2.6666666667vw;
  letter-spacing: -0.05em;
}
@supports (width: 1cqw) {
  .join .join__message {
    font-size: clamp(10px, 4cqw, 30px);
  }
}
@supports (width: 1cqw) {
  .join .join__message {
    margin-block: 2.6666666667cqw;
  }
}
@media (min-width: 768px) {
  .join .join__message {
    font-size: 24px;
  }
}
.join .join__message-link {
  text-align: center;
  font-size: clamp(10px, 4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.05em;
  margin-block: 6.6666666667vw;
}
@supports (width: 1cqw) {
  .join .join__message-link {
    font-size: clamp(10px, 4cqw, 30px);
  }
}
@supports (width: 1cqw) {
  .join .join__message-link {
    margin-block: 6.6666666667cqw;
  }
}
@media (min-width: 768px) {
  .join .join__message-link {
    font-weight: 500;
  }
}
.join .join__notes {
  font-size: clamp(10px, 3.2vw, 24px);
  letter-spacing: 0.01em;
}
@supports (width: 1cqw) {
  .join .join__notes {
    font-size: clamp(10px, 3.2cqw, 24px);
  }
}
@media (min-width: 768px) {
  .join .join__notes {
    font-size: 18px;
    max-width: 653px;
    margin-inline: auto;
    letter-spacing: -0.05em;
  }
}
.join .join__notes a {
  text-decoration: underline;
}
.join .join__notes a:hover {
  text-decoration: none;
}
/* ユーティリティ */
@media (min-width: 768px) {
  .sp_only {
    display: none;
  }
}
@media not all and (min-width: 768px) {
  .pc_only {
    display: none;
  }
}
.\@container {
  container-type: inline-size;
}
.relative {
  position: relative;
}
a.text-white {
  color: white;
}
a.text-underline {
  text-decoration: underline;
}
a.text-underline:hover {
  text-decoration: none;
}
