@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
@media (max-width: 767px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #343a40;
  margin: 0;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #343a40;
  margin: 0;
  font-size: 2.25rem;
}
@media (max-width: 767px) {
  h1 {
    font-size: 1.875rem;
  }
}

h2 {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #343a40;
  margin: 0;
  font-size: 1.875rem;
}
@media (max-width: 767px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #343a40;
  margin: 0;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  h3 {
    font-size: 1.25rem;
  }
}

h4 {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #343a40;
  margin: 0;
  font-size: 1.25rem;
}

h5 {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #343a40;
  margin: 0;
  font-size: 1.125rem;
}

h6 {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #343a40;
  margin: 0;
  font-size: 1rem;
}

p {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #343a40;
  margin: 0;
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #00a99d;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
a:hover {
  color: #0d2b4a;
  text-decoration: underline;
}
a:focus {
  outline: 2px solid #00a99d;
  outline-offset: 2px;
}

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

small {
  font-size: 0.875rem;
  line-height: 1.5;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.styled,
ol.styled {
  padding-left: 1.5rem;
}
ul.styled li,
ol.styled li {
  margin-bottom: 0.5rem;
}

ul.styled {
  list-style: disc;
}

ol.styled {
  list-style: decimal;
}

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

picture {
  display: block;
}

svg {
  fill: currentColor;
}

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #00a99d;
  outline-offset: 2px;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  text-align: left;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #dee2e6;
}

th {
  font-weight: 600;
  background-color: #f8f9fa;
}

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

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-primary {
  color: #00a99d;
}

.text-secondary {
  color: #c6f4f3;
}

.text-muted {
  color: #adb5bd;
}

.text-white {
  color: #ffffff;
}

.text-emphasis {
  font-weight: 700;
  color: #00a99d;
  font-size: 120%;
}

.photo-caption {
  text-align: right;
  color: #343a40;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-style: italic;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }
}

section {
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  section {
    padding: 6rem 0;
  }
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .section__header {
    margin-bottom: 3rem;
  }
}

.section__title {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #343a40;
  margin: 0;
  font-size: 1.875rem;
  margin-bottom: 1rem;
  color: #00a99d;
  position: relative;
}
@media (max-width: 767px) {
  .section__title {
    font-size: 1.5rem;
  }
}
.section__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #00a99d;
  margin: 1rem auto 0;
}

.section__subtitle {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #343a40;
  margin: 0;
  color: #00a99d;
  font-size: 1.125rem;
  margin: 0;
  font-weight: bold;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.btn:focus {
  outline: 2px solid #00a99d;
  outline-offset: 2px;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  background-color: #00a99d;
  color: #ffffff;
}
.btn--primary:focus {
  outline: 2px solid #00a99d;
  outline-offset: 2px;
}
.btn--primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn--primary:hover {
  background-color: #0d2b4a;
}
.btn--primary:active {
  background-color: #0d2b4a;
  transform: translateY(1px);
}
.btn--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  background-color: transparent;
  color: #00a99d;
  border: 2px solid #00a99d;
}
.btn--secondary:focus {
  outline: 2px solid #00a99d;
  outline-offset: 2px;
}
.btn--secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn--secondary:hover {
  background-color: #00a99d;
  color: #ffffff;
}
.btn--secondary:active {
  background-color: #0d2b4a;
  border-color: #0d2b4a;
}
.btn--large {
  padding: 1.5rem 2rem;
  font-size: 1.125rem;
}
.btn--small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out forwards;
}

.slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.5s ease-in-out forwards;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #e9ecef;
}

::-webkit-scrollbar-thumb {
  background: #ced4da;
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #adb5bd;
}

:focus-visible {
  outline: 2px solid #00a99d;
  outline-offset: 2px;
}

@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  img {
    max-width: 100% !important;
  }
  .no-print {
    display: none !important;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #dee2e6;
  z-index: 1030;
  transition: all 0.3s ease-in-out;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .header__container {
    padding: 1rem 1.5rem;
  }
}
.header__logo {
  height: 28px;
  margin-right: 30px;
}
@media screen and (max-width: 1480px) {
  .header__logo {
    margin-left: 150px;
  }
}
@media (max-width: 767px) {
  .header__logo {
    margin-left: 120px;
    margin-top: 8px;
  }
}
.header__logo-img {
  max-height: 28px;
  height: auto;
}
@media (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #dee2e6;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
  }
  .header__nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
.header__toggle {
  display: none;
  flex-direction: column;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .header__toggle {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.header__toggle-bar {
  width: 20px;
  height: 2px;
  background-color: #343a40;
  margin: 3px 0;
  transition: all 0.3s ease-in-out;
}
.header__toggle.is-open .header__toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header__toggle.is-open .header__toggle-bar:nth-child(2) {
  opacity: 0;
}
.header__toggle.is-open .header__toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
.header .tokyo_logo {
  display: block;
  position: absolute;
  height: auto;
  top: 0px;
  left: 5px;
  width: 160px;
  z-index: 2000;
}
.header .tokyo_logo img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .header .tokyo_logo {
    top: 5px;
  }
  .header .tokyo_logo img {
    width: 80%;
    height: auto;
  }
}

.nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
@media (max-width: 767px) {
  .nav__list {
    flex-direction: column;
    gap: 0;
    padding: 1.5rem 0;
  }
}
.nav__link {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #343a40;
  margin: 0;
  font-weight: 700;
  padding: 0.5rem 0.5rem;
  transition: color 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .nav__link {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #dee2e6;
  }
  .nav__link:last-child {
    border-bottom: none;
  }
}
.nav__link:hover {
  color: #00a99d;
}

.hero {
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../images/hero/main-visual.jpg") center/cover no-repeat;
  background-attachment: fixed;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 0 0 0 0;
  position: relative;
}
@media (max-width: 767px) {
  .hero {
    background: url("../images/hero/main-visual_sp.jpg") center/cover no-repeat;
    background-attachment: scroll;
    flex-direction: column;
    justify-content: center;
  }
}
.hero__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: calc(100vh - 70px);
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 1400px;
  width: 96%;
}
@media (max-width: 767px) {
  .hero__container {
    min-height: 50vh;
    justify-content: end;
    align-items: center;
    width: 100%;
  }
}
.hero__content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-shrink: 0;
  flex-wrap: wrap;
  padding: 70px 0;
  background-image: url("../images/hero/bg_circle.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .hero__content {
    width: 100%;
  }
}
.hero__title {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #343a40;
  margin: 0;
  font-size: 2.25rem;
  color: #ffffff;
  margin: -30px auto 0;
  width: 45%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  order: 2;
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 1.875rem;
  }
}
@media (max-width: 767px) {
  .hero__title {
    width: 80%;
    order: 1;
  }
}
.hero__logo {
  max-width: 570px;
  width: 95%;
  height: auto;
  display: block;
}
@media (max-width: 767px) {
  .hero__logo {
    width: 80%;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero__logo {
    max-width: 500px;
  }
}
.hero .hero_schedule_image {
  max-width: 300px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .hero .hero_schedule_image {
    max-width: 80%;
    margin: 0 auto;
  }
}
.hero .schedule-1 {
  order: 1;
  width: 27%;
  align-items: center;
  text-align: center;
}
@media (max-width: 767px) {
  .hero .schedule-1 {
    width: 45%;
    order: 2;
  }
}
.hero .schedule-2 {
  order: 3;
  width: 27%;
  text-align: center;
}
@media (max-width: 767px) {
  .hero .schedule-2 {
    width: 45%;
    order: 1;
  }
}

.hero_schedule_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 1.5rem;
  z-index: 3;
  flex: 1;
  width: 100%;
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 1024px) {
  .hero_schedule_container {
    max-width: 300px;
  }
}
@media (max-width: 767px) {
  .hero_schedule_container {
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: space-around;
    align-items: start;
    gap: 1rem;
    width: 90%;
    margin: 0 auto;
    right: auto;
    max-width: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero_schedule_container {
    right: 3rem;
    max-width: 250px;
  }
}

.hero_lead {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  padding: 1rem 2rem;
  margin: 0 auto 0;
  width: 100vw;
  text-align: center;
  position: absolute;
  bottom: 0;
  z-index: 5;
}
@media (max-width: 767px) {
  .hero_lead {
    padding: 1rem 1rem;
    width: 100vw;
  }
}
.hero_lead_title {
  font-size: 2.25rem;
  font-weight: bold;
  color: #343a40;
  line-height: 1.25;
  margin: 0 0 1rem 0;
  letter-spacing: 0.5px;
}
@media (max-width: 767px) {
  .hero_lead_title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
}
.hero_lead_subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: #495057;
  line-height: 1.625;
  margin: 0;
}
@media (max-width: 767px) {
  .hero_lead_subtitle {
    font-size: 1.25rem;
  }
}
.hero_lead__subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 767px) {
  .hero_lead__subtitle {
    font-size: 1.25rem;
  }
}
.hero_lead__description {
  font-size: 1.125rem;
  line-height: 1.625;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .hero_lead__description {
    font-size: 1rem;
  }
}
.hero_lead__cta {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .hero_lead__cta {
    flex-direction: column;
    align-items: center;
  }
}
.hero_lead__cta .btn--secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.hero_lead__cta .btn--secondary:hover {
  background-color: #ffffff;
  color: #00a99d;
}
@media (min-width: 1024px) {
  .hero_lead__visual {
    order: 2;
  }
}
.hero_lead__image {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.about {
  background: #c6f4f3;
}
.about .text-emphasis {
  color: #343a40;
}
.about .section__header .section__title {
  color: #00a99d;
  padding: 0.5rem 1.5rem;
  margin: 0;
  font-size: 1.875rem;
  font-weight: bold;
  display: inline-block;
}
.about .section__header .section__subtitle {
  color: #00a99d;
  font-size: 1.125rem;
  margin-top: 0.25rem;
  margin-bottom: 3rem;
  font-weight: bold;
}
.about__main {
  margin-bottom: 4rem;
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: flex-start;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .about__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.about__text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.about__heading {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #343a40;
  margin: 0;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-weight: bold;
  background-color: #00a99d;
  padding: 1.5rem 1.5rem;
}
@media (max-width: 767px) {
  .about__heading {
    font-size: 1.25rem;
  }
}
.about__description {
  margin-bottom: 1.5rem;
  line-height: 1.625;
  color: #343a40;
  font-size: 1rem;
}
.about__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__image {
  width: 100%;
}
.about__event-info {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  margin-bottom: 4rem;
}
.about__event-title {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #343a40;
  margin: 0;
  font-size: 1.5rem;
  color: #00a99d;
  margin-bottom: 2rem;
  font-weight: bold;
  padding-bottom: 1rem;
  border-bottom: #00a99d dashed 1px;
}
@media (max-width: 767px) {
  .about__event-title {
    font-size: 1.25rem;
  }
}
.about__event-content {
  display: flex;
}
.about__event-text {
  text-align: center;
}
@media (max-width: 767px) {
  .about__event-text {
    margin-bottom: 1.5rem;
  }
}
.about__catchphrase {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #343a40;
  margin: 0;
  font-size: 1.875rem;
  color: #00a99d;
  font-weight: bold;
  line-height: 1.25;
  margin: 0;
  padding: 1.5rem;
  background-color: rgba(0, 169, 157, 0.1);
  border-radius: 0.5rem;
  border-left: 4px solid #00a99d;
}
@media (max-width: 767px) {
  .about__catchphrase {
    font-size: 1.5rem;
  }
}
.about__event-description {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
}
.about__event-description .about__event-description-text {
  width: 100%;
  margin-bottom: 3rem;
}
.about__event-description .about__event-description-text2 {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.about__event-description .about__event-description-text2 .about__visual {
  width: 40%;
}
.about__event-description .about__event-description-text2 .about__event-description-text2-text {
  width: 57%;
}
@media (max-width: 767px) {
  .about__event-description .about__event-description-text2 {
    flex-direction: column;
  }
  .about__event-description .about__event-description-text2 .about__visual {
    width: 100%;
  }
  .about__event-description .about__event-description-text2 .about__event-description-text2-text {
    width: 100%;
  }
}
.about__event-description p {
  margin-bottom: 1.5rem;
  line-height: 1.625;
  color: #343a40;
}
.about__event-description p:last-child {
  margin-bottom: 0;
}
.about__event-description p strong {
  font-weight: bold;
  color: #343a40;
}

.gallery {
  padding: 0 0 0 0;
  background-color: #ffffff;
  overflow: hidden;
}
.gallery__slider .slick-track {
  display: flex;
  align-items: center;
}
.gallery__slider .slick-slide {
  padding: 0;
  margin: 0;
}
.gallery__slide {
  outline: none;
  padding: 0;
  margin: 0;
}
.gallery__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .gallery__image {
    height: 150px;
  }
}
.gallery .slick-dots {
  display: none !important;
}
.gallery .slick-arrow {
  display: none !important;
}

.schedule {
  background-color: #f8f9fa;
}
.schedule .container {
  max-width: 1500px;
}
.schedule__content {
  margin-top: 1.5rem;
}
.schedule__table-container {
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  overflow-x: auto;
}
.schedule__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #343a40;
  line-height: 1.625;
  text-align: center;
  margin: 0 0 0.25rem 0;
  padding: 1rem;
}
@media (max-width: 767px) {
  .schedule__title {
    font-size: 1rem;
    padding: 0.5rem;
    margin-bottom: 1rem;
    text-align: left;
  }
}
.schedule__subtitle {
  font-size: 1.875rem;
  font-weight: 700;
  color: #00a99d;
  text-align: center;
  margin: 0 0 1rem 0;
  padding: 0.25rem 0.5rem;
}
@media (max-width: 767px) {
  .schedule__subtitle {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    padding: 0.25rem;
    display: block;
    text-align: left;
  }
}
.schedule__table-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #00a99d;
}
.schedule__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  min-width: 800px;
}
@media (max-width: 767px) {
  .schedule__table {
    font-size: 0.75rem;
    min-width: 600px;
  }
}
.schedule__table th, .schedule__table td {
  border: 1px solid #dee2e6;
  text-align: center;
  vertical-align: middle;
  padding: 0.5rem 0.5rem;
  line-height: 1.3;
}
.schedule__table th {
  background-color: #00a99d;
  color: #ffffff;
  font-weight: bold;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .schedule__table th {
    font-size: 0.875rem;
    padding: 0.25rem;
  }
}
.schedule__time-col {
  width: 10%;
  min-width: 60px;
}
.schedule__event-col {
  width: 12%;
  min-width: 80px;
}
.schedule__stage-col {
  width: 20%;
  min-width: 120px;
}
.schedule__booth-col, .schedule__consult-col, .schedule__advice-col {
  width: 19.3%;
  min-width: 110px;
}
.schedule__time {
  font-weight: bold;
  background-color: #f8f9fa;
}
.schedule__reception, .schedule__reception-end {
  background-color: #e9ecef;
  font-weight: bold;
}
.schedule__stage-program {
  background-color: #ff97cb;
  color: #ffffff;
  font-weight: bold;
  padding: 0.5rem;
}
.schedule__stage-program .schedule__program-time {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.schedule__stage-program .schedule__program-title {
  font-size: 1rem;
  font-weight: bold;
}
.schedule__booth-main, .schedule__consult-main, .schedule__advice-main {
  background-color: #e9ecef;
  font-weight: bold;
  position: relative;
}
.schedule__booth-main .schedule__booth-content,
.schedule__booth-main .schedule__consult-content,
.schedule__booth-main .schedule__advice-content, .schedule__consult-main .schedule__booth-content,
.schedule__consult-main .schedule__consult-content,
.schedule__consult-main .schedule__advice-content, .schedule__advice-main .schedule__booth-content,
.schedule__advice-main .schedule__consult-content,
.schedule__advice-main .schedule__advice-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0.5rem;
}
.schedule__booth-main .schedule__booth-time,
.schedule__booth-main .schedule__consult-time,
.schedule__booth-main .schedule__advice-time, .schedule__consult-main .schedule__booth-time,
.schedule__consult-main .schedule__consult-time,
.schedule__consult-main .schedule__advice-time, .schedule__advice-main .schedule__booth-time,
.schedule__advice-main .schedule__consult-time,
.schedule__advice-main .schedule__advice-time {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
  color: #00a99d;
}
.schedule__booth-main .schedule__booth-title,
.schedule__booth-main .schedule__consult-title,
.schedule__booth-main .schedule__advice-title, .schedule__consult-main .schedule__booth-title,
.schedule__consult-main .schedule__consult-title,
.schedule__consult-main .schedule__advice-title, .schedule__advice-main .schedule__booth-title,
.schedule__advice-main .schedule__consult-title,
.schedule__advice-main .schedule__advice-title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}
.schedule__booth-main .schedule__booth-desc,
.schedule__booth-main .schedule__consult-desc,
.schedule__booth-main .schedule__advice-desc, .schedule__consult-main .schedule__booth-desc,
.schedule__consult-main .schedule__consult-desc,
.schedule__consult-main .schedule__advice-desc, .schedule__advice-main .schedule__booth-desc,
.schedule__advice-main .schedule__consult-desc,
.schedule__advice-main .schedule__advice-desc {
  font-size: 0.875rem;
  line-height: 1.4;
}
.schedule__booth-bg {
  background-color: #E8F0FF;
}
.schedule__consult-bg {
  background-color: #E8F0FF;
}
.schedule__advice-bg {
  background-color: #fde4d7;
}
.schedule__booth-continue, .schedule__consult-continue, .schedule__advice-continue {
  background-color: #e9ecef;
  border: none !important;
}
.schedule__close {
  background-color: #00a99d;
  color: #ffffff;
  font-weight: bold;
  font-size: 1rem;
}
.schedule__stage-empty, .schedule__empty {
  background-color: #ffffff;
}

.access {
  background-color: #f8f9fa;
}
.access .container {
  max-width: 1500px;
}
.access__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
@media (max-width: 767px) {
  .access__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.access__venue {
  background-color: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.access__venue-header {
  background-color: #e07127;
  color: #ffffff;
  padding: 1rem 1.5rem;
  text-align: center;
}
.access__venue-header--shibuya {
  background-color: #e07127;
}
.access__venue-header--tama {
  background-color: #006837;
}
.access__venue-title {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #343a40;
  margin: 0;
  font-size: 1.5rem;
  color: #ffffff;
  margin: 0;
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .access__venue-title {
    font-size: 1.25rem;
  }
}
.access__venue-content {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.access__info {
  background-color: #ffffff;
  padding: 1.5rem;
  margin-bottom: 0;
  min-height: 300px;
  flex: 1;
}
.access__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
  align-items: baseline;
}
.access__item:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .access__item {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}
.access__item .access__value-year {
  font-size: 1.5rem;
  font-weight: 700;
}
.access__item .access__value-day {
  font-size: 1.5rem;
  font-weight: 700;
}
.access__label {
  font-weight: 600;
  color: #6c757d;
  font-size: 1rem;
}
.access__value {
  color: #343a40;
  font-size: 1rem;
  letter-spacing: 1px;
  line-height: 1.625;
}
.access__map {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  background-color: #e9ecef;
  position: relative;
}
.access__map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}
.access__map-caption {
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  text-align: center;
  padding: 0.5rem;
  margin: 0;
  font-size: 0.875rem;
}

.program {
  padding: 0 0 0 0;
}
.program .container {
  width: 100;
}
.program__intro {
  background-color: #c6f4f3;
  color: #00a99d;
  padding: 4rem 0;
  text-align: center;
}
.program__intro .section__header {
  margin-bottom: 2rem;
}
.program__intro .section__header .section__title {
  color: #00a99d;
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.program__intro .section__header .section__title::after {
  background-color: #00a99d;
}
.program__intro .section__header .section__subtitle {
  color: #00a99d;
  font-size: 1.125rem;
  margin-bottom: 0;
  font-weight: bold;
}
.program__description {
  max-width: 800px;
  margin: 0 auto;
}
.program__description p {
  color: #00a99d;
  font-size: 1.125rem;
  line-height: 1.625;
  margin: 0;
}
.program__section {
  padding: 4rem 0;
}
@media (max-width: 767px) {
  .program__section {
    padding: 3rem 0;
  }
}
.program__section--seminar {
  background-color: #feb1d7;
}
.program__section--seminar .program__meta {
  background-color: rgba(252, 17, 147, 0.1);
  color: #fc1193;
  border: 1px solid rgba(252, 17, 147, 0.3);
}
.program__section--booth {
  background-color: #a5deec;
}
.program__section--booth .program__meta {
  background-color: rgba(30, 144, 255, 0.1);
  color: #1E90FF;
  border: 1px solid rgba(30, 144, 255, 0.3);
}
.program__section--consultation {
  background-color: #fde4d7;
}
.program__section--consultation .program__meta {
  background-color: rgba(250, 81, 51, 0.1);
  color: #fa5133;
  border: 1px solid rgba(250, 81, 51, 0.3);
}
.program__section-header {
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .program__section-header {
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .program__section-header {
    padding: 1rem 0 0 0;
    text-align: left;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .program__section-header {
    text-align: left;
    margin-bottom: 1.5rem;
  }
}
.program__meta {
  font-family: "Arial", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 0.25rem 1.5rem;
  padding: 0.25rem 0.5rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 9999px;
  display: inline-block;
}
@media (max-width: 767px) {
  .program__meta {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    margin: 1rem 0 0.25rem;
  }
}
@media (min-width: 1024px) {
  .program__meta {
    margin-bottom: 0.5rem;
  }
}
.program__section-title {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: #343a40;
  margin: 0;
  font-size: 1.875rem;
  font-weight: bold;
  font-size: 1.5rem;
  margin: 0;
  padding: 0 0 10px 30px;
  border-bottom: 1px dashed #343a40;
}
@media (max-width: 767px) {
  .program__section-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .program__section-title {
    font-size: 1.5rem;
    padding: 10px 0 15px 0;
  }
}
.program__section-title--seminar {
  color: #fc1193;
}
.program__section-title--booth {
  color: #1E90FF;
}
.program__section-title--consultation {
  color: #fa5133;
}
.program__section-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  background-color: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
}
@media (max-width: 767px) {
  .program__section-content {
    gap: 1.5rem;
    margin: 0 1rem;
    border-radius: none;
    padding-bottom: 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .program__section-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .program__section-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .program__section-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
.program__booth-info, .program__consultation-info {
  padding: 1.5rem 0;
}
@media (min-width: 1024px) {
  .program__booth-info, .program__consultation-info {
    order: 1;
  }
}
.program__text {
  padding: 1rem 0 0 1.5rem;
  font-size: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
}
@media (max-width: 767px) {
  .program__text {
    padding: 0.5rem 1rem 0 1rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .program__text {
    padding: 1rem 0 1rem 1.5rem;
  }
}
.program__text p {
  color: #343a40;
  font-size: 1.125rem;
  line-height: 1.625;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .program__text p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}
.program__text p:last-child {
  margin-bottom: 0;
}
.program__image {
  text-align: center;
  align-items: start;
}
@media (max-width: 767px) {
  .program__image {
    padding: 0 0.5rem;
  }
}
@media (min-width: 1024px) {
  .program__image {
    order: 2;
  }
}
.program__img {
  width: 100%;
  height: auto;
  border-radius: 0 0 0 0;
}
@media (max-width: 767px) {
  .program__img {
    max-height: auto;
    object-fit: cover;
    border-radius: 0 0 0.5rem 0.5rem;
  }
}

.footer {
  background-color: #343a40;
  color: #ffffff;
  padding: 2rem 0;
}
.footer__content {
  margin-bottom: 0;
}
.footer__contact {
  text-align: center;
}
@media (max-width: 767px) {
  .footer__contact {
    text-align: left;
  }
}
.footer__title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.footer__contact-info {
  line-height: 1.625;
}
.footer__organization {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.footer__address {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}
.footer__contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media (max-width: 767px) {
  .footer__contact-details {
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer__contact-details {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .footer__contact-details {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}
.footer__phone, .footer__hours, .footer__email {
  font-size: 1rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .footer__phone, .footer__hours, .footer__email {
    justify-content: flex-start;
  }
}
.footer__label {
  font-weight: bold;
  margin-right: 0.25rem;
  color: #ffffff;
}
.footer__phone-number, .footer__time, .footer__email-address {
  color: rgba(255, 255, 255, 0.9);
}
.footer__email-address {
  text-decoration: none;
}
.footer__email-address:hover {
  color: #ffffff;
  text-decoration: underline;
}

.contact__item {
  margin-bottom: 1rem;
}
.contact__item:last-child {
  margin-bottom: 0;
}
.contact__label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.8);
}
.contact__link {
  color: #ffffff;
  text-decoration: none;
}
.contact__link:hover {
  text-decoration: underline;
}
.contact__text {
  color: rgba(255, 255, 255, 0.8);
}

.social__links {
  display: flex;
  gap: 1rem;
}
.social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.social__link:hover {
  background-color: #00a99d;
  transform: translateY(-2px);
}
.social__icon {
  width: 20px;
  height: 20px;
}

.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease-in-out;
}
.scroll-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}