@charset "UTF-8";
:root {
  --ocean: #1A3A5C;
  --ocean-dark: #0F2640;
  --sky: #4A90D9;
  --sand: #F5C842;
  --coral: #E8724A;
  --seafoam: #5DB8A0;
  --purple: #AB47BC;
  --light: #F4F6F8;
  --mid: #B0BEC5;
  --dark: #37474F;
  --border: #CFD8DC;
  --white: #FFFFFF;
  --header-h: 60px;
  --bottom-nav-h: 56px;
  --transition: 0.2s ease;
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
  font-size: clamp(10px, 1.2vw, 16px);
}
@media (max-width: 639px) {
  html {
    font-size: clamp(12px, 3.5vw, 16px);
  }
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  color: #37474F;
  background: #FFFFFF;
  line-height: 1.8;
}
body.drawer-open {
  overflow: hidden;
}
@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 5vw;
}

.section {
  padding: 56px 0;
}
@media (min-width: 768px) {
  .section {
    padding: 72px 0;
  }
}
@media (min-width: 1200px) {
  .section {
    padding: 96px 0;
  }
}

.bg-light {
  background: #F4F6F8;
}

.bg-purple-light {
  background: #f3e5f5;
}

.bg-mfb {
  background-image: url("../../images/mfb-bg.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 118%;
  background-attachment: fixed;
}
@media (max-width: 639px) {
  .bg-mfb {
    background-attachment: scroll;
    background-size: 268%;
    background-position: center 0px;
  }
}

.section-news .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section-news .container .section-title {
  width: 15vw;
  margin-bottom: 3vw;
}
@media (max-width: 639px) {
  .section-news .container .section-title {
    width: 25vw;
  }
}
.section-news .container .section-title img {
  width: 100%;
  -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.section-label {
  font-size: 133.3333333333%;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #E7D4B8;
  margin-bottom: 6px;
  -webkit-filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2));
}
@media (max-width: 639px) {
  .section-label {
    font-size: 216.6666666667%;
  }
}

.section-sub {
  font-size: 108.3333333333%;
  color: #B0BEC5;
  margin-bottom: 32px;
}

.section-header-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 108.3333333333%;
  letter-spacing: 0.06em;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  border: 2px solid transparent;
}
.btn:focus-visible {
  outline: 2px solid #4A90D9;
  outline-offset: 2px;
}
.btn--ocean {
  background: #1A3A5C;
  color: #FFFFFF;
}
.btn--ocean:hover {
  background: #0F2640;
}
.btn--purple {
  background: #AB47BC;
  color: #FFFFFF;
}
.btn--purple:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}
.btn--outline {
  border-color: #B0BEC5;
  color: #37474F;
  background: transparent;
}
.btn--outline:hover {
  border-color: #1A3A5C;
  color: #1A3A5C;
}
.btn--full {
  width: 100%;
}

.placeholder-notice {
  padding: 32px;
  text-align: center;
  color: #B0BEC5;
  border: 2px dashed #CFD8DC;
  border-radius: 8px;
}

.link-more {
  font-size: 100%;
  font-weight: 700;
  color: #4A90D9;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.form-row {
  margin-bottom: 14px;
}
.form-row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 100%;
  font-weight: 700;
  color: #37474F;
  margin-bottom: 4px;
}

.form-required {
  display: inline-block;
  background: #E8724A;
  color: white;
  font-size: 75%;
  padding: 1px 5px;
  border-radius: 3px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 12px;
  background: #F4F6F8;
  border: 1px solid #CFD8DC;
  border-radius: 4px;
  font-size: 116.6666666667%;
  font-family: inherit;
  color: #37474F;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #4A90D9;
  background: white;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  font-size: 91.6666666667%;
  color: #B0BEC5;
  text-align: center;
  margin-top: 8px;
}

.site-header {
  position: fixed;
  background: rgba(242, 238, 233, 0.9);
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 60px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
  transition: box-shadow 0.2s ease, opacity 0.2s ease, visibility 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.site-header.scrolled {
  -webkit-box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}
.site-header.nav-ready {
  opacity: 1;
  visibility: visible;
}
body.single .site-header, body.page:not(.home) .site-header, body.archive .site-header {
  opacity: 1;
  visibility: visible;
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 0 20px;
  gap: 16px;
}
@media (min-width: 1200px) {
  .header-inner {
    padding: 0 40px;
  }
}

.logo-text {
  display: block;
}

.global-nav {
  display: none;
  margin-left: auto;
}
@media (min-width: 1024px) {
  .global-nav {
    display: block;
  }
}

@media (min-width: 1024px) {
  .nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 28px;
  }
  .nav-list a {
    color: #E8724A;
    font-size: 108.3333333333%;
    font-weight: 400;
    letter-spacing: 0.06em;
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
  }
  .nav-list a:hover {
    color: #F5C842;
  }
}

.header-cta {
  display: none;
  padding: 8px 20px;
  background: #F5C842;
  color: #1A3A5C;
  border-radius: 100px;
  font-weight: 700;
  font-size: 100%;
  letter-spacing: 0.06em;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.header-cta:hover {
  -webkit-filter: brightness(1.05);
          filter: brightness(1.05);
}
@media (min-width: 768px) {
  .header-cta {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  height: 2px;
  background: #E8724A;
  border-radius: 1px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.hamburger span:nth-child(2) {
  width: 75%;
}
.hamburger[aria-expanded=true] span:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded=true] span:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

.drawer {
  position: fixed;
  inset: 60px 0 0 0;
  background: rgba(242, 238, 233, 0.9);
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}
.drawer[aria-hidden=false] {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media (min-width: 1024px) {
  .drawer {
    display: none;
  }
}
.drawer .mobile_nav_title {
  margin-top: -30vw;
  font-size: 200%;
  color: #F5C842;
  -webkit-filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.9));
          filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.9));
  font-weight: 900;
  letter-spacing: 1vw;
}
.drawer .mobile_nav_list {
  font-size: 150%;
  color: #1A3A5C;
}

.sp_navi_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5vw;
  margin-top: 5vw;
}
.sp_navi_sns img {
  width: 7vw;
}

.sp_navi_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5vw;
  margin-top: 5vw;
}
.sp_navi_bottom p {
  width: 80vw;
}

.drawer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.drawer-list a {
  color: white;
  font-size: 183.3333333333%;
  font-family: "Barlow Condensed", "Helvetica Neue", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.drawer-cta {
  padding: 14px 40px;
  background: #F5C842;
  color: #1A3A5C;
  border-radius: 100px;
  font-weight: 700;
  font-size: 125%;
}

.hero {
  position: relative;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .hero {
    max-height: 900px;
  }
}

.hero-slides-wrap {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  -webkit-transition: opacity 1.2s ease;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.08)), to(rgba(0, 0, 0, 0.6)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.6) 100%);
}
.hero-slide::before {
  content: attr(data-scene);
  position: absolute;
  bottom: 56px;
  left: 24px;
  font-size: 75%;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  z-index: 1;
}
@media (min-width: 768px) {
  .hero-slide::before {
    bottom: 68px;
    left: 40px;
    font-size: 83.3333333333%;
  }
}
.hero-slide[data-fallback="1"] {
  background: linear-gradient(160deg, #0d2b47, #1b4a8a 40%, #0f3a5a);
}
.hero-slide[data-fallback="2"] {
  background: linear-gradient(160deg, #1a4a6a, #2196f3 50%, #0277bd);
}
.hero-slide[data-fallback="3"] {
  background: linear-gradient(160deg, #1b5e20, #388e3c 40%, #004d40);
}
.hero-slide[data-fallback="4"] {
  background: linear-gradient(160deg, #bf360c, #e64a19 40%, #880e4f);
}
.hero-slide[data-fallback="5"] {
  background: linear-gradient(160deg, #1a237e, #283593 40%, #0d1b5a);
}

.hero-arrow {
  display: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  z-index: 10;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
  color: white;
}
.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.32);
}
.hero-arrow svg {
  width: 20px;
  height: 20px;
}
.hero-arrow--prev {
  left: 24px;
}
.hero-arrow--next {
  right: 24px;
}
@media (min-width: 768px) {
  .hero-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  z-index: 10;
}
@media (min-width: 768px) {
  .hero-dots {
    bottom: 24px;
  }
}

.hero-dot {
  width: 20px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  -webkit-transition: background 0.3s, width 0.3s;
  transition: background 0.3s, width 0.3s;
}
.hero-dot.active {
  background: #F5C842;
  width: 36px;
}
@media (min-width: 768px) {
  .hero-dot {
    width: 28px;
    height: 4px;
  }
  .hero-dot.active {
    width: 48px;
  }
}

.hero-content {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  padding: 0 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-content {
    gap: 20px;
  }
}

.hero-eyebrow {
  font-size: 75%;
  letter-spacing: 0.2em;
  color: #F5C842;
  font-weight: 700;
}
@media (min-width: 768px) {
  .hero-eyebrow {
    font-size: 83.3333333333%;
  }
}

.hero-copy-ja {
  font-size: 108.3333333333%;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  margin-bottom: 6px;
}
@media (max-width: 639px) {
  .hero-copy-ja {
    font-size: 191.6666666667%;
  }
}

.hero-copy-en {
  font-family: "Barlow Condensed", "Helvetica Neue", sans-serif;
  font-size: 300%;
  font-weight: 900;
  color: white;
  letter-spacing: -0.01em;
  line-height: 1;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .hero-copy-en {
    font-size: 466.6666666667%;
  }
}
@media (min-width: 1200px) {
  .hero-copy-en {
    font-size: 600%;
  }
}

.hero-badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.badge {
  padding: 5px 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  color: white;
  font-size: 91.6666666667%;
  font-weight: 700;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
}
.badge--primary {
  background: #F5C842;
  border-color: #F5C842;
  color: #1A3A5C;
}
@media (min-width: 768px) {
  .badge {
    padding: 6px 18px;
    font-size: 100%;
  }
}

.hero-cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 180px;
  height: 44px;
  background: #4A90D9;
  border-radius: 100px;
  color: white;
  font-weight: 700;
  font-size: 108.3333333333%;
  letter-spacing: 0.1em;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.hero-cta:hover {
  background: #3a7cc7;
}
@media (min-width: 768px) {
  .hero-cta {
    width: 220px;
    height: 48px;
  }
}

.hero-scroll {
  color: rgb(255, 255, 255);
  font-size: 180%;
  letter-spacing: 0.1em;
  -webkit-animation: bounce 2s ease infinite;
          animation: bounce 2s ease infinite;
  position: absolute;
  top: 50%;
  left: -4vw;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
  rotate: 90deg;
  -webkit-filter: drop-shadow(0 1mm 1mm rgba(0, 0, 0, 0.5));
          filter: drop-shadow(0 1mm 1mm rgba(0, 0, 0, 0.5));
}
@media (max-width: 639px) {
  .hero-scroll {
    left: -18vw;
    font-size: 130%;
  }
}

@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(6px);
            transform: translateX(6px);
  }
}

@keyframes bounce {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(6px);
            transform: translateX(6px);
  }
}
.section-today-events {
  padding: 24px 20px;
}
@media (min-width: 768px) {
  .section-today-events {
    padding: 28px 40px;
  }
}
@media (min-width: 1200px) {
  .section-today-events {
    padding: 32px 80px;
  }
}

.today-events-inner {
  margin: 0 auto;
}

.today-events-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 16px;
  border-bottom: 1px solid #CFD8DC;
  padding-bottom: 3px;
}

.today-events-label {
  font-size: 116.6666666667%;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #1A3A5C;
  opacity: 0.7;
}

.today-events-title {
  width: 15vw;
}
@media (max-width: 639px) {
  .today-events-title {
    width: 35vw;
  }
}

.today-events-date {
  font-size: 125%;
  color: #E8724A;
  opacity: 1;
  white-space: nowrap;
}

.today-events-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media (max-width: 639px) {
  .today-events-list {
    gap: 10vw;
  }
}
.today-events-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  gap: 3vw;
}
@media (max-width: 639px) {
  .today-events-list li {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.today-events-list li .today-event-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2vw;
  width: 90%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 639px) {
  .today-events-list li .today-event-body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.today-events-list li .today-event-body .today-event-name {
  width: auto;
  color: #3a7cc7;
}
.today-events-list li .today-event-body .today-event-place {
  width: 15%;
}
@media (max-width: 639px) {
  .today-events-list li .today-event-body .today-event-place {
    width: 40%;
  }
}
.today-events-list li .today-event-body .today-event-detail {
  width: 55%;
  color: black;
  font-size: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}
@media (max-width: 639px) {
  .today-events-list li .today-event-body .today-event-detail {
    width: 100%;
  }
}

.today-event-card {
  border-left-style: none;
}

.today-event-time {
  font-size: 91.6666666667%;
  font-weight: 700;
  color: #4A90D9;
  white-space: nowrap;
  min-width: 40px;
}

.today-event-name {
  display: block;
  font-weight: 700;
  font-size: 108.3333333333%;
  color: #37474F;
}

.today-event-place {
  font-size: 91.6666666667%;
  color: #B0BEC5;
}

.today-event-detail {
  font-size: 91.6666666667%;
  color: #B0BEC5;
  margin-top: 4px;
  line-height: 1.6;
}

.today-event-more {
  font-size: 91.6666666667%;
  font-weight: 700;
  color: #4A90D9;
  margin-top: 4px;
  display: inline-block;
}

.today-events-empty {
  font-size: 108.3333333333%;
  color: #1A3A5C;
  opacity: 0.6;
}

.today-events-more {
  margin-top: 14px;
  text-align: right;
  font-size: 100%;
  font-weight: 700;
  color: #1A3A5C;
}

.today-event-cat {
  display: none;
}

.section-about {
  padding: 24px 5vw;
}
.section-about h2 {
  text-align: center;
  color: #E8724A;
  font-size: 233.3333333333%;
  font-weight: 900;
  letter-spacing: 0.2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 2vw 0;
  gap: 12px;
}
@media (max-width: 639px) {
  .section-about h2 {
    font-size: 166.6666666667%;
  }
}
.section-about h2::before, .section-about h2::after {
  content: "";
  display: inline-block;
  background-image: url("../../images/h2_left_ashirai.svg");
  width: 2vw;
  height: 6vw;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 639px) {
  .section-about h2::before, .section-about h2::after {
    width: 6vw;
    height: 20vw;
  }
}
.section-about h2::after {
  background-image: url("../../images/h2_right_ashirai.svg");
}
.section-about p {
  color: #1A3A5C;
  font-size: 116.6666666667%;
  line-height: 1.8;
  margin-top: 16px;
  font-weight: 500;
}

.area-map-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media (min-width: 1024px) {
  .area-map-grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}

.area-map-visual {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #CFD8DC;
}
.area-map-visual img {
  width: 100%;
  height: auto;
}

.area-map-placeholder {
  position: relative;
  height: 400px;
  background: #a5d6a7;
  overflow: hidden;
}
@media (min-width: 768px) {
  .area-map-placeholder {
    height: 480px;
  }
}

.area-map-ph-ocean {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 42%;
  background: #80deea;
}

.area-map-ph-beach {
  position: absolute;
  top: 38%;
  left: 0;
  right: 0;
  height: 10%;
  background: #fff9c4;
}

.area-map-ph-land {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 52%;
  background: #a5d6a7;
}

.area-map-ph-label {
  position: absolute;
  font-size: 91.6666666667%;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.area-map-ph-label--ocean {
  top: 18%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: rgba(0, 100, 150, 0.6);
}
.area-map-ph-label--beach {
  top: 39%;
  left: 8%;
  color: rgba(100, 80, 0, 0.5);
}

.area-map-ph-pin {
  position: absolute;
  background: white;
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 83.3333333333%;
  font-weight: 700;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}
.area-map-ph-pin--entrance {
  top: 52%;
  left: 18%;
}
.area-map-ph-pin--beach {
  top: 44%;
  left: 44%;
}
.area-map-ph-pin--stage {
  top: 48%;
  left: 62%;
}
.area-map-ph-pin--food {
  top: 60%;
  left: 52%;
}
.area-map-ph-pin--tent {
  top: 56%;
  left: 30%;
  color: #6a1b9a;
}

@media (min-width: 1024px) {
  .area-map-legend {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 320px;
            flex: 0 0 320px;
  }
}

.area-map-legend-title {
  font-size: 133.3333333333%;
  font-weight: 700;
  color: #1A3A5C;
  margin-bottom: 14px;
}

.area-map-legend-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.legend-item {
  font-size: 108.3333333333%;
  padding-left: 20px;
  position: relative;
}
.legend-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.legend-item--entrance::before {
  background: #E8724A;
}
.legend-item--beach::before {
  background: #4A90D9;
}
.legend-item--stage::before {
  background: #F5C842;
  border: 1px solid #1A3A5C;
}
.legend-item--food::before {
  background: #5DB8A0;
}
.legend-item--tent::before {
  background: #AB47BC;
}

.reservation-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .reservation-grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 48px;
  }
}
@media (min-width: 1024px) {
  .reservation-grid .reservation-info,
  .reservation-grid .reservation-form-wrap {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.tent-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.tent-price-card {
  background: white;
  border-radius: 8px;
  padding: 14px 16px;
  border-top: 3px solid #AB47BC;
}

.tent-price-plan {
  font-size: 91.6666666667%;
  font-weight: 700;
  color: #AB47BC;
  margin-bottom: 4px;
}

.tent-price-amount {
  font-size: 183.3333333333%;
  font-weight: 900;
  color: #1A3A5C;
}
.tent-price-amount span {
  font-size: 54.5454545455%;
  color: #B0BEC5;
}

.tent-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.tent-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: white;
  border-radius: 8px;
  padding: 12px 14px;
}
.tent-feature-icon {
  font-size: 166.6666666667%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.tent-feature strong {
  display: block;
  font-size: 108.3333333333%;
  color: #1A3A5C;
  margin-bottom: 2px;
}
.tent-feature p {
  font-size: 100%;
  color: #B0BEC5;
}

.reservation-form-wrap {
  background: white;
  border-radius: 16px;
  padding: 24px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .reservation-form-wrap {
    padding: 32px;
  }
}

.reservation-form-title {
  font-size: 150%;
  font-weight: 700;
  color: #1A3A5C;
  margin-bottom: 20px;
}

.reports-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 24px;
  scrollbar-width: none;
}
.reports-filter::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 91.6666666667%;
  font-weight: 700;
  border: 1px solid #CFD8DC;
  color: #B0BEC5;
  background: transparent;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  white-space: nowrap;
}
.filter-chip.active, .filter-chip:hover {
  background: #1A3A5C;
  color: white;
  border-color: #1A3A5C;
}

.reports-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .reports-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .reports-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.report-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #CFD8DC;
}
.report-card:hover .report-thumb img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.report-card-link {
  display: block;
}

.report-thumb {
  position: relative;
  overflow: hidden;
}
.report-thumb img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.report-cat-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 8px;
  border-radius: 100px;
  font-size: 75%;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  letter-spacing: 0.06em;
}

.report-body {
  padding: 14px 16px 16px;
}

.report-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.report-date {
  font-size: 91.6666666667%;
  color: #B0BEC5;
}

.report-tag {
  padding: 2px 7px;
  border-radius: 100px;
  font-size: 75%;
  font-weight: 700;
  background: #F4F6F8;
  color: #37474F;
}

.report-title {
  font-size: 116.6666666667%;
  font-weight: 700;
  color: #1A3A5C;
  line-height: 1.4;
  margin-bottom: 6px;
}

.report-excerpt {
  font-size: 100%;
  color: #B0BEC5;
  line-height: 1.6;
}

.gallery-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 20px 8px;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .gallery-track {
    padding: 0 40px 8px;
    gap: 12px;
  }
}
@media (min-width: 1200px) {
  .gallery-track {
    padding: 0 80px 8px;
  }
}

.gallery-item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 240px;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  scroll-snap-align: start;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-item--placeholder {
  background: #CFD8DC;
}
@media (min-width: 768px) {
  .gallery-item {
    width: 300px;
    height: 220px;
  }
}

.news-list {
  overflow: hidden;
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2vw;
}
@media (max-width: 639px) {
  .news-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.news-item {
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  width: 33%;
}
@media (max-width: 639px) {
  .news-item {
    width: 100%;
  }
}
.news-item:last-child .news-item-link {
  border-bottom: none;
}

.news-item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: white;
  border-bottom: 1px solid #CFD8DC;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
  border-radius: 8px;
}
.news-item-link:hover {
  background: #F4F6F8;
}

.news-date {
  font-size: 100%;
  color: #B0BEC5;
  white-space: nowrap;
  min-width: 76px;
}
@media (max-width: 639px) {
  .news-date {
    min-width: auto;
  }
}

.news-title {
  font-size: 108.3333333333%;
  color: #37474F;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1.5;
  font-weight: 800;
}

.news-arrow {
  width: 16px;
  height: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #B0BEC5;
}

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

.news-cat {
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 83.3333333333%;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 639px) {
  .news-cat {
    border-radius: 1vw;
    line-height: 1;
    height: 4vw;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
.news-cat.cat-info {
  background: #e3f2fd;
  color: #1565c0;
}
.news-cat.cat-event {
  background: #fce4ec;
  color: #ad1457;
}
.news-cat.cat-facility {
  background: #e8f5e9;
  color: #2e7d32;
}
.news-cat.cat-stage {
  background: #fff9c4;
  color: #f57f17;
}

.facility-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2vw;
  margin-bottom: 24px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .facility-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 639px) {
  .facility-grid {
    gap: 6vw;
  }
}

.facility-card {
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid #1A3A5C;
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30%;
  padding: 20px 0;
}
@media (max-width: 639px) {
  .facility-card {
    width: 100%;
  }
}
.facility-card:hover {
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.facility-card:hover .facility-thumb img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.facility-card:nth-child(3) .facility-name {
  font-size: 137.5%;
  margin-top: -2vw;
}
.facility-card:nth-child(3) .facility-subtitle {
  font-size: 116.6666666667%;
}
@media (max-width: 639px) {
  .facility-card:nth-child(3) .facility-subtitle {
    margin-top: 6vw;
  }
}

.sp_br {
  display: none;
}
@media (max-width: 639px) {
  .sp_br {
    display: block;
  }
}

.pc_br {
  display: block;
}
@media (max-width: 639px) {
  .pc_br {
    display: none;
  }
}

.facility-card-link {
  display: block;
  color: inherit;
  text-align: center;
}

.facility-title-icon {
  display: inline-block;
  width: 7vw;
  height: auto;
  margin-top: 1vw;
  text-align: center;
}
@media (max-width: 639px) {
  .facility-title-icon {
    width: 17vw;
  }
}
.facility-title-icon svg {
  width: 100%;
  height: auto;
  display: block;
}

.facility-thumb {
  overflow: hidden;
  margin-bottom: 1vw;
}
@media (max-width: 639px) {
  .facility-thumb {
    margin-bottom: 5vw;
    margin-top: 5vw;
  }
}
.facility-thumb img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.facility-thumb-placeholder {
  height: 160px;
  background: #F4F6F8;
}
@media (min-width: 768px) {
  .facility-thumb-placeholder {
    height: 200px;
  }
}

.facility-body {
  padding: 12px 14px 16px;
}
.facility-body p {
  text-align: justify;
}
.facility-body .facility-subtitle {
  font-family: "Dancing Script", cursive;
  font-size: 133.3333333333%;
  font-weight: 400;
  color: #B0BEC5;
  margin-bottom: 6px;
  line-height: 1;
  rotate: -6deg;
  margin-bottom: 1.5vw;
  text-align: center;
}
.facility-body a {
  display: block;
  text-align: center;
  color: #4A90D9;
  font-weight: 700;
  margin-top: 1vw;
}

.facility-name {
  font-size: 175%;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #1A3A5C;
  margin-bottom: 1vw;
  line-height: 1.2;
  margin-top: -1vw;
  text-align: center;
}

.mfb_map {
  margin-top: 4vw;
  width: 100%;
  height: auto;
}

.mfb_map_text {
  text-align: center;
  font-size: 112.5%;
  color: #1A3A5C;
  margin-top: 8px;
}
@media (max-width: 639px) {
  .mfb_map_text {
    font-size: 95.8333333333%;
  }
}

.access-contact-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
@media (min-width: 1024px) {
  .access-contact-grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 64px;
  }
}
@media (min-width: 1024px) {
  .access-contact-grid .access-block,
  .access-contact-grid .contact-block {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.access-map {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
}

.access-info {
  font-size: 108.3333333333%;
  line-height: 2;
}
.access-info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.access-info strong {
  color: #1A3A5C;
  min-width: 56px;
}

.contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.section-events {
  margin-top: 10vw;
}
.section-events h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  color: #e57d6b;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 3vw;
}
.section-events h2 span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.section-events h2 img {
  width: 15vw;
  margin: 0 2vw;
}
@media (max-width: 639px) {
  .section-events h2 img {
    width: 30vw;
  }
}
.section-events h2::before, .section-events h2::after {
  content: "";
  display: inline-block;
  background-image: url("../../images/event_title_ashirai_left.svg");
  width: 2.5vw;
  height: 7vw;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 639px) {
  .section-events h2::before, .section-events h2::after {
    width: 5vw;
    height: 14vw;
  }
}
.section-events h2::after {
  background-image: url("../../images/event_title_ashirai_right.svg");
}
.section-events h3 {
  text-align: center;
  margin-top: 3vw;
  font-size: 166.6666666667%;
  color: #e57d6b;
}
.section-events .swiper-slide {
  border: 3px solid #1A3A5C;
  border-radius: 8px;
  padding: 1vw;
  min-height: 420px;
}
@media (max-width: 639px) {
  .section-events .swiper-slide {
    min-height: auto;
    padding: 5vw;
  }
}

.eventlist_btn {
  margin-top: 3vw;
}
@media (max-width: 639px) {
  .eventlist_btn {
    margin-top: 5vw;
  }
}

.mfb-ec-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 266.6666666667% !important;
  color: #1A3A5C !important;
  line-height: 1;
}

.event_dayofweek {
  font-size: 41.6666666667% !important;
}

.mfb-ec-time {
  font-size: 33.3333333333% !important;
}

.mfb-ec-title {
  font-size: 116.6666666667% !important;
  color: #37474F !important;
  margin-top: 1vw !important;
}

.eventcalendar_title {
  font-size: 166.6666666667%;
  color: #E8724A;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2vw;
}

.events-calendar {
  margin: 0 5vw;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}

.dummy-cal {
  margin-top: 8px;
}

.dummy-cal-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.dummy-cal-nav {
  width: 28px;
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #F4F6F8;
  border: 1px solid #CFD8DC;
  border-radius: 50%;
  cursor: pointer;
  font-size: 150%;
  color: #B0BEC5;
}

.dummy-cal-month {
  font-size: 150%;
  font-weight: 700;
  color: #1A3A5C;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.dummy-cal-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}

.dummy-cal-tab {
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 91.6666666667%;
  font-weight: 700;
  background: #F4F6F8;
  color: #B0BEC5;
  cursor: pointer;
}
.dummy-cal-tab--active {
  background: #1A3A5C;
  color: white;
}

.dummy-cal-grid {
  border: 1px solid #CFD8DC;
  border-radius: 8px;
  overflow: hidden;
}

.dummy-cal-head {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.dummy-cal-head-cell {
  padding: 8px;
  text-align: center;
  font-size: 91.6666666667%;
  font-weight: 700;
  color: #B0BEC5;
  background: #F4F6F8;
  border-bottom: 1px solid #CFD8DC;
}
.dummy-cal-head-cell.is-sun {
  color: #e57373;
}
.dummy-cal-head-cell.is-sat {
  color: #4A90D9;
}

.dummy-cal-body {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.dummy-cal-cell {
  min-height: 80px;
  padding: 6px;
  border-right: 1px solid #CFD8DC;
  border-bottom: 1px solid #CFD8DC;
  overflow: hidden;
}
.dummy-cal-cell:nth-child(7n) {
  border-right: none;
}
.dummy-cal-cell--empty {
  background: #F4F6F8;
}
.dummy-cal-cell.is-sun .dummy-cal-date {
  color: #e57373;
}
.dummy-cal-cell.is-sat .dummy-cal-date {
  color: #4A90D9;
}
@media (min-width: 768px) {
  .dummy-cal-cell {
    min-height: 90px;
  }
}

.dummy-cal-date {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 91.6666666667%;
  font-weight: 700;
  color: #37474F;
  margin-bottom: 4px;
  line-height: 1;
}
.dummy-cal-date.is-today {
  background: #1A3A5C;
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.dummy-cal-event {
  display: block;
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 75%;
  font-weight: 600;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dummy-cal-event--info {
  background: #e3f2fd;
  color: #1565c0;
}
.dummy-cal-event--stage {
  background: #fce4ec;
  color: #ad1457;
}
.dummy-cal-event--sport {
  background: #e8f5e9;
  color: #2e7d32;
}
.dummy-cal-event--tent {
  background: #f3e5f5;
  color: #6a1b9a;
}
.dummy-cal-event--night {
  background: #e8eaf6;
  color: #283593;
}

.dummy-cal-legend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 14px;
}

.dummy-cal-legend-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 91.6666666667%;
  color: #37474F;
}

.dummy-cal-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.section-instagram h2 {
  margin-bottom: 2vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section-instagram h2 img {
  width: 25vw;
}
@media (max-width: 639px) {
  .section-instagram h2 img {
    width: 50vw;
  }
}
.section-instagram iframe {
  padding: 0 5vw;
  width: 100%;
  height: 45vw;
}
@media (max-width: 639px) {
  .section-instagram iframe {
    margin-top: 5vw;
    height: 50vw;
  }
}
.section-instagram .instagram-cta a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2vw;
  gap: 3vw;
}
.section-instagram .instagram-cta a .mfb_icon {
  width: 10vw;
}
.section-instagram .instagram-cta a .access-block-qr {
  width: 10vw;
}
.section-instagram .instagram-cta a .instagram-cta-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
}
.section-instagram .instagram-cta a .instagram-cta-text p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-size: 150%;
  color: #1A3A5C;
}
.section-instagram .instagram-cta a .instagram-cta-text p img {
  width: 15vw;
}

.section-contact .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3vw;
}
@media (max-width: 639px) {
  .section-contact .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.section-contact .container .contact_box {
  width: 50%;
}
@media (max-width: 639px) {
  .section-contact .container .contact_box {
    width: 100%;
  }
}
.section-contact .container .contact_box a {
  color: #E8724A;
}
.section-contact .container h2 {
  color: #1A3A5C;
  font-size: 150%;
  font-weight: 900;
  letter-spacing: 0.1vw;
}
@media (max-width: 639px) {
  .section-contact .container h2 {
    font-size: 125%;
  }
}
.section-contact .container h2 img {
  height: 5vw;
  margin: 2vw;
}
@media (max-width: 639px) {
  .section-contact .container h2 img {
    height: 10vw;
  }
}
.section-contact .container .contact_form h4 {
  color: #1A3A5C;
  font-size: 133.3333333333%;
  font-weight: 400;
  margin-top: 2vw;
  display: inline-block;
}
.section-contact .container .contact_form input {
  width: 100%;
  height: 3vw;
  margin-top: 1vw;
  padding: 0 1vw;
}
@media (max-width: 639px) {
  .section-contact .container .contact_form input {
    height: 10vw;
  }
}
.section-contact .container .contact_form .must {
  display: inline-block;
  background-color: #E8724A;
  padding: 0.1vw 0 0.1vw 1vw;
  color: white;
  font-size: 100%;
  font-weight: 400;
  letter-spacing: 1vw;
  border-radius: 0.2vw;
  margin-left: 1vw;
}
.section-contact .container .contact_form textarea {
  width: 100%;
  height: 10vw;
  margin-top: 1vw;
  padding: 1vw;
}
@media (max-width: 639px) {
  .section-contact .container .contact_form textarea {
    height: 30vw;
  }
}
.section-contact .container input[type=submit] {
  text-align: center;
  margin: 2vw 5% 0 5%;
  width: 90%;
  height: 3.5vw;
  background-color: #1A3A5C;
  color: white;
  font-size: 116.6666666667%;
  font-weight: 700;
  letter-spacing: 3vw;
  border-radius: 1vw;
}
@media (max-width: 639px) {
  .section-contact .container input[type=submit] {
    height: 10vw;
  }
}
.section-contact .container .contact_caution {
  color: #1A3A5C;
}
.section-contact .with-fun-modal-dialog h3 {
  text-align: center;
  font-size: 166.6666666667%;
  margin-bottom: 3vw;
}
.section-contact .with-fun-modal-dialog .modal_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3vw;
  font-size: 83.3333333333%;
}
.section-contact .with-fun-modal-dialog .modal_box div {
  width: 50%;
}

.section-access {
  padding: 0 !important;
}
.section-access .container h2 {
  color: #1A3A5C;
  font-size: 150%;
  font-weight: 900;
  letter-spacing: 0.1vw;
}
.section-access .container h2 img {
  height: 5vw;
  margin: 2vw;
}
@media (max-width: 639px) {
  .section-access .container h2 img {
    height: 10vw;
  }
}
.section-access .container .access-map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2vw;
}
@media (max-width: 639px) {
  .section-access .container .access-map {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.section-access .container .access-map iframe {
  width: 50%;
}
@media (max-width: 639px) {
  .section-access .container .access-map iframe {
    width: 100%;
  }
}
.section-access .container .access-map table {
  width: 50%;
}
@media (max-width: 639px) {
  .section-access .container .access-map table {
    width: 100%;
    font-size: 95%;
  }
}
.section-access .container .access-map table td {
  vertical-align: top;
}
.section-access .container .access-map table td:nth-child(1) {
  width: 5vw;
}
@media (max-width: 639px) {
  .section-access .container .access-map table td:nth-child(1) {
    width: 10vw;
  }
}

.onlineshop-banner {
  padding: 0 5vw;
  -webkit-filter: drop-shadow(0px 5px 3px rgba(0, 0, 0, 0.5));
          filter: drop-shadow(0px 5px 3px rgba(0, 0, 0, 0.5));
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.onlineshop-banner:hover {
  -webkit-filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
          filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
}

.with-fun-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.with-fun-modal.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.with-fun-modal-dialog {
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 32px 28px 28px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.with-fun-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: #B0BEC5;
}
.with-fun-modal-close:hover {
  color: #37474F;
}

.with-fun-modal-body {
  margin-top: 16px;
  font-size: 108.3333333333%;
  line-height: 1.8;
  color: #37474F;
}
.with-fun-modal-body p {
  margin-bottom: 12px;
}

body.modal-open {
  overflow: hidden;
}

.footer_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 639px) {
  .footer_left {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5vw;
  }
  .footer_left img {
    width: 30vw;
  }
}
.footer_left .footer_left_bottom {
  margin-top: 3vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2vw;
}
@media (max-width: 639px) {
  .footer_left .footer_left_bottom {
    gap: 10vw;
  }
}
.footer_left .footer_left_bottom a {
  width: 30%;
}
@media (max-width: 639px) {
  .footer_left .footer_left_bottom a {
    width: 10%;
  }
}

.footer_center p {
  font-size: 91.6666666667%;
  margin-bottom: 1vw;
  font-weight: 400;
}
@media (max-width: 639px) {
  .footer_center p {
    margin-top: 5vw;
    margin-bottom: 3vw;
    font-size: 75%;
    line-height: 2;
  }
}
.footer_center img {
  width: 40%;
  margin-bottom: 2vw;
}
@media (max-width: 639px) {
  .footer_center img {
    width: 100%;
  }
}

.footer_right {
  text-align: right;
  width: 30%;
  color: white;
  font-size: 83.3333333333%;
  line-height: 1.6;
}
@media (max-width: 639px) {
  .footer_right {
    display: none;
  }
}

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

.single-wrap {
  padding-bottom: 80px;
}

.single-thumb {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
}
.single-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.single-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin: 32px 0 12px;
}

.single-date {
  font-size: 100%;
  color: #B0BEC5;
}

.single-cat {
  font-size: 91.6666666667%;
  font-weight: 700;
  color: #1A3A5C;
  background: rgba(26, 58, 92, 0.08);
  padding: 2px 10px;
  border-radius: 100px;
}

.single-title {
  font-size: 200%;
  font-weight: 900;
  color: #1A3A5C;
  line-height: 1.4;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #CFD8DC;
}
@media (max-width: 639px) {
  .single-title {
    font-size: 150%;
  }
}

.single-content {
  font-size: 116.6666666667%;
  line-height: 1.9;
  color: #37474F;
}
.single-content h2 {
  font-size: 166.6666666667%;
  font-weight: 700;
  color: #1A3A5C;
  margin: 32px 0 12px;
}
.single-content h3 {
  font-size: 133.3333333333%;
  font-weight: 700;
  color: #1A3A5C;
  margin: 24px 0 10px;
}
.single-content p {
  margin-bottom: 16px;
}
.single-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 16px 0;
}
.single-content a {
  color: #4A90D9;
  text-decoration: underline;
}

.single-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  margin: 48px 0 24px;
  padding-top: 24px;
  border-top: 1px solid #CFD8DC;
  font-size: 108.3333333333%;
}
.single-nav a {
  color: #1A3A5C;
  font-weight: 700;
}

.single-back {
  text-align: center;
  margin-top: 16px;
}

.page-wrap {
  padding-bottom: 80px;
}

.page-title {
  font-size: 216.6666666667%;
  font-weight: 900;
  color: #1A3A5C;
  line-height: 1.4;
  margin: 32px 0 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #CFD8DC;
}

.page-fullwidth-article {
  margin-top: 80px;
}
.page-fullwidth-article .single-thumb {
  width: 100%;
  max-height: 60vh;
  overflow: hidden;
}
.page-fullwidth-article .single-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page-fullwidth-article .page-fullwidth-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 24px 100px;
}
@media (min-width: 640px) {
  .page-fullwidth-article .page-fullwidth-inner {
    padding: 60px 40px 120px;
  }
}
.page-fullwidth-article .page-title {
  font-size: 216.6666666667%;
  font-weight: 900;
  color: #1A3A5C;
  line-height: 1.4;
  margin: 32px 0 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #CFD8DC;
}

.section-events-archive {
  padding: 40px 20px 80px;
}
@media (min-width: 768px) {
  .section-events-archive {
    padding: 48px 40px 80px;
  }
}
@media (min-width: 1200px) {
  .section-events-archive {
    padding: 56px 80px 80px;
  }
}

.events-archive-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .events-archive-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .events-archive-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.events-archive-list > li {
  width: 100%;
  height: 100%;
}
@media (max-width: 639px) {
  .events-archive-list > li {
    width: 80vw;
  }
}

.events-archive-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #CFD8DC;
  -webkit-transition: -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  transition: box-shadow 0.2s ease, transform 0.2s ease, -webkit-box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  height: 100%;
}
.events-archive-card:hover {
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.events-archive-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #F4F6F8;
}
.events-archive-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.events-archive-card:hover .events-archive-thumb img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.events-archive-thumb-empty {
  width: 100%;
  height: 100%;
  background: #CFD8DC;
}

.events-archive-thumb-noimage {
  -o-object-fit: contain;
     object-fit: contain;
  padding: 16px;
  background: #F4F6F8;
}

.events-archive-cat {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 83.3333333333%;
  font-weight: 700;
  color: white;
  background: #1A3A5C;
  padding: 2px 8px;
  border-radius: 100px;
}

.events-archive-body {
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.events-archive-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.events-archive-date-day {
  font-size: 108.3333333333%;
  font-weight: 700;
  color: #E8724A;
}

.events-archive-date-time {
  font-size: 100%;
  color: #4A90D9;
  font-weight: 700;
}

.events-archive-title {
  font-size: 125%;
  font-weight: 700;
  color: #1A3A5C;
  line-height: 1.4;
}

.events-archive-venue {
  font-size: 100%;
  color: #B0BEC5;
}
.events-archive-venue::before {
  content: "📍";
  margin-right: 4px;
}

.events-archive-excerpt {
  font-size: 100%;
  color: #B0BEC5;
  line-height: 1.6;
  margin-top: 4px;
}

.events-archive-empty {
  font-size: 116.6666666667%;
  color: #B0BEC5;
  text-align: center;
  padding: 48px 0;
}

.archive-pagination {
  margin-top: 48px;
  text-align: center;
}
.archive-pagination .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 8px;
  list-style: none;
}
.archive-pagination .page-numbers a,
.archive-pagination .page-numbers span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  font-size: 108.3333333333%;
  font-weight: 700;
  border: 1px solid #CFD8DC;
  color: #1A3A5C;
  -webkit-transition: background 0.2s ease, color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease;
}
.archive-pagination .page-numbers a:hover {
  background: #1A3A5C;
  color: white;
  border-color: #1A3A5C;
}
.archive-pagination .page-numbers .current {
  background: #1A3A5C;
  color: white;
  border-color: #1A3A5C;
}
.archive-pagination .page-numbers .dots {
  border: none;
}

.section-news-archive {
  padding: 48px 40px 80px;
}
@media (max-width: 639px) {
  .section-news-archive {
    padding: 0 5vw;
  }
  .section-news-archive .container {
    padding: 0;
    margin-top: 100px;
  }
}

.news-archive-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 32px;
}

.news-archive-chip {
  font-size: 100%;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 100px;
  border: 1px solid #1A3A5C;
  color: #1A3A5C;
  -webkit-transition: background 0.2s ease, color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease;
}
.news-archive-chip:hover, .news-archive-chip.active {
  background: #1A3A5C;
  color: white;
}

.dining-group {
  margin-top: 56px;
}
.dining-group + .dining-group {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid #CFD8DC;
}

.dining-group-title {
  font-size: 166.6666666667%;
  font-weight: 900;
  color: #1A3A5C;
  letter-spacing: 0.1em;
  margin: 0 0 28px;
  padding-left: 14px;
  border-left: 4px solid #E8724A;
}

.dining-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 24px;
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
}
@media (max-width: 767px) {
  .dining-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }
}
@media (max-width: 639px) {
  .dining-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.dining-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.dining-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
}
.dining-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.dining-thumb:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.dining-body {
  padding: 16px 4px 0;
}

.dining-title {
  font-size: 133.3333333333%;
  font-weight: 700;
  color: #1A3A5C;
  margin: 0 0 8px;
  line-height: 1.4;
}

.dining-desc {
  font-size: 108.3333333333%;
  line-height: 1.7;
  margin: 0;
}
.dining-desc p {
  margin: 0;
}

.site-footer {
  background: #1A3A5C;
  color: white;
  padding: 48px 0 24px;
}

.footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  padding: 0 40px;
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 639px) {
  .footer-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer-logo {
  display: block;
  font-family: "Barlow Condensed", "Helvetica Neue", sans-serif;
  font-size: 150%;
  font-weight: 900;
  color: white;
  margin-bottom: 6px;
}
.footer-logo small {
  font-size: 61.1111111111%;
  margin-left: 6px;
  opacity: 0.6;
}

.footer-tagline {
  font-size: 91.6666666667%;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.footer-sns a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: white;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.footer-sns a:hover {
  background: rgba(255, 255, 255, 0.3);
}
.footer-sns svg {
  width: 16px;
  height: 16px;
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

.footer-nav-title {
  font-size: 83.3333333333%;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #F5C842;
  margin-bottom: 10px;
}

.footer-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.footer-nav-list a {
  font-size: 100%;
  color: rgba(255, 255, 255, 0.6);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.footer-nav-list a:hover {
  color: white;
}

.footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-copy {
  font-size: 91.6666666667%;
  color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.footer-legal a {
  font-size: 91.6666666667%;
  color: rgba(255, 255, 255, 0.35);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: white;
  border-top: 1px solid #CFD8DC;
  padding-bottom: env(safe-area-inset-bottom);
  height: 56px;
}
@media (min-width: 1024px) {
  .bottom-nav {
    display: none;
  }
}

.footer-wave-wrap {
  overflow: hidden;
  width: 100%;
  line-height: 0;
}

.footer-wave-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 300%;
  -webkit-animation: footer-wave-scroll 20s linear infinite;
          animation: footer-wave-scroll 20s linear infinite;
  animation-direction: reverse;
}

.footer-wave-track img {
  display: block;
  width: 33.3333333%;
  min-width: 33.3333333%;
  height: 77px;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 639px) {
  .footer-wave-track img {
    height: 40px;
  }
}

@-webkit-keyframes footer-wave-scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-33.3333333%);
            transform: translateX(-33.3333333%);
  }
}

@keyframes footer-wave-scroll {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-33.3333333%);
            transform: translateX(-33.3333333%);
  }
}
.bottom-nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3px;
  color: #B0BEC5;
  font-size: 83.3333333333%;
  font-weight: 600;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.bottom-nav-item.active, .bottom-nav-item:hover {
  color: #1A3A5C;
}
.bottom-nav-item svg {
  width: 20px;
  height: 20px;
}

.tribe-events-calendar .tribe-events-calendar-month__calendar-event-title {
  font-weight: 700;
}
.tribe-events-calendar .tribe-events-c-nav__list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 639px) {
  .oth-weather-slot {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "label  label  label" "icon   icon   icon" "temp   temp   temp" "range  desc   precip";
  }
  .oth-weather-slot-label {
    grid-area: label;
    text-align: center;
  }
  .oth-weather-slot-icon {
    grid-area: icon;
    text-align: center;
  }
  .oth-weather-slot-temp {
    grid-area: temp;
    text-align: center;
  }
  .oth-weather-slot-range {
    grid-area: range;
    text-align: center;
    margin-top: 2px;
  }
  .oth-weather-slot-desc {
    grid-area: desc;
    text-align: center;
    margin-top: 2px;
  }
  .oth-weather-slot-precip {
    grid-area: precip;
    text-align: center;
    margin-top: 2px;
  }
}
@media (max-width: 639px) {
  .oth-hs-slide:last-child .oth-hs-slide-img {
    -o-object-position: 15% center;
       object-position: 15% center;
  }
}
.site-logo img {
  width: 40vw;
  height: auto;
  max-height: 44px;
  display: block;
}
@media (max-width: 639px) {
  .site-logo img {
    width: 70vw;
  }
}

.hero-eyebrow {
  font-size: 150%;
  font-weight: 500;
  -webkit-filter: drop-shadow(0 0.1mm 0.5mm rgba(0, 0, 0, 0.7));
          filter: drop-shadow(0 0.1mm 0.5mm rgba(0, 0, 0, 0.7));
}
@media (max-width: 639px) {
  .hero-eyebrow {
    font-size: 110%;
  }
}

.hero-content {
  margin-top: -5vw;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50vw;
}
@media (max-width: 639px) {
  .hero-content {
    width: 98vw;
    margin-top: -25vw;
  }
}
.hero-content img {
  width: 50%;
  opacity: 0.8;
  -webkit-filter: drop-shadow(0 1mm 1mm rgba(0, 0, 0, 0.5));
          filter: drop-shadow(0 1mm 1mm rgba(0, 0, 0, 0.5));
  max-width: 220px;
}
@media (max-width: 639px) {
  .hero-content img {
    width: 50%;
  }
}

.loop_wrap {
  overflow: hidden; /* はみ出した部分を隠す */
  width: 100%;
  margin-top: 10vw;
}

.loop_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: loop 40s linear infinite;
          animation: loop 40s linear infinite; /* ループ時間や動き方を設定 */
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  gap: 2vw; /* 画像間のスペース */
}
@media (max-width: 639px) {
  .loop_list {
    -webkit-animation: loop 20s linear infinite;
            animation: loop 20s linear infinite;
  }
}
.loop_list img {
  width: auto;
  height: 18vw;
}
@media (max-width: 639px) {
  .loop_list img {
    height: 38vw;
  }
}

@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%); /* 画像全体の半分の長さ（1回分）移動させる */
  }
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%); /* 画像全体の半分の長さ（1回分）移動させる */
  }
}
.single-wrap,
.page-wrap {
  margin-top: 100px;
  padding: 0 10vw;
  margin-bottom: 100px;
}
@media (max-width: 639px) {
  .single-wrap,
  .page-wrap {
    padding: 0 5vw;
    margin-bottom: 50px;
  }
}

.events-archive-list {
  grid-template-columns: repeat(0, 1fr);
}

.section-header-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news-list2 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.news-list2 .news-item {
  width: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.news-list2 .news-item .news-item-link {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.news-list2 .news-item .news-item-link .news_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1vw;
}
@media (max-width: 639px) {
  .news-list2 .news-item .news-item-link .news_line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.news-list2 .news-item .news-item-link .news_line .news-date {
  color: #1A3A5C;
}

@media (max-width: 639px) {
  .oth-weather-widget {
    min-width: none;
    width: 70vw;
    left: 15vw;
  }
  .oth-weather-widget .oth-weather-header {
    text-align: center;
    font-size: 110%;
  }
  .oth-weather-widget .oth-weather-slot-desc {
    display: none;
  }
  .oth-weather-widget .oth-weather-slot-range {
    display: none;
  }
  .oth-weather-widget .oth-weather-slot-precip {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */