@charset "UTF-8";
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, small, button, time, figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

header, footer, nav, section, article, aside, figure, figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

/*==========================================================================
ベースのスタイル
========================================================================== */
html {
  font-size: 1px;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
@media screen and (max-width: 767.9px) {
  html {
    scroll-padding-top: 60px;
  }
}

body {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-size: 16rem;
  color: #1C4773;
  background-color: #F6F6F4;
}
body.lower-page {
  background-color: #F6F5F2;
}
body.is-active {
  overflow: hidden;
}

.wrapper {
  overflow-x: hidden;
  position: relative;
}

img {
  width: 100%;
}

a {
  cursor: pointer;
  color: inherit;
}

a.--underline {
  text-decoration: underline;
}

@media screen and (min-width: 1024.1px) {
  .is-sp {
    display: none;
  }
}

@media screen and (max-width: 767.9px) {
  .is-pc {
    display: none;
  }
}

button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
}

/*==========================================================================
セクションタイトル
========================================================================== */
.section-title {
  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;
}
.section-title .--sub {
  margin-top: 14.5px;
  font-size: 20rem;
  line-height: 1.45;
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .section-title .--sub {
    font-size: 12rem;
    line-height: 1.4615384615;
    margin-top: 8px;
  }
}
.section-title .--accent {
  width: 286px;
  height: 26px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 10px;
}
@media screen and (max-width: 767.9px) {
  .section-title .--accent {
    width: 175px;
    height: 16px;
    margin-top: 6px;
  }
}
.section-title .--text {
  display: inline-block;
  font-size: 36rem;
  line-height: 1.4444444444;
  font-weight: 500;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767.9px) {
  .section-title .--text {
    font-size: 22rem;
    line-height: 1.4545454545;
  }
}
.section-title .--sub-text {
  font-size: 24rem;
  line-height: 1.9166666667;
  position: relative;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .section-title .--sub-text {
    font-size: 12rem;
    letter-spacing: 0.025em;
  }
}

.section-title__img {
  height: 40px;
  width: auto;
}
.section-title__img.--upcoming {
  height: 43px;
}
@media screen and (max-width: 767.9px) {
  .section-title__img.--upcoming {
    height: 24px;
  }
}
.section-title__img.--past {
  height: 43px;
}
@media screen and (max-width: 767.9px) {
  .section-title__img.--past {
    height: 24px;
  }
}
.section-title__img.--about {
  height: 42px;
}
@media screen and (max-width: 767.9px) {
  .section-title__img.--about {
    height: 23px;
  }
}
@media screen and (max-width: 767.9px) {
  .section-title__img {
    height: 22px;
  }
}

/*==========================================================================
トップへ戻るボタン
========================================================================== */
.totop {
  position: fixed;
  width: 83px;
  height: 83px;
  right: 52px;
  bottom: 52px;
  background-color: transparent;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 767.9px) {
  .totop {
    width: 45px;
    height: 45px;
    right: 12px;
  }
}
.totop img {
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.16);
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

/*==========================================================================
ヘッダー
========================================================================== */
.header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header.--start {
  position: absolute;
}
.header.--fixed {
  position: fixed;
  background-color: #00D7F1;
  translate: 0 -101%;
}
.header.--fixed.--show {
  -webkit-transition: translate 0.3s ease;
  transition: translate 0.3s ease;
  translate: 0 0;
}

.header-inner {
  padding-inline: 20px 30px;
  padding-block: 12px;
  max-width: 1920px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .header-inner {
    padding-inline: 11px 13px;
    padding-block: 5px 11px;
  }
}

.header-logo__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767.9px) {
  .header-logo__link {
    gap: 6px;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1024px) {
  .header-logo__link {
    gap: 16rem;
  }
}

.header-logo__img {
  width: 76px;
  aspect-ratio: 1/1;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767.9px) {
  .header-logo__img {
    width: 34px;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1024px) {
  .header-logo__img {
    width: 60px;
  }
}

.header-logo__text {
  font-size: 24rem;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (max-width: 767.9px) {
  .header-logo__text {
    font-size: 11rem;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1024px) {
  .header-logo__text {
    font-size: 20rem;
  }
}

.lang-block {
  margin-left: auto;
  padding: 8px 9px;
  background-color: #ffffff;
  border-radius: 25px;
  font-size: 18rem;
  font-weight: 700;
  line-height: 1.4444444444;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
}
@media screen and (max-width: 767.9px) {
  .lang-block {
    font-size: 10rem;
    padding: 5px;
    border-radius: 15px;
    line-height: 1.5;
    gap: 7px;
  }
}
.lang-block .--active {
  color: #ffffff;
  background-color: #1C4773;
  border-radius: 17px;
  padding: 3px 10px 5px;
}
@media screen and (max-width: 767.9px) {
  .lang-block .--active {
    border-radius: 10px;
    padding: 1px 5px 3px;
  }
}
.lang-block .--inactive.--ko {
  margin-right: 17px;
}
@media screen and (max-width: 767.9px) {
  .lang-block .--inactive.--ko {
    margin-right: 6px;
  }
}

/*==========================================================================
フッター
========================================================================== */
.footer.--form {
  background-color: #ffffff;
}

.footer-inner {
  max-width: 1450px;
  padding-inline: 125px;
  margin-inline: auto;
  padding-top: 33px;
  padding-bottom: 43px;
}
@media screen and (max-width: 767.9px) {
  .footer-inner {
    padding-inline: 30px;
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

.footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (max-width: 767.9px) {
  .footer-logo {
    gap: 9px;
  }
}

.footer-logo__img {
  width: 60px;
  aspect-ratio: 1/1;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767.9px) {
  .footer-logo__img {
    width: 37px;
  }
}

.footer-logo__text {
  font-size: 20rem;
  font-weight: 700;
  color: #3E3E3E;
}
@media screen and (max-width: 767.9px) {
  .footer-logo__text {
    font-size: 11rem;
  }
}

.footer-link {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767.9px) {
  .footer-link {
    margin-top: 10px;
    gap: 12px;
  }
}
.footer-link .--bar {
  width: 0.5px;
  height: 40px;
  background-color: #3E3E3E;
}
@media screen and (max-width: 767.9px) {
  .footer-link .--bar {
    height: 16px;
  }
}

.footer-link__item {
  font-size: 18rem;
  line-height: 1.4444444444;
  color: #3E3E3E;
}
@media screen and (max-width: 767.9px) {
  .footer-link__item {
    font-size: 11rem;
    line-height: 1.4545454545;
  }
}

.footer-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.footer-sns__item {
  width: 45px;
  height: 45px;
}
@media screen and (max-width: 767.9px) {
  .footer-sns__item {
    width: 30px;
    height: 30px;
  }
}
.footer-sns__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer-copyright {
  width: 100%;
  background-color: #DEDDDB;
  text-align: center;
  padding-top: 7px;
  padding-bottom: 9px;
  font-size: 16rem;
  color: #3E3E3E;
  font-weight: 300;
  line-height: 1.5;
}
@media screen and (max-width: 767.9px) {
  .footer-copyright {
    padding-top: 9px;
    padding-bottom: 8px;
    font-size: 9rem;
    line-height: 1.4444444444;
  }
}

/*==========================================================================
下層ページの共通スタイル
========================================================================== */
.lower-main {
  padding-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .lower-main {
    padding-bottom: 32px;
  }
}

.lower-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 767.9px) {
  .lower-inner {
    padding-inline: 22px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.lower-fv {
  width: 100%;
  aspect-ratio: 1920/566;
  height: auto;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#00D7F1), color-stop(170%, #FFFFB9));
  background: linear-gradient(180deg, #00D7F1 0%, #FFFFB9 170%);
  min-height: 380px;
}
.lower-fv.registration-fv {
  min-height: 500px;
}
@media screen and (max-width: 767.9px) {
  .lower-fv.registration-fv {
    min-height: auto;
  }
}
@media screen and (max-width: 767.9px) {
  .lower-fv {
    height: 300px;
    aspect-ratio: auto;
    min-height: auto;
  }
}

.lower-title {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 10;
  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: 17px;
}
@media screen and (max-width: 767.9px) {
  .lower-title {
    top: 96px;
    gap: 6px;
  }
}
.lower-title .lower-title__img {
  width: auto;
  height: 49px;
}
@media screen and (max-width: 767.9px) {
  .lower-title .lower-title__img {
    height: 26px;
  }
}
.lower-title.registration-title {
  top: auto;
  translate: -50%;
  bottom: 242px;
}
@media screen and (max-width: 767.9px) {
  .lower-title.registration-title {
    top: 93px;
    bottom: auto;
  }
}
.lower-title .--sub {
  font-size: 22rem;
  line-height: 1.4545454545;
  color: #ffffff;
}
@media screen and (max-width: 767.9px) {
  .lower-title .--sub {
    font-size: 15rem;
    line-height: clac(32/15);
  }
}

.lower-fv-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 7.7777777778%;
  left: 50%;
  translate: -50%;
  gap: 10.1948051948%;
  font-size: 22rem;
  font-weight: 900;
  z-index: 10;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767.9px) {
  .lower-fv-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    font-size: 13rem;
    bottom: 20px;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1024px) {
  .lower-fv-link {
    font-size: 18rem;
    gap: 24px;
  }
}

.lower-fv-link__item {
  white-space: nowrap;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, #BFFFEA));
  background: linear-gradient(180deg, transparent 0% 50%, #BFFFEA 50% 100%);
  padding-inline: 2px;
}
.lower-fv-link__item img {
  display: inline-block;
  width: 16.5px;
  height: 20.5px;
  margin-left: 8px;
}
@media screen and (max-width: 767.9px) {
  .lower-fv-link__item img {
    width: 11px;
    height: 13px;
    margin-left: 18px;
  }
}
.lower-fv-link__item .top-border {
  display: inline-block;
  width: 1px;
  height: 24px;
  background-color: #1C4773;
  rotate: -20deg;
  margin-right: 12px;
}
@media screen and (max-width: 767.9px) {
  .lower-fv-link__item .top-border {
    height: 14px;
    margin-right: 8px;
  }
}
.lower-fv-link__item .text {
  display: inline-block;
}
.lower-fv-link__item .end-border {
  display: inline-block;
  width: 1px;
  height: 24px;
  background-color: #1C4773;
  rotate: 20deg;
  margin-left: 12px;
}
@media screen and (max-width: 767.9px) {
  .lower-fv-link__item .end-border {
    height: 14px;
    margin-left: 8px;
  }
}

/*==========================================================================
ハンバーガーメニュー
========================================================================== */
.drawer-icon {
  background-color: transparent;
  position: relative;
  z-index: 300;
  margin-left: 46px;
  cursor: pointer;
  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;
  margin-top: 5px;
}
@media screen and (max-width: 767.9px) {
  .drawer-icon {
    margin-left: 15px;
  }
}
.drawer-icon.js-show .drawer-icon--bar {
  gap: 0px;
}
.drawer-icon.js-show .drawer-icon--bar1 {
  rotate: 30deg;
  -webkit-transition: rotate 0.3s ease;
  transition: rotate 0.3s ease;
  translate: 0 11px;
}
@media screen and (max-width: 767.9px) {
  .drawer-icon.js-show .drawer-icon--bar1 {
    translate: 0 7.5px;
  }
}
.drawer-icon.js-show .drawer-icon--bar2 {
  opacity: 0;
}
.drawer-icon.js-show .drawer-icon--bar3 {
  rotate: -30deg;
  translate: 0 -11px;
  -webkit-transition: rotate 0.3s ease;
  transition: rotate 0.3s ease;
}
@media screen and (max-width: 767.9px) {
  .drawer-icon.js-show .drawer-icon--bar3 {
    translate: 0 -7.5px;
  }
}

.drawer-icon--bar {
  width: 59px;
  height: 24px;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767.9px) {
  .drawer-icon--bar {
    width: 34.5px;
    height: 16.5px;
  }
}

.drawer-icon--bar1 {
  width: 100%;
  height: 2px;
  scale: 1 1.1;
  background-color: #ffffff;
  -webkit-transition: rotate 0.3s ease;
  transition: rotate 0.3s ease;
}
@media screen and (max-width: 767.9px) {
  .drawer-icon--bar1 {
    height: 1px;
    scale: 1 1.2;
  }
}

.drawer-icon--bar2 {
  width: 100%;
  height: 2px;
  scale: 1 1.1;
  background-color: #ffffff;
}
@media screen and (max-width: 767.9px) {
  .drawer-icon--bar2 {
    height: 1px;
  }
}

.drawer-icon--bar3 {
  width: 100%;
  height: 2px;
  scale: 1 1.1;
  background-color: #ffffff;
  -webkit-transition: rotate 0.3s ease;
  transition: rotate 0.3s ease;
}
@media screen and (max-width: 767.9px) {
  .drawer-icon--bar3 {
    height: 1px;
  }
}

.drawer-icon__text {
  font-size: 20rem;
  line-height: 1.45;
  font-weight: 700;
  color: #ffffff;
  margin-top: 5px;
}
@media screen and (max-width: 767.9px) {
  .drawer-icon__text {
    font-size: 11rem;
    line-height: 1.4545454545;
  }
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: -webkit-gradient(linear, left top, left bottom, from(#00D7F1), to(#FFFFB9));
  background: linear-gradient(180deg, #00D7F1 0%, #FFFFB9 100%);
  translate: 101%;
  -webkit-transition: translate 0.3s ease;
  transition: translate 0.3s ease;
}
.drawer.js-show {
  translate: 0;
}

.drawer-inner {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

.drawer-body {
  font-size: 24rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 90px;
  color: #ffffff;
}
@media screen and (max-width: 767.9px) {
  .drawer-body {
    font-size: 16px;
    gap: 40px;
  }
}

.drawer-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: 20px;
}

.header-item {
  width: 480px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .header-item {
    width: 222.5px;
  }
}
.header-item a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.header-item::after {
  position: absolute;
  content: "";
  height: 100%;
  width: auto;
  aspect-ratio: 21/10;
  background: url(../img/drawer_arrow.svg) no-repeat center right/contain;
  right: 0;
  top: 50%;
  translate: 0 -50%;
}

.drawer-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 30px;
  margin-right: 3px;
}
@media screen and (max-width: 767.9px) {
  .drawer-sns {
    gap: 15px;
  }
}

.drawer-sns__item {
  display: inline-block;
  width: 55px;
  height: 55px;
}
@media screen and (max-width: 767.9px) {
  .drawer-sns__item {
    width: 40px;
    height: 40px;
  }
}
.drawer-sns__item img {
  width: 100%;
  height: 100%;
}

/*==========================================================================
トップページのFV
========================================================================== */
.fv {
  height: 100vh;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .fv {
    height: 844px;
  }
}

.fv-wrapper {
  width: 100%;
  height: 100vh;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#00D7F1), color-stop(87%, #FFFFB9), color-stop(87%, transparent));
  background: linear-gradient(180deg, #00D7F1 0%, #FFFFB9 87%, transparent 87% 100%);
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1024px) {
  .fv-wrapper {
    background: -webkit-gradient(linear, left top, left bottom, from(#00D7F1), color-stop(90%, #FFFFB9), color-stop(90%, transparent));
    background: linear-gradient(180deg, #00D7F1 0%, #FFFFB9 90%, transparent 90% 100%);
  }
}
@media screen and (max-width: 767.9px) {
  .fv-wrapper {
    height: 100%;
  }
}

.fv-inner {
  max-width: 1540px;
  padding-inline: 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 100%;
  position: relative;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .fv-inner {
    padding-inline: 22px;
    padding-top: 338px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.fv-contents {
  position: absolute;
  top: 20.7407407407%;
  width: 45.8441558442%;
  left: 40px;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .fv-contents {
    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;
    top: 0;
    width: 100%;
    left: 0;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1024px) {
  .fv-contents {
    width: 38%;
  }
}

.fv-copy {
  width: 108%;
  height: auto;
  aspect-ratio: 706/192;
  margin-left: -36px;
}
.fv-copy.--ko {
  width: 95%;
  margin-left: 0;
}
@media screen and (max-width: 767.9px) {
  .fv-copy.--ko {
    width: 100%;
  }
}
@media screen and (max-width: 767.9px) {
  .fv-copy {
    margin-top: 15px;
    margin-left: -5px;
    width: 100%;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1024px) {
  .fv-copy {
    width: 120%;
  }
}
.fv-copy img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.fv-text {
  margin-top: 40px;
  font-size: 24rem;
  line-height: 2.25;
}
@media screen and (max-width: 767.9px) {
  .fv-text {
    margin-top: 5px;
    font-size: 16rem;
    line-height: 1.625;
    font-weight: 700;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1024px) {
  .fv-text {
    width: 94%;
  }
  .fv-text br.is-pc {
    display: none;
  }
}

.fv-flag {
  margin-top: 18px;
  width: 230px;
  aspect-ratio: 1/1;
  height: auto;
  translate: -10px;
}
@media screen and (max-width: 767.9px) {
  .fv-flag {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 84px;
    margin-top: 0;
    translate: -2px;
  }
}
.fv-flag img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.fv-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 7.7777777778%;
  left: 50%;
  translate: -50%;
  gap: 10.1948051948%;
  font-size: 22rem;
  font-weight: 900;
  z-index: 10;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767.9px) {
  .fv-link {
    position: relative;
    bottom: auto;
    margin-top: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    font-size: 13rem;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1024px) {
  .fv-link {
    gap: 30px;
  }
}

.fv-link__item {
  white-space: nowrap;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, #BFFFEA));
  background: linear-gradient(180deg, transparent 0% 50%, #BFFFEA 50% 100%);
  padding-inline: 2px;
}
.fv-link__item img {
  display: inline-block;
  width: 16.5px;
  height: 20.5px;
  margin-left: 8px;
}
@media screen and (max-width: 767.9px) {
  .fv-link__item img {
    width: 11px;
    height: 13px;
    margin-left: 18px;
  }
}
.fv-link__item .top-border {
  display: inline-block;
  width: 1px;
  height: 24px;
  background-color: #1C4773;
  rotate: -20deg;
  margin-right: 12px;
}
@media screen and (max-width: 767.9px) {
  .fv-link__item .top-border {
    height: 14px;
    margin-right: 8px;
  }
}
.fv-link__item .text {
  display: inline-block;
}
.fv-link__item .end-border {
  display: inline-block;
  width: 1px;
  height: 24px;
  background-color: #1C4773;
  rotate: 20deg;
  margin-left: 12px;
}
@media screen and (max-width: 767.9px) {
  .fv-link__item .end-border {
    height: 14px;
    margin-left: 8px;
  }
}

.fv-ship {
  position: absolute;
  width: 33.0729166667%;
  height: auto;
  aspect-ratio: 635/1514;
  bottom: 18.7037037037%;
  left: 50.5208333333%;
  -webkit-animation: ship 3s infinite;
          animation: ship 3s infinite;
}
@media screen and (max-width: 767.9px) {
  .fv-ship {
    width: 302px;
    bottom: auto;
    top: -305px;
    left: 50%;
    translate: -50%;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1024px) {
  .fv-ship {
    width: 56%;
    left: 40%;
  }
}
.fv-ship img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@-webkit-keyframes ship {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes ship {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fv-bg {
  position: absolute;
  bottom: -152px;
  left: -5.2083333333%;
  width: 119.0104166667%;
  min-width: 1500px;
  height: auto;
  aspect-ratio: 2285/842;
  z-index: 1;
}
@media screen and (max-width: 767.9px) {
  .fv-bg {
    top: auto;
    bottom: 0;
    width: 2139px;
    left: -1105px;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1024px) {
  .fv-bg {
    top: auto;
    bottom: -100px;
    width: 208.88671875%;
    left: 46%;
    translate: -50%;
  }
}
.fv-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.fv-mask {
  position: absolute;
  left: 0;
  bottom: 8%;
  width: 10%;
  height: 10%;
  background: #F6F6F4;
  z-index: 0;
}

/*==========================================================================
topページnewsのセクション
========================================================================== */
.news {
  position: relative;
  margin-top: 72px;
}
@media screen and (max-width: 767.9px) {
  .news {
    margin-top: -40px;
  }
}

.news-inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  background: url("../img/news_bg.svg") no-repeat center/contain;
  padding-top: 128px;
  padding-bottom: 151px;
  padding-inline: 200px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .news-inner {
    background: url("../img/news_bg_sp.svg") no-repeat center/110%;
    padding-top: 74px;
    padding-bottom: 76px;
    padding-inline: 22.5px;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1024px) {
  .news-inner {
    padding-inline: 100px;
    background: url("../img/news_bg_sp.svg") no-repeat center/110%;
  }
}

.news-contents {
  margin-top: 39px;
}

.news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  height: 99px;
  border-top: 0.3px solid #1C4773;
  font-size: 20rem;
  line-height: 1.45;
}
@media screen and (max-width: 767.9px) {
  .news-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: auto;
    padding-block: 10px;
    font-size: 13rem;
    line-height: 1.4615384615;
    gap: 0px;
  }
}
.news-item:last-child {
  border-bottom: 0.3px solid #1C4773;
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1024px) {
  .news-item {
    height: auto;
    padding-block: 16px;
  }
}

.news-item__head {
  width: 161px;
}
@media screen and (max-width: 767.9px) {
  .news-item__head {
    width: 100%;
  }
}
.news-item__head .--large {
  font-size: 38rem;
  font-weight: 700;
  margin-left: 15px;
}
@media screen and (max-width: 767.9px) {
  .news-item__head .--large {
    font-size: 20rem;
    margin-left: 5px;
  }
}

.news-item__body {
  width: calc(100% - 161px - 30px);
}
@media screen and (max-width: 767.9px) {
  .news-item__body {
    width: 100%;
  }
}

.news-link {
  margin-top: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 39px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  translate: -6px;
}
@media screen and (max-width: 767.9px) {
  .news-link {
    margin-top: 16px;
    gap: 20px;
  }
}

.news-link__text {
  font-size: 28rem;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .news-link__text {
    font-size: 14rem;
  }
}

.news-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767.9px) {
  .news-sns {
    gap: 15px;
  }
}

@media screen and (max-width: 767.9px) {
  .news-sns__item {
    width: 40px;
    height: 40px;
  }
  .news-sns__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

/*==========================================================================
TOPページupcomingのセクション
========================================================================== */
.upcoming {
  margin-top: 90px;
}
@media screen and (max-width: 767.9px) {
  .upcoming {
    margin-top: 43px;
  }
}

.upcoming-inner {
  max-width: 1450px;
  padding-inline: 40px;
  margin-inline: auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 767.9px) {
  .upcoming-inner {
    padding-inline: 23px;
  }
}

.upcoming-contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  row-gap: 35px;
  margin-top: 55px;
}
@media screen and (max-width: 767.9px) {
  .upcoming-contents {
    grid-template-columns: 1fr;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 15px;
    margin-top: 15px;
  }
}

.upcoming-img {
  border-radius: 10px;
}

.upcoming-date {
  font-size: 20rem;
  line-height: 1.45;
  margin-top: 20px;
}
@media screen and (max-width: 767.9px) {
  .upcoming-date {
    font-size: 13rem;
    margin-top: 10px;
  }
}

.upcoming-title {
  font-size: 22rem;
  line-height: 1.4545454545;
  font-weight: 700;
  margin-top: 6px;
  max-width: 565px;
}
@media screen and (max-width: 767.9px) {
  .upcoming-title {
    font-size: 13rem;
    margin-top: 0;
  }
}

/*==========================================================================
past-eventsのセクション（スライダー）
========================================================================== */
.past {
  margin-top: 165px;
}
@media screen and (max-width: 767.9px) {
  .past {
    margin-top: 53px;
  }
}
.past .splide__arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
@media screen and (max-width: 767.9px) {
  .past .splide__arrows {
    width: 100%;
  }
}
.past .splide__arrow {
  background: transparent;
  width: 73px;
  height: 73px;
  position: absolute;
}
@media screen and (max-width: 767.9px) {
  .past .splide__arrow {
    width: 40px;
    height: 40px;
  }
}
.past .splide__arrow.prev {
  background-image: url("../img/pagination_left.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: -320px;
}
@media screen and (max-width: 767.9px) {
  .past .splide__arrow.prev {
    left: 0;
  }
}
.past .splide__arrow.next {
  background-image: url("../img/pagination_right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  right: -320px;
}
@media screen and (max-width: 767.9px) {
  .past .splide__arrow.next {
    right: 0;
  }
}
.past.--p-past {
  padding-bottom: 100px;
}

.past-contents {
  margin-top: 55px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .past-contents {
    margin-top: 15px;
  }
}

.past-card {
  display: inline-block;
  width: 640px;
  height: 601px;
  padding-top: 84px;
  padding-inline: 80px;
  border-radius: 10px;
  background-color: #ffffff;
}
@media screen and (max-width: 767.9px) {
  .past-card {
    width: 441px;
    height: 364px;
    padding-top: 55px;
    padding-inline: 56px;
  }
}

.past-card__img {
  width: 100%;
  height: auto;
  aspect-ratio: 480/270;
  border-radius: 10px;
}

.past-card__date {
  margin-top: 51px;
  font-size: 20rem;
  line-height: 1.5;
}
@media screen and (max-width: 767.9px) {
  .past-card__date {
    margin-top: 1px;
    font-size: 13rem;
    line-height: 2.3076923077;
  }
}

.past-card__title {
  margin-top: 25px;
  font-weight: 700;
  font-size: 22rem;
  line-height: 1.3636363636;
}
@media screen and (max-width: 767.9px) {
  .past-card__title {
    margin-top: 1px;
    font-size: 13rem;
    line-height: 1.3076923077;
  }
}

/*==========================================================================
TOPページのabout-usセクション
========================================================================== */
.about {
  margin-top: 164px;
  padding-bottom: 177px;
}
@media screen and (max-width: 767.9px) {
  .about {
    margin-top: 50px;
    padding-bottom: 29px;
  }
}

.about-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 767.9px) {
  .about-inner {
    padding-inline: 62px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.about-contents {
  margin-top: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.9px) {
  .about-contents {
    margin-top: 15px;
    gap: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1024px) {
  .about-contents {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.about-item {
  display: inline-block;
  position: relative;
  color: #ffffff;
  max-width: 380px;
  position: relative;
}
.about-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00D7F1;
  opacity: 0;
  border-radius: 10px;
  z-index: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.about-item:hover::before {
  opacity: 0.5;
}

.about-item__img {
  aspect-ratio: 380/250;
  height: auto;
  border-radius: 10px;
  position: relative;
}

.about-item__title {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 2;
}
.about-item__title .--img {
  height: 46px;
  width: auto;
}
@media screen and (max-width: 767.9px) {
  .about-item__title .--img {
    height: 30px;
  }
}
.about-item__title .--sub {
  margin-top: 2px;
  line-height: 1.4444444444;
  font-size: 18rem;
}
@media screen and (max-width: 767.9px) {
  .about-item__title .--sub {
    margin-top: 1px;
    font-size: 11rem;
    line-height: 1.4545454545;
  }
}

.about-item__text {
  font-size: 18rem;
  line-height: 1.4444444444;
  position: absolute;
  bottom: 17px;
  text-align: center;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .about-item__text {
    font-size: 11rem;
    line-height: 1.4545454545;
    bottom: 13px;
  }
}

/*==========================================================================
お問い合わせ/会員登録のCTA
========================================================================== */
.cta {
  width: 100%;
}

.cta__header {
  width: 100%;
  height: auto;
  aspect-ratio: 1920/150;
  background: -webkit-gradient(linear, left top, left bottom, from(#F6F5F2), to(#B3F3CA));
  background: linear-gradient(180deg, #F6F5F2 0%, #B3F3CA 100%);
}

.cta__body {
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#B3F3CA), to(#00D7F1));
  background: linear-gradient(180deg, #B3F3CA 0%, #00D7F1 100%);
  padding-top: 90px;
  padding-bottom: 170px;
}
@media screen and (max-width: 767.9px) {
  .cta__body {
    padding-top: 42px;
    padding-bottom: 50px;
  }
}

.cta-contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 48px;
     -moz-column-gap: 48px;
          column-gap: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-inline: 40px;
  max-width: 1528px;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .cta-contents {
    grid-template-columns: repeat(1, 1fr);
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 20px;
    padding-inline: 22px;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1024px) {
  .cta-contents {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
}

.cta-item {
  text-align: center;
  border-radius: 10px;
  -webkit-box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.16);
          box-shadow: 20px 20px 20px rgba(0, 0, 0, 0.16);
  background: #ffffff;
  padding-bottom: 63px;
  padding-top: 20px;
  padding-inline: 8px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  place-items: center;
}
@media screen and (max-width: 767.9px) {
  .cta-item {
    row-gap: 0;
    padding-top: 6px;
    padding-bottom: 26px;
  }
}

.cta-item__img {
  width: 21.4285714286%;
  height: auto;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767.9px) {
  .cta-item__img {
    width: 25.7575757576%;
  }
}

.cta-item__title {
  font-size: 32rem;
  line-height: 1.25;
  font-weight: 700;
  margin-top: 8px;
}
@media screen and (max-width: 767.9px) {
  .cta-item__title {
    font-size: 18rem;
    line-height: 2.2222222222;
    margin-top: -3px;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1024px) {
  .cta-item__title {
    font-size: 24rem;
  }
}

.cta-item__text {
  font-size: 22rem;
  line-height: 1.6363636364;
  margin-top: 35px;
}
@media screen and (max-width: 767.9px) {
  .cta-item__text {
    font-size: 12rem;
    line-height: 1.4166666667;
    margin-top: 2px;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1024px) {
  .cta-item__text {
    font-size: 18rem;
    margin-top: 16px;
  }
}

.cta-item__link {
  display: inline-block;
  max-width: 452px;
  width: 100%;
  padding-block: 28px 27px;
  padding-inline: 16px;
  border-radius: 48px;
  font-size: 28rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4285714286;
  margin-top: 41px;
}
@media screen and (max-width: 767.9px) {
  .cta-item__link {
    width: 232px;
    padding-block: 15px;
    font-size: 14rem;
    margin-top: 14px;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1024px) {
  .cta-item__link {
    font-size: 20rem;
    margin-top: 20px;
  }
}
.cta-item__link.--contact {
  background-color: #06DAF3;
}
.cta-item__link.--member {
  background-color: #000000;
}

/*==========================================================================
下層ページ：UPCOMING EVENTに関するスタイル
========================================================================== */
.p-events-event {
  background-color: #F6F5F2;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .p-events-event {
    padding-top: 20px;
    padding-bottom: 25px;
  }
}
.p-events-event.--even {
  background-color: #ffffff;
}

.p-events-event__title {
  font-size: 38rem;
  font-weight: 700;
  line-height: 1.4473684211;
}
@media screen and (max-width: 767.9px) {
  .p-events-event__title {
    font-size: 20rem;
    line-height: 1.4;
  }
}

.p-events-event__date {
  margin-top: 10px;
  font-size: 24rem;
  line-height: 1.4583333333;
}
@media screen and (max-width: 767.9px) {
  .p-events-event__date {
    margin-top: 11px;
    font-size: 15rem;
    line-height: 1.4;
  }
}

.p-events-event__top {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 39px;
}
@media screen and (max-width: 767.9px) {
  .p-events-event__top {
    margin-top: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}

.p-events-event__img {
  width: 50%;
  height: auto;
  aspect-ratio: 600/337;
}
@media screen and (max-width: 767.9px) {
  .p-events-event__img {
    width: 100%;
  }
}
.p-events-event__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
}

.p-events-event__message {
  width: calc(50% - 39px);
  color: #3E3E3E;
  font-size: 22rem;
  line-height: 1.4545454545;
}
@media screen and (max-width: 767.9px) {
  .p-events-event__message {
    width: 100%;
    font-size: 14rem;
    line-height: 1.5714285714;
  }
}

.p-events-event__head {
  font-weight: 700;
}

.p-events-events__text {
  margin-top: 32px;
}
@media screen and (max-width: 767.9px) {
  .p-events-events__text {
    margin-top: 10px;
  }
}

.p-events-event__middle {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
@media screen and (max-width: 767.9px) {
  .p-events-event__middle {
    margin-top: 15px;
    gap: 15px;
  }
}

.p-events-event__head--sub {
  font-size: 26rem;
  line-height: 1.4230769231;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .p-events-event__head--sub {
    font-size: 18rem;
    line-height: 1.4444444444;
  }
}

.p-events-event__list {
  font-size: 22rem;
  line-height: 1.4545454545;
  margin-top: 30px;
  color: #3E3E3E;
}
@media screen and (max-width: 767.9px) {
  .p-events-event__list {
    font-size: 14rem;
    margin-top: 10px;
    line-height: 1.5714285714;
  }
}

.p-events-event__bottom {
  margin-top: 48px;
}
@media screen and (max-width: 767.9px) {
  .p-events-event__bottom {
    margin-top: 15px;
  }
}

.p-events-event__table {
  margin-top: 30px;
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  font-size: 20rem;
  color: #3E3E3E;
}
@media screen and (max-width: 767.9px) {
  .p-events-event__table {
    margin-top: 10px;
    font-size: 14rem;
  }
}
.p-events-event__table th, .p-events-event__table td {
  height: 53px;
  border: 0.4px solid #A4A4A4;
  vertical-align: middle;
  text-align: left;
  padding-inline: 16px;
  line-height: 1.4545454545;
}
@media screen and (max-width: 767.9px) {
  .p-events-event__table th, .p-events-event__table td {
    height: auto;
    display: block;
    padding: 10px;
  }
}
.p-events-event__table th {
  width: 200px;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .p-events-event__table th {
    width: 100%;
  }
}
.p-events-event__table .--large-height th, .p-events-event__table .--large-height td {
  height: auto;
  padding-block: 12px;
}

.p-events-separator {
  width: 100%;
  aspect-ratio: 1920/150;
}
.p-events-separator.--odd {
  background: -webkit-gradient(linear, left top, left bottom, from(#F6F5F2), to(#FFFFFF));
  background: linear-gradient(180deg, #F6F5F2 0%, #FFFFFF 100%);
}
.p-events-separator.--even {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#F6F5F2));
  background: linear-gradient(180deg, #FFFFFF 0%, #F6F5F2 100%);
}

.p-events-event__detail {
  margin-top: 48px;
}
@media screen and (max-width: 767.9px) {
  .p-events-event__detail {
    margin-top: 15px;
  }
}

.p-events-event__detail__name {
  margin-top: 30px;
  color: #3E3E3E;
  font-size: 22rem;
  line-height: 1.3636363636;
}
@media screen and (max-width: 767.9px) {
  .p-events-event__detail__name {
    margin-top: 10px;
    font-size: 14rem;
    line-height: 1.5714285714;
  }
}

.p-events-event__detail__text {
  margin-top: 32px;
  color: #3E3E3E;
  font-size: 22rem;
  line-height: 1.3636363636;
}
@media screen and (max-width: 767.9px) {
  .p-events-event__detail__text {
    margin-top: 0;
    font-size: 14rem;
    line-height: 1.5714285714;
  }
}

/*==========================================================================
下層ページ：ABOUT USのスタイル
========================================================================== */
.p-about-what {
  padding-top: 100px;
}
@media screen and (max-width: 767.9px) {
  .p-about-what {
    padding-top: 21px;
  }
}

.p-about-section__copy {
  text-align: center;
  font-size: 24rem;
  font-weight: 700;
  line-height: 1.5833333333;
  margin-top: 35px;
}
@media screen and (max-width: 767.9px) {
  .p-about-section__copy {
    margin-top: 15px;
    font-size: 16rem;
    line-height: 1.5;
    text-align: left;
  }
}

.p-about-what__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 50px;
}
@media screen and (max-width: 767.9px) {
  .p-about-what__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 15px;
    gap: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-about-what__img {
  width: 31.6666666667%;
  height: auto;
  aspect-ratio: 380/478;
}
@media screen and (max-width: 767.9px) {
  .p-about-what__img {
    width: 100%;
    max-width: 380px;
  }
}
.p-about-what__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-about-what__message {
  width: 64.1666666667%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
  font-size: 22rem;
  line-height: 1.6363636364;
  color: #3E3E3E;
}
@media screen and (max-width: 767.9px) {
  .p-about-what__message {
    width: 100%;
    gap: 22rem;
    font-size: 14rem;
    line-height: 1.5714285714;
  }
}
.p-about-what__message .--accent {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #BFFFEA), to(#BFFFEA));
  background: linear-gradient(180deg, transparent 50%, #BFFFEA 50%, #BFFFEA 100%);
}

.p-about-what__link {
  display: block;
  width: 600px;
  margin-inline: auto;
  color: #5AB1DD;
  background-color: #ffffff;
  border-radius: 48px;
  padding-block: 21px 22px;
  text-align: center;
  font-size: 22rem;
  font-weight: 700;
  border: 3px solid #5AB1DD;
  margin-top: 55px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .p-about-what__link {
    width: 296px;
    padding-block: 19px 18px;
    font-size: 14rem;
    margin-top: 25px;
    padding-right: 40px;
  }
}
.p-about-what__link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 51px;
  translate: 0 -50%;
  width: 41px;
  height: 29px;
  background: url("../about-us/img/link_accent.svg") no-repeat center/contain;
}
@media screen and (max-width: 767.9px) {
  .p-about-what__link::before {
    width: 30px;
    height: 21px;
    right: 59px;
  }
}

.p-about-future {
  padding-top: 100px;
}
@media screen and (max-width: 767.9px) {
  .p-about-future {
    padding-top: 41px;
  }
}

.p-about-future__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 55px;
}
@media screen and (max-width: 767.9px) {
  .p-about-future__img {
    margin-top: 15px;
    gap: 12px;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1024px) {
  .p-about-future__img {
    gap: 64px;
  }
}

.p-about-future__img__item {
  aspect-ratio: 1/1;
  width: 193px;
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .p-about-future__img__item {
    width: 102px;
  }
}

.p-about-future__text {
  margin-top: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
  font-size: 22rem;
  line-height: 1.6363636364;
  color: #3E3E3E;
}
@media screen and (max-width: 767.9px) {
  .p-about-future__text {
    margin-top: 15px;
    gap: 22px;
    font-size: 14rem;
    line-height: 1.5714285714;
  }
}
.p-about-future__text .--accent {
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #BFFFEA), to(#BFFFEA));
  background: linear-gradient(180deg, transparent 50%, #BFFFEA 50%, #BFFFEA 100%);
}

.p-about-activities {
  margin-top: 65px;
  padding-top: 100px;
}
@media screen and (max-width: 767.9px) {
  .p-about-activities {
    margin-top: 10px;
    padding-top: 43px;
  }
}

.p-about-activities__contents {
  border-radius: 10px;
  background-color: #ffffff;
  padding: 90px;
  margin-top: 35px;
}
@media screen and (max-width: 767.9px) {
  .p-about-activities__contents {
    padding: 25px;
    margin-top: 15px;
  }
}

.p-about-activities__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: 30px;
  color: #3E3E3E;
}
@media screen and (max-width: 767.9px) {
  .p-about-activities__list {
    gap: 12px;
  }
}

.p-about-activities__item {
  font-size: 22rem;
  line-height: 1.6363636364;
}
@media screen and (max-width: 767.9px) {
  .p-about-activities__item {
    font-size: 14rem;
    line-height: 1.5714285714;
  }
}

.p-about-activities__item__head {
  font-weight: 700;
}

.p-about-activities__item__text {
  margin-top: 9px;
  margin-left: 35px;
}
@media screen and (max-width: 767.9px) {
  .p-about-activities__item__text {
    margin-top: 8px;
    margin-left: 0;
  }
}

.p-about-message {
  margin-top: 65px;
  padding-top: 100px;
}
@media screen and (max-width: 767.9px) {
  .p-about-message {
    margin-top: 10px;
    padding-top: 43px;
  }
}

.p-about-message__img {
  margin-top: 100px;
  margin-inline: auto;
  width: 83.3333333333%;
  aspect-ratio: 1000/562;
  height: auto;
}
@media screen and (max-width: 767.9px) {
  .p-about-message__img {
    margin-top: 15px;
    width: 100%;
  }
}
.p-about-message__img iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-about-message__contents--wrapper {
  margin-top: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 95px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767.9px) {
  .p-about-message__contents--wrapper {
    margin-top: 20px;
    gap: 20px;
  }
}

.p-about-message__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8.3333333333%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767.9px) {
  .p-about-message__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-about-message__profile {
  margin-top: 74px;
  width: 24%;
}
@media screen and (max-width: 767.9px) {
  .p-about-message__profile {
    width: 142px;
    margin-top: 0;
  }
}

.p-about-message__profile__img {
  width: 100%;
  aspect-ratio: 288/328;
  height: auto;
}

.p-about-message__profile__name {
  margin-top: 20px;
}
@media screen and (max-width: 767.9px) {
  .p-about-message__profile__name {
    margin-top: 9px;
    height: 40px;
    width: 100%;
  }
}

.p-about-message__detail {
  width: 67.6666666667%;
}
@media screen and (max-width: 767.9px) {
  .p-about-message__detail {
    width: 100%;
  }
}

.p-about-message__detail__head {
  font-size: 24rem;
  line-height: 1.5833333333;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .p-about-message__detail__head {
    font-size: 14rem;
    line-height: 1.5714285714;
  }
}

.p-about-message__detail__text {
  margin-top: 22px;
  color: #3E3E3E;
  font-size: 22rem;
  line-height: 1.6363636364;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
}
@media screen and (max-width: 767.9px) {
  .p-about-message__detail__text {
    margin-top: 10px;
    font-size: 14rem;
    line-height: 1.5714285714;
    gap: 22px;
  }
}
.p-about-message__detail__text .--underline {
  text-decoration: underline;
}

.p-about-info {
  margin-top: 65px;
  padding-top: 100px;
}
@media screen and (max-width: 767.9px) {
  .p-about-info {
    margin-top: 10px;
    padding-top: 43px;
  }
}

.p-about-info__contents {
  margin-top: 55px;
  padding-inline: 8.3333333333%;
  color: #3E3E3E;
}
@media screen and (max-width: 767.9px) {
  .p-about-info__contents {
    margin-top: 15px;
    padding-inline: 0;
  }
}

.p-about-info__list {
  padding-block: 30px;
  padding-inline: 40px;
  border-bottom: 0.5px solid #A4A4A4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 22rem;
  line-height: 1.6363636364;
}
@media screen and (max-width: 767.9px) {
  .p-about-info__list {
    padding-block: 15px;
    padding-inline: 4px;
    font-size: 14rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6px;
  }
}
.p-about-info__list:first-child {
  border-top: 0.5px solid #A4A4A4;
}

.p-about-info__list_head {
  font-weight: 700;
  width: 328px;
}
@media screen and (max-width: 767.9px) {
  .p-about-info__list_head {
    width: 100%;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1024px) {
  .p-about-info__list_head {
    width: 200px;
  }
}

.p-about-info__list__body {
  width: 59.2%;
  word-wrap: break-word;
}
@media screen and (max-width: 767.9px) {
  .p-about-info__list__body {
    width: 100%;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1024px) {
  .p-about-info__list__body {
    width: 72%;
  }
}

/*==========================================================================
下層ページ：JOIN USページのスタイル
========================================================================== */
.p-join-main {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767.9px) {
  .p-join-main {
    padding-top: 23px;
    padding-bottom: 30px;
  }
}

.p-join-membership__copy {
  text-align: center;
  font-size: 24rem;
  line-height: 1.5833333333;
  margin-top: 35px;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .p-join-membership__copy {
    font-size: 16rem;
    line-height: 1.5;
    margin-top: 15px;
  }
}

.p-join-membership__contents {
  margin-top: 100px;
}
@media screen and (max-width: 767.9px) {
  .p-join-membership__contents {
    margin-top: 30px;
  }
}

.p-join-membership__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  gap: 35px;
  margin-top: 59px;
}
@media screen and (max-width: 767.9px) {
  .p-join-membership__list {
    gap: 15px;
    margin-top: 15px;
  }
}

.p-join-membership__list__item {
  padding-left: 60px;
  font-size: 24rem;
  font-weight: 700;
  line-height: 1.5833333333;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .p-join-membership__list__item {
    padding-left: 38px;
    font-size: 16rem;
    line-height: 1.5;
  }
}
.p-join-membership__list__item .--accent {
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #BFFFEA), to(#BFFFEA));
  background: linear-gradient(180deg, transparent 50%, #BFFFEA 50%, #BFFFEA 100%);
}
@media screen and (max-width: 767.9px) {
  .p-join-membership__list__item .--accent {
    background: transparent;
  }
}
.p-join-membership__list__item::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 36px;
  height: 36px;
  background: url("../join-us/img/check.svg") no-repeat center center/contain;
}
@media screen and (max-width: 767.9px) {
  .p-join-membership__list__item::before {
    width: 26px;
    height: 26px;
    bottom: auto;
    top: 50%;
    translate: 0 -50%;
  }
}

.p-join__link {
  margin-top: 56px;
  width: 452px;
  font-size: 28rem;
  line-height: 1.4285714286;
  padding-block: 28px;
  margin-inline: auto;
  display: block;
  font-weight: 700;
  color: #ffffff;
  background: #000;
  border-radius: 48px;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .p-join__link {
    margin-top: 20px;
    width: 232px;
    font-size: 14rem;
    padding-block: 15px;
  }
}

.p-join-membership__benefit {
  margin-top: 100px;
}
@media screen and (max-width: 767.9px) {
  .p-join-membership__benefit {
    margin-top: 30px;
  }
}

.p-join-membership__benefit__items {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, -webkit-max-content));
  grid-template-columns: repeat(auto-fill, minmax(360px, max-content));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 55px;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}
@media screen and (max-width: 767.9px) {
  .p-join-membership__benefit__items {
    margin-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-join-member-ship__benefit__item {
  padding-top: 65px;
  position: relative;
  width: 360px;
}
@media screen and (max-width: 767.9px) {
  .p-join-member-ship__benefit__item {
    padding-top: 0;
    padding-left: 47px;
  }
}
.p-join-member-ship__benefit__item .circle.--outer {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50%;
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767.9px) {
  .p-join-member-ship__benefit__item .circle.--outer {
    width: 94px;
    height: 94px;
    top: 50%;
    left: 0;
    translate: 0 -50%;
  }
}
.p-join-member-ship__benefit__item .block {
  background: #ffffff;
  border-radius: 10px;
  padding-top: 65px;
  padding-inline: 40px;
  position: relative;
  height: 290px;
  -webkit-box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.16);
          box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767.9px) {
  .p-join-member-ship__benefit__item .block {
    height: 130px;
    padding-top: 0;
    padding-left: 43px;
    padding-right: 20px;
    display: grid;
    place-items: center;
  }
}
.p-join-member-ship__benefit__item .circle.--inner {
  background-color: #1C4773;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  text-align: center;
  color: #ffffff;
  line-height: 1.0555555556;
}
@media screen and (max-width: 767.9px) {
  .p-join-member-ship__benefit__item .circle.--inner {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 0;
    translate: -50% -50%;
  }
}
.p-join-member-ship__benefit__item .circle.--inner .head {
  margin-top: 12px;
  font-size: 13rem;
}
@media screen and (max-width: 767.9px) {
  .p-join-member-ship__benefit__item .circle.--inner .head {
    font-size: 9rem;
    margin-top: 11px;
  }
}
.p-join-member-ship__benefit__item .circle.--inner .num {
  font-weight: 700;
  font-size: 36rem;
}
@media screen and (max-width: 767.9px) {
  .p-join-member-ship__benefit__item .circle.--inner .num {
    font-size: 19rem;
    margin-top: 4px;
  }
}
.p-join-member-ship__benefit__item .text {
  font-size: 22rem;
  line-height: 1.8181818182;
}
@media screen and (max-width: 767.9px) {
  .p-join-member-ship__benefit__item .text {
    font-size: 14rem;
    line-height: 1.5714285714;
  }
}
.p-join-member-ship__benefit__item .text .--accent {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #BFFFEA), to(#BFFFEA));
  background: linear-gradient(180deg, transparent 50%, #BFFFEA 50%, #BFFFEA 100%);
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .p-join-member-ship__benefit__item .text .--accent {
    background: transparent;
  }
}

.p-join-membership__use {
  margin-top: 60px;
  padding-top: 100px;
}
@media screen and (max-width: 767.9px) {
  .p-join-membership__use {
    margin-top: 0;
    padding-top: 30px;
  }
}

.p-join-membership__use__head {
  font-size: 22rem;
  line-height: 1.6363636364;
  margin-top: 55px;
  text-align: center;
  color: #3E3E3E;
}
@media screen and (max-width: 767.9px) {
  .p-join-membership__use__head {
    font-size: 14rem;
    line-height: 1.5714285714;
    margin-top: 15px;
  }
}

.p-join-member-ship__use__items {
  margin-top: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 767.9px) {
  .p-join-member-ship__use__items {
    margin-top: 15px;
    gap: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-join-member-ship__use__item {
  display: grid;
  place-items: center;
  width: 31.6666666667%;
  aspect-ratio: 380/163;
  height: auto;
  border-radius: 10px;
  border: 3px solid #3E3E3E;
  font-size: 22rem;
  color: #3E3E3E;
  font-weight: 700;
  padding-inline: 20px;
}
@media screen and (max-width: 767.9px) {
  .p-join-member-ship__use__item {
    width: 100%;
    border-width: 2px;
    font-size: 14rem;
    aspect-ratio: 330/80;
  }
}

.p-join-membership__type {
  margin-top: 60px;
  padding-top: 100px;
}
@media screen and (max-width: 767.9px) {
  .p-join-membership__type {
    margin-top: 0;
    padding-top: 30px;
  }
}

.p-join-membership__tabs {
  margin-top: 38px;
}
@media screen and (max-width: 767.9px) {
  .p-join-membership__tabs {
    margin-top: 29px;
  }
}

.p-join-membership__tabs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1200px;
  padding-inline: 40px;
  margin-inline: auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 767.9px) {
  .p-join-membership__tabs__list {
    gap: 10px;
    padding-inline: 22px;
  }
}

.p-join-membership__tabs__item {
  border-radius: 20px 20px 0 0;
  font-size: 22rem;
  font-weight: 700;
  width: 48.3333333333%;
  cursor: pointer;
}
@media screen and (max-width: 767.9px) {
  .p-join-membership__tabs__item {
    font-size: 14rem;
  }
}

.p-join-membership__tabs__item[aria-selected=true] {
  color: #ffffff;
  background: #1C4773;
  height: 100px;
}
@media screen and (max-width: 767.9px) {
  .p-join-membership__tabs__item[aria-selected=true] {
    height: 52px;
  }
}

.p-join-membership__tabs__item[aria-selected=false] {
  color: #3E3E3E;
  background: #DEDEDE;
  height: 80px;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
@media screen and (max-width: 767.9px) {
  .p-join-membership__tabs__item[aria-selected=false] {
    height: 40px;
  }
}
.p-join-membership__tabs__item[aria-selected=false]:hover {
  height: 100px;
  background: #1C4773;
  color: #ffffff;
}
@media screen and (max-width: 767.9px) {
  .p-join-membership__tabs__item[aria-selected=false]:hover {
    height: 52px;
  }
}

.p-join-membership__tabs__contents {
  background-color: #ffffff;
  padding-top: 50px;
  padding-bottom: 60px;
  padding-inline: 40px;
}
@media screen and (max-width: 767.9px) {
  .p-join-membership__tabs__contents {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-inline: 22px;
  }
}

.p-join-membership__tabs__content-wrap {
  display: none;
  max-width: 1200px;
  margin-inline: auto;
  color: #3E3E3E;
}
.p-join-membership__tabs__content-wrap.js-show {
  display: block;
}

.p-join-membership__tabs__text {
  text-align: center;
  font-size: 22rem;
  line-height: 1.6363636364;
}
@media screen and (max-width: 767.9px) {
  .p-join-membership__tabs__text {
    font-size: 14rem;
    line-height: 1.5714285714;
    text-align: left;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1024px) {
  .p-join-membership__tabs__text {
    font-size: 18rem;
  }
}

.p-join-membership__tabs__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 20px;
  border: 0.5px solid #A4A4A4;
  margin-top: 48px;
  padding-block: 31px 30px;
}
@media screen and (max-width: 767.9px) {
  .p-join-membership__tabs__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 15px;
    padding-block: 20px 20px;
    padding-inline: 20px;
  }
}

.p-join-membership__tabs__detail {
  width: 50%;
  padding-inline: 40px;
  font-size: 22rem;
  line-height: 1.6363636364;
}
@media screen and (max-width: 767.9px) {
  .p-join-membership__tabs__detail {
    width: 100%;
    font-size: 14rem;
    padding-inline: 0;
    line-height: 1.5714285714;
    padding-bottom: 20px;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1024px) {
  .p-join-membership__tabs__detail {
    font-size: 18rem;
  }
}
.p-join-membership__tabs__detail:not(:first-child) {
  border-left: 0.5px solid #A4A4A4;
}
@media screen and (max-width: 767.9px) {
  .p-join-membership__tabs__detail:not(:first-child) {
    border-left: none;
    border-top: 0.5px solid #A4A4A4;
    padding-bottom: 0;
    padding-top: 20px;
  }
}
.p-join-membership__tabs__detail .type {
  margin-top: 20px;
}
@media screen and (max-width: 767.9px) {
  .p-join-membership__tabs__detail .type {
    margin-top: 10px;
  }
}
.p-join-membership__tabs__detail .type:not(:first-child) {
  margin-top: 36px;
}
@media screen and (max-width: 767.9px) {
  .p-join-membership__tabs__detail .type:not(:first-child) {
    margin-top: 22px;
  }
}
.p-join-membership__tabs__detail .head {
  color: #1C4773;
  font-weight: 700;
}
.p-join-membership__tabs__detail .method {
  font-weight: 700;
}
.p-join-membership__tabs__detail .method span {
  display: inline-block;
  margin-left: 8px;
  border-radius: 22px;
  font-size: 12rem;
  color: #ffffff;
  background-color: #00D7F1;
  padding: 3px 19px;
  translate: 0 -4px;
}
@media screen and (max-width: 767.9px) {
  .p-join-membership__tabs__detail .method span {
    margin-left: 4px;
    font-size: 10rem;
    padding: 2px 17px;
    translate: 0 -2px;
  }
}

.p-join-voices {
  margin-top: 60px;
  padding-top: 100px;
}
@media screen and (max-width: 767.9px) {
  .p-join-voices {
    margin-top: 23px;
    padding-top: 30px;
  }
}

.p-join-voices__items {
  margin-top: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 55px;
}
@media screen and (max-width: 767.9px) {
  .p-join-voices__items {
    margin-top: 15px;
    gap: 20px;
  }
}

.p-join-voices__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 55px;
}
@media screen and (max-width: 767.9px) {
  .p-join-voices__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-join-voices__img {
  width: 230px;
  height: auto;
  aspect-ratio: 230/264;
}
@media screen and (max-width: 767.9px) {
  .p-join-voices__img {
    width: 120px;
  }
}
.p-join-voices__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-join-voices__detail {
  width: calc(100% - 230px - 55px);
  font-size: 22rem;
  line-height: 1.6363636364;
  color: #3E3E3E;
}
@media screen and (max-width: 767.9px) {
  .p-join-voices__detail {
    width: 100%;
    font-size: 14rem;
    line-height: 1.5714285714;
  }
}

.p-join-voices__head {
  font-weight: 700;
}

.p-join-voices__text {
  margin-top: 20px;
}
@media screen and (max-width: 767.9px) {
  .p-join-voices__text {
    margin-top: 10px;
  }
}

/*==========================================================================
下層ページ：会員規約に関するスタイル
========================================================================== */
.p-terms-main {
  padding-top: 100px;
  padding-bottom: 88px;
}
@media screen and (max-width: 767.9px) {
  .p-terms-main {
    padding-top: 20px;
    padding-bottom: 32px;
  }
}

.p-terms-contents {
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: 22px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  color: #3E3E3E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767.9px) {
  .p-terms-contents {
    gap: 20px;
  }
}

.p-terms-item__head {
  font-size: 26rem;
  line-height: 1.1538461538;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .p-terms-item__head {
    font-size: 18rem;
    line-height: 1.2222222222;
  }
}

.p-terms-item__body {
  font-size: 18rem;
  line-height: 1.6666666667;
  margin-top: 15px;
}
@media screen and (max-width: 767.9px) {
  .p-terms-item__body {
    font-size: 14rem;
    line-height: 1.5714285714;
    margin-top: 10px;
  }
}
.p-terms-item__body .head {
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .p-terms-item__body .head {
    font-weight: 400;
  }
}

/*==========================================================================
下層ページ：プライバシーポリシーに関するスタイル
========================================================================== */
.p-legal-main {
  padding-top: 104px;
  padding-bottom: 88px;
}
@media screen and (max-width: 767.9px) {
  .p-legal-main {
    padding-top: 28px;
    padding-bottom: 30px;
  }
}
.p-legal-main section {
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media screen and (max-width: 767.9px) {
  .p-legal-main section {
    padding-inline: 23px 22px;
  }
}

.p-legal-privacy__text {
  margin-top: 55px;
  color: #3E3E3E;
  font-size: 18rem;
  line-height: 1.6666666667;
}
@media screen and (max-width: 767.9px) {
  .p-legal-privacy__text {
    margin-top: 15px;
    font-size: 14rem;
    line-height: 1.5714285714;
  }
}

.p-legal-privacy__contents {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  color: #3E3E3E;
}
@media screen and (max-width: 767.9px) {
  .p-legal-privacy__contents {
    margin-top: 20px;
    gap: 20px;
  }
}

.p-legal-privacy__item__head {
  font-size: 26rem;
  line-height: 1.1538461538;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .p-legal-privacy__item__head {
    font-size: 18rem;
    line-height: 1.2222222222;
  }
}

.p-legal-privacy__item__body {
  margin-top: 15px;
  font-size: 18rem;
  line-height: 1.6666666667;
}
@media screen and (max-width: 767.9px) {
  .p-legal-privacy__item__body {
    margin-top: 10px;
    font-size: 14rem;
    line-height: 1.5714285714;
  }
}

.p-legal-terms {
  margin-top: 55px;
  padding-top: 100px;
}
@media screen and (max-width: 767.9px) {
  .p-legal-terms {
    margin-top: 0;
    padding-top: 55px;
  }
}

.p-legal-terms__text {
  font-size: 18rem;
  line-height: 1.6666666667;
  color: #3E3E3E;
  margin-top: 55px;
}
@media screen and (max-width: 767.9px) {
  .p-legal-terms__text {
    font-size: 14rem;
    line-height: 1.5714285714;
    margin-top: 15px;
  }
}

/*==========================================================================
下層ページ：過去のイベント情報に関するスタイル
========================================================================== */
.p-past-head {
  height: 100px;
  background-color: #00D7F1;
}
@media screen and (max-width: 767.9px) {
  .p-past-head {
    height: 56px;
  }
}

.p-past-main {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #ffffff;
}
@media screen and (max-width: 767.9px) {
  .p-past-main {
    padding-top: 30px;
    padding-bottom: 25px;
  }
}

.p-past-inner {
  max-width: 800px;
  margin-inline: auto;
  color: #3E3E3E;
}
@media screen and (max-width: 767.9px) {
  .p-past-inner {
    padding-inline: 22px;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1024px) {
  .p-past-inner {
    padding-inline: 40px;
  }
}

.p-past-date {
  font-size: 20rem;
  line-height: 1.5;
}
@media screen and (max-width: 767.9px) {
  .p-past-date {
    font-size: 15rem;
    line-height: 1.4;
  }
}

.p-past-title {
  text-align: center;
  font-size: 36rem;
  line-height: 1.4444444444;
  font-weight: 900;
  margin-top: 35px;
}
@media screen and (max-width: 767.9px) {
  .p-past-title {
    margin-top: 10px;
    text-align: left;
    font-size: 20rem;
    line-height: 1.4;
    font-weight: 700;
  }
}

.p-past-text {
  margin-top: 55px;
  font-size: 22rem;
  line-height: 1.6363636364;
}
@media screen and (max-width: 767.9px) {
  .p-past-text {
    font-size: 14rem;
    line-height: 1.5714285714;
    margin-top: 20px;
  }
}

.p-past-slide {
  margin-top: 55px;
}
@media screen and (max-width: 767.9px) {
  .p-past-slide {
    margin-top: 20px;
  }
}
.p-past-slide .splide__slide {
  width: 100%;
  height: auto;
  aspect-ratio: 800/500;
}
.p-past-slide .splide__arrow {
  background: transparent;
  width: 73px;
  height: 73px;
  position: absolute;
}
@media screen and (max-width: 767.9px) {
  .p-past-slide .splide__arrow {
    width: 40px;
    height: 40px;
  }
}
.p-past-slide .splide__arrow.prev {
  background-image: url("../img/pagination_left.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  left: 0;
  translate: -50%;
}
@media screen and (max-width: 767.9px) {
  .p-past-slide .splide__arrow.prev {
    left: 0;
  }
}
.p-past-slide .splide__arrow.next {
  background-image: url("../img/pagination_right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  right: 0;
  translate: 50%;
}
@media screen and (max-width: 767.9px) {
  .p-past-slide .splide__arrow.next {
    right: 0;
  }
}

.p-past-slide__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/*==========================================================================
フォームに関するスタイル（お問い合わせ・会員登録共通）
========================================================================== */
.p-form-fv__text {
  position: absolute;
  color: #ffffff;
  text-align: center;
  font-size: 20rem;
  line-height: 1.8;
  bottom: 50px;
  left: 50%;
  translate: -50%;
  width: 100%;
  padding-inline: 20px;
}
@media screen and (max-width: 767.9px) {
  .p-form-fv__text {
    font-size: 12rem;
    line-height: 1.6666666667;
    bottom: 20px;
    text-align: left;
    padding-inline: 23px;
  }
}

.p-form-main {
  padding-block: 54px 100px;
}
@media screen and (max-width: 767.9px) {
  .p-form-main {
    padding-block: 20px;
  }
}

.p-form-container {
  background-color: #ffffff;
  padding-block: 71px 100px;
  padding-inline: 11.1666666667%;
  min-height: 400px;
}
@media screen and (max-width: 767.9px) {
  .p-form-container {
    padding-block: 16px 30px;
    padding-inline: 15px;
  }
}
.p-form-container .dummy {
  text-align: center;
  line-height: 2;
  font-weight: 700;
  color: #3E3E3E;
}

.p-form-flow {
  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: 20px;
}
@media screen and (max-width: 767.9px) {
  .p-form-flow {
    gap: 10px;
  }
}

.p-form-flow__item {
  width: 29.6137339056%;
  height: auto;
  aspect-ratio: 276/68;
  display: grid;
  place-items: center;
  color: #A4A4A4;
  border: solid 2px #A4A4A4;
  border-radius: 20px;
  font-size: 18rem;
}
@media screen and (max-width: 767.9px) {
  .p-form-flow__item {
    width: 80px;
    height: 60px;
    aspect-ratio: none;
    font-size: 12rem;
    border-width: 1px;
  }
}
.p-form-flow__item.--current {
  background-color: #A4A4A4;
  color: #ffffff;
}

.p-form-arrow {
  width: 11px;
  height: 22px;
}
@media screen and (max-width: 767.9px) {
  .p-form-arrow {
    width: 7px;
    height: 14px;
  }
}

.p-form-table {
  margin-top: 100px;
  color: #3E3E3E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 767.9px) {
  .p-form-table {
    margin-top: 25px;
    gap: 20px;
  }
}

.p-form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-form-item.p-form-textarea {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767.9px) {
  .p-form-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}

.p-form-head {
  width: 300px;
  font-size: 20rem;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .p-form-head {
    width: 100%;
    font-size: 14rem;
    line-height: 2.1428571429;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1024px) {
  .p-form-head {
    font-size: 16rem;
    width: 240px;
  }
}
.p-form-head.--require p {
  padding-right: 58px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .p-form-head.--require p {
    padding-right: 55px;
  }
}
.p-form-head.--require p::after {
  content: "必須";
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  height: 17px;
  line-height: 17px;
  width: 43px;
  border-radius: 20px;
  background-color: #FF0000;
  color: #ffffff;
  font-size: 10rem;
  text-align: center;
}
.p-form-head.--require.--ko p::after {
  content: "필수";
}

.p-form-body {
  width: calc(100% - 300px);
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .p-form-body {
    width: 100%;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1024px) {
  .p-form-body {
    width: calc(100% - 240px);
  }
}
.p-form-body input[type=text],
.p-form-body input[type=email],
.p-form-body input[type=tel],
.p-form-body select,
.p-form-body textarea {
  width: 100%;
  background-color: #F6F5F2;
  border: 1px solid #A4A4A4;
  border-radius: 10px;
  padding-block: 12px;
  padding-inline: 21px;
  font-size: 18rem;
}
@media screen and (max-width: 767.9px) {
  .p-form-body input[type=text],
  .p-form-body input[type=email],
  .p-form-body input[type=tel],
  .p-form-body select,
  .p-form-body textarea {
    font-size: 14rem;
    padding-block: 10px;
    padding-inline: 12px;
  }
}
@media screen and (min-width: calc(767.9px + 0.1px)) and (max-width: 1024px) {
  .p-form-body input[type=text],
  .p-form-body input[type=email],
  .p-form-body input[type=tel],
  .p-form-body select,
  .p-form-body textarea {
    font-size: 16rem;
  }
}
.p-form-body input[type=text]::-webkit-input-placeholder, .p-form-body input[type=email]::-webkit-input-placeholder, .p-form-body input[type=tel]::-webkit-input-placeholder, .p-form-body select::-webkit-input-placeholder, .p-form-body textarea::-webkit-input-placeholder {
  color: #A4A4A4;
}
.p-form-body input[type=text]::-moz-placeholder, .p-form-body input[type=email]::-moz-placeholder, .p-form-body input[type=tel]::-moz-placeholder, .p-form-body select::-moz-placeholder, .p-form-body textarea::-moz-placeholder {
  color: #A4A4A4;
}
.p-form-body input[type=text]:-ms-input-placeholder, .p-form-body input[type=email]:-ms-input-placeholder, .p-form-body input[type=tel]:-ms-input-placeholder, .p-form-body select:-ms-input-placeholder, .p-form-body textarea:-ms-input-placeholder {
  color: #A4A4A4;
}
.p-form-body input[type=text]::-ms-input-placeholder, .p-form-body input[type=email]::-ms-input-placeholder, .p-form-body input[type=tel]::-ms-input-placeholder, .p-form-body select::-ms-input-placeholder, .p-form-body textarea::-ms-input-placeholder {
  color: #A4A4A4;
}
.p-form-body input[type=text]::placeholder,
.p-form-body input[type=email]::placeholder,
.p-form-body input[type=tel]::placeholder,
.p-form-body select::placeholder,
.p-form-body textarea::placeholder {
  color: #A4A4A4;
}
.p-form-body input[type=text].invalid,
.p-form-body input[type=email].invalid,
.p-form-body input[type=tel].invalid,
.p-form-body select.invalid,
.p-form-body textarea.invalid {
  background-color: #FFECEC;
}
.p-form-body textarea {
  min-height: 130px;
}
@media screen and (max-width: 767.9px) {
  .p-form-body textarea {
    min-height: 200px;
  }
}
.p-form-body select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.p-form-body .select-arrow {
  position: absolute;
  top: 50%;
  right: 21px;
  translate: 0 -50%;
  width: 17px;
  height: 7px;
  background: url("../img/select-arrow.svg") no-repeat center center/contain;
}
@media screen and (max-width: 767.9px) {
  .p-form-body .select-arrow {
    right: 12px;
    width: 13px;
    height: 5px;
  }
}
.p-form-body .form-select:valid {
  color: #3E3E3E;
}
.p-form-body .form-select:invalid {
  color: #A4A4A4;
}
.p-form-body .form-select option {
  color: #3E3E3E;
}
.p-form-body.--radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  white-space: nowrap;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 767.9px) {
  .p-form-body.--radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

.p-form-kind {
  position: relative;
}
.p-form-kind span {
  position: relative;
  display: inline-block;
  padding-left: 35px;
}
@media screen and (max-width: 767.9px) {
  .p-form-kind span {
    padding-left: 21px;
  }
}
.p-form-kind span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: solid 1px #3E3E3E;
}
@media screen and (max-width: 767.9px) {
  .p-form-kind span::before {
    width: 14px;
    height: 14px;
  }
}
.p-form-kind span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 6px;
  translate: 0 -50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #3E3E3E;
  display: none;
}
@media screen and (max-width: 767.9px) {
  .p-form-kind span::after {
    width: 8px;
    height: 8px;
    left: 4px;
  }
}
@media screen and (max-width: 767.9px) {
  .p-form-kind:not(:first-child) {
    margin-left: 0;
  }
}
.p-form-kind input {
  display: none;
}
.p-form-kind input:checked + span::after {
  display: block;
}

.p-form__error-message {
  font-size: 14rem;
  color: #FF0000;
  line-height: 1.4285714286;
  margin-top: 3px;
}
@media screen and (max-width: 767.9px) {
  .p-form__error-message {
    font-size: 12rem;
    line-height: 1.4166666667;
  }
}

.p-form-check {
  text-align: center;
}
.p-form-check a {
  text-decoration: underline;
}

.p-form-check__label input {
  display: none;
}

.p-form-check__text {
  padding-left: 35px;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 767.9px) {
  .p-form-check__text {
    padding-left: 27px;
  }
}
.p-form-check__text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 20px;
  height: 20px;
  border: solid 1px #A4A4A4;
}
@media screen and (max-width: 767.9px) {
  .p-form-check__text::before {
    width: 15px;
    height: 15px;
  }
}
.p-form-check__text::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  translate: 1px -50%;
  width: 20px;
  height: 20px;
  background: #3E3E3E url(../img/form-check.svg) no-repeat center center/contain;
  display: none;
}
@media screen and (max-width: 767.9px) {
  .p-form-check__text::after {
    width: 15px;
    height: 15px;
  }
}

.p-form-check__label input:checked + span::after {
  display: block;
}

.p-form-submit {
  background-color: #06DAF3;
}
.p-form-submit:disabled {
  background-color: #DEDEDE;
  cursor: not-allowed;
}

.p-confirm-back-btn {
  background-color: #DEDEDE;
}

/*==========================================================================
送信フォームの確認ページ用スタイル（お問い合わせ・会員登録共通）
========================================================================== */
.p-confirm-block {
  margin-top: 100px;
  color: #3E3E3E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
@media screen and (max-width: 767.9px) {
  .p-confirm-block {
    margin-top: 26px;
    gap: 21px;
  }
}

.p-confirm-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767.9px) {
  .p-confirm-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

.p-confirm-label {
  width: 300px;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .p-confirm-label {
    width: 100%;
    font-size: 14rem;
  }
}
.p-confirm-label.--require p {
  padding-right: 58px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .p-confirm-label.--require p {
    padding-right: 55px;
  }
}
.p-confirm-label.--require p::after {
  content: "必須";
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  height: 17px;
  line-height: 17px;
  width: 43px;
  border-radius: 20px;
  background-color: #FF0000;
  color: #ffffff;
  font-size: 10rem;
  text-align: center;
}
.p-confirm-label.--require.--ko p::after {
  content: "필수";
}

.p-confirm-value {
  width: calc(100% - 300px);
}
@media screen and (max-width: 767.9px) {
  .p-confirm-value {
    width: 100%;
    font-size: 14rem;
  }
}

.p-confirm-check__text {
  padding-left: 35px;
  position: relative;
  display: inline-block;
  color: #A4A4A4;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767.9px) {
  .p-confirm-check__text {
    padding-left: 27px;
    font-size: 14rem;
  }
}
.p-confirm-check__text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 20px;
  height: 20px;
  border: solid 1px #A4A4A4;
}
@media screen and (max-width: 767.9px) {
  .p-confirm-check__text::before {
    width: 15px;
    height: 15px;
  }
}
.p-confirm-check__text::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  translate: 1px -50%;
  width: 20px;
  height: 20px;
  background: #A4A4A4 url(../img/form-check.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767.9px) {
  .p-confirm-check__text::after {
    width: 15px;
    height: 15px;
  }
}

.p-confirm-back {
  background-color: #DEDEDE;
}

.p-confirm-btn {
  background-color: #000000;
}

.c-form-btn {
  width: 452px;
  height: 95px;
  display: grid;
  place-items: center;
  margin-top: 25px;
  border-radius: 48px;
  margin-inline: auto;
  font-size: 28rem;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
}
@media screen and (max-width: 767.9px) {
  .c-form-btn {
    width: 232px;
    height: 50px;
    font-size: 14rem;
    margin-top: 20px;
  }
}
.c-form-btn.--thanks {
  background-color: #06DAF3;
}

/*==========================================================================
フォームのサンクスページ用スタイル
========================================================================== */
.p-thanks-head {
  height: 100px;
  width: 100%;
  background-color: #06DAF3;
}
@media screen and (max-width: 767.9px) {
  .p-thanks-head {
    height: 56px;
  }
}

.p-thanks-main {
  padding-top: 65px;
  padding-bottom: 88px;
  padding-inline: 40px;
}
@media screen and (max-width: 767.9px) {
  .p-thanks-main {
    padding-top: 19px;
    padding-bottom: 22px;
    padding-inline: 23px;
  }
}

.p-thanks-container {
  max-width: 1200px;
  margin-inline: auto;
  padding-block: 100px;
  background-color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767.9px) {
  .p-thanks-container {
    padding-block: 50px;
    height: 412px;
  }
}

.p-thanks-text {
  font-size: 30rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 80px;
  color: #3E3E3E;
}
@media screen and (max-width: 767.9px) {
  .p-thanks-text {
    font-size: 14rem;
    line-height: 1.5714285714;
    margin-bottom: 30px;
  }
}