/* ============================================
   Simple Reset
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

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

/* ============================================
   Main Stylesheet
   ============================================ */
/* ============================================
   Reset
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

ul,
ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

/* ============================================
   Variables
   ============================================ */
/* ============================================
   Base
   ============================================ */
/* ============================================
   Variables
   ============================================ */
body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #ffffff;
  min-height: 100vh;
}

:root {
  --color-main: #ff9a9e;
  --color-accent: #faeac2;
  --color-sub: #6b7280;
  --gradient-main: linear-gradient(
    125deg,
    var(--color-main) 0%,
    #fad0c4 70%,
    #fad0c4 50%
  );
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  line-height: 1.4;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

p {
  margin: 0;
}

a {
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

/* ============================================
   Container
   ============================================ */
/* ============================================
   Variables
   ============================================ */
.l-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .l-container {
    padding: 0 18px;
  }
}

/* ============================================
   Site Description
   ============================================ */
/* ============================================
   Variables
   ============================================ */
.l-site-description {
  background-image: var(--gradient-main);
  padding: 4px 0;
  text-align: center;
}
.l-site-description__text {
  font-size: 14px;
  color: #ffffff;
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .l-site-description {
    padding: 6px 0;
  }
  .l-site-description__text {
    font-size: 16px;
  }
}

/* ============================================
   Header
   ============================================ */
/* ============================================
   Variables
   ============================================ */
.l-header {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 6px 0;
}
.l-header__inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.l-header__logo {
  font-size: 14px;
  font-weight: bold;
  margin: 0 auto;
}
.l-header__logo-link {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.l-header__logo-link:hover {
  color: var(--color-main);
}
@media (min-width: 768px) {
  .l-header {
    padding: 12px 0;
  }
  .l-header__inner {
    justify-content: space-between;
  }
  .l-header__logo {
    font-size: 18px;
  }
}

/* ============================================
   Footer
   ============================================ */
/* ============================================
   Variables
   ============================================ */
.l-footer {
  background: #ffffff;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
  padding: 24px 0;
  padding-bottom: calc(24px + 50px);
}
.l-footer__inner {
  text-align: center;
}
.l-footer__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.l-footer__sns-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: #333;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease;
}
.l-footer__sns-link:hover {
  background-color: var(--color-main);
  color: #ffffff;
  transform: translateY(-1px);
}
.l-footer__sns-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.l-footer__copyright {
  color: #333;
  font-size: 14px;
}
@media (min-width: 768px) {
  .l-footer {
    padding-bottom: 24px;
  }
}

/* ============================================
   Main
   ============================================ */
/* ============================================
   Variables
   ============================================ */
.l-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 8px 0;
  overflow: hidden;
}
.l-main__hero {
  margin-bottom: 12px;
  text-align: center;
}
.l-main__title {
  font-size: 24px;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .l-main {
    padding: 24px 0;
    padding-bottom: 24px;
  }
  .l-main__hero {
    margin-bottom: 18px;
  }
  .l-main__title {
    font-size: 32px;
  }
  .l-main__articles {
    margin-top: 18px;
  }
}

/* ============================================
   Button Object
   ============================================ */
/* ============================================
   Variables
   ============================================ */
.o-button {
  display: inline-block;
  padding: 12px 18px;
  background-color: var(--color-main);
  color: #ffffff;
  border-radius: 4px;
  font-size: 16px;
  text-align: center;
  transition: background-color 0.3s ease;
}
.o-button:hover {
  background-color: rgb(246.015625, 170.546875, 148.984375);
  opacity: 1;
}
.o-button:active {
  transform: translateY(1px);
}

/* ============================================
   Card Object
   ============================================ */
/* ============================================
   Variables
   ============================================ */
.o-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.o-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.o-card__image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: #f9fafb;
}
.o-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.o-card__body {
  padding: 18px;
}
.o-card__title {
  font-size: 20px;
  margin-bottom: 12px;
  color: #333;
}
.o-card__text {
  color: #666;
  margin-bottom: 18px;
  line-height: 1.6;
}
.o-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--color-sub);
}
.o-card__category {
  padding: 4px 6px;
  background-color: #f9fafb;
  border-radius: 4px;
}

/* ============================================
   Article Component
   ============================================ */
/* ============================================
   Variables
   ============================================ */
/* ============================================
   Navigation Component
   ============================================ */
/* ============================================
   Variables
   ============================================ */
.c-navigation__list {
  display: flex;
  gap: 24px;
}
.c-navigation__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  color: #333;
  font-size: 16px;
  transition: color 0.3s ease;
  text-decoration: none;
}
.c-navigation__link:hover {
  color: var(--color-main);
  opacity: 1;
}
.c-navigation__link.is-active {
  color: var(--color-main);
}
.c-navigation__link .material-icons {
  font-size: 20px;
  line-height: 1;
}
@media (max-width: 768px) {
  .c-navigation--desktop {
    display: none;
  }
}
.c-navigation--mobile {
  display: none;
}
@media (max-width: 768px) {
  .c-navigation--mobile {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-top: 2px solid #e5e7eb;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 6px 0;
    padding-bottom: calc(6px + env(safe-area-inset-bottom));
  }
}
.c-navigation--mobile .c-navigation__list {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-navigation--mobile .c-navigation__item {
  flex: 1;
  text-align: center;
}
.c-navigation--mobile .c-navigation__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0;
  color: var(--color-sub);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.c-navigation--mobile .c-navigation__link:hover,
.c-navigation--mobile .c-navigation__link.is-active {
  color: var(--color-main);
}
.c-navigation--mobile .c-navigation__link.is-active {
  color: var(--color-main);
}
.c-navigation--mobile .c-navigation__icon {
  font-size: 24px;
  line-height: 1;
}
.c-navigation--mobile .c-navigation__icon.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
}
.c-navigation--mobile .c-navigation__label {
  font-size: 10px;
  line-height: 1.2;
}

/* ============================================
   Carousel Component
   ============================================ */
/* ============================================
   Variables
   ============================================ */
.c-carousel {
  position: relative;
  width: 100%;
  margin: 6px 0;
}
.c-carousel__track {
  display: flex;
  gap: 12px;
  /* overflow: hidden; */
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  transition: transform 0.4s ease;
}
.c-carousel__track::-webkit-scrollbar {
  display: none;
}
.c-carousel__track {
  scrollbar-width: none;
}
.c-carousel__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.c-carousel__button:hover {
  background-color: var(--color-main);
  color: white;
  border-color: var(--color-main);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-50%) scale(1.05);
}
.c-carousel__button:active {
  transform: translateY(-50%) scale(0.98);
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}
.c-carousel__button .material-icons {
  font-size: 28px;
  color: var(--color-main);
  transition: color 0.3s ease;
}
.c-carousel__button:hover .material-icons {
  color: white;
}
.c-carousel__button--prev {
  left: 6px;
  display: flex;
}
.c-carousel__button--next {
  right: 6px;
  display: flex;
}
@media (max-width: 576px) {
  .c-carousel__button {
    width: 36px;
    height: 36px;
  }
  .c-carousel__button .material-icons {
    font-size: 24px;
  }
  .c-carousel__button--prev {
    left: -14px;
  }
  .c-carousel__button--next {
    right: -14px;
  }
}
.c-carousel__item {
  flex: 0 0 auto;
  width: 100%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: #333;
}
.c-carousel__item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--color-main);
}
@media (min-width: 992px) {
  .c-carousel__item {
    width: calc(100% - 24px * 2);
    max-width: 400px;
  }
}
.c-carousel__image {
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
}
.c-carousel__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  aspect-ratio: 1/1;
}
.c-carousel__content {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-height: 0;
}
.c-carousel__date {
  font-size: 18px;
  color: var(--color-sub);
  font-weight: 500;
}
.c-carousel__shop {
  font-size: 16px;
  color: #333;
  font-weight: bold;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .c-carousel__item .c-carousel__content {
    padding: 6px;
  }
}
@media (max-width: 576px) {
  .c-carousel__item .c-carousel__content {
    padding: 12px;
    gap: 4px;
  }
  .c-carousel__item .c-carousel__date {
    font-size: 14px;
  }
  .c-carousel__item .c-carousel__shop {
    font-size: 18px;
    margin-top: 8px;
  }
}

/* ============================================
   Event Card Component
   ============================================ */
/* ============================================
   Variables
   ============================================ */
.c-event-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.c-event-list--stacked {
  grid-template-columns: 1fr;
}
.c-event-list--stacked .c-event-card__image {
  height: 140px;
}
.c-event-list--stacked .c-event-card__content {
  padding: 12px 14px 14px;
  gap: 4px;
}
@media (min-width: 768px) {
  .c-event-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-event-list--stacked {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 992px) {
  .c-event-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .c-event-list--stacked {
    grid-template-columns: 1fr;
  }
}

.c-event-card__link {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: #333;
  overflow: hidden;
}
.c-event-card__link:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--color-main);
}
.c-event-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #f9fafb;
}
.c-event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.c-event-card__link:hover .c-event-card__image img {
  transform: scale(1.05);
}
.c-event-card__content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.c-event-card__date {
  font-size: 14px;
  color: var(--color-sub);
  font-weight: 500;
}
.c-event-card__title {
  font-size: 20px;
  color: #333;
  font-weight: bold;
  margin: 0;
  line-height: 1.4;
}
.c-event-card__shop {
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

/* ============================================
   Shop Card Component
   ============================================ */
/* ============================================
   Variables
   ============================================ */
.c-shop-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 768px) {
  .c-shop-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .c-shop-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-shop-card__link {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: #333;
  overflow: hidden;
}
.c-shop-card__link:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--color-main);
}
.c-shop-card__social {
  margin-top: 6px;
}
.c-shop-card__x-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-main);
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s ease;
}
.c-shop-card__x-link:hover {
  opacity: 0.7;
}
.c-shop-card__x-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.c-shop-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #f9fafb;
}
.c-shop-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.c-shop-card__link:hover .c-shop-card__image img {
  transform: scale(1.05);
}
.c-shop-card__content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.c-shop-card__title {
  font-size: 20px;
  color: #333;
  font-weight: bold;
  margin: 0;
  line-height: 1.4;
}
.c-shop-card__address {
  margin-top: 6px;
}
.c-shop-card__map-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--color-sub);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.c-shop-card__map-link:hover {
  color: var(--color-main);
}
.c-shop-card__map-link .material-icons {
  font-size: 16px;
}
.c-shop-card__description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-top: 12px;
}
.c-shop-card__age-group {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--color-sub);
  margin-top: 6px;
}
.c-shop-card__age-group .material-icons {
  font-size: 16px;
  color: var(--color-main);
}

/* ============================================
   QA Component
   ============================================ */
/* ============================================
   Variables
   ============================================ */
.c-qa {
  margin-bottom: 36px;
}
.c-qa__title {
  font-size: 24px;
  color: #333;
  margin-bottom: 18px;
  font-weight: bold;
}
.c-qa__intro {
  font-size: 16px;
  color: #666;
  margin-bottom: 18px;
}
.c-qa__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
}
.c-qa__points {
  list-style: disc;
  padding-left: 1.5em;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
.c-qa__item {
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 18px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-qa__item:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: var(--color-main);
}
.c-qa__question {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin: 0 0 6px 0;
  padding-bottom: 6px;
  border-bottom: 2px solid #e5e7eb;
}
.c-qa__answer {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 6px 0 0 0;
}

/* ============================================
   Contact Form Component
   ============================================ */
/* ============================================
   Variables
   ============================================ */
.c-contact-form__title {
  font-size: 24px;
  color: #333;
  margin-bottom: 18px;
  font-weight: bold;
}
.c-contact-form__note {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}
ul.c-contact-form__note {
  list-style: decimal;
  padding-left: 1.5em;
}
.c-contact-form__embed {
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.c-contact-form__embed iframe {
  border: none;
  border-radius: 8px;
  width: 100%;
  height: 848px;
  overflow: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.c-contact-form__embed iframe::-webkit-scrollbar {
  display: none;
}
@media (max-width: 768px) {
  .c-contact-form__embed iframe {
    height: 848px;
  }
}

.l-main__contact {
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================
   State
   ============================================ */
/* ============================================
   Variables
   ============================================ */
.is-active {
  color: var(--color-main);
  font-weight: bold;
}

.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.is-hidden {
  display: none;
}

.is-visible {
  display: block;
}

/* ============================================
   Display Helpers (PC/SP only)
   ============================================ */
/* 最初は両方非表示にして、メディアクエリで出し分け */
.pc-only,
.sp-only {
  display: none;
}

@media (min-width: 769px) {
  .pc-only {
    display: inline;
  }
}

@media (max-width: 768px) {
  .sp-only {
    display: inline;
  }
}

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

/* ============================================
   Google Form iframe (トップページ)
   ============================================ */
.google-form-frame {
  width: 100%;
  height: 1100px; /* 必要に応じて調整 */
  border: none; /* 外枠を消す */
  -ms-overflow-style: none; /* IE, Edge */
  scrollbar-width: none; /* Firefox */
}

.google-form-frame::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.mcWRN .teQAzf {
  max-width: 100% !important;
  width: 100% !important;
}
