@charset "UTF-8";
@import "subpage.css";
@import "planetarium.css";
:root {
  --wrap: 1400px;
  --c-teal: #1fb5a8;
  --c-teal-dark: #0ea29a;
  --c-yellow: #f6b32c;
  --c-gray: #f4f5f7;
  --c-text: #1b1e23;
  --c-muted: #cecece;
  --c-red: #ee4343;
}

* {
  box-sizing: border-box;
  word-break: break-all;
}

html {
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
  color: var(--c-text);
  line-height: 1.7;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

html,
body {
  height: 100%;
  margin: 0;
}

#main {
  flex: 1 0 auto;
}

footer {
  margin-top: auto;
}

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

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  background: var(--c-teal);
  color: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
  transition: 0.2s ease-in-out;
}
.btn:hover {
  background: var(--c-teal-dark);
}

.btn--ghost {
  background: #fff;
  color: var(--c-yellow);
  border-color: var(--c-yellow);
}
.btn--ghost:hover {
  background: var(--c-yellow);
  color: #fff;
}

.btn--amber {
  background: #fff;
  color: var(--c-yellow) !important;
  border-color: var(--c-yellow);
  text-decoration: none !important;
}
.btn--amber:hover {
  background: var(--c-yellow);
  color: #fff !important;
}

.feature__action {
  text-align: center;
}

.youtube-re {
  position: relative;
  overflow: hidden;
  margin: 15px 0 20px 0;
  padding-bottom: 50%;
  padding-top: 65px;
}
.youtube-re iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* Header */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid #e9eef2;
}

.header__row {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 74px;
}
.header__row img {
  width: 195px;
}
@media (max-width: 600px) {
  .header__row img {
    width: 92px;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand__logo {
  inline-size: 42px;
  block-size: 42px;
  background: var(--c-teal);
  border-radius: 50%;
}

.brand__name {
  font-weight: 800;
}

.pc_menu ul {
  display: flex;
  gap: 30px;
  list-style: none;
}
@media (max-width: 1000px) {
  .pc_menu {
    display: none;
  }
}

.header__tools {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
@media (max-width: 600px) {
  .header__tools .btn {
    font-size: 12px;
    line-height: 20px;
    border-radius: 5px;
    padding: 7px;
  }
}

.hamburger {
  inline-size: 52px;
  block-size: 50px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: var(--c-yellow);
}

.menu_btn {
  font-size: 12px;
  color: #fff;
}

.hamburger__bars {
  display: block;
  inline-size: 22px;
  block-size: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.2s;
  position: relative;
  top: -7px;
}
.hamburger__bars::before, .hamburger__bars::after {
  content: "";
  display: block;
  inline-size: 22px;
  block-size: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.2s ease;
  position: absolute;
  color: #fff;
}
.hamburger__bars::before {
  transform: translateY(-6px);
}
.hamburger__bars::after {
  transform: translateY(5px);
}

.hamburger[aria-expanded=true] .hamburger__bars {
  background: transparent;
}
.hamburger[aria-expanded=true] .hamburger__bars::before {
  content: "✕";
  background: transparent;
  color: #fff;
  font-size: 20px;
  transform: translateY(-10px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}
.hamburger[aria-expanded=true] .hamburger__bars::after {
  display: none;
}

/* ===== メインビジュアル（スライダー）===== */
.mv {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 615px;
  height: 55vh;
}
@media (max-width: 1000px) {
  .mv {
    min-height: 600px;
    height: 800px;
  }
}
@media (max-width: 600px) {
  .mv {
    height: 600px;
  }
}

.js-hero-swiper {
  position: relative;
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.swiper-slide.swiper-slide-active {
  opacity: 1;
}
.swiper-slide.swiper-slide-prev {
  opacity: 1;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1000px) {
  .swiper-slide img {
    height: 100vh;
  }
}

/* ===== 営業時間モーダル ===== */
.opening-hours {
  position: relative;
  max-width: 1500px;
  margin: auto;
}
.opening-hours .opening-hours__inner {
  bottom: 7px;
  left: 7px;
  z-index: 1;
  position: absolute;
  text-align: center;
  background: rgb(39, 180, 171);
  padding: 10px 70px;
  border-radius: 10px;
}
.opening-hours .opening-hours__box {
  color: #fff;
}
@media (max-width: 600px) {
  .opening-hours {
    padding: 10px 10px;
    width: 80%;
  }
  .opening-hours .opening-hours__inner {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    padding: 10px 20px;
    bottom: -30px;
  }
}

/* Sections */
section {
  padding: 56px 0;
}

.section--compact {
  padding: 28px 0;
}

.section--gray {
  background: var(--c-gray);
}

.section__title {
  font-size: clamp(25px, 2.2vw, 28px);
  font-weight: 800;
  text-align: center;
  margin: 0 0 24px;
}

.section__dots {
  display: grid;
  place-items: center;
  margin: 0.2rem 0 1.2rem;
}
.section__dots::before {
  content: "";
  display: block;
  inline-size: 260px;
  max-inline-size: 40vw;
  block-size: 14px;
  background: radial-gradient(circle at 43% 47%, var(--c-yellow) 3px, transparent -38px) 0 0/20px 9px repeat-x;
}

/* 常設イベント */
#regularevent img {
  margin: auto;
}

/* Icon cards */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.icon-card {
  background: #13b5ab;
  color: #fff;
  border-radius: 4px;
  padding: 26px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 10px;
  font-weight: 700;
}

.icon-card__icon {
  display: grid;
  place-items: center;
}
.icon-card__icon img {
  width: 150px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.card__media {
  aspect-ratio: 16/9;
}
.card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.card__body {
  padding: 14px 16px;
}

.meta {
  font-size: 12px;
  color: var(--c-muted);
}

.more-wrap {
  display: grid;
  place-items: center;
  margin-top: 18px;
}

/* regular event */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
  margin-bottom: 30px;
}

@media (min-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 479px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.gallery-item {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 30px 20px 20px;
  color: white;
}

.gallery-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.gallery-subtitle {
  font-size: 0.9rem;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.view-more {
  text-align: center;
  margin-top: 20px;
}

.view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.view-more-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.view-more-btn:hover .arrow {
  transform: translateX(5px);
}

/* Notice */
.notice {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}

.notice__row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 0;
  padding: 12px 16px;
  align-items: center;
  border-top: 1px solid #e5e7eb;
}
.notice__row:first-child {
  border-top: none;
}
.notice__row:hover {
  text-decoration: underline;
}

.notice__date {
  font-feature-settings: "palt" 1;
  letter-spacing: 0.03em;
  color: var(--c-muted);
}

/* CTA */
.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-row .btn {
  min-inline-size: 260px;
  padding: 1rem 1.4rem;
  font-size: 1.05rem;
}

/* Links grid */
.links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 982px;
  margin: auto;
}

.link-box {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  font-weight: 700;
  background: #fff;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.link-logo {
  width: 30px;
  height: auto;
  margin-right: 8px;
}

/* Footer */
.footer {
  background: #141a32;
  color: #cfd6ea;
  padding: 56px 0;
}

.footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.footer_col_wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.footer_col_wrap .footer_menu {
  margin-top: auto;
  display: flex;
  gap: 20px;
  font-size: small;
}

.footer__logo {
  inline-size: 200px;
  background: #fff;
  padding: 10px;
}

.footer .box {
  border-radius: 12px;
  inline-size: 220px;
  margin-top: 14px;
}
.footer .map {
  inline-size: min(520px, 100%);
}
.footer .map iframe {
  width: 100%;
  border: 0;
  height: 270px;
  border-radius: 15px;
}

/* Menu panel */
.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
}

.menu-panel__bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: 0.2s;
}

.menu-panel__sheet {
  position: absolute;
  inset: 0;
  margin: auto;
  inline-size: min(100%, var(--wrap));
  block-size: min(80vh, 760px);
  background: #fff;
  border-radius: 22px;
  opacity: 0;
  transform: translateY(-10px);
  transition: 0.25s;
  padding: 26px 20px;
  overflow: auto;
}

.menu-panel.is-open {
  pointer-events: auto;
}
.menu-panel.is-open .menu-panel__bg {
  opacity: 1;
}
.menu-panel.is-open .menu-panel__sheet {
  opacity: 1;
  transform: none;
}

/* メニューリスト */
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list > li {
  border-bottom: 1px solid #e5e7eb;
}

.menu-list > li:last-child {
  border-bottom: none;
}

/* 親メニュー項目（子ページなし） */
.menu-list > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-weight: 700;
  font-size: 16px;
  color: #1f2937;
  text-decoration: none;
  transition: background-color 0.2s;
}

.menu-list > li > a:hover {
  background-color: #f9fafb;
}

/* 親メニュー項目（子ページあり）のラッパー */
.menu-item-wrapper {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #e5e7eb;
}

.menu-link {
  flex: 1;
  padding: 18px 20px;
  font-weight: 700;
  font-size: 16px;
  color: #1f2937;
  text-decoration: none;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
}

.menu-link:hover {
  background-color: #f9fafb;
}

.menu-toggle {
  flex-shrink: 0;
  width: 60px;
  padding: 18px 20px;
  background: none;
  border: none;
  border-left: 1px solid #e5e7eb;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle:hover {
  background-color: #f3f4f6;
}

/* プラスアイコン */
.plus-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.plus-icon::before,
.plus-icon::after {
  content: "";
  position: absolute;
  background-color: #6b7280;
  transition: all 0.3s ease;
}

.plus-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.plus-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

/* 開いている時はマイナスに */
.menu-toggle.is-active .plus-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

/* サブメニュー（2階層目） */
.sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #f9fafb;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.sub-menu.is-open {
  max-height: 2000px;
}

.sub-menu > li {
  border-top: 1px solid #e5e7eb;
}

.sub-menu > li:first-child {
  border-top: none;
}

.sub-menu > li > a {
  display: block;
  padding: 14px 20px 14px 40px;
  font-size: 15px;
  color: #4b5563;
  text-decoration: none;
  transition: all 0.2s;
}

.sub-menu > li > a:hover {
  background-color: #f3f4f6;
  color: #1f2937;
  padding-left: 44px;
}

/* 子ページのラッパー（孫ページあり） */
.sub-menu-item-wrapper {
  display: flex;
  align-items: stretch;
}

.sub-menu-link {
  flex: 1;
  display: block;
  padding: 14px 20px 14px 40px;
  font-size: 15px;
  color: #4b5563;
  text-decoration: none;
  transition: all 0.2s;
}

.sub-menu-link:hover {
  background-color: #f3f4f6;
  color: #1f2937;
}

.sub-menu-toggle {
  flex-shrink: 0;
  width: 50px;
  padding: 12px 15px;
  background: none;
  border: none;
  border-left: 1px solid #e5e7eb;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sub-menu-toggle:hover {
  background-color: #e5e7eb;
}

.sub-menu-toggle .plus-icon {
  width: 16px;
  height: 16px;
}

.sub-menu-toggle.is-active .plus-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

/* 孫メニュー（3階層目） */
.grandchild-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #f3f4f6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.grandchild-menu.is-open {
  max-height: 2000px;
}

.grandchild-menu li {
  border-top: 1px solid #e5e7eb;
}

.grandchild-menu li:first-child {
  border-top: none;
}

.grandchild-menu a {
  display: block;
  padding: 12px 20px 12px 60px;
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
  transition: all 0.2s;
}

.grandchild-menu a:hover {
  background-color: #e5e7eb;
  color: #1f2937;
  padding-left: 64px;
}

/* 孫ページのラッパー（ひ孫ページあり） */
.grandchild-menu-item-wrapper {
  display: flex;
  align-items: stretch;
}

.grandchild-menu-link {
  flex: 1;
  display: block;
  padding: 12px 20px 12px 60px;
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
  transition: all 0.2s;
}

.grandchild-menu-link:hover {
  background-color: #e5e7eb;
  color: #1f2937;
}

.grandchild-menu-toggle {
  flex-shrink: 0;
  width: 45px;
  padding: 10px 12px;
  background: none;
  border: none;
  border-left: 1px solid #d1d5db;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.grandchild-menu-toggle:hover {
  background-color: #d1d5db;
}

.grandchild-menu-toggle .plus-icon {
  width: 14px;
  height: 14px;
}

.grandchild-menu-toggle.is-active .plus-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

/* ひ孫メニュー（4階層目） */
.great-grandchild-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #e5e7eb;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.great-grandchild-menu.is-open {
  max-height: 2000px;
}

.great-grandchild-menu li {
  border-top: 1px solid #d1d5db;
}

.great-grandchild-menu li:first-child {
  border-top: none;
}

.great-grandchild-menu a {
  display: block;
  padding: 10px 20px 10px 80px;
  font-size: 13px;
  color: #6b7280;
  text-decoration: none;
  transition: all 0.2s;
}

.great-grandchild-menu a:hover {
  background-color: #d1d5db;
  color: #1f2937;
  padding-left: 84px;
}

/* メニュー下部 */
.menu-bottom {
  display: flex;
  gap: 20px;
  padding: 24px 20px;
  border-top: 1px solid #e5e7eb;
  margin-top: 12px;
}

.menu-bottom a {
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}

.menu-bottom a:hover {
  color: #1f2937;
}

.menu-ic {
  inline-size: 36px;
  block-size: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--c-teal);
  color: #fff;
}
.menu-ic::before {
  content: "▶";
  font-size: 14px;
  transform: translateX(1px);
}

.menu-bottom {
  display: flex;
  gap: 22px;
  padding: 12px 2px;
  color: var(--c-muted);
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.menu-close {
  inline-size: 40px;
  block-size: 40px;
  display: grid;
  place-items: center;
  border: none;
  background: #f3f4f6;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s;
  font-size: 28px;
  color: #6b7280;
  position: relative;
}
.menu-close span {
  position: absolute;
}
.menu-close:hover {
  background: #e5e7eb;
  color: #374151;
}
.menu-close:active {
  transform: scale(0.95);
}

/* パンくず */
.c-breadcrumb {
  font-size: 0.85rem;
  color: var(--c-muted);
}
.c-breadcrumb a {
  color: #000;
  text-decoration: none;
}
.c-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.35rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-breadcrumb li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}
.c-breadcrumb li + li::before {
  content: "›";
  opacity: 0.6;
  margin: 0 0.25rem 0 0.15rem;
}

.c-breadcrumb__current {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 60vw;
  color: #0ea29a;
}

/* ニュースリスト */
.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-list__item {
  border-bottom: 2px dotted #ccc;
}

.news-row {
  display: grid;
  grid-template-columns: 13ch auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  text-decoration: none !important;
}
.news-row:hover .news-row__title {
  text-decoration: underline;
}

.news-row__date {
  font-feature-settings: "palt";
  white-space: nowrap;
  color: #7e7e7e;
}

.badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 2px;
  font-size: 0.9rem;
  line-height: 1;
  color: #fff !important;
  white-space: nowrap;
  justify-self: start;
  background-color: var(--c-teal);
}

.badge.pill--mini {
  text-decoration: none;
}

.badge--default,
.badge--oshirase {
  background: var(--c-teal);
}

.badge--mini-exhibition {
  background: #74c97f;
}

.badge--event {
  background: var(--c-yellow);
}

.badge--notice {
  background: var(--c-teal-dark);
}

.news-row__title {
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--c-text);
}

#youtube-area {
  position: relative;
  z-index: 1; /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  opacity: 0;
  height: 50vh;
}
@media (max-width: 600px) {
  #youtube-area {
    position: relative;
  }
}

/*jQueryで付与されたappearクラスがついたらYoutubeエリアをふわっと表示*/
#youtube-area.appear {
  animation-name: PageAnimeAppear;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#youtube {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 257.777778vh;
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 110%;
  min-width: 100%;
}

/*youtubeがクリックされないためのマスク*/
#youtube-mask {
  position: absolute;
  z-index: 2; /*下から2番目に表示*/
  top: 0;
  width: 100%;
  height: 100%;
}

/*youtube 上のロゴ */
.m_v_text {
  position: absolute;
  z-index: 2;
  top: 43%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  color: #fff;
  text-shadow: 0 0 15px #666;
  max-width: 850px !important;
  padding: 70px;
}

/* WP固有 */
h4 + .wp-block-media-text {
  margin-bottom: 40px;
}

h4:has(+ .wp-block-media-text) {
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .wp-block-media-text > .wp-block-media-text__content {
    padding: 0 !important;
  }
}
/* レスポンシブ */
@media (max-width: 1200px) {
  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .links-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .footer__cols {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .links-grid {
    grid-template-columns: auto;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  section {
    padding: 42px 0;
  }
  .notice__row {
    grid-template-columns: auto;
  }
  .menu-grid {
    grid-template-columns: 1fr;
  }
  .news-row {
    grid-template-columns: auto;
  }
}/*# sourceMappingURL=style.css.map */