@charset "UTF-8";
.product-list {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem 0;
}
@media screen and (width >= 768px) {
  .product-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 2rem;
  }
}
@media screen and (width >= 768px) {
  .product-list .c-thumbnail-card {
    display: grid;
    grid-template-rows: subgrid;
  }
}
@media screen and (width >= 768px) {
  .product-list .c-thumbnail-card:nth-child(n+4) {
    margin-top: 4rem;
  }
}

.p-product-archive-ttl {
  margin-bottom: 4rem;
}
.p-product-archive-ttl__en {
  display: block;
  font-family: var(--font-en);
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 600;
}
.p-product-archive-ttl__ja {
  display: block;
  font-size: 2rem;
  line-height: 1;
  font-weight: bold;
}
@media screen and (width >= 768px) {
  .p-product-archive-ttl__ja {
    font-size: 2.8rem;
  }
}
.p-product-archive-ttl__en + .p-product-archive-ttl__ja {
  margin-top: 0.8rem;
}

.p-product-open {
  padding-bottom: 6.5rem;
}
.p-product-open__intro-txt {
  line-height: 1.6;
  margin-block: var(--leading-trim);
}
@media screen and (width >= 768px) {
  .p-product-open__intro-txt {
    font-size: 1.6rem;
  }
}

@media screen and (width >= 768px) {
  .p-product-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
  }
}
@media screen and (width >= 768px) {
  .p-product-card:nth-child(n+4) {
    margin-top: 4rem;
  }
}
.p-product-card .c-thumbnail-card__img {
  aspect-ratio: 387/241;
}
@media screen and (width <= 767px) {
  .p-product-card .c-thumbnail-card__date {
    margin-top: 0.945rem;
  }
}
.p-product-card__info {
  display: block;
  padding-top: 1.2rem;
  font-size: 1.4rem;
  line-height: 1.2;
}
.p-product-card__instructor {
  display: block;
  font-weight: bold;
}
.p-product-card__subttl {
  margin-top: 1.2rem;
}
.p-product-card__double-btn {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0 2rem;
}
@media (any-hover: hover) {
  .p-product-card:has(.p-product-card__info:hover) .c-thumbnail-card__img > img {
    transform: scale(1.1);
  }
}

.c-thumbnail-card.__closed .c-thumbnail-card__img::after {
  width: 9rem;
  font-size: 1.3rem;
}
@media screen and (width >= 768px) {
  .c-thumbnail-card.__closed .c-thumbnail-card__img::after {
    width: 10rem;
    font-size: 1.5rem;
  }
}

.p-load-more {
  margin-top: 4rem;
  text-align: center;
}
.p-load-more__btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: auto;
}
.p-load-more__btn::after {
  content: "";
  width: 3.55rem;
  aspect-ratio: 35.5/20;
  background: url("../images/product/icon-load-more.svg") no-repeat center center/cover;
}

.single-product :where(.c-btn) {
  margin-top: 4rem;
}

.p-product-fv {
  padding-block: 8.25rem;
}
@media screen and (width >= 768px) {
  .p-product-fv {
    padding-block: 11rem;
  }
}
.p-product-fv__wrapper {
  display: flex;
  flex-direction: column-reverse;
  gap: 2rem 0;
}
@media screen and (width >= 768px) {
  .p-product-fv__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 4rem;
    align-items: start;
  }
}
.p-product-fv__img {
  position: relative;
  aspect-ratio: 345/214;
  border-radius: 0.8rem;
  overflow: hidden;
}
.p-product-fv__img.__closed::after {
  content: "募集\a終了";
  position: absolute;
  display: block;
  width: 9rem;
  aspect-ratio: 1/1;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 0);
  clip-path: polygon(0 0, 0 100%, 100% 0);
  top: 0;
  left: 0;
  background: var(--color-text);
  padding: 1rem 0 0 1.2rem;
  white-space: pre;
  font-size: 1.3rem;
  color: #fff;
  line-height: 1.2;
  letter-spacing: 0.1em;
  font-weight: 600;
}
@media screen and (width >= 768px) {
  .p-product-fv__img.__closed::after {
    width: 13rem;
    font-size: 1.8rem;
    padding: 1.5rem 0 0 1.75rem;
  }
}
.p-product-fv__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-product-fv__txt-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.6rem 0;
}
.p-product-fv__ttl {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-top: -0.8rem;
}
@media screen and (width >= 768px) {
  .p-product-fv__ttl {
    font-size: 2.8rem;
    margin-top: 0;
  }
}
.p-product-fv__subttl {
  font-size: 1.7rem;
  line-height: 1.3;
  font-weight: bold;
}
@media screen and (width >= 768px) {
  .p-product-fv__subttl {
    font-size: 2rem;
  }
}
.p-product-fv__instructor {
  padding-top: 1.6rem;
  border-top: 1px solid #D9D9D9;
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0 2rem;
  align-items: center;
}
@media screen and (width >= 768px) {
  .p-product-fv__instructor {
    grid-template-columns: 6.8rem 1fr;
  }
}
.p-product-fv__instructor-img {
  border-radius: 50%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.p-product-fv__instructor-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-product-fv__instructor-txt {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
}
.p-product-fv__date-place {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  font-size: 1.4rem;
  line-height: 1.2;
}
.p-product-fv__date-place-ttl {
  min-width: 7rem;
  align-items: center;
  position: relative;
  text-align-last: justify;
  padding-right: 2.3rem;
}
.p-product-fv__date-place-ttl::after {
  content: "：";
  position: absolute;
  right: 0;
  top: 0;
}

.p-product-recommend .l-inner {
  position: relative;
  padding-bottom: 15.5rem;
}
@media screen and (width >= 768px) {
  .p-product-recommend .l-inner {
    padding-bottom: 6rem;
  }
}
.p-product-recommend .l-inner::before, .p-product-recommend .l-inner::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  background: no-repeat center center/contain;
}
.p-product-recommend .l-inner::before {
  width: 8.3rem;
  aspect-ratio: 83/125;
  background-image: url("../images/product/icon-recommend-left.svg");
  left: 9.95rem;
}
@media screen and (width >= 768px) {
  .p-product-recommend .l-inner::before {
    left: 2rem;
  }
}
.p-product-recommend .l-inner::after {
  width: 9.3rem;
  aspect-ratio: 93/125;
  background-image: url("../images/product/icon-recommend-right.svg");
  right: 9.95rem;
}
@media screen and (width >= 768px) {
  .p-product-recommend .l-inner::after {
    right: 2rem;
  }
}
.p-product-recommend .l-inner .c-btn {
  margin-top: 3.3rem;
}
.p-product-recommend__ttl {
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 0 3.65rem 0;
  position: relative;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-top: var(--leading-trim);
  margin-bottom: calc(var(--leading-trim) + 4.18rem);
}
@media screen and (width >= 768px) {
  .p-product-recommend__ttl {
    padding: 0 4.35rem 0;
  }
}
.p-product-recommend__ttl::before, .p-product-recommend__ttl::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0.6rem;
  background: var(--color-text);
  width: 2px;
  height: 23.9px;
}
.p-product-recommend__ttl::before {
  rotate: -39deg;
  left: 6.5px;
}
.p-product-recommend__ttl::after {
  rotate: 37deg;
  right: 6.5px;
}
.p-product-recommend__list {
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
}
@media screen and (width >= 768px) {
  .p-product-recommend__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(31.9rem, 1fr));
    gap: 2rem;
  }
}
.p-product-recommend__item {
  padding: 3rem 2.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem 0;
  font-size: 1.6rem;
  font-weight: bold;
  background: #fff;
  border-radius: 0.8rem;
}
.p-product-recommend__item::before {
  content: "";
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: var(--color-logo) url("../images/product/icon-check.svg") no-repeat center center/17px 13px;
}
.p-product-recommend__item-txt {
  text-align: center;
}

.p-product-freeArea .l-wp-block-content {
  margin-top: 0;
}
.p-product-freeArea .l-wp-block-content h2 {
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: bold;
  background: none;
  padding: 0;
  text-align: center;
  margin-block: var(--leading-trim);
}
@media screen and (width >= 768px) {
  .p-product-freeArea .l-wp-block-content h2 {
    font-size: 2.5rem;
    line-height: 1.4;
    letter-spacing: 0;
  }
}

.p-product-cta {
  background: var(--bg-color-light);
  padding-block: 5.5rem;
}
.p-product-schedule + .p-product-cta, .p-product-overview + .p-product-cta {
  background: var(--bg-color-deep);
}
.p-product-cta__ttl {
  line-height: 1.6;
  margin-top: var(--leading-trim);
  margin-bottom: calc(var(--leading-trim) + 2.8rem);
}
.p-product-cta__txt {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-block: var(--leading-trim);
}
.p-product-cta__btn .c-btn__link {
  min-width: 31.5rem;
  padding-block: 2rem;
  gap: 0 0.8rem;
  grid-template-columns: auto 1.2rem;
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (width >= 768px) {
  .p-product-cta__btn .c-btn__link {
    min-width: 50rem;
    padding: 3.35rem 6.4rem 3.35rem 4rem;
  }
}

.p-product-voice__list {
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
}
@media screen and (width >= 768px) {
  .p-product-voice__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 2rem;
  }
}
.p-product-voice__item {
  position: relative;
  background: #fff;
  padding: 3rem;
  border-radius: 0.8rem;
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 0 1.6rem;
  grid-template-areas: "img catch" "info info" "name name" "txt txt";
  line-height: 1.6;
}
.p-product-voice__item::before {
  content: "“";
  display: inline-block;
  position: absolute;
  top: -0.7rem;
  left: 1.9rem;
  font-family: var(--font-udpGothic);
  font-size: 6.4rem;
  line-height: 1;
  color: var(--color-logo-opacity05);
}
.p-product-voice__item-img {
  grid-area: img;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
.p-product-voice__item-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-product-voice__item-catch {
  grid-area: catch;
  font-size: 1.6rem;
  font-weight: bold;
  padding-block: 1.1rem;
}
.p-product-voice__item-info {
  grid-area: info;
  margin-top: 1rem;
  font-size: 1.3rem;
}
.p-product-voice__item-name {
  grid-area: name;
  font-weight: bold;
}
.p-product-voice__item-txt {
  grid-area: txt;
  padding-top: 1.5rem;
  border-top: 1px solid #D9D9D9;
  margin-top: 1.5rem;
}

.p-product-schedule__table-wrap {
  margin-right: calc(50% - 50vw);
  overflow-x: auto;
}
@media screen and (width >= 768px) {
  .p-product-schedule__table-wrap {
    margin-right: 0;
  }
}
.p-product-schedule__table {
  border-collapse: collapse;
  min-width: 73.2rem;
  line-height: 1;
}
@media screen and (width >= 768px) {
  .p-product-schedule__table {
    width: 100%;
  }
}
.p-product-schedule__table th, .p-product-schedule__table td {
  text-align: center;
  vertical-align: middle;
}
.p-product-schedule__table th {
  background: var(--bg-color-deep);
  padding: 1.75rem 1rem;
}
.p-product-schedule__table th:last-child {
  border-right: 1px solid var(--bg-color-deep);
}
.p-product-schedule__table th + th {
  border-left: 1px solid #fff;
}
.p-product-schedule__table td {
  padding: 0.6rem 0.75rem;
  line-height: 1.3;
}
@media screen and (width >= 768px) {
  .p-product-schedule__table td {
    padding-inline: 1rem;
  }
}
.p-product-schedule__table td:first-child {
  overflow-wrap: normal;
}
.p-product-schedule__table tr:nth-child(n+2) td:not(:first-child) {
  border-right: 1px solid #D9D9D9;
}
.p-product-schedule__table tr:nth-child(n+2) td:first-child {
  background: #FAF8F5;
}
.p-product-schedule__table tr:nth-child(n+3) td:first-child {
  border-top: 1px solid #fff;
}
.p-product-schedule__table tr:last-child td:first-child {
  border-bottom: 1px solid #FAF8F5;
}
.p-product-schedule__table tr:nth-child(n+3) td:not(:first-child) {
  border-top: 1px solid #D9D9D9;
}
.p-product-schedule__table tr:last-child td:not(:first-child) {
  border-bottom: 1px solid #D9D9D9;
}

.p-product-overview__ttl {
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (width >= 768px) {
  .p-product-overview__ttl {
    margin-bottom: 4rem;
    text-align: left;
  }
}
.p-product-overview__item {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0 2.1rem;
  padding-block: 2rem;
  font-size: 1.4rem;
  line-height: 1.7;
  align-items: center;
  border-bottom: 1px solid #E3E3E3;
}
@media screen and (width >= 768px) {
  .p-product-overview__item {
    grid-template-columns: 11rem 1fr;
    gap: 0;
    padding-block: 2.4rem;
    font-size: 1.5rem;
  }
}
.p-product-overview__item.__pd-block-large {
  padding-block: 3.45rem;
}
.p-product-overview__dt {
  padding: 0 1.4rem;
  margin-block: var(--leading-trim);
}
@media screen and (width >= 768px) {
  .p-product-overview__dt {
    padding: 0 3.7rem 0 2.8rem;
  }
}
.p-product-overview__item.deadline .p-product-overview__dt {
  padding: 0 0.7rem;
}
@media screen and (width >= 768px) {
  .p-product-overview__item.deadline .p-product-overview__dt {
    padding: 0 2.2rem 0 2.8rem;
  }
}
.p-product-overview__dd {
  display: flex;
  flex-direction: column;
  gap: 1.2rem 0;
  line-height: 1;
}
@media screen and (width >= 768px) {
  .p-product-overview__dd {
    padding-left: 4.2rem;
  }
}
.p-product-overview__dd-txt {
  line-height: 1.7;
  margin-block: var(--leading-trim);
}
.p-product-overview__note {
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: light;
  margin-block: var(--leading-trim);
}
@media screen and (width >= 768px) {
  .p-product-overview__note {
    font-size: 1.2rem;
  }
}

.p-product-profile__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 3.1rem;
}
@media screen and (width >= 768px) {
  .p-product-profile__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0 1.5rem;
  }
}
.p-product-profile__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  justify-items: center;
  align-items: start;
}
@media screen and (width <= 767px) {
  .p-product-profile__item:nth-child(n+3) {
    margin-top: 2rem;
  }
}
@media screen and (width >= 768px) {
  .p-product-profile__item:nth-child(n+5) {
    margin-top: 3rem;
  }
}
.p-product-profile__item-img {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  overflow: hidden;
}
.p-product-profile__item-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (width >= 768px) {
  .p-product-profile__dialog .p-product-profile__item-img {
    width: 15rem;
    height: 15rem;
  }
}
.p-product-profile__item-txt {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  line-height: 1.6;
  margin-top: 2rem;
}
.p-product-profile__dialog .p-product-profile__item-txt {
  grid-template-rows: none;
  grid-row: auto;
}
.p-product-profile__item-txt span {
  display: block;
  text-align: center;
}
.p-product-profile__role {
  font-size: 1.3rem;
  margin-block: var(--leading-trim);
}
.p-product-profile__name {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  margin-top: calc(var(--leading-trim) + 1.6rem);
  margin-bottom: var(--leading-trim);
}
@media screen and (width >= 768px) {
  .p-product-profile__name {
    font-size: 2rem;
  }
}
.p-product-profile__furigana {
  font-size: 1.2rem;
  margin-top: calc(var(--leading-trim) + 1rem);
  margin-bottom: var(--leading-trim);
}
.p-product-profile__btn {
  margin-top: 2rem;
}
.p-product-profile__dialog {
  width: min(80rem, 100vw - 4rem);
  max-height: calc(70dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
  overflow-y: auto;
  padding: 2.5rem 2rem;
  outline: none;
  overscroll-behavior: contain;
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.p-product-profile__dialog[open] {
  opacity: 1;
  transform: scale(1);
}
@starting-style {
  .p-product-profile__dialog[open] {
    opacity: 0;
    transform: scale(0);
  }
}
.p-product-profile ::backdrop {
  background: rgba(0, 0, 0, 0.5);
}
.p-product-profile__dialog-inner {
  max-width: 70rem;
  margin-inline: auto;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: justify;
}
.p-product-profile .l-wp-block-content {
  padding-top: 2rem;
  margin-block: var(--leading-trim);
}
.p-product-profile .l-wp-block-content h2 {
  letter-spacing: 0.05em;
  font-weight: bold;
  background: none;
  padding: 0;
  text-align: center;
}
@media screen and (width >= 768px) {
  .p-product-profile .l-wp-block-content h2 {
    line-height: 1.4;
  }
}
.p-product-profile .l-wp-block-content p {
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.p-product-profile__dialog-close-btn {
  margin-top: 4rem 0;
}