@charset "UTF-8";
:root {
  --font-round: "秀英にじみ丸ゴシック B", "Zen Maru Gothic", sans-serif;
  --font-body: "新ゴ R", "Noto Sans JP", sans-serif;
  --font-body-bold: "新ゴ B", "Noto Sans JP", sans-serif;
  --font-mincho: "リュウミン R-KL", "Zen Old Mincho", serif;
  --font-mincho-bold: "リュウミン B-KL", "Zen Old Mincho", serif;
  --color-primary: #1ca8cc;
  --color-secondary: #3d8fd1;
  --color-cta: #2bb5b0;
  --color-base: #ffffff;
  --color-bg: #f6f3ea;
  --color-bg-alt: #efefe6;
  --color-dark: #1a1a1a;
  --color-orange: #f2a33c;
  --color-pink: #ef7f9b;
  --color-green: #5fa84e;
  --color-red: #e4506b;
  --color-navy: #4a6fb8;
  --color-text: #333333;
  --color-text-sub: #707070;
  --color-text-inverse: #ffffff;
  --color-border: #bebebe;
  --color-border-light: #e0dcd0;
  --color-border-dash: #d8d4c8;
  --color-border-dark: #3a3a3a;
  --color-tint: #eaf7fa;
  --color-placeholder: #dcd8cc;
  --color-facebook: #1877f2;
  --color-instagram: #e4506b;
  --color-youtube: #e4506b;
  --inner-base: 65rem;
  --gutter: 5rem;
  --header-height: 4.75rem;
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-pill: 999px;
  --shadow-menu: 0 6px 24px rgb(51 51 51 / 18%);
  --duration-fast: 0.2s;
  --duration-base: 0.3s;
}

@media screen and (max-width: 767.98px) {
  :root {
    --gutter: 2.5rem;
  }
}
/* メインビジュアル */
.hero {
  --status-height: 4.25rem;
  --hero-fade: 1.2s;
  --hero-zoom: 6.2s;
  display: grid;
  grid-template-rows: 100%;
  position: relative;
  height: calc(100svh - var(--header-height));
  overflow: hidden;
  background: var(--color-placeholder);
  place-items: center;
}
@media (orientation: portrait) {
  .hero {
    height: auto;
    aspect-ratio: 4/3;
  }
}
@media screen and (max-width: 767.98px) {
  .hero {
    --status-height: 3.75rem;
    height: min(100svh - var(--header-height), 177.7777777778vw);
    aspect-ratio: auto;
  }
}

.hero_slide {
  grid-area: 1/1;
  width: 100%;
  height: 100%;
}

.hero_slide_list {
  display: grid;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  opacity: 0;
  transition: opacity var(--hero-fade) ease;
}
.hero_slide_list.-ready {
  opacity: 1;
}
.hero_slide_list img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
}

.hero_slide_item {
  grid-area: 1/1;
  overflow: hidden;
  transition: opacity var(--hero-fade) ease;
}

.hero_slide_item.-out {
  opacity: 0;
}

.hero_slide_item.-current img {
  transition: transform var(--hero-zoom) linear;
  transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
  .hero_slide_item.-current img {
    transition: none;
    transform: none;
  }
}
.hero_copy {
  grid-area: 1/1;
  z-index: 1;
  width: min(45rem, 58%);
  margin: 0;
  padding-bottom: var(--status-height);
}
.hero_copy img {
  display: block;
  width: 100%;
  height: auto;
}

/* 続きがあることを示すスクロール表示 */
.hero_scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  position: absolute;
  bottom: var(--status-height);
  left: 50%;
  z-index: 2;
  color: var(--color-text-inverse);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  transform: translateX(-50%);
  font-family: var(--font-round);
  font-style: normal;
}
.hero_scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 3rem;
  background: currentcolor;
  animation: scroll-line 2.4s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  45% {
    transform: scaleY(1);
    transform-origin: top;
  }
  55% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
/* 開館ステータス */
.status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: var(--status-height);
  padding: 0 0.75rem;
  background: rgb(from var(--color-dark) r g b/88%);
  color: var(--color-text-inverse);
}
.status p {
  margin: 0;
}

.status_label {
  font-size: 1rem;
}

.status_body {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

.status_label,
.status_date,
.status_time,
.status_note {
  white-space: nowrap;
}

.status_date,
.status_time {
  font-size: 1.5rem;
}

.status_date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.status_day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--color-green);
  font-size: 0.75rem;
}

.status_note {
  font-size: 0.875rem;
}

/* おしらせ */
.info {
  padding-top: 3.5rem;
}
.info .inner {
  display: flex;
  justify-content: center;
}

.notice_fix {
  display: grid;
  gap: 0.25rem 0.5rem;
  grid-template-columns: 1.75rem auto;
  margin: 0;
}
.notice_fix dt {
  color: var(--color-text-sub);
}
.notice_fix dd {
  margin: 0;
}

/* おしらせ・イベント */
.events {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 4rem;
}

/* PICK UP */
.features {
  padding: 3.5rem 0;
}
.features .inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* イベントカレンダー */
.calendar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 3.5rem 0;
  background: var(--color-bg-alt);
}

.calendar_body {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  width: min(var(--inner-base), 100% - var(--gutter));
}

.calendar_cal {
  --fc-page-bg-color: var(--color-base);
  --fc-neutral-bg-color: var(--color-base);
  --fc-border-color: var(--color-border-light);
  --fc-today-bg-color: rgb(from var(--color-primary) r g b / 8%);
  --fc-small-font-size: 0.75rem;
  --fc-bg-event-color: rgb(from var(--color-red) r g b / 12%);
  --fc-bg-event-opacity: 1;
  flex: 1;
  padding: 1.125rem 1.25rem;
  background: var(--color-base);
  border: 1px solid var(--color-border-light);
  border-radius: 0.625rem;
  font-size: 0.75rem;
}
.calendar_cal .fc-toolbar-title {
  font-size: 1.0625rem;
  font-weight: 700;
  font-family: var(--font-round);
  font-style: normal;
}
.calendar_cal .fc-button-primary {
  padding: 0 0.5rem;
  background: none;
  border: 0;
  color: var(--color-border);
}
.calendar_cal .fc-button-primary:hover, .calendar_cal .fc-button-primary:not(:disabled):active {
  background: none;
  color: var(--color-primary);
}
.calendar_cal .fc-button-primary:focus, .calendar_cal .fc-button-primary:not(:disabled):active:focus {
  box-shadow: none;
}
.calendar_cal .fc-button-primary:disabled {
  background: none;
  opacity: 0.3;
  color: var(--color-border);
  cursor: default;
}
.calendar_cal .fc-col-header-cell-cushion {
  padding: 0.5rem 0.25rem;
  color: var(--color-text-sub);
  font-family: var(--font-body-bold);
  font-size: 0.75rem;
  font-weight: 700;
}
.calendar_cal .fc-daygrid-day-number {
  padding: 0.25rem 0.375rem;
  font-family: var(--font-body-bold);
  font-size: 0.75rem;
  font-weight: 700;
}
.calendar_cal .fc-daygrid-day-frame {
  min-height: 100%;
}
.calendar_cal .fc-daygrid-day-events {
  min-height: 0;
  margin-bottom: 0.125rem;
}
.calendar_cal .fc-event {
  padding: 0 0.25rem;
  border: 0;
  font-size: 0.625rem;
}
.calendar_cal .fc-bg-event .fc-event-title {
  padding: 0.25rem 0.375rem;
  overflow: visible;
  color: color-mix(in srgb, var(--color-red) 85%, #000000);
  font-family: var(--font-body-bold);
  font-size: 0.6875rem;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.calendar_legend {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 0.625rem;
  width: 12.5rem;
  margin: 0;
  padding-top: 0.5rem;
  list-style: none;
  font-size: 0.875rem;
}
.calendar_legend li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.calendar_legend li::before {
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--legend-color, var(--color-primary));
}
.calendar_legend .-red {
  --legend-color: var(--color-red);
}
.calendar_legend .-secondary {
  --legend-color: var(--color-secondary);
}
.calendar_legend .-pink {
  --legend-color: var(--color-pink);
}
.calendar_legend .-green {
  --legend-color: var(--color-green);
}
.calendar_legend .-orange {
  --legend-color: var(--color-orange);
}
.calendar_legend .-cta {
  --legend-color: var(--color-cta);
}
.calendar_legend .-navy {
  --legend-color: var(--color-navy);
}

/* おはなし会・曜日サービス・絵本シアター */
.stories {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.75rem;
  padding: 3.5rem 0;
}

.stories_block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: min(var(--inner-base), 100% - var(--gutter));
}

.stories_list {
  display: grid;
  gap: 1.5rem 2.5rem;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stories_item {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.stories_item .badge {
  align-self: flex-start;
  margin: 0;
}

.stories_hd {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed var(--color-border);
}

.stories_ttl {
  margin: 0;
  font-family: var(--font-body-bold);
  font-size: 1rem;
  font-weight: 700;
}

.stories_time {
  margin: 0;
  color: var(--color-text-sub);
  font-size: 0.875rem;
  white-space: nowrap;
}

.stories_text {
  margin: 0;
  color: var(--color-text-sub);
  font-size: 1rem;
  line-height: 1.8;
}

.stories_note {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--color-text-sub);
  font-size: 0.875rem;
  line-height: 1.9;
}
.stories_note li {
  padding-left: 1em;
  text-indent: -1em;
}
.stories_note li::before {
  content: "・";
}

/* 絵本シアター */
.theater_lead {
  margin: 0;
  color: var(--color-text-sub);
  font-size: 0.875rem;
  text-align: center;
}

.theater_body {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.theater_side {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 0.625rem;
  width: 18.75rem;
}

.theater_poster {
  position: relative;
}
.theater_poster img {
  display: block;
  width: 100%;
}

.theater_nav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  width: 2rem;
  height: 2rem;
  padding: 0;
  background: rgba(255, 255, 255, 0.85);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%);
}
.theater_nav.-prev {
  left: 0.5rem;
}
.theater_nav.-next {
  right: 0.5rem;
}
.theater_nav .icon {
  font-size: 1.25rem;
}
.theater_nav:hover {
  background: var(--color-base);
}

.theater_poster .splide__pagination {
  display: flex;
  justify-content: center;
  gap: 0.375rem;
  margin: 0.625rem 0 0;
  padding: 0;
  list-style: none;
}
.theater_poster .splide__pagination button {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  background: var(--color-border-dash);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}
.theater_poster .splide__pagination button.is-active {
  background: var(--color-primary);
}

.theater_cnt {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

.theater_block {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.theater_hd {
  margin: 0;
  font-family: var(--font-body-bold);
  font-size: 0.875rem;
  font-weight: 700;
}

.theater_list {
  display: grid;
  gap: 1rem 1.5rem;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
}
.theater_list > li {
  display: flex;
  gap: 0.625rem;
}

.theater_titles {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.7;
}

.theater_note {
  margin: 0;
  color: var(--color-text-sub);
  font-size: 0.875rem;
  line-height: 1.8;
}

.theater_key {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--key-color, var(--color-primary));
  border-radius: 50%;
  color: var(--color-text-inverse);
  font-family: var(--font-body-bold);
  font-size: 0.75rem;
  font-weight: 700;
}

.theater_key.-cta,
.theater_cell.-cta {
  --key-color: var(--color-cta);
}

.theater_key.-secondary,
.theater_cell.-secondary {
  --key-color: var(--color-secondary);
}

.theater_key.-orange,
.theater_cell.-orange {
  --key-color: var(--color-orange);
}

.theater_key.-pink,
.theater_cell.-pink {
  --key-color: var(--color-pink);
}

.theater_key.-green,
.theater_cell.-green {
  --key-color: var(--color-green);
}

.theater_tbl {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.theater_tbl tr > * {
  padding: 0.375rem 0.1875rem;
  border-bottom: 1px solid var(--color-border-dash);
  font-size: 0.875rem;
  text-align: center;
  vertical-align: middle;
}
.theater_tbl thead th {
  padding: 0.625rem 0.25rem;
  color: var(--color-text-sub);
  font-family: var(--font-body-bold);
  font-size: 0.75rem;
  font-weight: 700;
}
.theater_tbl thead th:first-child,
.theater_tbl tbody th {
  width: 5.5rem;
}
.theater_tbl tbody th {
  font-weight: 400;
}

.theater_cell {
  display: block;
  padding: 0.375rem 0.25rem;
  background: var(--key-color, var(--color-primary));
  border-radius: var(--radius);
  color: var(--color-text-inverse);
  font-size: 0.8125rem;
  font-weight: 700;
  font-family: var(--font-round);
  font-style: normal;
}

/* スマホ */
@media screen and (max-width: 767.98px) {
  .status {
    gap: 0.625rem;
    padding: 0 0.75rem;
  }
  .status_label {
    font-size: 0.6875rem;
  }
  .status_body {
    flex-wrap: wrap;
    gap: 0.125rem 0.5rem;
    padding-left: 0.625rem;
  }
  .status_date,
  .status_time {
    font-size: 1rem;
  }
  .status_day {
    width: 1rem;
    height: 1rem;
    font-size: 0.625rem;
  }
  .status_note {
    flex-basis: 100%;
    font-size: 0.6875rem;
  }
  .hero_copy {
    width: 78%;
  }
  .events {
    padding-top: 3.5rem;
  }
  .features {
    padding: 3.5rem 0;
  }
  .calendar {
    padding: 3.5rem 0;
  }
  .calendar_body {
    flex-direction: column;
    gap: 1rem;
  }
  .calendar_legend {
    flex-flow: row wrap;
    gap: 0.5rem 1rem;
    width: 100%;
    padding-top: 0;
  }
  .calendar_cal .fc-bg-event .fc-event-title {
    display: none;
  }
  .stories {
    gap: 2.5rem;
    padding: 3.5rem 0;
  }
  .stories_list {
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }
  .stories_hd {
    flex-wrap: wrap;
  }
  .theater_body {
    flex-direction: column;
    gap: 1.25rem;
  }
  .theater_side {
    width: 100%;
  }
  .theater_list {
    grid-template-columns: 1fr;
  }
  .theater_cnt {
    min-width: 0;
    max-width: 100%;
  }
  .theater_tbl tr > * {
    padding: 0.25rem 0.125rem;
    font-size: 0.6875rem;
  }
  .theater_tbl thead th {
    padding: 0.375rem 0.125rem;
    font-size: 0.625rem;
  }
  .theater_tbl thead th:first-child,
  .theater_tbl tbody th {
    width: 3rem;
  }
  .theater_cell {
    padding: 0.5rem 0.125rem;
    font-size: 0.8125rem;
  }
}
/*# sourceMappingURL=home.css.map */
