@charset "UTF-8";
/* =========================
  event__detail
========================= */
.event__detail {
  padding-top: 60px;
}

.event__detail-head {
  margin-bottom: 20px;
}

.event__detail-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 10px;
}

.event__detail-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 6px;
  background: var(--red);
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.event__detail-date {
  font-size: var(--font_18);
  font-weight: 600;
  line-height: 1.5;
  color: #484848;
}

.event__detail-title {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-bottom: 5px;
  color: #222;
}

.event__detail-title-main {
  font-size: var(--font_54);
  font-weight: 800;
  line-height: 1.2;
}

.event__detail-title-sub {
  font-size: var(--font_24);
  font-weight: 700;
  line-height: 1.2;
}

.event__detail-title-category {
  font-size: var(--font_30);
  font-weight: 700;
  line-height: 1.25;
}

.event__detail-note {
  font-weight: 500;
  line-height: 1.8;
  color: var(--red);
}

.event__detail-image {
  margin-bottom: 40px;
}

.event__detail-img {
  display: block;
  width: 100%;
  height: auto;
}
.event__detail-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.event__detail-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0 32px;
}
.event__detail-term {
  font-size: var(--font_18);
  font-weight: 700;
  line-height: 1.8;
  color: #222;
}
.event__detail-desc {
  min-width: 0;
}
.event__detail-text {
  font-size: var(--font_18);
  font-weight: 500;
  line-height: 1.8;
  color: #222;
}

.event__detail-place-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.event__detail-map-button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 32px;
  padding: 0 16px;
  border-radius: 9999px;
  background: #000;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease;
}

.event__detail-map-button:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  opacity: 0.95;
}

@media screen and (max-width: 767px) {
  .event__detail {
    padding-top: 30px;
  }

  .event__detail-head {
    margin-bottom: 14px;
  }

  .event__detail-meta {
    gap: 12px;
    margin-bottom: 10px;
  }

  .event__detail-status {
    min-width: 96px;
    min-height: 32px;
    padding: 0 12px;
    font-size: 1.3rem;
  }

  .event__detail-date {
    font-size: var(--font_16);
  }

  .event__detail-title {
    gap: 6px 12px;
    margin-bottom: 12px;
  }

  .event__detail-title-category {
    font-size: var(--font_24);
  }

  .event__detail-image img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .event__detail-note {
    font-size: var(--font_15);
    line-height: 1.6;
  }

  .event__detail-image {
    margin-bottom: 20px;
  }

  .event__detail-list {
    gap: 20px;
  }

  .event__detail-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .event__detail-term {
    font-size: 1.7rem;
    line-height: 1.6;
  }

  .event__detail-text {
    font-size: var(--font_16);
    line-height: 1.6;
  }

  .event__detail-place-row {
    flex-direction: column;
    gap: 12px;
  }

  .event__detail-map-button {
    min-width: 68px;
    min-height: 30px;
    padding: 0 14px;
  }
}
/* =========================
共通
========================= */
/*タイトル*/
.event__title {
  margin-bottom: 24px;
  padding: 14px 28px;
  background: #111;
  font-size: var(--font_24);
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}
/*ボタン*/
.event__button-wrap {
  display: flex;
  justify-content: center;
}
.event__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 440px;
  min-height: 72px;
  padding: 0 32px;
  border-radius: 9999px;
  background: #d9ff14;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease;
}
.event__button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  opacity: 0.96;
}
.event__button-text {
  font-size: var(--font_18);
  font-weight: 700;
  line-height: 1;
  color: #111;
}
.event__button-arrow {
  font-size: var(--font_18);
  font-weight: 700;
  line-height: 1;
  color: #111;
}
@media screen and (max-width: 767px) {
  .event__title {
    margin-bottom: 10px;
    padding: 10px 20px;
    background: #111;
    font-size: var(--font_22);
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
  }
  .event__button {
    min-width: 300px;
    min-height: 62px;
  }
}
/* =========================
  event__price
========================= */
.event__price {
  padding-top: 60px;
}
.event__price-head {
  margin-bottom: 12px;
}
.event__price-deadline {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
}
.event__price-deadline-label {
  font-size: var(--font_16);
  line-height: 1.5;
  color: var(--red);
}
.event__price-deadline-date {
  font-size: var(--font_16);
  font-weight: 500;
  line-height: 1.5;
  color: #333;
}
.event__price-table-wrap {
  overflow-x: auto;
}
.event__price-table {
  width: 100%;
  min-width: 1100px;
  border-collapse: collapse;
  table-layout: fixed;
  border: 1px solid #d9d9d9;
  background: #fff;
}
.event__price-table th,
.event__price-table td {
  border: 1px solid #d9d9d9;
  vertical-align: middle;
}
.event__price-table-head,
.event__price-table-label,
.event__price-table-option,
.event__price-table-course {
  background: var(--yellow);
}
.event__price-table-head {
  padding: 16px 12px;
  font-size: var(--font_18);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #222;
}
.event__price-table-head--blank {
  background: var(--yellow);
}
.event__price-table-label {
  padding: 32px 24px;
  font-size: var(--font_18);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #222;
}
.event__price-table-option {
  padding: 24px 16px;
  font-size: var(--font_18);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #222;
}
.event__price-table-detail {
  font-size: var(--font_15);
  white-space: nowrap;
}
.event__price-table-course {
  padding: 24px 20px;
  vertical-align: top;
}
.event__price-course-title {
  margin-bottom: 12px;
  font-size: var(--font_18);
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}
.event__price-course-title--basic {
  color: #51abf9;
}
.event__price-course-title--advance {
  color: #f78838;
}
.event__price-course-text {
  font-size: var(--font_16);
  font-weight: 500;
  line-height: 1.8;
  color: #333;
}
.event__price-table-price {
  width: 15%;
  padding: 24px 16px;
  font-size: var(--font_18);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #222;
}
.event__price-table-price--day {
  font-size: var(--font_18);
}
.event__price-table-price-main {
  display: block;
  font-size: var(--font_18);
  font-weight: 700;
  line-height: 1.3;
}
.event__price-table-price-sub {
  display: block;
  margin-top: 4px;
  font-size: var(--font_16);
  font-weight: 700;
  line-height: 1.5;
}
.event__price-table-note {
  padding: 18px 24px;
  vertical-align: top;
}
.event__price-table-note--option {
  vertical-align: middle;
}
.event__price-note-list {
  display: grid;
  gap: 18px;
}
.event__price-note-list li {
  position: relative;
  padding-left: 1em;
  font-size: var(--font_15);
  line-height: 1.8;
  color: #222;
}
.event__price-note-list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.event__price-foot {
  margin-top: 20px;
}
.event__price-caution-list {
  display: grid;
  margin-bottom: 36px;
}
.event__price-caution-list li {
  font-size: var(--font_15);
  line-height: 1.8;
  color: #333;
}
.event__price-caution-list li::before {
  content: "※ ";
}
@media screen and (max-width: 767px) {
  .event__price {
    padding-top: 30px;
  }
  .event__price-head {
    margin-bottom: 12px;
  }
  .event__price-deadline {
    align-items: flex-start;
    gap: 4px;
  }
  .event__price-table {
    min-width: 980px;
  }
  .event__price-table-head {
    padding: 12px 8px;
  }
  .event__price-table-label {
    padding: 24px 16px;
  }
  .event__price-table-option {
    padding: 20px 12px;
  }
  .event__price-table-course {
    padding: 18px 14px;
  }
  .event__price-course-title {
    margin-bottom: 8px;
  }
  .event__price-course-text {
    line-height: 1.7;
  }
  .event__price-table-price {
    padding: 18px 12px;
  }

  .event__price-table-note {
    padding: 16px;
  }

  .event__price-note-list {
    gap: 12px;
  }

  .event__price-note-list li {
    font-size: var(--font_14);
    line-height: 1.7;
  }

  .event__price-foot {
    margin-top: 20px;
  }

  .event__price-caution-list {
    margin-bottom: 24px;
  }

  .event__price-caution-list li {
    font-size: var(--font_14);
    line-height: 1.7;
  }
  .event__price-button {
    min-width: 100%;
    min-height: 60px;
    gap: 12px;
    padding: 0 20px;
  }
  .event__price-button-text,
  .event__price-button-arrow {
    font-size: var(--font_22);
  }
  /*スワイプ指マーク*/
  .event__price-table-wrap {
    position: relative;
  }
  .scroll-hint {
    position: absolute;
    bottom: 10px;
    left: 14px;
    text-align: center;
    font-size: 12px;
    color: #666;
    pointer-events: none;
  }
  .finger {
    width: 40px;
    height: 40px;
    background: url("../images/post/finger.png") no-repeat center/contain;
    margin: 0 auto;
    animation: swipe 1.5s infinite;
  }
  @keyframes swipe {
    0% {
      transform: translateX(0);
      opacity: 0;
    }
    30% {
      opacity: 1;
    }
    70% {
      transform: translateX(-20px);
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
}
@media (min-width: 769px) {
  .scroll-hint {
    display: none;
  }
}
/* =========================
  モデル
========================= */
.event__model {
  padding-top: 80px;
}
.event__model-list {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 60px;
}

.event__model-item {
  display: block;
  width: 280px;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.event__model-img {
  width: 280px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
}

.event__model-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.event__model-name {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 8px;
}

.event__model-x {
  font-size: 1.8rem;
  line-height: 1.4;
  color: #666;
  margin: 0;
  transition:
    color 0.4s ease,
    opacity 0.4s ease;
}

.event__model-item:hover .event__model-img img {
  transform: scale(1.08);
}

.event__model-item:hover .event__model-x {
  color: #000;
}

.event__model .event__button-wrap {
  text-align: center;
}

@media (max-width: 768px) {
  .event__model {
    padding-top: 56px;
  }
  .event__model-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    margin-bottom: 40px;
  }

  .event__model-item {
    width: 100%;
  }

  .event__model-img {
    margin-bottom: 16px;
  }

  .event__model-name {
    font-size: 2rem;
    margin-bottom: 6px;
  }

  .event__model-x {
    font-size: 1.5rem;
  }
}
/* =========================
　タイムスケジュール
========================= */
.event__schedule {
  padding-top: 80px;
}
.event__schedule-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 30px;
}
.event__schedule-item {
  display: grid;
  grid-template-columns: 60px 60px 1fr;
  column-gap: 28px;
  align-items: stretch;
}
.event__schedule-time {
  font-size: var(--font_18);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  padding-top: 8px;
  white-space: nowrap;
}
.event__schedule-line {
  position: relative;
}
.event__schedule-line::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #777777;
  transform: translateX(-50%);
}

.event__schedule-dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 20px;
  height: 20px;
  background: #d2f20f;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.event__schedule-content {
  padding-bottom: 30px;
}

.event__schedule-heading {
  font-size: var(--font_18);
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 14px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
}
.event__schedule-lesson {
  font-size: var(--font_16);
}

.event__schedule-text {
  line-height: 1.6;
  margin: 0 0 8px;
}

.event__schedule-item:first-child .event__schedule-line::before {
  top: 10px;
}

.event__schedule-item:last-child .event__schedule-line::before {
  top: 0;
  bottom: auto;
  height: 10px;
}

.event__schedule-item:last-child .event__schedule-content {
  padding-bottom: 0;
}

@media (max-width: 768px) {
  .event__schedule {
    padding-top: 56px;
  }
  .event__schedule-list {
    padding-top: 20px;
  }

  .event__schedule-item {
    grid-template-columns: 40px 16px 1fr;
    column-gap: 16px;
    align-items: stretch;
  }

  .event__schedule-time {
    padding-top: 4px;
    font-size: var(--font_17);
  }

  .event__schedule-dot {
    width: 16px;
    height: 16px;
    top: 5px;
  }

  .event__schedule-content {
    padding-bottom: 28px;
  }

  .event__schedule-heading {
    font-size: var(--font_17);
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .event__schedule-text {
    line-height: 1.8;
    margin-bottom: 6px;
  }

  .event__schedule-item:first-child .event__schedule-line::before {
    top: 8px;
  }

  .event__schedule-item:last-child .event__schedule-line::before {
    height: 8px;
  }
}
/* =========================
　ロケーション
========================= */
.event__access {
  padding-top: 80px;
}
.event__access-lead {
  margin: 0 0 20px;
  line-height: 1.8;
}
/* 全体レイアウト */
.event__access-map-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 20px;
  align-items: start;
}
/* 左の大きいマップ */
.event__access-map-main {
  min-width: 0;
}
.event__access-map-main img {
  display: block;
  width: 100%;
  height: auto;
}
/* 右の小さい画像一覧 */
.map__img-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin: 0;
  padding: 0;
}
.map__img-item {
  min-width: 0;
}
.map__img-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 50px;
  padding: 6px 12px;
  background: #d9757c;
  color: #fff;
  font-size: var(--font_14);
  font-weight: 700;
  line-height: 1.4;
}
.map__img-head-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.map__img-head-text {
  display: inline-block;
}
.map__img-head-detail {
  font-size: var(--font_12);
  display: block;
  text-align: center;
  margin-right: 7px;
  padding-top: 1px;
}
.map__img-photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 270 / 150;
  object-fit: cover;
}
.event__access-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 60px;
  margin-bottom: 56px;
}
.event__access-map-sub {
  width: 100%;
}
.event__access-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.event__access-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
}
.event__access-icon {
  width: 26px;
  height: 26px;
}
.event__access-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.event__access-heading {
  font-size: var(--font_18);
  font-weight: 700;
  line-height: 1.5;
}
.event__access-text {
  line-height: 1.8;
  margin: 0;
}
.event__access-text + .event__access-text {
  margin-top: 4px;
}
.event__access .event__button-wrap {
  text-align: center;
}
@media (max-width: 1333px) {
  .event__access-map-content {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
  .map__img-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .map__img-head {
    padding: 0 8px;
    gap: 4px;
  }
  .map__img-photo {
    aspect-ratio: 16 / 9;
  }
  .event__access-bottom {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .event__access {
    padding: 56px 0;
  }
  .event__access-lead {
    line-height: 1.8;
    margin-bottom: 10px;
  }
  .event__access-bottom {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }
  .event__access-info {
    gap: 24px;
  }
  .event__access-item {
    grid-template-columns: 24px 1fr;
    gap: 12px;
  }
  .event__access-icon {
    width: 24px;
    height: 24px;
  }
  .event__access-heading {
    margin-bottom: 6px;
  }
  .event__access-text {
    line-height: 1.8;
  }
  .map__img-head {
    min-height: 42px;
  }
}
/* =========================
注意事項
========================= */
.event__notes {
  padding-top: 80px;
}
.event__notes-list {
  margin: 0;
  padding-top: 10px;
  list-style: none;
}
.event__notes-item {
  position: relative;
  padding-left: 1.2em;
  line-height: 1.9;
}
.event__notes-item + .event__notes-item {
  margin-top: 10px;
}
.event__notes-item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.event__marker {
  display: inline;
  background: linear-gradient(transparent 60%, rgba(210, 242, 15, 0.5) 60%);
  font-weight: 700;
}
.event__notes-last .event__notes-list {
  padding-bottom: 60px;
}
@media (max-width: 768px) {
  .event__notes {
    padding-top: 40px;
  }
  .event__notes-item {
    padding-left: 1.2em;
    line-height: 1.8;
  }
  .event__notes-item + .event__notes-item {
    margin-top: 8px;
  }
}
