@charset "UTF-8";
/* カラー設定 */
:root {
  --primary-color: #3BEE0E;
  --secondary-color: #0E3FEE;
  --accent-color: #FD1500;
  --black-color: #27292D;
  --back-color: #FEFEFE;
  --white-color: #FEFEFE;
}

/*----------------------------------------------------------*/
/* トップページ */
/*----------------------------------------------------------*/
/*---
mv
---*/
.mv {
  background-color: var(--primary-color);
  height: 100svh;
  min-height: 790px;
  overflow: hidden;
  background-image: url("../images/top/mv_bg.svg");
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .mv {
    max-height: 812px;
    min-height: 130vw;
    background-size: 110%;
    background-position: center 30%;
  }
}
.mv__content {
  position: absolute;
  width: 100vw;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}
.mv__content__logo {
  width: 60vw;
  margin: auto;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .mv__content__logo {
    width: 100%;
    text-align: center;
    margin-top: -20%;
  }
}
@media screen and (max-width: 768px) {
  .mv__content h4 {
    margin-top: 20px;
  }
}
.mv__event-title {
  width: 72%;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.mv__person {
  position: absolute;
}
.mv__person--left {
  bottom: -21vw;
  left: -6.5%;
  width: 36%;
}
.mv__person--right {
  bottom: -22vw;
  right: -5%;
  width: 37%;
}
.mv__person--bottom {
  bottom: 0;
  right: 0;
  width: 100%;
}

/*---
section-ABOUT
---*/
.section-about {
  background-color: var(--secondary-color);
  overflow: hidden;
}
.section-about .sec-title__en {
  color: var(--secondary-color);
}
.section-about__list {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: 1fr 0.11fr 1fr 0.11fr 1fr;
  gap: 16px 1.5%;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .section-about__list {
    grid-template-columns: 1fr;
  }
}
.section-about__item {
  border: solid 1px var(--white-color);
  border-radius: 24px;
  padding: 24px 27px;
  text-align: center;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .section-about__item {
    padding: 20px;
  }
}
.section-about__item img {
  width: 100%;
  max-width: 300px;
}
.section-about__item .title h3 {
  background-color: var(--white-color);
  padding: 16px 32px;
  border-radius: 100px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .section-about__item .title h3 {
    padding: 8px 24px;
    margin-top: 8px;
  }
}
.section-about__item .title h4 {
  color: #819cff;
  margin-top: 8px;
}
.section-about__item p {
  color: var(--white-color);
  margin-left: 8px;
  margin-right: 8px;
}
.section-about__item .release-img {
  position: absolute;
  right: -6vw;
  top: -6vw;
  width: 13vw;
  min-width: 140px;
}
@media screen and (max-width: 768px) {
  .section-about__item .release-img {
    right: 0vw;
    top: -22vw;
  }
}
.section-about__movie iframe {
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 16/9;
}
.section-about__item-symbols {
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .section-about__item-symbols {
    width: 32px;
    margin: auto;
  }
}
@media screen and (max-width: 1000px) {
  .section-about__item-symbols.equal {
    transform: rotate(90deg);
  }
}
.section-about__support__title {
  text-align: center;
  color: var(--white-color);
}
.section-about__support__list {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  background-color: var(--white-color);
  border-radius: 24px;
  padding: 32px;
  gap: 8px 3.4%;
}
@media screen and (max-width: 768px) {
  .section-about__support__list {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
.section-about__support__list .line {
  width: 1px;
  height: 100%;
  background-color: #A6A9AF;
}
@media screen and (max-width: 768px) {
  .section-about__support__list .line {
    width: 100%;
    height: 1px;
  }
}
.section-about__support__item {
  display: grid;
  text-align: center;
}
.section-about__support__item img {
  display: block;
  width: 36%;
  max-width: 88px;
  margin: auto;
}
.section-about__support__item h4 {
  margin-top: 4px;
}
.section-about__support__item p {
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*---
section-program
---*/
.section-program {
  background-color: var(--primary-color);
  position: relative;
}
.section-program .sec-title h1 {
  color: var(--black-color);
}
.section-program__list {
  width: 100%;
  max-width: 960px;
  margin: auto;
  display: grid;
  gap: 32px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .section-program__list {
    gap: 20px;
  }
}
.section-program__list .arrow {
  margin: auto;
}
.section-program__item {
  background-color: var(--white-color);
  padding: 24px;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 8px 24px;
}
@media screen and (max-width: 768px) {
  .section-program__item {
    padding: 16px 20px 20px;
    grid-template-columns: 1fr;
  }
}
.section-program__item .category {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  .section-program__item .category {
    transform: rotate(0deg);
  }
}
@media screen and (max-width: 375px) {
  .section-program__item .category {
    font-size: 2rem;
  }
}
.section-program__item .text-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .section-program__item .text-box {
    flex-direction: column;
    gap: 4px;
  }
}
.section-program__item .text-box .title {
  display: flex;
  align-items: center;
  gap: 4px 16px;
}
@media screen and (max-width: 768px) {
  .section-program__item .text-box .title {
    flex-direction: column;
  }
}
.section-program__item .text-box .title h2 {
  text-align: center;
}
.section-program__item .text-box .title img {
  width: 64px;
}
@media screen and (max-width: 768px) {
  .section-program__item .text-box .title img {
    width: 56px;
  }
}
.section-program__item .content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 8px 32px;
}
@media screen and (max-width: 768px) {
  .section-program__item .content {
    grid-template-columns: 1fr;
  }
}
.section-program__item .content img {
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .section-program__item .content .hoget-img {
    aspect-ratio: 17/11;
  }
}
@media screen and (max-width: 768px) {
  .section-program__item .content .hoget-img img {
    width: 100%;
    height: 100%;
  }
}
.section-program__item .content .info {
  display: flex;
  gap: 4px 8px;
  align-items: flex-start;
}
.section-program__item .content .info__title {
  background-color: #E7E8EB;
  padding: 4px 12px;
  border-radius: 100px;
  min-width: fit-content;
}
.section-program__item .content .info p {
  display: inline;
}
.section-program__item .content .info .g-map {
  display: inline;
  border-bottom: solid 1px var(--black-color);
  line-height: 1.2;
}
.section-program .club-room {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 8px 24px;
  padding: 24px;
  border-radius: 16px;
  border: solid 2px var(--white-color);
}
@media screen and (max-width: 768px) {
  .section-program .club-room {
    grid-template-columns: 1fr;
    padding: 16px 20px;
  }
}
.section-program .club-room .category {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(90deg);
}
@media screen and (max-width: 768px) {
  .section-program .club-room .category {
    transform: rotate(0deg);
  }
}
.section-program .club-room .content {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 32px;
  grid-row-gap: 0px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .section-program .club-room .content {
    grid-template-columns: 1fr 2fr;
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 16px;
    grid-row-gap: 0px;
  }
}
.section-program .club-room .content .div1 {
  grid-area: 1/1/3/2;
}
@media screen and (max-width: 768px) {
  .section-program .club-room .content .div1 {
    grid-area: 1/2/2/3;
  }
}
.section-program .club-room .content .div2 {
  grid-area: 1/2/2/3;
}
@media screen and (max-width: 768px) {
  .section-program .club-room .content .div2 {
    grid-area: 1/1/2/2;
  }
}
.section-program .club-room .content .div3 {
  grid-area: 2/2/3/3;
}
@media screen and (max-width: 768px) {
  .section-program .club-room .content .div3 {
    grid-area: 2/1/3/3;
  }
}
.section-program .club-room .content .title {
  background-color: #D0FCC5;
  width: fit-content;
  border-radius: 100px;
  padding: 4px 12px;
}
.section-program .club-room .content h4 {
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .section-program .club-room .content h4 {
    text-align: center;
  }
}
.section-program .club-room__img {
  border-radius: 8px;
}
.section-program .club-room .text-box {
  display: grid;
  align-content: center;
  gap: 8px;
}
.section-program .illust-1 {
  position: absolute;
  top: -5vw;
  right: 1vw;
  width: 14%;
}
@media screen and (max-width: 500px) {
  .section-program .illust-1 {
    top: -13vw;
    width: 25%;
  }
}
.section-program .illust-2 {
  position: absolute;
  top: 10vw;
  left: 2vw;
  width: 21%;
  z-index: -1;
}
@media screen and (max-width: 500px) {
  .section-program .illust-2 {
    top: 18vw;
    left: -10vw;
    width: 40%;
  }
}
.section-program .illust-3 {
  position: absolute;
  right: 2vw;
  bottom: -6vw;
  width: 10%;
}
@media screen and (max-width: 500px) {
  .section-program .illust-3 {
    bottom: -12vw;
    width: 18%;
  }
}

/*---
section-message
---*/
.section-message {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .section-message {
    padding: 56px 0;
  }
}
.section-message__content {
  width: 100%;
  max-width: 640px;
  margin: auto;
  display: grid;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .section-message__content {
    gap: 16px;
  }
}
.section-message__title__en {
  margin-bottom: 8px;
  color: #A6A9AF;
}
.section-message__name {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

/*---
section-entry
---*/
.section-entry {
  background-color: var(--accent-color);
  position: relative;
}
.section-entry__movie {
  width: 100%;
  max-width: 684px;
  margin: auto;
  color: var(--white-color);
}
.section-entry__movie iframe {
  display: block;
  width: 100%;
  max-width: 636px;
  aspect-ratio: 16/9;
  border-radius: 24px;
  margin: auto;
  margin-top: 16px;
}
.section-entry__movie h3 {
  text-align: center;
}
.section-entry__flow {
  color: var(--white-color);
  border-bottom: solid 4px #FFC0BB;
}
.section-entry__flow__title {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .section-entry__flow__title {
    gap: 16px;
  }
}
.section-entry__flow__title h2 {
  text-align: center;
  display: block;
  width: 260px;
}
@media screen and (max-width: 768px) {
  .section-entry__flow__title h2 {
    width: 230px;
  }
}
.section-entry__flow__title::before, .section-entry__flow__title::after {
  content: "";
  display: inline-block;
  width: calc((100% - 260px) / 2);
  height: 4px;
  background-color: #FFC0BB;
}
@media screen and (max-width: 768px) {
  .section-entry__flow__title::before, .section-entry__flow__title::after {
    width: calc((100% - 230px) / 2);
  }
}
.section-entry__flow__list {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr;
  align-items: center;
  gap: 24px 32px;
  padding: 48px 4%;
}
@media screen and (max-width: 768px) {
  .section-entry__flow__list {
    grid-template-columns: 1fr;
    padding: 24px 0;
  }
}
.section-entry__flow__item {
  text-align: center;
  display: grid;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .section-entry__flow__item {
    gap: 12px;
  }
}
.section-entry__flow__item img {
  margin: auto;
  width: 80px;
  max-width: 25%;
}
@media screen and (max-width: 768px) {
  .section-entry__flow__item img {
    width: 64px;
  }
}
@media screen and (max-width: 768px) {
  .section-entry__flow .arrow {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .section-entry__flow .arrow img {
    transform: rotate(90deg);
    height: 24px;
  }
}
.section-entry .terms__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 6%;
}
@media screen and (max-width: 768px) {
  .section-entry .terms__list {
    grid-template-columns: 1fr;
  }
}
.section-entry .terms__item h4 {
  background-color: #FFC0BB;
  padding: 12px 24px;
  display: block;
  width: fit-content;
  margin: auto;
  border-radius: 100px;
}
.section-entry .terms__item ul {
  list-style-type: disc;
  color: var(--white-color);
  margin-left: 1em;
}
@media screen and (max-width: 768px) {
  .section-entry .terms__item ul {
    margin-top: 16px;
  }
}
.section-entry .deadline {
  background-color: var(--white-color);
  text-align: center;
  padding: 32px;
  border-radius: 24px;
}
.section-entry .deadline__title {
  margin-bottom: 8px;
}
.section-entry .illust-1 {
  position: absolute;
  top: -9vw;
  left: 2vw;
  width: 15%;
}
@media screen and (max-width: 500px) {
  .section-entry .illust-1 {
    top: -12vw;
    left: 0vw;
    width: 25%;
  }
}

/*---
section-technology
---*/
.section-technology {
  background-color: var(--secondary-color);
  position: relative;
}
.section-technology .sec-title {
  z-index: 1;
}
.section-technology__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 2%;
  max-width: 1200px;
  margin: auto;
}
.section-technology__item {
  width: 32%;
  background-color: var(--white-color);
  padding: 32px 24px 24px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .section-technology__item {
    width: 100%;
    max-width: 520px;
    padding: 20px;
  }
}
.section-technology__item h3 {
  text-align: center;
}
.section-technology__item .description {
  min-height: 81px;
}
.section-technology__item .movie {
  aspect-ratio: 16/9;
  cursor: pointer;
  position: relative;
}
.section-technology__item .movie img {
  transition: opacity 0.3s;
}
.section-technology__item .movie img:hover {
  opacity: 0.8;
}
.section-technology__item .movie::after {
  content: "";
  display: block;
  background-image: url("../images/top/technology_movie.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section-technology__item .company {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-technology__item .company img {
  margin-right: 4px;
  width: 32px;
}
.section-technology .modal {
  display: none;
  position: fixed;
  z-index: 99999;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}
.section-technology .modal__content {
  position: relative;
  background: var(--white-color);
  border-radius: 24px;
  padding: 32px;
  max-width: 800px;
  width: 90%;
  animation: fadeIn 0.3s ease;
}
@media screen and (max-width: 768px) {
  .section-technology .modal__content {
    padding: 40px 20px 20px;
  }
}
.section-technology .modal__content .modal-body {
  display: grid;
  gap: 24px;
}
.section-technology .modal__content .modal-body h3 {
  margin-bottom: 0;
}
.section-technology .modal__content .modal-body iframe {
  aspect-ratio: 16/9;
}
.section-technology .modal .close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #333;
  font-size: 28px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .section-technology .modal .close {
    top: 0px;
    right: 8px;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.section-technology .second-recruitment {
  color: var(--white-color);
  border: solid 2px var(--white-color);
  border-radius: 24px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  .section-technology .second-recruitment {
    padding: 24px 16px 16px;
  }
}
.section-technology .second-recruitment h3 {
  text-align: center;
}
.section-technology .second-recruitment p {
  text-align: center;
}
.section-technology .illust-1 {
  position: absolute;
  top: -5vw;
  left: 0vw;
  width: 20%;
  min-width: 140px;
}
@media screen and (max-width: 768px) {
  .section-technology .illust-1 {
    top: 10vw;
    left: -6vw;
  }
}
.section-technology .illust-2 {
  position: absolute;
  bottom: -3vw;
  right: 2vw;
  width: 12.5%;
  min-width: 95px;
}
@media screen and (max-width: 500px) {
  .section-technology .illust-2 {
    right: 1vw;
    bottom: -20vw;
  }
}
.section-technology .illust-3 {
  position: absolute;
  top: -15vw;
  right: 1vw;
  width: 12.5%;
  min-width: 95px;
}
/*---
section-faq
---*/
.section-faq {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .section-faq {
    padding: 56px 0;
  }
}
.section-faq .sec-title__en {
  background-color: #A6A9AF;
  color: var(--white-color);
}
.section-faq .sec-title h1 {
  color: var(--black-color);
}
.section-faq__list {
  width: 100%;
  max-width: 640px;
  margin: auto;
}
.section-faq__item {
  display: grid;
  gap: 8px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: solid 1px #E7E8EB;
}
@media screen and (max-width: 768px) {
  .section-faq__item {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.section-faq__item:first-of-type {
  padding-top: 0;
}
.section-faq__item:last-of-type {
  padding-bottom: 0;
  border-bottom: unset;
}
.section-faq__q, .section-faq__a {
  display: flex;
  gap: 8px;
  align-items: center;
}
.section-faq__q img, .section-faq__a img {
  width: 40px;
}
@media screen and (max-width: 768px) {
  .section-faq__q img, .section-faq__a img {
    width: 32px;
  }
}
.section-faq .illust-1 {
  display: block;
  width: 13.5%;
  min-width: 120px;
  margin: auto;
}

/*----------------------------------------------------------*/
/* 下層ページ_共通 */
/*----------------------------------------------------------*/
.page {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .page {
    padding-top: 60px;
  }
}

.page-description {
  text-align: center;
  font-weight: 700;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .page-description {
    margin-top: 32px;
  }
}

.page__content {
  background-color: var(--white-color);
  padding: 60px 6.3%;
  border-radius: 32px;
  width: 100%;
  max-width: 940px;
  margin: auto;
  color: #222222;
}
@media screen and (max-width: 768px) {
  .page__content {
    padding: 32px 20px;
  }
}

/*----------------------------------------------------------*/
/* お問い合わせページ */
/*----------------------------------------------------------*/
.page-contact__terms {
  color: #9f9f9f;
  text-align: center;
  font-size: 1.2rem;
}
.page-contact__terms a {
  text-decoration: underline;
}
.page-contact select,
.page-contact input,
.page-contact textarea {
  border: solid 1px #DCDCDC;
  padding: 16px 20px;
  border-radius: 12px;
  width: 100%;
  font-size: 1.6rem;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .page-contact select,
  .page-contact input,
  .page-contact textarea {
    padding: 12px 16px;
    font-size: 1.4rem;
  }
}
.page-contact select::placeholder,
.page-contact input::placeholder,
.page-contact textarea::placeholder {
  font-size: 1.6rem;
  color: #B6B6B6;
}
@media screen and (max-width: 768px) {
  .page-contact select::placeholder,
  .page-contact input::placeholder,
  .page-contact textarea::placeholder {
    font-size: 1.4rem;
  }
}
.page-contact select {
  color: #999;
}
.page-contact select option:not(:first-child) {
  color: #999;
}
.page-contact .wpcf7-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.page-contact .select-wrap::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url(../images/form_select.svg);
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  top: 26px;
  right: 3%;
}
@media screen and (max-width: 768px) {
  .page-contact .select-wrap::after {
    top: 20px;
  }
}
.page-contact input[type=file]::file-selector-button {
  font-size: 14px;
  border: solid 1px #BBBBBB;
  background-color: #E0E0E0;
  border-radius: 4px;
  padding: 2px 8px;
  text-align: center;
  cursor: pointer;
  color: #222;
}
.page-contact input[type=submit] {
  background-color: var(--primary-color);
  border: none;
  border-radius: 10px;
  color: var(--white-color);
  width: 260px;
  margin: auto;
  display: block;
  text-align: center;
  font-weight: 700;
}
.page-contact input[type=file] {
  font-size: 1.4rem;
  border: none;
  padding: 0;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  .page-contact input[type=file] {
    font-size: 1.2rem;
    border: none;
  }
}
.page-contact select[name=contact-type] {
  width: 50%;
  min-width: 360px;
}
@media screen and (max-width: 768px) {
  .page-contact select[name=contact-type] {
    width: 100%;
    min-width: inherit;
  }
}
.page-contact .form__list {
  display: grid;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .page-contact .form__list {
    gap: 20px;
  }
}
.page-contact .form .form-title {
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .page-contact .form .form-title {
    margin-bottom: 8px;
  }
}
.page-contact .form .form-title__required {
  background-color: var(--accent-color);
  color: var(--white-color);
  padding: 1px 8px;
  border-radius: 20px;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .page-contact .form .form-title__required {
    font-size: 1rem;
  }
}
.page-contact .form__area-wprapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
@media screen and (max-width: 768px) {
  .page-contact .form__area-wprapper {
    grid-template-columns: 1fr;
  }
}
.page-contact .form__area-wprapper .select-wrap {
  width: 100%;
}
.page-contact .form__privacy {
  margin-bottom: 28px;
  font-weight: 400;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page-contact .form__privacy {
    margin-top: 20px;
  }
}
.page-contact .form__privacy-link {
  text-decoration: underline;
  margin-left: 4px;
}

/*----------------------------------------------------------*/
/* プライバシーポリシーページ */
/*----------------------------------------------------------*/
.page-privacy .page__content {
  display: grid;
  gap: 40px;
}
.page-privacy ol {
  list-style: decimal;
}
.page-privacy ol li {
  margin-left: 1.6rem;
}
.page-privacy ol li::marker {
  font-size: 1.6rem;
}

.page-privacy__item {
  display: grid;
  gap: 12px;
}

/*----------------------------------------------------------*/
/* 運営会社ページ */
/*----------------------------------------------------------*/
.page-company tbody {
  display: grid;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .page-company tbody {
    gap: 20px;
  }
}
.page-company tr {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page-company tr {
    flex-direction: column;
    align-items: start;
  }
}
.page-company tr th {
  min-width: 200px;
  padding-right: 12px;
}
@media screen and (max-width: 768px) {
  .page-company tr th {
    padding-right: 0;
    padding-bottom: 4px;
  }
}

/*----------------------------------------------------------*/
/* 404ページ*/
/*----------------------------------------------------------*/
.section-404 h2 {
  font-size: 6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section-404 h2 {
    font-size: 5.2rem;
  }
}
.section-404__text {
  text-align: center;
}
.section-404 .top-link {
  border: solid 1px var(--primary-color);
  padding: 12px 16px;
  width: 100%;
  max-width: 320px;
  margin: auto;
  text-align: center;
  border-radius: 100px;
}

/*----------------------------------------------------------*/
/* thanksページ */
/*----------------------------------------------------------*/
.section-thanks__text {
  text-align: center;
}
.section-thanks .top-link {
  border: solid 1px var(--primary-color);
  padding: 12px 16px;
  width: 100%;
  max-width: 320px;
  margin: auto;
  text-align: center;
  border-radius: 100px;
}