@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&display=swap");
/* ==========================================================================
Foundation
========================================================================== */
html {
  font-size: 16px;
  line-height: 1.5;
  scroll-behavior: smooth;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

body {
  color: #1D285C;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

a {
  color: unset;
  text-decoration: none;
}

@media screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

address {
  font-style: unset;
}

/* ==========================================================================
Layout
========================================================================== */
.l-wide_block {
  position: relative;
  left: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
}

.l-header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px min(48px, 5vw);
  background-color: rgba(255, 232, 90, 0.9);
  z-index: 9999;
}

.l-header__nav {
  display: flex;
  align-items: center;
  font-weight: bold;
}
@media screen and (max-width: 999px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
}
.l-header__nav ul li a {
  transition: 0.2s;
}
.l-header__nav ul li a:hover {
  opacity: 0.8;
}

.l-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFE85A;
  padding: 40px min(48px, 5vw) 50px;
  margin-top: 160px;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 20px min(48px, 5vw) 25px;
    margin-top: 80px;
  }
}
.l-footer .l-footer__copy {
  font-size: 1.125rem;
  line-height: 2;
  text-align: center;
}

.l-content {
  width: 100%;
  max-width: calc(1050px + 2 * min(48px, 5vw));
  padding-left: min(48px, 5vw);
  padding-right: min(48px, 5vw);
  margin-left: auto;
  margin-right: auto;
}

.l-bg {
  background-color: #FFF8CA;
}

/* ==========================================================================
Object
========================================================================== */
/* Component
----------------------------------------------------------------- */
.c-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  font-weight: bold;
  text-align: center;
  background-color: #E02F5A;
  padding: 0.6em 1.5em;
  border-radius: 0.5em;
  transition: 0.2s;
}
.c-button:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .c-button {
    padding: 0.5em 1em;
  }
}

.c-big_button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: bold;
  color: #FFFFFF;
  background-color: #FE9D3C;
  border-radius: 16px;
  box-shadow: 0px 0px 54px 0px rgba(235, 145, 57, 0.3);
  padding: 1.5em 5em;
  transition: 0.2s;
}
.c-big_button:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .c-big_button {
    font-size: 1.5rem;
    width: 100%;
    padding: 2em 1em;
  }
}
.c-big_button::before {
  content: "";
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 1rem;
  background-image: url(../../images/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.c-big_button .c-big_button__icon {
  position: absolute;
  top: 50%;
  left: 2rem;
  transform: translateY(-50%);
  color: #FE9D3C;
  font-size: 1.4rem;
  font-weight: bold;
  background-color: #FFFFFF;
  padding: 0.3em 0.8em;
  border-radius: 70px;
}
@media screen and (max-width: 768px) {
  .c-big_button .c-big_button__icon {
    top: 0.7em;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    padding: 0.2em 0.5em;
  }
}

.c-date {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  font-weight: bold;
  line-height: 1;
}
.c-date .c-date__week {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 0.33em;
  background-color: #1D285C;
  border-radius: 50%;
  width: 1.8em;
  aspect-ratio: 1/1;
}

.c-question {
  border-radius: 24px;
  border: 1px solid #E0E0E0;
}
.c-question .c-question__q,
.c-question .c-question__a {
  position: relative;
  font-size: 1.125rem;
  padding: 1.5rem 1.5rem 1.5rem 4.5rem;
}
.c-question .c-question__q::before,
.c-question .c-question__a::before {
  position: absolute;
  top: 2.0625rem;
  left: 1.5rem;
  transform: translateY(-45%);
  font-size: 2rem;
  line-height: 1;
}
.c-question .c-question__q {
  font-weight: bold;
  list-style: none;
}
.c-question .c-question__q::before {
  content: "Q";
  color: #4792F3;
}
.c-question .c-question__a {
  font-size: 1.125rem;
  padding-top: 0;
}
.c-question .c-question__a::before {
  content: "A";
  color: #F25C5C;
  top: 0.5625rem;
}

.c-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-title {
    font-size: 2rem;
  }
}

.c-time_table__nav {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .c-time_table__nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 15px;
  }
}
.c-time_table__nav li input {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}
.c-time_table__nav li input:checked + label {
  background-color: #FFE85A;
}
.c-time_table__nav li input:checked + label.dateall::after {
  background-color: #FFFFFF;
}
.c-time_table__nav li label {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  background-color: #FFFFFF;
  border-radius: 16px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .c-time_table__nav li label {
    border-radius: 8px;
  }
}
.c-time_table__nav li label:not(.dateall) {
  padding-bottom: 8%;
}
.c-time_table__nav li label::after {
  content: "";
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 6px;
  border-radius: 30px;
  background-color: #FFE85A;
}
@media screen and (max-width: 768px) {
  .c-time_table__nav li label::after {
    bottom: 10%;
    width: 70%;
    height: 4px;
  }
}
.c-time_table__nav li label.theme-1 .day {
  color: #40C7ED;
}
.c-time_table__nav li label.theme-1::after {
  background-color: #40C7ED;
}
.c-time_table__nav li label.theme-2 .day {
  color: #56BC3C;
}
.c-time_table__nav li label.theme-2::after {
  background-color: #56BC3C;
}
.c-time_table__nav li label.theme-3 .day {
  color: #F68640;
}
.c-time_table__nav li label.theme-3::after {
  background-color: #F68640;
}
.c-time_table__nav li label .day {
  font-size: 1.5rem;
  font-weight: bold;
}
.c-time_table__nav li label .c-date {
  font-size: 2.5rem;
}
@media screen and (max-width: 999px) {
  .c-time_table__nav li label .c-date {
    font-size: 2rem;
  }
}
.c-time_table__nav:has(#dateall:checked) ~ .c-time_table__list .c-time_table {
  display: block;
}
.c-time_table__nav:has(#date-1:checked) ~ .c-time_table__list .c-time_table.--date-1 {
  display: block;
}
.c-time_table__nav:has(#date-2:checked) ~ .c-time_table__list .c-time_table.--date-2 {
  display: block;
}
.c-time_table__nav:has(#date-3:checked) ~ .c-time_table__list .c-time_table.--date-3 {
  display: block;
}
.c-time_table__nav:has(#date-4:checked) ~ .c-time_table__list .c-time_table.--date-4 {
  display: block;
}
.c-time_table__nav:has(#date-5:checked) ~ .c-time_table__list .c-time_table.--date-5 {
  display: block;
}

.c-time_table__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .c-time_table__list {
    gap: 30px;
  }
}

.c-time_table {
  border-radius: 24px;
  overflow: hidden;
  display: none;
}
.c-time_table.--theme-1 .c-info_box {
  background-color: #D2F5FF;
}
.c-time_table.--theme-1 .c-time_table__head {
  background-color: #40C7ED;
}
.c-time_table.--theme-1 .c-time_table__item .c-time_table__title_wrapper.--main .c-time_table__title {
  background-color: #40C7ED;
}
.c-time_table.--theme-1 .c-time_table__item .c-time_table__title_wrapper.--main .c-time_table__title::before {
  background-color: #40C7ED;
}
.c-time_table.--theme-1 .c-time_table__item .c-time_table__time::before {
  background-color: #40C7ED;
}
.c-time_table.--theme-2 .c-info_box {
  background-color: #D9F8D2;
}
.c-time_table.--theme-2 .c-time_table__head {
  background-color: #56BC3C;
}
.c-time_table.--theme-2 .c-time_table__item .c-time_table__title_wrapper.--main .c-time_table__title {
  background-color: #56BC3C;
}
.c-time_table.--theme-2 .c-time_table__item .c-time_table__title_wrapper.--main .c-time_table__title::before {
  background-color: #56BC3C;
}
.c-time_table.--theme-2 .c-time_table__item .c-time_table__time::before {
  background-color: #56BC3C;
}
.c-time_table.--theme-3 .c-info_box {
  background-color: #FFE0CD;
}
.c-time_table.--theme-3 .c-time_table__head {
  background-color: #F68640;
}
.c-time_table.--theme-3 .c-time_table__item .c-time_table__title_wrapper.--main .c-time_table__title {
  background-color: #F68640;
}
.c-time_table.--theme-3 .c-time_table__item .c-time_table__title_wrapper.--main .c-time_table__title::before {
  background-color: #F68640;
}
.c-time_table.--theme-3 .c-time_table__item .c-time_table__time::before {
  background-color: #F68640;
}
.c-time_table .c-time_table__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #40C7ED;
  padding: 1rem 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-time_table .c-time_table__head {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.c-time_table .c-time_table__body {
  padding: 60px;
  background-color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .c-time_table .c-time_table__body {
    padding: 25px 20px;
  }
}
.c-time_table .c-time_table__date {
  display: grid;
  align-items: end;
  grid-template-areas: "date time open";
  gap: 6px 10px;
  color: #FFFFFF;
  line-height: 1;
}
@media screen and (max-width: 999px) {
  .c-time_table .c-time_table__date {
    grid-template-areas: "date time" "open open";
  }
}
.c-time_table .c-time_table__date .c-date {
  grid-area: date;
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  .c-time_table .c-time_table__date .c-date {
    font-size: 3rem;
  }
}
.c-time_table .c-time_table__date .c-time_table__date__time {
  grid-area: time;
  font-size: 2.6rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-time_table .c-time_table__date .c-time_table__date__time {
    font-size: 2rem;
  }
}
.c-time_table .c-time_table__date .c-time_table__date__open {
  grid-area: open;
  font-size: 1rem;
  margin-left: 10px;
  margin-bottom: 2px;
  text-align: center;
}
@media screen and (max-width: 999px) {
  .c-time_table .c-time_table__date .c-time_table__date__open {
    margin-left: 0;
    margin-bottom: 0;
  }
}
.c-time_table .c-time_table__theme {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: bold;
  background-color: #FFFFFF;
  padding: 0.5em 1.5em;
  border-radius: 60px;
}
.c-time_table .c-time_table__theme::before {
  content: "テーマ：";
}

.c-time_table__item {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .c-time_table__item {
    margin-top: 5px;
  }
}
.c-time_table__item .c-time_table__title_wrapper {
  display: flex;
  align-items: center;
  gap: 70px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-time_table__item .c-time_table__title_wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.c-time_table__item .c-time_table__title_wrapper.--main .c-time_table__time::before {
  width: 40px;
  left: calc(100% + 35px);
}
@media screen and (max-width: 768px) {
  .c-time_table__item .c-time_table__title_wrapper.--main .c-time_table__time::before {
    top: calc(100% + 1.5rem);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
  }
}
.c-time_table__item .c-time_table__title_wrapper.--main .c-time_table__time::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: calc(100% + 35px);
  transform: translate(-50%, -50%);
  width: 20px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #FFFFFF;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-time_table__item .c-time_table__title_wrapper.--main .c-time_table__time::after {
    top: calc(100% + 1.5rem);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
  }
}
.c-time_table__item .c-time_table__title_wrapper.--main .c-time_table__title {
  color: #FFFFFF;
  background-color: #40C7ED;
  padding: 8px 1rem;
  border-radius: 10px;
}
.c-time_table__item .c-time_table__title_wrapper.--main .c-time_table__title::before {
  content: "";
  position: absolute;
  right: calc(100% - 1px);
  top: 50%;
  transform: translateY(-50%);
  --triangle-size: .5em;
  height: var(--triangle-size);
  width: calc(var(--triangle-size) / 2 * 1.7320508076);
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  background-color: #40C7ED;
}
.c-time_table__item .c-time_table__title_wrapper .c-time_table__time {
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
  width: 2.9em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .c-time_table__item .c-time_table__title_wrapper .c-time_table__time {
    font-size: 18px;
  }
}
.c-time_table__item .c-time_table__title_wrapper .c-time_table__time::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: calc(100% + 35px);
  transform: translate(-50%, -50%);
  width: 20px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #40C7ED;
}
@media screen and (max-width: 768px) {
  .c-time_table__item .c-time_table__title_wrapper .c-time_table__time::before {
    top: calc(100% + 1rem);
    left: 50%;
    width: 15px;
    transform: translate(-50%, -50%);
  }
}
.c-time_table__item .c-time_table__title_wrapper .c-time_table__title {
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-time_table__item .c-time_table__title_wrapper .c-time_table__title {
    margin-left: 4rem;
  }
}
.c-time_table__item .c-time_table__content {
  position: relative;
  width: calc(100% - (4.5rem + 35px) + 3px);
  min-height: 80px;
  margin-left: auto;
  padding-top: 1rem;
  padding-bottom: 60px;
  padding-left: 35px;
}
@media screen and (max-width: 768px) {
  .c-time_table__item .c-time_table__content {
    width: calc(100% - 27px + 3px);
    min-height: 40px;
    padding-bottom: 30px;
    padding-left: 20px;
  }
}
.c-time_table__item .c-time_table__content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 3px;
  border-radius: 8px;
  background-color: #EAEAEA;
}
.c-time_table__item .c-time_table__content .c-time_table__content__title {
  font-size: 1.75rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .c-time_table__item .c-time_table__content .c-time_table__content__title {
    font-size: 1.5rem;
  }
}
.c-time_table__item .c-time_table__content .c-time_table__content__title + * {
  margin-top: 10px;
}

.c-info_box {
  display: grid;
  grid-template-columns: 125px 1fr;
  grid-template-areas: "img names" "img desc";
  align-items: flex-start;
  gap: 5px 30px;
  padding: 1rem;
  background-color: #D2F5FF;
  border-radius: 10px;
}
.c-info_box + .c-info_box {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .c-info_box {
    grid-template-columns: 80px 1fr;
    grid-template-areas: "img names" "desc desc";
    gap: 5px 15px;
  }
}
.c-info_box.--noimg {
  grid-template-columns: 1fr;
  grid-template-areas: "names" "desc";
}
@media screen and (max-width: 768px) {
  .c-info_box.--noimg {
    grid-template-columns: 1fr;
    grid-template-areas: "names" "desc";
  }
}
.c-info_box .c-info_box__img {
  grid-area: img;
  width: 125px;
  aspect-ratio: 1/1;
  background: #000;
}
@media screen and (max-width: 768px) {
  .c-info_box .c-info_box__img {
    width: 80px;
  }
}
.c-info_box .c-info_box__names {
  grid-area: names;
}
.c-info_box .c-info_box__company {
  font-weight: bold;
}
.c-info_box .c-info_box__name {
  font-size: 1.5rem;
  font-weight: bold;
}
.c-info_box .c-info_box__name::after {
  content: "氏";
  font-size: 1rem;
  margin-left: 3px;
}
.c-info_box .c-info_box__name.--sama::after {
  content: "様";
}
.c-info_box .c-info_box__name.--omitted::after {
  content: unset;
}
.c-info_box .c-info_box__desc {
  grid-area: desc;
  font-size: 0.875rem;
  line-height: 1.7;
}
.c-info_box .c-info_box__desc a {
  text-decoration: underline;
  transition: 0.2s;
}
.c-info_box .c-info_box__desc a:hover {
  text-decoration: none;
}
.c-info_box.--special {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.c-info_box .c-info_box__persons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .c-info_box .c-info_box__persons {
    flex-direction: column;
  }
}
.c-info_box .c-info_box__persons .c-info_box__person {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "img names";
  align-items: center;
  gap: 8px;
}
.c-info_box .c-info_box__persons .c-info_box__person .c-info_box__img {
  width: 100px;
}
@media screen and (max-width: 768px) {
  .c-info_box .c-info_box__persons .c-info_box__person .c-info_box__img {
    width: 80px;
  }
}
.c-info_box .c-info_box__persons .c-info_box__person .c-info_box__company {
  font-size: 0.85rem;
}
@media screen and (max-width: 768px) {
  .c-info_box .c-info_box__persons .c-info_box__person .c-info_box__company {
    font-size: 1rem;
  }
}
.c-info_box .c-info_box__persons .c-info_box__person .c-info_box__name {
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .c-info_box .c-info_box__persons .c-info_box__person .c-info_box__name {
    font-size: 1.4rem;
  }
}
.c-info_box .c-info_box__persons .c-info_box__person .c-info_box__name::after {
  font-size: 1rem;
}
.c-info_box .c-info_box__detail {
  font-size: 1.125rem;
  font-weight: bold;
}

.c-caution {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  background: #FFF6C0;
  border-radius: 6px;
}
@media screen and (max-width: 400px) {
  .c-caution {
    font-size: 0.9rem;
  }
}
.c-caution .c-caution__br {
  display: none;
}
@media screen and (max-width: 600px) {
  .c-caution .c-caution__br {
    display: block;
  }
}

.c-read_more {
  position: relative;
}
.c-read_more + .c-read_more {
  margin-top: 10px;
}

.c-read_more .c-read_more__item {
  position: relative;
  max-height: 100vh; /* 開く前に見せたい高さを指定 */
  overflow: hidden;
  transition: max-height 1s;
}
@media screen and (max-width: 768px) {
  .c-read_more .c-read_more__item {
    max-height: 200px;
  }
}

.c-read_more:has(:checked) .c-read_more__item {
  max-height: 100vh;
}

.c-read_more .c-read_more__item::after {
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, 0.9) 50%, hsla(0, 0%, 100%, 0.9) 0, #fff);
  content: "";
}
@media screen and (max-width: 768px) {
  .c-read_more .c-read_more__item::after {
    display: block;
  }
}

.c-read_more:has(:checked) .c-read_more__item::after {
  content: none;
}

.c-read_more label {
  display: none;
  align-items: center;
  gap: 0 4px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.4em 1.2em;
  border-radius: 1px;
  background-color: #1D285C;
  color: #fff;
  font-size: 0.7em;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .c-read_more label {
    display: flex;
  }
}

.c-read_more label:hover {
  border: 1px solid #1D285C;
  background-color: #fff;
  color: #1D285C;
  cursor: pointer;
}

.c-read_more:has(:checked) label {
  display: none;
}

.c-read_more label::after {
  display: inline-block;
  width: 10px;
  height: 5px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
}

.c-read_more label:hover::after {
  background-color: #1D285C;
}

.c-read_more input {
  display: none;
}

/* Project
----------------------------------------------------------------- */
.p-sponsorship {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .p-sponsorship {
    margin-top: 60px;
  }
}
.p-sponsorship .p-sponsorship__text {
  font-size: 1.125rem;
  text-align: center;
  line-height: 2;
  margin-top: 24px;
}
.p-sponsorship .p-sponsorship__sponsorship_lists {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-sponsorship .p-sponsorship__sponsorship_lists {
    gap: 10px;
  }
}
.p-sponsorship .p-sponsorship__sponsorship_list {
  display: grid;
}
.p-sponsorship .p-sponsorship__sponsorship_list li {
  border: 1px solid #F0F0F0;
  aspect-ratio: 3/1;
}
.p-sponsorship .p-sponsorship__sponsorship_list li a {
  transition: 0.2s;
}
.p-sponsorship .p-sponsorship__sponsorship_list li a:hover {
  opacity: 0.8;
}
.p-sponsorship .p-sponsorship__sponsorship_list.--gold {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .p-sponsorship .p-sponsorship__sponsorship_list.--gold {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}
.p-sponsorship .p-sponsorship__sponsorship_list.--silver {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 0.75rem;
}
@media screen and (max-width: 768px) {
  .p-sponsorship .p-sponsorship__sponsorship_list.--silver {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
}
.p-sponsorship .p-sponsorship__sponsorship_list.--bronze {
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
}
@media screen and (max-width: 768px) {
  .p-sponsorship .p-sponsorship__sponsorship_list.--bronze {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
  }
}

.p-host {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .p-host {
    margin-top: 50px;
  }
}
.p-host .p-host__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.p-faq {
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  .p-faq {
    padding-top: 60px;
  }
}
.p-faq .p-faq__questions {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1rem;
  margin-top: 40px;
}

.p-form {
  margin-top: 120px;
  padding-top: 120px;
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .p-form {
    margin-top: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.p-form .p-form__present {
  color: #E02F5A;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  padding-bottom: 0.1em;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-form .p-form__present {
    font-size: 1rem;
  }
}
.p-form .p-form__present strong {
  position: relative;
  border-bottom: 2px solid #E02F5A;
}
.p-form .p-form__present strong::before, .p-form .p-form__present strong::after {
  --present-position: calc( 100% + .8rem );
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  aspect-ratio: 1/1;
  background-image: url(../../images/icon_present.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .p-form .p-form__present strong::before, .p-form .p-form__present strong::after {
    width: 2rem;
  }
}
.p-form .p-form__present strong::before {
  right: var(--present-position);
}
.p-form .p-form__present strong::after {
  left: var(--present-position);
}
.p-form .p-form__step {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 3rem;
  margin-top: 40px;
  counter-reset: step 0;
}
@media screen and (max-width: 768px) {
  .p-form .p-form__step {
    flex-direction: column;
    align-items: unset;
    gap: 2.5rem;
  }
}
.p-form .p-form__step li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  background-color: #1D285C;
  border-radius: 16px;
  padding: 1rem 2rem 1rem 1rem;
}
@media screen and (max-width: 1200px) {
  .p-form .p-form__step li {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 768px) {
  .p-form .p-form__step li {
    align-items: center;
  }
}
.p-form .p-form__step li::before {
  counter-increment: step 1;
  content: counter(step);
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1D285C;
  font-size: 1em;
  width: 2rem;
  aspect-ratio: 1/1;
  background-color: #FFFFFF;
  border-radius: 9999px;
}
.p-form .p-form__step li + li::after {
  content: "";
  position: absolute;
  right: calc(100% + 1rem);
  top: 50%;
  transform: translateY(-50%);
  --triangle-size: 1.125rem;
  height: var(--triangle-size);
  width: calc(var(--triangle-size) / 2 * 1.7320508076);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: #1D285C;
}
@media screen and (max-width: 768px) {
  .p-form .p-form__step li + li::after {
    right: 50%;
    top: unset;
    bottom: calc(100% + 0.75rem);
    transform: translateX(-50%);
    --triangle-size: 1.125rem;
    height: calc(var(--triangle-size) / 2 * 1.7320508076);
    width: var(--triangle-size);
    clip-path: polygon(0 0, 50% 100%, 100% 0%);
  }
}
.p-form .qubo-iframe {
  margin-top: 40px;
}

.p-about {
  margin-top: 140px;
  padding-top: 120px;
  padding-bottom: 150px;
  padding-left: 2vw;
  padding-right: 2vw;
}
@media screen and (max-width: 768px) {
  .p-about {
    margin-top: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.p-about .p-about__main {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding-top: 60px;
  padding-bottom: 60px;
  box-shadow: 0px 0px 34px 0px rgba(207, 198, 139, 0.31);
}
@media screen and (max-width: 768px) {
  .p-about .p-about__main {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.p-about .p-about__table {
  margin-top: 45px;
  width: 100%;
  border-collapse: collapse;
}
.p-about .p-about__table tbody {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .p-about .p-about__table tbody {
    gap: 2rem;
  }
}
.p-about .p-about__table tr {
  display: grid;
  align-items: center;
  grid-template-columns: max(15%, 120px) 1fr;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-about .p-about__table tr {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.p-about .p-about__table th.p-about__table__title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
  text-align: center;
  line-height: 2;
  background-color: #FFE85A;
  border-radius: 10px;
  height: 4rem;
}
.p-about .p-about__table th.p-about__table__title::before {
  content: "";
  position: absolute;
  left: calc(100% - 1px);
  top: 50%;
  transform: translateY(-50%);
  --triangle-size: 1em;
  height: var(--triangle-size);
  width: calc(var(--triangle-size) / 2 * 1.7320508076);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: #FFE85A;
}
@media screen and (max-width: 768px) {
  .p-about .p-about__table th.p-about__table__title::before {
    top: calc(100% - 1px);
    left: 50%;
    transform: translateX(-50%);
    clip-path: polygon(0 0, 50% 100%, 100% 0%);
    --triangle-size: .8em;
    height: calc(var(--triangle-size) / 2 * 1.7320508076);
    width: var(--triangle-size);
  }
}
.p-about .p-about__date {
  display: flex;
  align-items: flex-end;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-about .p-about__date {
    font-size: 1rem;
  }
}
.p-about .p-about__date .p-about__date__date {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.35rem;
}
@media screen and (max-width: 768px) {
  .p-about .p-about__date .p-about__date__date {
    gap: 0.5rem;
  }
}
.p-about .p-about__date .c-date {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .p-about .p-about__date .c-date {
    font-size: 2rem;
  }
}
.p-about .p-about__time {
  font-size: 1.5rem;
  font-weight: bold;
}
.p-about .p-about__format {
  display: flex;
  flex-direction: column;
  font-size: 1.5rem;
  font-weight: bold;
}
.p-about .p-about__format small {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
}
.p-about .p-about__fee {
  color: #E02F5A;
  font-size: 1.5rem;
  font-weight: bold;
}
.p-about .p-about__fee span {
  font-size: 1rem;
}
.p-about .p-about__target {
  font-size: 1.3rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-about .p-about__target {
    font-size: 1.1rem;
  }
}
.p-about .p-about__info {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #FFF8CA;
  border-radius: 20px;
  margin-top: 80px;
  padding: 50px 20px 40px;
}
@media screen and (max-width: 768px) {
  .p-about .p-about__info {
    margin-top: 50px;
    padding: 30px 20px 20px;
  }
}
.p-about .p-about__info_deco {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  width: 80%;
}
@media screen and (max-width: 768px) {
  .p-about .p-about__info_deco {
    transform: translate(-50%, -75%);
  }
}
.p-about .p-about__text {
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-about .p-about__text {
    font-size: 1.3rem;
  }
}
.p-about .p-about__text .p-about__text__mark {
  font-size: 0.5em;
}
.p-about .p-about__note {
  font-size: 0.875rem;
}
.p-about .p-about__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-about .p-about__button {
    gap: 15px;
  }
}

.p-problems {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .p-problems {
    margin-top: 50px;
  }
}
.p-problems .p-problems__note {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #FFF8CA;
  border-radius: 20px;
  margin-top: 50px;
  padding: 30px 80px;
}
@media screen and (max-width: 768px) {
  .p-problems .p-problems__note {
    margin-top: 30px;
    padding: 20px 20px 20px 60px;
  }
}
.p-problems .p-problems__note::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  aspect-ratio: 1/1;
  background-image: url(../../images/light.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.p-problems .p-problems__img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.p-problems .p-problems__img .p-problems__bubble {
  position: absolute;
  bottom: 1rem;
  left: calc(min(48px, 5vw) * -0.5);
  width: 20%;
}
@media screen and (max-width: 768px) {
  .p-problems .p-problems__img .p-problems__bubble {
    display: none;
  }
}
.p-problems .p-problems__text {
  font-size: 1.125rem;
  line-height: 1.7;
}
.p-problems .p-problems__text em {
  font-style: normal;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-problems .p-problems__text {
    font-size: 1rem;
  }
}

.p-intro {
  margin-top: 120px;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .p-intro {
    margin-top: 60px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.p-intro .p-intro__title {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-intro .p-intro__title {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 370px) {
  .p-intro .p-intro__title {
    font-size: 1.3rem;
  }
}
.p-intro .p-intro__title .p-intro__deco_sp {
  display: none;
  position: absolute;
  width: 45px;
  aspect-ratio: 1/1;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-intro .p-intro__title .p-intro__deco_sp {
    display: block;
  }
}
.p-intro .p-intro__title .p-intro__deco_sp.--1 {
  top: 100%;
  left: 0;
}
.p-intro .p-intro__title .p-intro__deco_sp.--2 {
  top: 100%;
  right: 0;
}
.p-intro .p-intro__title .p-intro__deco_sp.--3 {
  top: -35%;
  right: 10%;
}
.p-intro .p-intro__title .p-intro__deco_sp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-intro .p-intro__text {
  position: relative;
  font-size: 1.125rem;
  line-height: 2;
  text-align: center;
  margin-top: 35px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-intro .p-intro__text {
    font-size: 1rem;
  }
}
.p-intro .p-intro__text .p-intro__deco {
  position: absolute;
  aspect-ratio: 1/1;
  width: 80px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-intro .p-intro__text .p-intro__deco {
    display: none;
  }
}
.p-intro .p-intro__text .p-intro__deco.--1 {
  top: 50%;
  left: 0;
}
.p-intro .p-intro__text .p-intro__deco.--2 {
  bottom: -15%;
  right: 0;
}
.p-intro .p-intro__text .p-intro__deco.--3 {
  top: -25%;
  right: 8%;
}
.p-intro .p-intro__text .p-intro__deco img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-intro .p-intro__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .p-intro .p-intro__cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
}
.p-intro .p-intro__card {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 40px 30px 30px;
  box-shadow: 0px 0px 34px 0px rgba(29, 40, 92, 0.09);
}
.p-intro .p-intro__card::before {
  content: "";
  position: absolute;
  max-width: 70px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.p-intro .p-intro__card:nth-child(1)::before {
  top: 20%;
  left: 0;
  transform: translateX(-50%);
  width: 20%;
  aspect-ratio: 1/1;
  background-image: url(../../images/illust04.svg);
}
@media screen and (max-width: 768px) {
  .p-intro .p-intro__card:nth-child(1)::before {
    top: 10%;
    transform: translateX(-30%);
  }
}
.p-intro .p-intro__card:nth-child(1) h3 {
  color: #47CEF3;
}
.p-intro .p-intro__card:nth-child(2)::before {
  top: 0;
  right: 15%;
  transform: translateY(-30%);
  width: 20%;
  aspect-ratio: 1/1;
  background-image: url(../../images/illust05.svg);
}
@media screen and (max-width: 768px) {
  .p-intro .p-intro__card:nth-child(2)::before {
    right: 5%;
    transform: translateY(-20%);
  }
}
.p-intro .p-intro__card:nth-child(2) h3 {
  color: #62DA44;
}
.p-intro .p-intro__card:nth-child(3)::before {
  top: 15%;
  right: 0;
  transform: translateX(20%);
  width: 17%;
  aspect-ratio: 1/1;
  background-image: url(../../images/illust06.svg);
}
@media screen and (max-width: 768px) {
  .p-intro .p-intro__card:nth-child(3)::before {
    top: 5%;
    transform: translateX(10%);
  }
}
.p-intro .p-intro__card:nth-child(3) h3 {
  color: #FF995A;
}
.p-intro .p-intro__card h3 {
  font-size: 1.75rem;
  font-weight: bold;
  text-align: center;
}
.p-intro .p-intro__card p {
  line-height: 2;
  margin-top: 1.5rem;
}

.p-time_table {
  padding-top: 120px;
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .p-time_table {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.p-time_table .p-time_table__title {
  font-size: 3.25rem;
}
@media screen and (max-width: 768px) {
  .p-time_table .p-time_table__title {
    font-size: 2rem;
  }
}
.p-time_table .p-time_table__nav {
  margin-top: 35px;
}
.p-time_table .p-time_table__time_table {
  margin-top: 35px;
}
.p-time_table .p-time_table__button_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .p-time_table .p-time_table__button_wrapper {
    margin-top: 30px;
  }
}
.p-time_table .p-time_table__button {
  position: relative;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  border-radius: 16px;
  padding: 20px 160px;
  background-color: #1D285C;
  transition: 0.2s;
}
.p-time_table .p-time_table__button.--disable {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-time_table .p-time_table__button {
    width: 95%;
    max-width: 350px;
    font-size: 1rem;
    padding: 10px 60px;
    border-radius: 8px;
  }
}
.p-time_table .p-time_table__button:hover {
  opacity: 0.8;
}
.p-time_table .p-time_table__button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  height: 60%;
  aspect-ratio: 1/1;
  background-image: url(../../images/icon_pdf.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.p-time_table .p-time_table__button .p-time_table__button__soon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FE9D3C;
  text-align: center;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #FFF;
  font-size: 2.8rem;
  font-weight: 700;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 768px) {
  .p-time_table .p-time_table__button .p-time_table__button__soon {
    font-size: 2rem;
    -webkit-text-stroke-width: 1px;
    border-radius: 8px;
  }
}
.p-time_table .p-time_table__button .p-time_table__button__icon {
  position: absolute;
  height: 100%;
  aspect-ratio: 7/10;
  bottom: 10px;
  right: 20px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-time_table .p-time_table__button .p-time_table__button__icon {
    bottom: 5px;
  }
}
.p-time_table .p-time_table__button .p-time_table__button__icon::after {
  content: "";
  position: absolute;
  height: 100%;
  aspect-ratio: 7/10;
  bottom: -10%;
  left: 70%;
  transform: rotate(30deg);
  background-color: #FFFFFF;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

.p-satisfaction {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .p-satisfaction {
    margin-top: 50px;
  }
}
.p-satisfaction .p-satisfaction__img {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.p-main_visual {
  position: relative;
  background-color: #FFE85A;
  padding-top: 40px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-main_visual {
    padding-top: 40px;
  }
}
.p-main_visual .p-main_visual__main {
  position: relative;
}
.p-main_visual .p-main_visual__main .p-main_visual__hill {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background-color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .p-main_visual .p-main_visual__main .p-main_visual__hill {
    height: 23vw;
  }
}
.p-main_visual .p-main_visual__main .p-main_visual__hill::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  width: 101%;
  aspect-ratio: 5/1;
  background-image: url(../../images/bg_hill.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
}
@media screen and (max-width: 768px) {
  .p-main_visual .p-main_visual__main .p-main_visual__hill::before {
    width: 220%;
  }
}
.p-main_visual .p-main_visual__img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 1;
  max-width: calc(1220px + 2 * min(48px, 5vw));
}
.p-main_visual .p-main_visual__button__bg {
  background-color: #FFFFFF;
}
.p-main_visual .p-main_visual__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-main_visual .p-main_visual__button {
    gap: 15px;
    padding-top: 40px;
  }
}

.p-totop {
  position: fixed;
  bottom: 5%;
  right: 3%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.2s;
  z-index: 999;
}
.p-totop:hover {
  opacity: 0.8;
}
.p-totop .p-totop__icon {
  position: relative;
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 8px;
  background-color: #1D285C;
}
.p-totop .p-totop__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  width: 60%;
  aspect-ratio: 3/2;
  background-image: url(../../images/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.p-totop .p-totop__text {
  font-size: 0.85rem;
  font-weight: bold;
  margin-top: 5px;
}

.p-share {
  position: fixed;
  bottom: 5%;
  left: 3%;
  z-index: 999;
}
.p-share .p-share__text {
  position: relative;
  font-size: 0.9rem;
  font-weight: bold;
  line-height: 1.1;
  text-align: center;
}
.p-share .p-share__text::before, .p-share .p-share__text::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 1px;
  height: 1.2em;
  background-color: #1D285C;
}
.p-share .p-share__text::before {
  left: 0;
  transform: rotate(-35deg);
}
.p-share .p-share__text::after {
  right: 0;
  transform: rotate(35deg);
}
.p-share .p-share__icons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .p-share .p-share__icons {
    gap: 15px;
    width: 38px;
    margin-top: 0.7rem;
  }
}
.p-share .p-share__icons a {
  transition: 0.2s;
}
.p-share .p-share__icons a:hover {
  opacity: 0.8;
}

/* Utility
----------------------------------------------------------------- */
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
.u-color--white {
  color: #FFFFFF;
}

.u-color--accent {
  color: #E02F5A;
}
