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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 62px;
  }
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #1f2a37;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}
body.menu-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .inner {
    padding: 0 5%;
  }
}

.section {
  padding: 130px 0;
}
@media (max-width: 767px) {
  .section {
    padding: 36px 0;
  }
}

.section-sm {
  padding: 40px 0;
}

.section-bg {
  background: #f6f9fb;
}

.section-head {
  margin-bottom: 40px;
}
.section-head.center {
  text-align: center;
}

.section-label {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #2fa37c;
}

.section-title {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.35;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 28px;
  }
}

.section-lead {
  margin-top: 50px;
  font-size: 22px;
  color: #000;
}
@media (max-width: 767px) {
  .section-lead {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .section-lead {
    text-align: left;
  }
  .section-lead br {
    display: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  transition: 0.25s;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, #2fa37c, #3cbf94);
  box-shadow: 0 8px 20px rgba(47, 163, 124, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(47, 163, 124, 0.4);
}
.btn-primary .arrow {
  font-size: 20px;
  line-height: 1;
}

.btn-outline {
  padding: 10px 24px;
  color: #2fa37c;
  border: 1px solid #2fa37c;
  font-size: 15px;
}
.btn-outline:hover {
  color: #fff;
  background: #2fa37c;
}

.more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  color: #2fa37c;
}
.more span {
  transition: transform 0.2s;
}
.more:hover span {
  transform: translateX(4px);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s;
}
.header.is-scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 92px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 767px) {
  .header-inner {
    height: 62px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo img {
  width: 130px;
}
@media (max-width: 767px) {
  .logo img {
    width: 100px;
  }
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: flex-end;
}
@media (max-width: 1024px) {
  .nav {
    position: fixed;
    inset: 62px 0 0 0;
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
    padding: 40px 24px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: 0.3s;
  }
  .menu-open .nav {
    opacity: 1;
    visibility: visible;
    transform: none;
    min-height: 100vh;
  }
}

.nav-list {
  display: flex;
  gap: 24px;
}
@media (max-width: 1024px) {
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

.nav-link {
  position: relative;
  padding: 4px 0;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  transition: color 0.2s;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #2fa37c;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.nav-link:hover, .nav-link.is-active {
  color: #2fa37c;
}
.nav-link:hover::after, .nav-link.is-active::after {
  transform: scaleX(1);
}
@media (max-width: 1024px) {
  .nav-link {
    font-size: 18px;
  }
}

.menu-btn {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
}
.menu-btn span {
  position: absolute;
  left: 8px;
  width: 24px;
  height: 2px;
  background: #1f2a37;
  border-radius: 2px;
  transition: 0.3s;
}
.menu-btn span:nth-child(1) {
  top: 12px;
}
.menu-btn span:nth-child(2) {
  top: 19px;
}
.menu-btn span:nth-child(3) {
  top: 26px;
}
.menu-open .menu-btn span:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}
.menu-open .menu-btn span:nth-child(2) {
  opacity: 0;
}
.menu-open .menu-btn span:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}
@media (max-width: 1024px) {
  .menu-btn {
    display: block;
  }
}

/*============================
#top
============================*/
.hero {
  background-image: url("/assets/2026/img/home/hero-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100vh;
  position: relative;
}
.hero .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.hero .inner .hero-text {
  max-width: 700px;
  width: 100%;
  z-index: 1;
}
.hero .hero-c {
  position: absolute;
}
.hero .hero-c.--01 {
  width: 100%;
  max-width: 10%;
  right: 30%;
  bottom: 5%;
}
@media (max-width: 767px) {
  .hero .hero-c.--01 {
    right: 13%;
    bottom: 24%;
    max-width: 30%;
  }
}
.hero .hero-c.--02 {
  width: 100%;
  max-width: 12%;
  right: 24%;
  top: 13%;
}
@media (max-width: 767px) {
  .hero .hero-c.--02 {
    max-width: 27%;
    top: 22.7%;
  }
}
.hero .hero-c.--03 {
  width: 100%;
  max-width: 5%;
  left: 5%;
  top: 5%;
}
@media (max-width: 767px) {
  .hero .hero-c.--03 {
    max-width: 15%;
  }
}
.hero .hero-c.--04 {
  width: 100%;
  max-width: 3%;
  right: 8%;
  bottom: 15%;
}
@media (max-width: 767px) {
  .hero .hero-c.--04 {
    max-width: 8%;
  }
}
.hero .hero-c.--05 {
  width: 100%;
  max-width: 12%;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .hero .hero-c.--05 {
    max-width: 32%;
  }
}
.hero .hero-c.--06 {
  width: 100%;
  max-width: 8%;
  right: 20%;
  top: 50%;
}
@media (max-width: 767px) {
  .hero .hero-c.--06 {
    max-width: 25%;
    right: 60%;
    top: 20%;
  }
}
.hero .hero-c.--free {
  width: 100%;
  max-width: 16%;
  right: 3%;
  top: 3%;
}
@media (max-width: 767px) {
  .hero .hero-c.--free {
    max-width: 36%;
  }
}

.card-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (max-width: 767px) {
  .card-list {
    gap: 16px;
  }
}

.card {
  display: flex;
  gap: 24px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e3e8ee;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.6s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .card {
    flex-direction: column;
  }
}

.card-image {
  flex-shrink: 0;
  width: 40%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .card-image {
    width: 100%;
  }
}

.card-body {
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 36px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .card-title {
    font-size: 28px;
  }
}

.card-text {
  flex: 1;
  margin: 8px 0 16px;
  font-size: 18px;
  color: #000;
}
@media (max-width: 767px) {
  .card-text {
    font-size: 16px;
  }
}
.card-text .attention {
  font-size: 0.8em;
  display: block;
  font-weight: 700;
  margin-top: 12px;
}

.card-label {
  background-color: #FF0000;
  color: #FFF;
  border-radius: 100px;
  padding: 4px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}

.event-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .event-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.event {
  padding: 20px 24px;
  background: #fff;
  border: 1px solid #e3e8ee;
  border-radius: 12px;
}

.event-title {
  font-size: 20px;
  font-weight: 700;
}

.event-text {
  margin-top: 8px;
  font-size: 16px;
  color: #000;
}

.timetable {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.timetable-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.timetable-foot {
  padding: 12px 24px 16px;
  text-align: right;
}

tt {
  --slots: 14;
  --label-w: 200px;
  min-width: 920px;
  padding: 16px 24px 8px;
}

.tt-row {
  display: grid;
  grid-template-columns: var(--label-w) repeat(var(--slots), minmax(40px, 1fr));
  align-items: center;
  min-height: 60px;
  border-top: 1px solid #e3e8ee;
}
.tt-row > * {
  grid-row: 1;
}
.tt-row.tt-head {
  min-height: 36px;
  border-top: none;
}

.tt-label {
  display: flex;
  align-items: center;
  gap: 10px;
  grid-column: 1;
  padding-right: 16px;
  font-size: 15px;
  font-weight: 700;
}
.tt-head .tt-label {
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.tt-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tt-time {
  position: relative;
  z-index: 2;
  white-space: nowrap;
  text-align: center;
  pointer-events: none;
}

.tt-time-end {
  position: absolute;
  top: 0;
  left: 200%;
  transform: translateX(-50%);
}

.tt-cell {
  height: 100%;
  min-height: 60px;
  border-left: 1px dashed transparent;
}
.tt-cell.is-hour {
  border-left-color: #e3e8ee;
}

.tt-bar {
  z-index: 1;
  margin: 0 3px;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 6px;
  cursor: default;
  transition: transform 0.2s, box-shadow 0.2s;
}
.tt-bar:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tt-bar-blue {
  color: #2b6a9c;
  background: #cfe9f7;
}

.tt-bar-green {
  color: #237a55;
  background: #d3f1e2;
}

.tt-bar-purple {
  color: #5a45a8;
  background: #e3dcf7;
}

.tt-bar-yellow {
  color: #8a6d12;
  background: #fbf0c8;
}

.sponsor-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 40px;
  margin: 0 auto;
  padding: 16px 32px;
}
.sponsor-list li {
  display: flex;
  align-items: center;
  width: 150px;
}
.sponsor-list img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.history-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 40px;
  margin: 0 auto;
  padding: 16px 32px;
}
@media (max-width: 767px) {
  .history-list {
    gap: 44px;
  }
}
.history-list li {
  display: flex;
  align-items: center;
  width: 220px;
}
.history-list img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.access {
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 12px;
  background: linear-gradient(90deg, #f0f9f5, #e6f5ef);
}
@media (max-width: 1024px) {
  .access {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .access {
    grid-template-columns: 1fr;
  }
}
.access iframe {
  width: 100%;
}

.access-info {
  margin-top: 24px;
}

.access-map,
.access-photo {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 1024px) {
  .access-photo {
    display: none;
  }
}

.access-name {
  font-size: 20px;
  font-weight: 700;
}

.access-address {
  margin-top: 4px;
  font-size: 15px;
  color: #000;
}

.access-route {
  margin-top: 12px;
}
.access-route li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}
.access-route li + li {
  margin-top: 6px;
}

.access-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 10px;
  color: #fff;
  background: #2fa37c;
  border-radius: 50%;
  flex-shrink: 0;
}

.faq-item {
  border: 1px solid #e3e8ee;
  border-radius: 8px;
  background: #fff;
}
.faq-item + .faq-item {
  margin-top: 8px;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover {
  color: #2fa37c;
}
.faq-question p {
  padding: 0 24px 18px;
  font-size: 16px;
  color: #000;
}

.faq-icon {
  position: relative;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(-45deg);
  transition: transform 0.3s;
}
.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p {
  padding: 0 20px 16px;
  font-size: 13px;
  color: #000;
}

.contact {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
}
@media (max-width: 767px) {
  .contact {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .contact {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #2fa37c;
  background: #e6f5ef;
  border-radius: 50%;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-text {
  flex: 1;
  font-size: 16px;
  color: #000;
}

.contact-btn {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  padding: 12px 40px;
}
@media (max-width: 767px) {
  .contact-btn {
    width: 100%;
  }
}

.footer {
  padding: 32px 0 24px;
  border-top: 1px solid #e3e8ee;
  background: #f6f9fb;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
@media (max-width: 1024px) {
  .footer-inner {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.footer-nav a {
  font-size: 14px;
  color: #000;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #2fa37c;
}

.footer-sns {
  display: flex;
  gap: 16px;
}
.footer-sns img {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-sns a:hover img {
  opacity: 1;
}

.copyright {
  margin-top: 24px;
  font-size: 13px;
  text-align: center;
  color: #000;
}

.photo-loop {
  --photo-loop-gap: 28px;
  position: relative;
  overflow: hidden;
  padding: 24px 0 72px;
  background: #fff;
}
@media (max-width: 768px) {
  .photo-loop {
    --photo-loop-gap: 16px;
    padding: 8px 0 48px;
  }
}

.photo-loop-row {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.photo-loop-row + .photo-loop-row {
  margin-top: 28px;
}
@media (max-width: 768px) {
  .photo-loop-row + .photo-loop-row {
    margin-top: 18px;
  }
}
.photo-loop-row-reverse .photo-loop-track {
  animation-duration: 92s;
  animation-direction: reverse;
}
@media (max-width: 768px) {
  .photo-loop-row-reverse .photo-loop-track {
    animation-duration: 48s;
  }
}

.photo-loop-track {
  display: flex;
  flex-shrink: 0;
  gap: var(--photo-loop-gap);
  width: max-content;
  animation: photoLoop 105s linear infinite;
}
@media (max-width: 768px) {
  .photo-loop-track {
    animation-duration: 42s;
  }
}

.photo-loop-item {
  flex: 0 0 auto;
  height: clamp(200px, 24vw, 340px);
  width: auto;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.photo-loop-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-loop-item--landscape {
  aspect-ratio: 4/3;
}
.photo-loop-item--portrait {
  aspect-ratio: 3/4;
}
.photo-loop-item--square {
  aspect-ratio: 1/1;
}
.photo-loop-item--auto {
  aspect-ratio: auto;
}
.photo-loop-item--auto img {
  width: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .photo-loop-item {
    height: 170px;
  }
}

@keyframes photoLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - var(--photo-loop-gap) / 2));
  }
}
@media (prefers-reduced-motion: reduce) {
  .photo-loop-track {
    animation: none;
  }
}

/*# sourceMappingURL=home.css.map */
