@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

button,
input,
select,
textarea {
  font: inherit;
}

:root {
  --color-bg: #F4DD35;
  --color-accent-red: #D43645;
  --color-accent-green: #67AF48;
  --color-text: #34345E;
  --color-muted: #B2B2B2;
  --shadow-soft: 0 14px 30px rgba(112, 72, 0, 0.12);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --page-width: 375px;
  --page-gutter: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Zen Maru Gothic", sans-serif;
  color: var(--color-text);
  background: radial-gradient(circle at 10% 8%, rgba(255, 255, 255, 0.14) 0 1px, transparent 1.2px) 0 0/22px 22px, radial-gradient(circle at 86% 86%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1.2px) 0 0/28px 28px, var(--color-bg);
  line-height: 1.55;
  overflow-x: hidden;
}

@media screen and (min-width: 769px) {
  body {
    background: radial-gradient(circle at 10% 8%, rgba(255, 255, 255, 0.11) 0 1px, transparent 1.2px) 0 0/22px 22px, radial-gradient(circle at 86% 86%, rgba(255, 255, 255, 0.09) 0 1px, transparent 1.2px) 0 0/28px 28px, url("../image/desktop-bg.webp") center center/90% 90% no-repeat fixed, var(--color-bg);
  }
}
img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: none;
  padding: 0;
  color: inherit;
}

::-moz-selection {
  background: rgba(230, 70, 76, 0.2);
}

::selection {
  background: rgba(230, 70, 76, 0.2);
}

.l-shell {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  width: min(1180px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  background: transparent;
  padding: 0 2rem;
}
@media screen and (max-width: 768px) {
  .l-shell {
    padding: 0;
  }
}

.l-shell__visual {
  display: none;
}

.l-shell__content {
  position: relative;
  width: 400px;
  min-height: 100vh;
  background: transparent;
  box-shadow: var(--shadow-soft);
}

@media screen and (min-width: 769px) {
  .l-shell__visual {
    display: block;
    flex: 0 0 1;
    position: sticky;
    top: 20%;
    width: 400px;
  }
  .l-shell__visual .l-mainvisual {
    position: relative;
    padding-top: 56px;
  }
  .l-shell__content {
    flex: 0 0 1;
  }
  .l-header__desktop-nav {
    position: sticky;
    top: 24px;
    display: block;
    flex: 0 0 168px;
    margin-top: 24px;
  }
  .l-shell__content .l-header__desktop-nav {
    display: none;
  }
}
.l-header {
  position: fixed;
  top: 22px;
  right: 12px;
  z-index: 120;
}
@media screen and (min-width: 769px) {
  .l-header {
    top: 24px;
    right: calc(50% - 590px + 24px);
  }
}
.l-header__menu {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 60px;
  height: 60px;
  padding-top: 4px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  letter-spacing: 0.08em;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 130;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.l-header__menu span {
  display: block;
}
.l-header__menu:active {
  transform: scale(0.96);
}
.l-header__menu[aria-expanded=true] .l-header__menu-bar:nth-of-type(1) {
  transform: translateY(6px) rotate(45deg);
}
.l-header__menu[aria-expanded=true] .l-header__menu-bar:nth-of-type(2) {
  opacity: 0;
  transform: scaleX(0.2);
}
.l-header__menu[aria-expanded=true] .l-header__menu-bar:nth-of-type(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.l-header__menu-bar {
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: #4c4032;
  transition: transform 0.24s ease, opacity 0.18s ease;
  transform-origin: center;
}
.l-header__menu-label {
  margin-top: 3px;
  font-size: 10px;
  font-weight: 700;
}
.l-header__desktop-nav {
  overflow: hidden;
  top: 32px;
  z-index: 20;
  display: none;
  min-width: 168px;
  padding: 18px 16px 20px;
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow-soft);
}
@media screen and (min-width: 769px) {
  .l-header__desktop-nav {
    display: block;
  }
}
.l-header__desktop-nav-text {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2d7a;
}
.l-header__desktop-nav-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 1rem 0 0;
  list-style: none;
}
.l-header__desktop-nav-link {
  position: relative;
  overflow: hidden;
  z-index: 0;
  display: block;
  padding: 0 18px 0 0;
  color: #1f2d7a;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.l-header__desktop-nav-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--color-bg);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s ease;
}
.l-header__desktop-nav-link::before {
  content: "";
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 4px;
  height: 34px;
  margin-right: 12px;
  vertical-align: middle;
  background: var(--color-bg);
}
.l-header__desktop-nav-link:hover {
  color: #1f2d7a;
}
.l-header__desktop-nav-link:hover::after, .l-header__desktop-nav-link:focus-visible::after {
  transform: scaleX(1);
}
.l-header__overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(27, 22, 16, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.l-header__overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.l-header__mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  min-height: 100vh;
  padding: 82px 0 24px 30px;
  background: #f5db2f;
  box-shadow: none;
  opacity: 0;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.2s ease, visibility 0.2s ease;
}
.l-header__mobile-nav.is-open {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
@media screen and (min-width: 769px) {
  .l-header__mobile-nav {
    display: none !important;
  }
}
.l-header__mobile-nav-list {
  width: 90%;
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 52px 0 0;
  list-style: none;
}
.l-header__mobile-nav-link {
  position: relative;
  overflow: hidden;
  z-index: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 18px 0 0;
  color: #1f2d7a;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.l-header__mobile-nav-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s ease;
}
.l-header__mobile-nav-link::before {
  content: "";
  position: relative;
  z-index: 1;
  width: 4px;
  height: 40px;
  background: #fff;
}
.l-header__mobile-nav-link > * {
  position: relative;
  z-index: 1;
}
.l-header__mobile-nav-link:hover::after, .l-header__mobile-nav-link:focus-visible::after {
  transform: scaleX(1);
}
.l-header__mobile-nav-social {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 18px;
}
.l-header__mobile-nav-social-link {
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.l-header__mobile-nav-social-link img {
  display: block;
  width: 32px;
  height: 32px;
}
.l-header__mobile-nav-social-link:hover, .l-header__mobile-nav-social-link:focus-visible {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.l-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding-top: 70px;
  background-color: var(--color-bg);
}

.l-mainvisual {
  position: relative;
  padding: 56px 6px 65px;
  background: url("../image/title-bg.webp") center top/100% 100% no-repeat;
}
.l-mainvisual__eyebrow {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}
.l-mainvisual__logo {
  width: min(363px, 100%);
  margin: 0 auto;
}
.l-mainvisual__meta {
  display: grid;
  justify-items: center;
  gap: 4px;
  margin-top: 14px;
}
.l-mainvisual__date {
  margin: 0;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.l-mainvisual__date-year {
  font-size: 22px;
  font-weight: 600;
}
.l-mainvisual__date-day {
  font-size: 34px;
  line-height: 1;
}
.l-mainvisual__date-num {
  font-family: "ADLaM Display", sans-serif;
}
.l-mainvisual__date-unit {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 24px;
  font-weight: 600;
}
.l-mainvisual__date-weekday {
  padding: 8px;
  border-radius: 50%;
  background: var(--color-accent-red);
  color: #fff;
  font-size: 18px;
  line-height: 1;
}
.l-mainvisual__time {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}
.l-mainvisual__free {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin: 12px auto 0;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.l-mainvisual__free::before, .l-mainvisual__free::after {
  content: "";
  flex: 0 0 auto;
  width: 4px;
  height: 28px;
  border-radius: 999px;
  background: var(--color-accent-red);
}
.l-mainvisual__free::before {
  transform: rotate(-26deg);
}
.l-mainvisual__free::after {
  transform: rotate(26deg);
}
.l-mainvisual__free span {
  display: grid;
  place-items: center;
  place-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent-red);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  padding-left: 5px;
}
.l-mainvisual__note {
  margin: 8px auto 0;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.l-section {
  position: relative;
  padding: 12px var(--page-gutter) 26px;
}
.l-section__body {
  position: relative;
}

.l-footer {
  padding: 1rem 0;
  font-size: 12px;
  text-align: center;
  background-color: #E9F0CD;
}

.c-section-title {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 0 16px;
}
.c-section-title__tile {
  display: grid;
  place-items: center;
  place-content: center;
  width: 52px;
  height: 54px;
  border-radius: 12px;
  box-shadow: 0 10px 18px rgba(90, 60, 0, 0.12);
  background-color: var(--color-accent-green);
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.p-event {
  padding-top: 6px;
}
.p-event__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.p-event-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  padding: 13px 14px 15px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
}
.p-event-card__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
}
.p-event-card__thumb {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 18px;
  background: #faf4da;
}
.p-event-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-event-card__copy {
  margin: 10px 0 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.p-live {
  padding-top: 10px;
}
.p-live__list {
  display: grid;
  gap: 8px;
}
.p-live-card {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 4px 4px 0 0 #f4d8d0;
}
.p-live-card:nth-child(2) {
  box-shadow: 4px 4px 0 0 #f4d4ac;
}
.p-live-card:nth-child(3) {
  box-shadow: 4px 4px 0 0 #faf1b5;
}
.p-live-card:nth-child(4) {
  box-shadow: 4px 4px 0 0 #bfd9a3;
}
.p-live-card__thumb {
  overflow: hidden;
  border-radius: 14px;
}
.p-live-card__thumb img {
  height: 100%;
  width: 100%;
}
.p-live-card__body {
  display: grid;
  align-content: center;
  gap: 6px;
}
.p-live-card__time {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 92px;
  padding: 3px 10px 2px;
  border-radius: 999px;
  background: #ffe98a;
  font-size: 11px;
  font-weight: 900;
}
.p-live-card__time--first {
  background: #F4D8D0;
}
.p-live-card__time--second {
  background: #F4D4AC;
}
.p-live-card__time--third {
  background: #FAF1B5;
}
.p-live-card__time--fourth {
  background: #BFD9A3;
}
.p-live-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
}
.p-live-card__copy {
  margin: 0;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.45;
}

.p-adoption {
  padding-top: 18px;
}
.p-adoption__lead {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 900;
  text-align: center;
  line-height: 1.6;
}
.p-adoption__note {
  margin: 0;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.p-venue {
  padding: 40px 12px 64px;
  background-color: #fff;
}
.p-venue__name {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}
.p-venue__address {
  margin: 0 0 18px;
  font-size: 13px;
  text-align: center;
}
.p-venue__photo {
  margin: 0 0 12px;
  padding: 10px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
}
.p-venue__photo img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.p-venue__map {
  overflow: hidden;
  min-height: 126px;
  margin-bottom: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
}
.p-venue__map iframe {
  display: block;
  width: 100%;
  min-height: 126px;
}
.p-venue__pdf {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 214px;
  margin: 0 auto;
  padding: 9px 18px 8px;
  border-radius: 999px;
  background: var(--color-accent-red);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .u-dn-md-min {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .u-dn-md-max {
    display: none !important;
  }
}

/* アニメーションの設定 */
/* フワッと表示 */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左からふわっと */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右からふわっと */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 左上へパタっと表示 */
.flipLeftTop {
  animation-name: flipLeftTopAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes flipLeftTopAnime {
  from {
    transform: translate(-20px, 80px) rotate(-15deg);
    opacity: 0;
  }
  to {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}
/* ぼかしから出現 */
.blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
/* 背景をぼかす */
.bg-blur {
  filter: blur(10px);
  transition: filter 0.5s ease;
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger,
.blurTrigger {
  opacity: 0;
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time05 {
  animation-delay: 0.2s;
}

.delay-time1 {
  animation-delay: 0.4s;
}

.delay-time15 {
  animation-delay: 0.6s;
}

.delay-time2 {
  animation-delay: 0.8s;
}/*# sourceMappingURL=style.css.map */