:root {
  --padding: 16px;
  --page-inline-padding-sp: 1.5rem;
  --section-padding-block-sp: 3.5rem 10rem;
  --section-padding-block-md: 5rem 12.5rem;
  --section-overlap-offset: -7.5rem;
  --color-text: #000;
  --color-text-dark: #333;
  --color-bg-white: #fff;
  --color-primary: #007bff;
  --color-bg-light-blue: #e2f0ff;
  --color-bg-table-header: #edf6ff;
  --color-timetable-a: #007bff;
  --color-timetable-a-light: #dcedff;
  --color-timetable-a-empty: #ebf5ff;
  --color-timetable-b: #ffc54d;
  --color-timetable-b-light: #fff0d2;
  --color-timetable-b-empty: #fff7e8;
  --color-timetable-c: #2effd4;
  --color-timetable-c-light: #d3fff6;
  --color-timetable-c-empty: #eafffb;
  --font-noto: "Noto Sans JP", sans-serif;
}

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;
  }
}

body {
  min-height: 100vh;
  font-family: var(--font-noto);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-dark);
}

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%;
}

.l-footer__inner {
  background: var(--color-bg-white);
  padding: 1rem;
}

.c-button__wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  margin-bottom: min(var(--button-bottom-vw), var(--button-bottom-space));
}

.c-button {
  overflow: hidden;
  width: 90%;
  display: block;
  margin-inline: auto;
  animation: balloon 1.5s infinite ease-out;
}
.c-button * {
  pointer-events: none;
}

.c-button--shine::before {
  position: absolute;
  content: "";
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.85) 45%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-45deg);
}
.c-button--shine:hover::before {
  animation: shine-btn 1.8s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
}

@keyframes shine-btn {
  0% {
    left: -100%;
  }
  10% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.c-button--balloon {
  animation: balloon 2.5s ease-in-out infinite;
}

@keyframes balloon {
  0% {
    transform: scale(0.95);
  }
  10% {
    transform: scale(1);
  }
  20% {
    transform: scale(0.95);
  }
  30% {
    transform: scale(1);
  }
  40% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(0.95);
  }
}
.c-fixedBtn {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  bottom: 0;
  z-index: 10;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0.25rem;
  transition: opacity 0.3s ease-in-out;
}
.c-fixedBtn.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.c-fixedBtn a {
  display: block;
  width: 90%;
  max-width: 22.5rem;
  margin-top: 0.25rem;
}
.c-fixedBtn a img {
  width: 100%;
  height: auto;
}

.p-footer__menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.p-footer__menu-item a {
  color: #fff;
  font-size: 12px;
  text-decoration: underline;
}

.p-footer {
  position: relative;
  padding-block: 3.5rem 3rem;
  background-image: url("../images/footer/footer-background_sp.png");
  background-size: cover;
  background-position: top center;
  border-radius: 5rem 0 0 0;
  overflow: hidden;
  margin-block-start: var(--section-overlap-offset);
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding-block: 4.125rem 4.8125rem;
    background-image: url("../images/footer/footer-background_pc.png");
  }
}

.p-footer__inner {
  position: relative;
  max-width: 60rem;
  margin-inline: auto;
  padding-inline: var(--page-inline-padding-sp);
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__inner {
    padding-inline: 0;
  }
}

.p-footer__h2 {
  color: var(--color-bg-white);
}

.p-footer__sep {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-footer__sep {
    display: block;
    width: 1px;
    height: 2rem;
    background: rgba(255, 255, 255, 0.3);
  }
}

.p-footer__en {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-footer__en {
    font-size: 1.5rem;
  }
}

.p-footer__desc {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}
.p-footer__desc span {
  font-weight: 400;
  font-size: 0.8125rem;
}

.p-footer__form {
  background: var(--color-bg-white);
  padding: 1rem 1rem 1.5rem;
  border-radius: 2rem 2rem 2rem 0;
}
@media screen and (min-width: 768px) {
  .p-footer__form {
    padding: 1.5rem 0.5rem;
  }
}

#iframe-form .hs_contact_personal_information {
  margin-top: 1.5rem !important;
}

#iframe-form .hs-richtext {
  font-size: 0.75rem !important;
}

.p-footer__note {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
.p-footer__note a {
  color: inherit;
  text-decoration: underline;
}

.p-footer__copyright {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
}

.p-faq__contents {
  padding: 0 var(--page-inline-padding-sp);
  display: grid;
  gap: 1.5rem 0;
}

.p-faq__question {
  cursor: pointer;
  position: relative;
  color: #fff;
}
.p-faq__question::before, .p-faq__question::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: var(--faq-toggle-top);
  width: 0.625rem;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
}
.p-faq__question::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.3s ease;
}
.p-faq__question.is-open::after {
  transform: translateY(-50%) rotate(0deg);
}

.p-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.p-faq__answer.is-open {
  grid-template-rows: 1fr;
}

.p-faq__answer-inner {
  overflow: hidden;
}

.p-faq__answer img, .p-faq__question img {
  width: 100%;
  height: auto;
}

.p-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.1875rem 1rem;
  background: transparent;
  border-radius: calc(infinity * 1px);
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--color-bg-white);
  text-decoration: none;
  display: inline-flex;
  min-height: 4rem;
  width: 100%;
  max-width: 16.5rem;
}
.p-cta-btn--dark {
  background: var(--color-text-dark);
}
.p-cta-btn--primary {
  background: var(--color-primary);
}

.p-section-title {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-section-title {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}
.p-section-title--session {
  margin-top: 2.5rem;
}

.p-section-title__h2 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-section-title__h2 {
    font-size: 2.5rem;
  }
}

.p-section-title__sep {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-section-title__sep {
    display: block;
    width: 1px;
    height: 2rem;
    background: var(--color-text-dark);
  }
}
.p-section-title__sep--footer {
  background: #fff;
}

.p-section-title__en {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: 0.02em;
  line-height: 1.2142857143;
}
@media screen and (min-width: 768px) {
  .p-section-title__en {
    font-size: 1.5rem;
    line-height: 29 24;
  }
}
.p-section-title__en--footer {
  color: #fff;
}

.p-section-sessions {
  overflow: visible;
  display: flow-root;
  position: relative;
  z-index: 1;
  background: #EFEFEF;
  margin-top: -5rem;
  border-radius: 5rem 0 0 0;
}

.p-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .p-header {
    padding: 0.75rem 0;
    transition: background-color 0.3s ease;
  }
}
@media screen and (min-width: 768px) {
  .p-header.is-session-active {
    background: #0076F4;
    box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08);
  }
}

.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    max-width: 60rem;
    margin-inline: auto;
    width: 100%;
  }
}

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

.p-header__menu-btn {
  --button-size: 3.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  padding: 0.625rem;
  cursor: pointer;
  background: var(--color-bg-white);
  border-radius: 0 0 0 1rem;
  width: var(--button-size);
  height: var(--button-size);
  box-shadow: 0 0 4px 0 rgba(12, 59, 144, 0.6);
}
@media screen and (min-width: 768px) {
  .p-header__menu-btn {
    display: none;
  }
}

.p-header__menu-bar {
  display: block;
  width: 1.375rem;
  height: 2px;
  background: var(--color-text-dark);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.p-header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    display: flex;
    align-items: center;
    background: var(--color-bg-white);
    border: 1px solid var(--color-text-dark);
    border-radius: calc(infinity * 1px);
    padding: 0.75rem 2rem;
  }
}

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

.p-header__nav-item a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-dark);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.1428571429;
}

.p-header__nav-sep {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__nav-sep {
    display: block;
    width: 1px;
    height: 1.375rem;
    background: var(--color-text-dark);
    opacity: 0.3;
  }
}

.p-header__cta {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6875rem 1.9375rem;
    background: var(--color-text-dark);
    border-radius: calc(infinity * 1px);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-bg-white);
    text-decoration: none;
    white-space: nowrap;
    text-align: center;
  }
}

.p-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--color-bg-white);
  overflow-y: auto;
  height: fit-content;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.25);
}
.p-drawer.is-open {
  display: block;
}

.p-drawer__inner {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 1rem 1rem;
}

.p-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.p-drawer__logo {
  display: block;
  width: 9.0625rem;
  padding: 1rem;
}
.p-drawer__logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0);
}

.p-drawer__close {
  --button-size: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--color-text-dark);
  width: var(--button-size);
  height: var(--button-size);
}

.p-drawer__nav-list,
.p-drawer__nav-sub {
  list-style: none;
}

.p-drawer__nav-sub {
  margin-top: 1.5rem;
}

.p-drawer__nav-item {
  border-bottom: 1px solid #ddd;
}
.p-drawer__nav-item a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-dark);
  text-decoration: none;
}

.p-drawer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.1875rem 1rem;
  background: var(--color-text-dark);
  border-radius: calc(infinity * 1px);
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--color-bg-white);
  text-decoration: none;
  margin-top: auto;
  flex-shrink: 0;
  margin-block-start: 2rem;
}

.p-hero {
  position: relative;
  padding-block: 5rem 12.5rem;
}
@media screen and (min-width: 768px) {
  .p-hero {
    padding-block: 8rem 12.5rem;
  }
}

.p-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.p-hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-inline: var(--page-inline-padding-sp);
}
@media screen and (min-width: 768px) {
  .p-hero__inner {
    max-width: 60rem;
    margin-inline: auto;
    padding-inline: 0;
  }
}

.p-hero__logo {
  width: 14.875rem;
  height: 1.375rem;
  display: block;
}
.p-hero__logo img {
  width: 100%;
  height: 100%;
  display: block;
}

.p-hero__logo-text-area {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.p-hero__heading {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-bg-white);
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-hero__heading {
    font-size: 4rem;
  }
}

.p-hero__subtitle {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-bg-white);
}
@media screen and (min-width: 768px) {
  .p-hero__subtitle {
    font-size: 1.375rem;
  }
}

.p-hero__cta-area {
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-hero__cta-area {
    flex-direction: row;
    align-items: center;
  }
}

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

.p-hero__meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.p-hero__date-row {
  display: flex;
  gap: 0.25rem;
  flex-direction: column;
  align-items: baseline;
}
@media screen and (min-width: 768px) {
  .p-hero__date-row {
    align-items: flex-end;
    gap: 1.5rem;
    flex-direction: row;
  }
}

.p-hero__date {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
}

.p-hero__date, .p-hero__time {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-hero__date::after, .p-hero__time::after {
    content: "";
    display: block;
    height: 2rem;
    width: 1px;
    background: var(--color-bg-white);
    margin-left: 1.5rem;
  }
}

.p-hero__year {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-bg-white);
}

.p-hero__month-day {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-bg-white);
}
.p-hero__month-day .month,
.p-hero__month-day .day-suffix {
  font-size: 2rem;
}

.p-hero__day-badge {
  --badge-size: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--badge-size);
  height: var(--badge-size);
  background: var(--color-bg-white);
  border-radius: calc(infinity * 1px);
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 700;
  color: #0174f0;
  flex-shrink: 0;
}

.p-hero__time,
.p-hero__free {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-bg-white);
  letter-spacing: 0.02em;
  line-height: 1.2083333333;
}
@media screen and (min-width: 768px) {
  .p-hero__time,
  .p-hero__free {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

.p-hero__place {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-bg-white);
  letter-spacing: 0.02em;
  line-height: 1.2142857143;
}
@media screen and (min-width: 768px) {
  .p-hero__place {
    font-size: 1.5rem;
  }
}

.p-speakers__wrap {
  padding: 0 var(--page-inline-padding-sp);
}
@media screen and (min-width: 768px) {
  .p-speakers__wrap {
    padding: 0;
  }
}

.p-speakers {
  --panel-corner-radius: 5rem;
  padding: 1.5rem;
  background: var(--color-bg-white);
  border-radius: var(--panel-corner-radius) var(--panel-corner-radius) var(--panel-corner-radius) 0;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08);
  gap: 1rem;
  display: grid;
  margin-top: -5rem;
}
@media screen and (min-width: 768px) {
  .p-speakers {
    max-width: 60rem;
    margin-inline: auto;
    padding: 1.5rem 2.5rem;
  }
}

.p-speakers__headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.p-speakers__head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-speakers__head {
    flex-direction: row;
    gap: 0;
  }
}

.p-speakers__h2 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-speakers__h2 {
    font-size: 1.5rem;
  }
}

.p-speakers__sub {
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-speakers__sub {
    font-size: 1rem;
  }
}

.p-speakers__desc {
  font-size: 0.875rem;
  font-weight: 500;
  color: #666;
  text-align: center;
}

.p-speakers__area {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-speakers__area {
    flex-direction: row;
    justify-content: space-between;
  }
}

.p-speakers__group {
  display: flex;
  flex-direction: column;
}

.p-speakers__category {
  font-size: 0.875rem;
  font-weight: 700;
  color: #aaa;
}

.p-speakers__logos {
  display: grid;
  gap: 0 0.5rem;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
}
@media screen and (min-width: 768px) {
  .p-speakers__logos {
    grid-template-columns: repeat(2, 8rem);
  }
}
@media screen and (min-width: 768px) {
  .p-speakers__logos--casestudy {
    grid-template-columns: repeat(4, 8rem);
  }
}

.p-speakers__logo-item {
  --logo-width: 8rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-speakers__logo-item {
    width: var(--logo-width);
  }
}
.p-speakers__logo-item img {
  width: 100%;
  height: auto;
}

.p-speakers__divider {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-speakers__divider {
    --divider-height: 10rem;
    display: block;
    width: 1px;
    background: #999;
    height: var(--divider-height);
    align-self: center;
  }
}

.p-sessions__wrap {
  overflow: hidden;
}

.p-sessions {
  padding: 2.5rem 1.5rem 10rem;
}
@media screen and (min-width: 768px) {
  .p-sessions {
    max-width: 60rem;
    margin-inline: auto;
    padding: 2.5rem 0 12.5rem;
  }
}

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

.p-sessions__text {
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-sessions__text {
    font-size: 1rem;
  }
}
.p-sessions__text p:nth-of-type(n+2) {
  margin-top: 1.6em;
}
.p-sessions__text ul {
  margin-top: 1.6em;
  padding-left: 1.4em;
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}

.p-session-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-block-start: 2.5rem;
}

.p-session-filter__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 1rem;
  border: 1px solid var(--color-text-dark);
  border-radius: calc(infinity * 1px);
  font-size: 0.75rem;
  line-height: 1.1666666667;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  background: none;
  color: var(--color-text-dark);
}
@media screen and (min-width: 768px) {
  .p-session-filter__tag {
    font-size: 0.875rem;
    line-height: 1.2142857143;
  }
}
.p-session-filter__tag.is-active, .p-session-filter__tag:hover {
  background: var(--color-text-dark);
  color: var(--color-bg-white);
}

.p-session-items {
  position: relative;
  margin-block-start: 1.5rem;
}

.p-session-items__list {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease;
  will-change: transform;
  list-style: none;
}

.p-session-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: -1.5rem;
  width: calc(100% + 3rem);
}
@media screen and (min-width: 768px) {
  .p-session-controls {
    position: relative;
    width: 100%;
    justify-content: flex-end;
    gap: 1rem;
    top: 0;
    left: 0;
    margin-block-start: 1.5rem;
  }
}

.p-session-controls__btn,
.p-session-controls__pause {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-dark);
  padding: 0;
  transition: opacity 0.2s;
}
.p-session-controls__btn img,
.p-session-controls__pause img {
  width: 2.5rem;
}
.p-session-controls__btn:hover,
.p-session-controls__pause:hover {
  opacity: 0.6;
}
.p-session-controls__btn:disabled,
.p-session-controls__pause:disabled {
  opacity: 0.2;
  cursor: default;
  pointer-events: none;
}

.p-session-controls__pause {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--color-text-dark);
  border-radius: 50%;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-session-controls__pause {
    display: flex;
  }
}

.p-session-controls__pause-icon {
  position: relative;
  display: block;
  width: 0.875rem;
  height: 0.875rem;
}
.p-session-controls__pause-icon span {
  position: absolute;
  display: block;
  background: currentColor;
}
.p-session-controls__pause-icon span:nth-child(1),
.p-session-controls__pause-icon span:nth-child(2) {
  top: 0;
  width: 3px;
  height: 100%;
}
.p-session-controls__pause-icon span:nth-child(1) {
  left: 1px;
}
.p-session-controls__pause-icon span:nth-child(2) {
  right: 1px;
}
.p-session-controls__pause-icon span:nth-child(3) {
  inset: 0;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  opacity: 0;
}

.p-session-controls__pause[aria-pressed=true] .p-session-controls__pause-icon span:nth-child(1),
.p-session-controls__pause[aria-pressed=true] .p-session-controls__pause-icon span:nth-child(2) {
  opacity: 0;
}
.p-session-controls__pause[aria-pressed=true] .p-session-controls__pause-icon span:nth-child(3) {
  opacity: 1;
}

.p-sessions__cta {
  margin-block-start: 2.5rem;
  text-align: center;
}

.p-session-item {
  flex-shrink: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-session-item {
    width: 27.5rem;
  }
}

.p-session-item__inner {
  --card-corner-radius: 4.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  border: 1px solid var(--color-text-dark);
  border-radius: var(--card-corner-radius) var(--card-corner-radius) var(--card-corner-radius) 0;
  height: 100%;
  min-height: 29rem;
  background: var(--color-bg-white);
}

.p-session-item__speaker {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: flex-start;
}

.p-session-item__photo {
  --photo-size: 5.5rem;
  width: var(--photo-size);
  height: var(--photo-size);
  flex-shrink: 0;
  overflow: hidden;
}
.p-session-item__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-session-item__speaker-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
  min-width: 0;
}

.p-session-item__company {
  font-size: 0.625rem;
  font-weight: 700;
}

.p-session-item__name {
  font-size: 0.875rem;
  font-weight: 700;
}

.p-session-item__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.p-session-item__time-title {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.p-session-item__time {
  font-size: 0.75rem;
  font-weight: 700;
  color: #666666;
}

.p-session-item__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-session-item__desc {
  font-size: 0.75rem;
  font-weight: 400;
}

.p-session-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.p-session-item__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-text-dark);
  border-radius: calc(infinity * 1px);
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.1818181818;
  white-space: nowrap;
}

.p-section-timetable {
  --section-corner-radius-sp: 3.75rem;
  --section-corner-radius-md: 5rem;
  background: var(--color-bg-white);
  padding-block: var(--section-padding-block-sp);
  border-radius: 0 var(--section-corner-radius-sp) 0 0;
  position: relative;
  z-index: 2;
  margin-top: var(--section-overlap-offset);
}
@media screen and (min-width: 768px) {
  .p-section-timetable {
    padding-block: var(--section-padding-block-md);
    border-radius: 0 var(--section-corner-radius-md) 0 0;
  }
}

.p-timetable {
  max-width: 60rem;
  margin-inline: auto;
  padding-inline: var(--page-inline-padding-sp);
}
@media screen and (min-width: 768px) {
  .p-timetable {
    padding-inline: 0;
  }
}

.p-timetable__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-timetable__controls {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
  margin-block-start: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-timetable__controls {
    display: none;
  }
}

.p-timetable__ctrl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-dark);
  padding: 0;
  transition: opacity 0.2s;
}
.p-timetable__ctrl-btn:hover {
  opacity: 0.6;
}
.p-timetable__ctrl-btn:disabled {
  opacity: 0.2;
  cursor: default;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .p-timetable__ctrl-btn {
    display: none;
  }
}

.p-timetable__wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-block-start: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-timetable__wrap {
    margin-block-start: 2rem;
  }
}

.p-timetable__table {
  --time-column-width: 5.5rem;
  --header-cell-corner-radius: 1.5rem;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-timetable__table {
    min-width: 0;
    table-layout: fixed;
  }
}

@media screen and (min-width: 768px) {
  .p-timetable__venue {
    width: calc((100% - var(--time-column-width)) / 3);
  }
}
.p-timetable__row--header .p-timetable__time {
  background: #a6a6a6;
  border-radius: var(--header-cell-corner-radius) var(--header-cell-corner-radius) var(--header-cell-corner-radius) 0;
  font-size: 0.875rem;
  text-align: center;
}
.p-timetable__row--header .p-timetable__venue {
  border-radius: var(--header-cell-corner-radius) var(--header-cell-corner-radius) var(--header-cell-corner-radius) 0;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  padding: 0.5rem 0.25rem;
}
.p-timetable__row--header .p-timetable__venue--a {
  background: var(--color-timetable-a);
  color: rgba(255, 255, 255, 0.98);
}
.p-timetable__row--header .p-timetable__venue--b {
  background: var(--color-timetable-b);
  color: #652f00;
}
.p-timetable__row--header .p-timetable__venue--c {
  background: var(--color-timetable-c);
  color: #014a49;
}

.p-timetable__time {
  position: sticky;
  left: 0;
  z-index: 2;
  flex-shrink: 0;
  width: var(--time-column-width);
  background: #efefef;
  justify-content: flex-start;
  padding: 0.75rem 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  vertical-align: middle;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .p-timetable__wrap.is-fading .p-timetable__venue,
  .p-timetable__wrap.is-fading .p-timetable__session {
    opacity: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-timetable__wrap[data-tt-active=a] .p-timetable__venue--b,
  .p-timetable__wrap[data-tt-active=a] .p-timetable__venue--c,
  .p-timetable__wrap[data-tt-active=a] .p-timetable__session--b,
  .p-timetable__wrap[data-tt-active=a] .p-timetable__session--c {
    display: none;
  }
  .p-timetable__wrap[data-tt-active=b] .p-timetable__venue--a,
  .p-timetable__wrap[data-tt-active=b] .p-timetable__venue--c,
  .p-timetable__wrap[data-tt-active=b] .p-timetable__session--a,
  .p-timetable__wrap[data-tt-active=b] .p-timetable__session--c {
    display: none;
  }
  .p-timetable__wrap[data-tt-active=c] .p-timetable__venue--a,
  .p-timetable__wrap[data-tt-active=c] .p-timetable__venue--b,
  .p-timetable__wrap[data-tt-active=c] .p-timetable__session--a,
  .p-timetable__wrap[data-tt-active=c] .p-timetable__session--b {
    display: none;
  }
}
.p-timetable__venue {
  display: table-cell;
  vertical-align: middle;
  padding: 0.5rem;
}

.p-timetable__session {
  vertical-align: top;
  padding: 0.5rem 0.75rem;
  line-height: 1.6;
  color: var(--color-text-dark);
}
.p-timetable__session--a {
  background: var(--color-timetable-a-light);
}
.p-timetable__session--a:empty {
  background: var(--color-timetable-a-empty);
}
.p-timetable__session--b {
  background: var(--color-timetable-b-light);
}
.p-timetable__session--b:empty {
  background: var(--color-timetable-b-empty);
}
.p-timetable__session--c {
  background: var(--color-timetable-c-light);
}
.p-timetable__session--c:empty {
  background: var(--color-timetable-c-empty);
}

.p-timetable__company {
  font-size: 0.8125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-timetable__company {
    font-size: 0.9375rem;
  }
}

.p-timetable__position {
  font-size: 0.75rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-timetable__position {
    font-size: 0.8125rem;
  }
}

.p-timetable__name {
  font-size: 0.75rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-timetable__name {
    font-size: 0.8125rem;
  }
}

.p-timetable__session-title {
  font-size: 0.8125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-timetable__session-title {
    font-size: 0.9375rem;
  }
}

.p-timetable__party-cell {
  background: #efefef;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
}

.p-section-features {
  --section-corner-radius: 5rem;
  background: var(--color-bg-light-blue);
  padding-block: var(--section-padding-block-sp);
  border-radius: var(--section-corner-radius) 0 0 0;
  margin-top: var(--section-overlap-offset);
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .p-section-features {
    padding-block: var(--section-padding-block-md);
  }
}

.p-features {
  max-width: 60rem;
  margin-inline: auto;
  padding-inline: var(--page-inline-padding-sp);
}
@media screen and (min-width: 768px) {
  .p-features {
    padding-inline: 0;
  }
}

.p-features__list {
  display: grid;
  gap: 1.5rem;
  margin-block-start: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-features__list {
    margin-block-start: 2rem;
  }
}

.p-feature {
  --feature-card-corner-radius-sp: 3.75rem;
  --feature-card-corner-radius-md: 5rem;
  display: flex;
  align-items: stretch;
  border: 1px solid var(--color-text-dark);
  border-radius: var(--feature-card-corner-radius-sp) 0 0 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-feature {
    border-radius: var(--feature-card-corner-radius-md) 0 0 0;
  }
}

.p-feature__num {
  --feature-number-width-sp: 4rem;
  --feature-number-width-md: 10rem;
  flex-shrink: 0;
  width: var(--feature-number-width-sp);
  background: var(--color-primary);
  border-right: 1px solid var(--color-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  color: var(--color-bg-white);
}
@media screen and (min-width: 768px) {
  .p-feature__num {
    width: var(--feature-number-width-md);
    padding: 2rem;
    font-size: 4rem;
  }
}

.p-feature__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.p-feature__title {
  border-bottom: 1px solid var(--color-text-dark);
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-feature__title {
    padding: 1rem 1.5rem;
    font-size: 2rem;
  }
}

.p-feature__desc {
  padding: 1.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-feature__desc {
    padding: 1.5rem;
    font-size: 1rem;
  }
}

.p-features__cta {
  display: flex;
  justify-content: center;
  margin-block-start: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-features__cta {
    margin-block-start: 2rem;
  }
}

.p-section-outline {
  background: var(--color-bg-white);
  padding-block: var(--section-padding-block-sp);
  border-radius: 0 5rem 0 0;
  margin-block-start: var(--section-overlap-offset);
  position: relative;
  z-index: 4;
}
@media screen and (min-width: 768px) {
  .p-section-outline {
    padding-block: var(--section-padding-block-md);
    margin-block-start: 10rem;
  }
}

.p-outline {
  max-width: 60rem;
  margin-inline: auto;
  padding-inline: var(--page-inline-padding-sp);
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .p-outline {
    padding-inline: 0;
  }
}

.p-outline__section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.p-outline__table {
  width: 100%;
  border-collapse: collapse;
}
.p-outline__table tr {
  display: flex;
}
.p-outline__table th,
.p-outline__table td {
  border: 0.5px solid #ccc;
  padding: 1rem;
}
.p-outline__table th {
  flex-shrink: 0;
  width: 6.5rem;
  background: var(--color-bg-table-header);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-outline__table th {
    width: 11rem;
    font-size: 1.25rem;
    letter-spacing: 0.07em;
  }
}
.p-outline__table td {
  flex: 1;
  min-width: 0;
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-outline__table td {
    font-size: 0.875rem;
  }
}
.p-outline__table td .note {
  font-size: 0.625rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-outline__table td .note {
    font-size: 0.875rem;
  }
}
.p-outline__table td strong {
  font-weight: 700;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-outline__table td strong {
    font-size: 1.25rem;
  }
}
.p-outline__table td ul {
  padding-left: 1.5em;
}
@media screen and (min-width: 768px) {
  .p-outline__table td .-sp {
    display: none;
  }
}
.p-outline__table td .time {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-outline__table td .time {
    font-size: 1.25rem;
  }
}

.p-access__map {
  width: 100%;
  border: 1px solid #d9d9d9;
  overflow: hidden;
  aspect-ratio: 312/205;
}
@media screen and (min-width: 768px) {
  .p-access__map {
    aspect-ratio: 960/630;
  }
}
.p-access__map img,
.p-access__map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
