:root {
  --padding: 16px;
  --page-inline-padding-sp: 1.5rem;
  --contents-max-width: 1200;
  --color-text: #000;
  --color-text-dark: #1a1330;
  --color-text-speaker: #333;
  --color-bg-white: #fff;
  --color-gradient-1: #f674ff;
  --color-gradient-2: #8001cf;
  --color-gradient-3: #5506ba;
  --color-gradient-4: #5102c7;
  --color-cta-bg: #94f406;
  --color-cta-text: #180441;
  --color-card-lavender: #f1ddff;
  --color-pill-bg: #fff;
  --color-pill-border: #f674ff;
  --color-thumb-bg: #878585;
  --font-noto: "Noto Sans JP", sans-serif;
  --font-display: "univia-pro", sans-serif;
  --font-fes: "DotGothic16", var(--font-noto);
}

html {
  font-size: 16px;
}
@media screen and (max-width: 360px) {
  html {
    font-size: clamp(0.625rem, -2.375rem + 15vw, 1rem);
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: clamp(0.625rem, -0.0432134571rem + 1.3921113689vw, 1rem);
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

html {
  scroll-padding-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 6rem;
  }
}

body {
  min-height: 100vh;
  font-family: var(--font-noto);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-dark);
  padding-bottom: 3.5rem;
}
@media screen and (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

picture {
  display: block;
}

a {
  text-decoration: none;
}

section {
  overflow: hidden;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  scroll-behavior: smooth;
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
  height: auto;
  vertical-align: bottom;
  object-fit: cover;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--color-primary);
  color: var(--color-bg-white);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0.25rem;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0.5rem;
}

.l-body {
  flex-direction: column;
}
.l-body > * {
  width: 100%;
}

.c-button--cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.1875rem 1rem;
  background: var(--color-cta-bg);
  border-radius: calc(infinity * 1px);
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--color-cta-text);
  text-decoration: none;
  font-weight: 700;
  height: 3.25rem;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-button--cta {
    width: 20.3125rem;
    height: 4rem;
    font-size: 1.625rem;
    flex-shrink: 0;
  }
}

.c-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-title {
    gap: 1.5rem;
  }
}

.c-title__en {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  color: var(--color-text-dark);
}
@media screen and (min-width: 768px) {
  .c-title__en {
    font-size: 4rem;
  }
}

.c-title__sep {
  width: 1px;
  height: 1.25rem;
  background: currentColor;
  opacity: 0.4;
}
@media screen and (min-width: 768px) {
  .c-title__sep {
    height: 2rem;
  }
}

.c-title__ja {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-text-dark);
}
@media screen and (min-width: 768px) {
  .c-title__ja {
    font-size: 1.5rem;
  }
}

.p-decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.p-decor__blob {
  position: absolute;
  display: block;
  max-width: none;
}

.p-decor__blob--1 {
  width: 79%;
  aspect-ratio: 1600/1141;
  left: -11%;
  top: 40%;
  opacity: 0.7;
}

.p-decor__blob--2 {
  width: 56%;
  aspect-ratio: 1301.32/1080.66;
  left: 2%;
  top: 22%;
  opacity: 0.65;
}

.p-decor__icon {
  position: absolute;
  display: block;
  max-width: none;
}

.p-decor__icon--1 {
  width: 5.25rem;
  aspect-ratio: 1/1;
  right: -4%;
  top: 22%;
  transform: rotate(15deg);
  opacity: 0.75;
}
@media screen and (min-width: 768px) {
  .p-decor__icon--1 {
    width: 11.25rem;
    top: 24%;
    opacity: 0.85;
  }
}

.p-decor__icon--2 {
  width: 3.25rem;
  aspect-ratio: 137.5/175;
  left: 34%;
  bottom: 4%;
  transform: rotate(-18deg);
  opacity: 0.75;
}
@media screen and (min-width: 768px) {
  .p-decor__icon--2 {
    width: 6.25rem;
    left: 30%;
    bottom: 6%;
    opacity: 0.85;
  }
}

.p-decor__icon--3 {
  width: 2.25rem;
  aspect-ratio: 158.4/160;
  left: 33%;
  top: 4%;
  transform: rotate(10deg);
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .p-decor__icon--3 {
    width: 3.25rem;
  }
}

.p-decor__icon--4 {
  width: 2.25rem;
  aspect-ratio: 158.4/160;
  right: -2%;
  bottom: 2%;
  transform: rotate(-15deg);
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .p-decor__icon--4 {
    width: 3.25rem;
  }
}

.p-decor__icon--5 {
  width: 3.5rem;
  aspect-ratio: 161.289/191.92;
  left: -6%;
  top: 52%;
  transform: rotate(-22deg);
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .p-decor__icon--5 {
    width: 6.25rem;
    top: 46%;
    opacity: 0.85;
  }
}

.p-decor__icon--6 {
  width: 3.75rem;
  aspect-ratio: 201.489/164.006;
  right: 4%;
  top: 12%;
  opacity: 0.85;
}
@media screen and (min-width: 768px) {
  .p-decor__icon--6 {
    width: 5.625rem;
  }
}

.p-decor__icon--7 {
  width: 2.25rem;
  aspect-ratio: 122.083/130;
  left: 11%;
  top: 6%;
  transform: rotate(15deg);
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .p-decor__icon--7 {
    width: 4.25rem;
    top: 8%;
    opacity: 0.8;
  }
}

.p-decor__icon--8 {
  width: 1.625rem;
  aspect-ratio: 84.889/100;
  right: 34%;
  top: 6%;
  transform: rotate(20deg);
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .p-decor__icon--8 {
    width: 2.375rem;
  }
}

.p-decor__icon--9 {
  width: 2.625rem;
  aspect-ratio: 1/1;
  left: 46%;
  top: 40%;
  transform: rotate(30deg);
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .p-decor__icon--9 {
    width: 3.625rem;
  }
}

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  padding: 0.875rem 0;
  background: var(--color-gradient-4);
  box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 768px) {
  .p-header {
    padding: 1.125rem 0;
  }
}

.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-inline: var(--page-inline-padding-sp);
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    max-width: 75rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
  }
}

.p-header__logo {
  width: 6.875rem;
  display: block;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    width: 9.0625rem;
  }
}
.p-header__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.p-header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    display: block;
  }
}

.p-header__nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.p-header__nav-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-bg-white);
  white-space: nowrap;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.p-header__nav-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.p-header__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-header__right {
    gap: 1.5rem;
  }
}

.p-header__sns {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
}

.p-header__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  color: var(--color-bg-white);
}
@media screen and (min-width: 768px) {
  .p-header__sns-link {
    width: 2rem;
    height: 2rem;
  }
}
.p-header__sns-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.p-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 2.5rem;
  background: var(--color-cta-bg);
  color: #000;
  border-radius: calc(infinity * 1px);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-header__cta {
    width: 7.5rem;
    height: 3rem;
    font-size: 0.9rem;
  }
}

.p-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(244.4deg, var(--color-gradient-1) 8.14%, var(--color-gradient-2) 15.47%, var(--color-gradient-3) 55.5%, var(--color-gradient-4) 98.6%);
  padding-block: 6rem 4rem;
}
@media screen and (min-width: 768px) {
  .p-hero {
    padding-block: 10rem 6rem;
  }
}

.p-hero__inner {
  position: relative;
  z-index: 1;
  padding-inline: var(--page-inline-padding-sp);
}
@media screen and (min-width: 768px) {
  .p-hero__inner {
    max-width: 75rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
  }
}

.p-hero__eyebrow {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-bg-white);
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-hero__eyebrow {
    font-size: 3.125rem;
  }
}

.p-hero__heading {
  font-family: var(--font-fes);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: var(--color-bg-white);
  margin-bottom: 1.5rem;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .p-hero__heading {
    font-size: 4.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-hero__heading {
    font-size: 6rem;
  }
}

.p-hero__subtitle {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-bg-white);
  margin-bottom: 2rem;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .p-hero__subtitle {
    font-size: 1.75rem;
  }
}

.p-hero__dates {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  list-style: none;
  margin-top: 2rem;
  color: var(--color-bg-white);
  font-weight: 700;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .p-hero__dates {
    gap: 0.75rem 2.5rem;
    margin-top: 3rem;
  }
}

.p-hero__date {
  font-size: 1.125rem;
  line-height: 1.3;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-hero__date {
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-hero__date {
    font-size: 2.4375rem;
  }
}

.p-hero__date-place {
  font-weight: 700;
}

.p-date-card {
  position: relative;
  margin-inline: 1rem;
  margin-top: -1.5rem;
  background: var(--color-card-lavender);
  border-radius: 2rem;
  padding: 2rem 1.25rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-date-card {
    max-width: 75rem;
    margin-inline: auto;
    margin-top: -2rem;
    border-radius: 5rem;
    padding: 3.75rem;
  }
}

.p-date__desc {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-date__desc {
    font-size: 1.125rem;
  }
}

.p-date__map {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-date__map {
    margin-bottom: 2.5rem;
  }
}
.p-date__map picture,
.p-date__map img {
  display: block;
}
.p-date__map img {
  width: 100%;
  max-width: 49.25rem;
  height: auto;
  margin-inline: auto;
}

.p-preevent__desc {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-preevent__desc {
    font-size: 1.125rem;
  }
}

.p-preevent__speakers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  background: var(--color-bg-white);
  border: 3px solid var(--color-pill-border);
  border-radius: 1.5rem;
  padding: 1.5rem 1rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-preevent__speakers {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    border-width: 4px;
    border-radius: 3rem;
    padding: 2rem;
  }
}

.p-speaker {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.p-speaker__head {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.p-speaker__photo {
  width: 3rem;
  height: 4rem;
  border-radius: 45% 55% 40% 60%/55% 45% 60% 40%;
  overflow: hidden;
  flex-shrink: 0;
  background: #ddd;
}
.p-speaker__photo svg,
.p-speaker__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.p-speaker__company {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-text-speaker);
}
@media screen and (min-width: 768px) {
  .p-speaker__company {
    font-size: 1rem;
  }
}

.p-speaker__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-speaker);
}
@media screen and (min-width: 768px) {
  .p-speaker__name {
    font-size: 1.375rem;
  }
}

.p-speaker__list {
  list-style: none;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.7;
  color: var(--color-text-speaker);
}
@media screen and (min-width: 768px) {
  .p-speaker__list {
    font-size: 1rem;
  }
}

.p-date-card__cta-wrap {
  display: flex;
  justify-content: center;
}

.p-offline {
  padding-block: 3.5rem;
  padding-inline: var(--page-inline-padding-sp);
}
@media screen and (min-width: 768px) {
  .p-offline {
    padding-block: 6rem;
  }
}

@media screen and (min-width: 768px) {
  .p-offline__inner {
    max-width: 75rem;
    margin-inline: auto;
  }
}

.p-offline__desc {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-offline__desc {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
  }
}

.p-offline__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .p-offline__list {
    gap: 1rem;
  }
}

.p-offline__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-offline__item {
    flex-direction: row;
    align-items: stretch;
    gap: 1rem;
  }
}

.p-offline__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
  padding: 0.625rem 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(237deg, var(--color-gradient-1) 8.14%, var(--color-gradient-2) 15.47%, var(--color-gradient-3) 55.5%, var(--color-gradient-4) 98.6%);
  color: var(--color-bg-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1.05;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-offline__date {
    flex-shrink: 0;
    width: 12.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 2.125rem;
  }
}

.p-offline__date-seg {
  white-space: nowrap;
}

.p-offline__day {
  font-size: 0.62em;
  margin-left: 0.2em;
}

.p-offline__body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  flex: 1 1 0;
  min-width: 0;
  padding: 1rem 1.25rem;
  background: var(--color-bg-white);
  border: 3px solid var(--color-pill-border);
  border-radius: 1rem;
}
@media screen and (min-width: 768px) {
  .p-offline__body {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-width: 4px;
    padding: 1rem 1.5rem;
  }
}

.p-offline__place {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  color: var(--color-text-dark);
}

.p-offline__place-en {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.2;
  color: #222;
}
@media screen and (min-width: 768px) {
  .p-offline__place-en {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-offline__place-en {
    font-size: 3rem;
  }
}

.p-offline__place-ja {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: #222;
}
@media screen and (min-width: 768px) {
  .p-offline__place-ja {
    font-size: 1.5rem;
  }
}

.p-offline__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.1875rem 1rem;
  background: var(--color-cta-bg);
  border-radius: calc(infinity * 1px);
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 700;
  color: #222;
  text-decoration: none;
  width: 100%;
  height: 3.25rem;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-offline__cta {
    width: auto;
    flex-shrink: 0;
    height: 4rem;
    padding-inline: 2rem;
    font-size: 1.375rem;
  }
}

.p-offline__cta.is-disabled {
  pointer-events: none;
  cursor: default;
  background: #d6d0dd;
  color: #7a7580;
  box-shadow: none;
}

.p-offline__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-offline__ctas {
    width: auto;
    flex-shrink: 0;
  }
}
.p-offline__ctas .p-offline__cta {
  width: 100%;
}

.p-about {
  padding-block: 3.5rem;
  padding-inline: var(--page-inline-padding-sp);
}
@media screen and (min-width: 768px) {
  .p-about {
    max-width: 75rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
    padding-block: 6rem;
  }
}

.p-about__desc {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
}
.p-about__desc p + p {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-about__desc {
    font-size: 1.125rem;
  }
}

.p-youtube {
  position: relative;
  overflow: hidden;
  background: linear-gradient(238deg, var(--color-gradient-1) 8.14%, var(--color-gradient-2) 15.47%, var(--color-gradient-3) 55.5%, var(--color-gradient-4) 98.6%);
  padding-block: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-youtube {
    padding-block: 6rem;
  }
}

.p-youtube__inner {
  position: relative;
  z-index: 1;
  padding-inline: var(--page-inline-padding-sp);
}
@media screen and (min-width: 768px) {
  .p-youtube__inner {
    max-width: 75rem;
    margin-inline: auto;
    padding-inline: 1.5rem;
  }
}

.p-youtube .c-title__en,
.p-youtube .c-title__ja {
  color: var(--color-bg-white);
}

.p-youtube__desc {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-bg-white);
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-youtube__desc {
    font-size: 1.125rem;
  }
}

.p-youtube__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  list-style: none;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-youtube__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.p-youtube__thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--color-thumb-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-youtube__play {
  width: 3rem;
  height: 3rem;
}

.p-youtube__frame {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  border-radius: 0.5rem;
}

.p-youtube__cta-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-youtube__cta-wrap {
    margin-bottom: 6.25rem;
  }
}

.p-youtube__copyright {
  position: relative;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-bg-white);
}
@media screen and (min-width: 768px) {
  .p-youtube__copyright {
    font-size: 1rem;
  }
}

.p-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  display: flex;
  box-shadow: 0 -0.125rem 0.75rem rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 768px) {
  .p-mobile-cta {
    display: none;
  }
}

.p-mobile-cta__link {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-align: center;
  padding-inline: 0.5rem;
}

.p-mobile-cta__link--online {
  background: var(--color-cta-bg);
  color: #000;
}

.p-mobile-cta__link--offline {
  background: var(--color-gradient-4);
  color: var(--color-bg-white);
}
