:root {
  --text: #525050;
  --yellow: #FFE576;
  --teal: #02B5AC;
  --teal-light: #D5F4F2;
  --pink: #FF6E70;
  --bg-off: #FBFBFB;
  --max: 1100px;
  --max-wide: 1280px;
  --side-space: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  margin: 0;
  color: var(--text);
  background: #ffffff;
  font-family: 'M PLUS 1p', 'Hiragino Kaku Gothic ProN', sans-serif;
  line-height: 1.7;
}

img {
  display: block;
  max-width: 100%;
}

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

.block900,
.block768,
.block560,
.block450 {
  display: none;
}

iframe {
  display: block;
}

.en {
  font-family: "Josefin Sans", sans-serif;
}

.container,
.container-wide {
  width: min(100%, calc(var(--max) + var(--side-space) * 2));
  margin: 0 auto;
  padding-inline: var(--side-space);
}

.container-wide {
  width: min(100%, calc(var(--max-wide) + var(--side-space) * 2));
}

.section-bg {
  position: relative;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.site-header__inner {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
}

.site-logo img {
  width: 40px;
  height: 40px;
}

.site-logo__text {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
  color: #000;
}

.site-nav {
  display: flex;
  gap: 32px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  color: #000;
}

.hero {
  padding: 28px 0 42px;
}

.section-ornament {
  position: absolute;
  z-index: -100;
  pointer-events: none;
}

.hero-ornament-left {
  top: 0;
  left: 0;
  width: 320px;
}

.hero-ornament-right {
  right: 0;
  bottom: 0;
  width: 330px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero__lead {
  margin: 0;
  color: var(--pink);
  font-family: 'M PLUS 1p', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}

.hero__title {
  margin: 12px 0 0;
  font-family: 'M PLUS 1p', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: 50px;
  line-height: 1.18;
  font-weight: 800;
  color: #000;
}

.hero__sub {
  margin: 6px 0 0;
  font-size: 24px;
  font-weight: 800;
  font-family: 'M PLUS 1p', 'Hiragino Kaku Gothic ProN', sans-serif;
  line-height: 1.2;
  color: #000;
}

.hero__visual-wrap {
  position: relative;
  width: min(100%, 980px);
  margin: 10px auto 0;
}

.hero__visual {
  width: 100%;
  max-width: 930px;
  margin: 0 auto;
}

.hero__prize {
  position: absolute;
  top: -110px;
  right: 30px;
  width: 205px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.25;
  color: #000;
}

.hero__prize span {
  font-family: 'M PLUS 1p', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.hero__prize strong {
  font-family: 'M PLUS 1p', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.hero__prize .num {
  font-size: 24px;
  font-family: 'Josefin Sans', sans-serif;
}

.intro {
  background: var(--teal-light);
  padding: 52px 0 64px;
}

.intro__inner {
  text-align: center;
}

.intro__title {
  margin: 0;
  font-family: 'M PLUS 1p', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: 28px;
  line-height: 1.55;
  font-weight: 800;
  color: #000;
}

.intro__title span {
  white-space: nowrap;
}

.intro__text {
  max-width: 860px;
  margin: 26px auto 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

.intro__text p {
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.intro__text p+p {
  margin-top: 20px;
}

.cta-row {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-width: 300px;
  min-height: 58px;
  padding: 10px 24px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  line-height: 1;

  box-shadow: 0 6px 0 #d6d6d6;
  transition: all 0.15s ease;
}

.button:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 #d6d6d6;
}

.button:active {
  transform: translateY(6px);
  box-shadow: 0 0 0 #d6d6d6;
}

.button--teal {
  background: var(--teal);
}

.button--pink {
  background: var(--pink);
}

.overview,
.recommend,
.flow,
.event-summary,
.faq,
.entry {
  padding: 54px 0 60px;
}

/* .overview {
  background: #fff;
} */

.recommend {
  background: var(--bg-off);
}

.flow {
  background: #fff;
}

.event-summary {
  background: var(--bg-off);
}

.event-summary .section-heading {
  border-bottom: none;
}

.faq {
  background: #fff;
}

.entry {
  background: var(--bg-off);
}

.overview-ornament-left {
  top: 0;
  left: 0;
  width: 300px;
}

.overview-ornament-right {
  right: 0;
  bottom: 0;
  width: 330px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, .18);
}

.section-heading img {
  width: 40px;
}

.section-heading h2 {
  margin: 0;
  font-family: 'M PLUS 1p', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: 34px;
  line-height: 1.35;
  font-weight: 700;
  color: #000;
}

.overview-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 80px;
  align-items: start;
  padding-bottom: 24px;
  margin: 0 auto;
  width: fit-content;
  color: #000;
}

/* .overview-title-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: start;
} */

.overview-card__left {
  width: fit-content;
}

.overview-card__left h3 {
  margin: 0;
  font-family: 'M PLUS 1p', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: 40px;
  line-height: 1.3;
  font-weight: 800;
  text-align: center;
}

.overview-card__sub {
  font-family: 'M PLUS 1p', 'Hiragino Kaku Gothic ProN', sans-serif;
  margin: 2px 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.overview-card__right {
  width: fit-content;
}

.overview-date {
  padding-top: 2px;
  text-align: center;
}

.overview-date__year {
  display: block;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.overview-date__main {
  margin-top: 2px;
}

.overview-date__day {
  font-size: 80px;
  font-weight: 700;
  line-height: .9;
}

.overview-date__sat {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.overview-date__time {
  display: block;
  margin-top: 6px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.overview-card__prize {
  margin: 30px 0 40px;
  text-align: center;
}

.overview-card__prize .marker {
  background: linear-gradient(transparent 62%, var(--yellow) 62%);
  padding: 0 6px;
  font-family: 'M PLUS 1p', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.overview-card__prize .marker+.marker {
  display: block;
  width: fit-content;
  margin-top: -2px;
}

.overview-info {
  margin: 12px 0 0;
  width: fit-content;
  font-family: 'Inter', sans-serif;
  margin: 20px auto 0;
}

.overview-info>div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 25px;
  padding: 5px 0;
}

.overview-info dt {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.overview-info dd {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.85;
}

.recommend-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.recommend-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--teal-light);
  height: 140px;
  padding: 16px 18px;
}

.recommend-card img {
  width: 84px;
  flex: 0 0 84px;
}

.recommend-card p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
}

.flow-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flow-item {
  position: relative;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 50px;
  align-items: start;
  padding-bottom: 22px;
}

.flow-item:not(:last-child)::after {
  content: "▼";
  position: absolute;
  left: 42px;
  bottom: -12px;
  color: var(--teal);
  font-size: 18px;
}

.flow-item+.flow-item {
  margin-top: 6px;
}

.flow-item img {
  width: 112px;
}

.flow-item__body h3 {
  margin: 4px 0 8px;
  color: var(--teal);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
}

.flow-num {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
  margin-right: 5px;
}

.flow-item__body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.info-table {
  border-top: 1px solid #000;
  background: #fff;
  font-family: 'Inter', sans-serif;
}

.info-row {
  display: grid;
  grid-template-columns: 240px 1fr;
}

.info-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 18px;
  background: var(--teal-light);
  border-bottom: 1px solid #000;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.info-content {
  padding: 18px 30px;
  border-bottom: 1px solid #000;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
}

.info-row:last-child .info-label,
.info-row:last-child .info-content {
  border-bottom: 1px solid #000;
}

.info-content p,
.info-content ul {
  margin: 0;
}

.info-content p+p,
.info-content p+ul,
.info-content ul+p,
.info-content ul+ul {
  margin-top: 8px;
}

.info-content ul {
  padding-left: 1.25em;
}

.schedule-line {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 10px;
  white-space: nowrap;
}

.schedule-name {
  font-weight: 600;
  margin-right: 10px;
}

.schedule-dots {
  letter-spacing: .08em;
  color: #555;
  font-weight: 700;
}

.schedule-date {
  font-weight: 600;
}

.info-note {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
}

.faq-list {
  background: #fff;
  font-family: 'Inter', sans-serif;
}

.faq-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question,
.faq-answer {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
}

.faq-question {
  color: var(--teal);
  font-weight: 700;
}

.faq-answer {
  margin-top: 4px;
}

.entry__container {
  text-align: center;
}

.entry__container h2 {
  margin: 0;
  font-family: 'M PLUS 1p', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: 34px;
  line-height: 1.35;
  font-weight: 700;
  color: #000;
}

.entry__container p {
  margin: 14px 0 30px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
  font-weight: 500;
}

.entry-form-wrap {
  width: min(100%, 760px);
  margin: 0 auto;
  background: #fff;
}

.entry-form-wrap iframe {
  width: 100%;
  height: 580px;
  border: 0;
}

.site-footer {
  background: var(--teal);
  color: #fff;
  padding: 80px 0;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.site-footer__brand {
  text-align: left;
  font-family: 'Inter', sans-serif;
}

.site-footer__brand a {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.site-footer__brand p {
  margin: 10px 0 0;
  font-size: 16px;
  font-weight: 500;
}

.site-footer__instagram {
  display: flex;
  justify-content: center;
}

.site-footer__instagram svg {
  width: 30px;
  height: 30px;
  color: #fff;
}

@media (max-width: 900px) {

  .block900 {
    display: block;
  }

  .hero__prize {
    right: 5px;
    top: -70px;
    width: 160px;
  }

  .hero__prize span {
    font-size: 16px;
  }

  .hero__prize strong {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .overview-card,
  .overview-title-row {
    grid-template-columns: 1fr;
  }

  .overview-card {
    gap: 40px;
  }

  .overview-card__right {
    margin: 0 auto;
  }

  .overview-date {
    max-width: 280px;
    margin: 0 auto;
  }

  .recommend-card {
    gap: 10px;
    padding: 16px 8px;
  }



  .recommend-card p {
    font-size: 16px;
  }

  .recommend-card img {
    width: 70px;
    flex: 0 0 70px;
  }
}

@media (max-width: 768px) {

  html {
    scroll-padding-top: 60px;
  }

  .block-pc {
    display: none;
  }

  .block768 {
    display: block;
  }

  .site-header__inner {
    height: 64px;
    gap: 14px;
  }

  .site-logo__text {
    font-size: 14px;
  }

  .site-nav {
    gap: 14px;
    font-size: 12px;
  }

  .hero {
    padding: 20px 0 34px;
  }

  .hero-ornament-left {
    width: 180px;
  }

  .hero-ornament-right {
    width: 190px;
    bottom: -10px;
  }

  .hero__lead {
    font-size: 18px;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__sub {
    font-size: 18px;
  }

  .hero__visual-wrap {
    margin-top: 18px;
  }

  .hero__prize {
    top: -70px;
    width: 130px;
  }

  .hero__prize span {
    font-size: 12px;
  }

  .hero__prize strong {
    font-size: 14px;
  }

  .hero__prize .num {
    font-size: 20px;
  }

  .intro,
  .overview,
  .recommend,
  .flow,
  .event-summary,
  .faq,
  .entry {
    padding-top: 42px;
    padding-bottom: 54px;
  }

  .intro__title {
    font-size: 24px;
  }

  .intro__title span {
    white-space: normal;
  }

  .intro__text {
    max-width: 100%;
  }

  .cta-row {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .button {
    width: 100%;
    max-width: 320px;
  }

  .section-heading h2 {
    font-size: 24px;
  }

  .overview-ornament-left {
    width: 180px;
  }

  .overview-ornament-right {
    width: 190px;
  }

  .overview-card__left h3 {
    font-size: 30px;
  }

  .overview-card__prize .marker {
    font-size: 28px;
  }

  .overview-info>div,
  .info-row {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 15px 0;
  }

  .overview-info dd {
    text-align: center;
  }

  .info-label {
    justify-content: flex-start;
    text-align: left;
    padding: 14px 16px;
  }

  .info-content {
    padding: 14px 16px;
  }

  .schedule-line {
    display: block;
    white-space: normal;
  }

  .schedule-dots {
    display: none;
  }

  .recommend-grid {
    grid-template-columns: 1fr;
  }

  .recommend-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px;
    height: fit-content;
  }

  .recommend-card p {
    text-align: center;
    margin: 0 auto;
  }

  .recommend-card img {
    width: 100px;
    margin: 0 auto;
  }

  .flow-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 40px;
  }

  .flow-item:not(:last-child)::after {
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }

  .flow-item img {
    width: 150px;
    margin: 0 auto;
  }

  .flow-item__body h3 {
    margin: 0;
    font-size: 20px;
    text-align: center;
  }

  .flow-item__body p {
    text-align: center;
  }

  .entry__container h2 {
    font-size: 30px;
  }

  .entry-form-wrap iframe {
    height: 620px;
  }

  .site-footer {
    padding: 60px 0;
  }

  .site-footer__brand a {
    font-size: 20px;
  }
}


@media (max-width: 560px) {

  .block560 {
    display: block;
  }

  .hero__prize {
    top: -50px;
    width: 100px;
  }

  .hero__prize .num {
    font-size: 16px;
  }

  .intro__title {
    font-size: 22px;
  }

  .entry-form-wrap iframe {
    height: 690px;
  }

  .site-footer__brand p {
    font-size: 15px;
  }
}


@media (max-width: 450px) {

  .block450 {
    display: block;
  }

  .site-nav {
    display: none;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__title {
    font-size: 24px;
    margin: 5px 0 0;
  }

  .hero__prize {
    top: -40px;
    width: 80px;
  }

  .hero__visual-wrap {
    margin-top: 30px;
  }

  .hero__prize strong {
    font-size: 12px;
  }

  .hero__prize .num {
    font-size: 14px;
  }

  .intro__title {
    font-size: 20px;
  }

  .intro,
  .overview,
  .recommend,
  .flow,
  .event-summary,
  .faq,
  .entry {
    padding-bottom: 30px;
  }

  .entry-form-wrap iframe {
    height: 400px;
  }

  .site-footer {
    padding: 40px 0;
  }

  .site-footer__inner {
    gap: 30px;
  }
}