/*
 * page-guide.css
 * 入園案内ページ
 * 入園案内・FAQを1ページ構成
 */

.om-guide-page {
  background:
    radial-gradient(circle at 8% 12%, rgba(126, 200, 246, .08), transparent 20%),
    radial-gradient(circle at 92% 18%, rgba(245, 138, 173, .08), transparent 18%),
    #ffffff !important;
}

.om-guide-hero {
  position: relative;
  padding: 70px 0 34px;
}

.om-guide-hero__inner {
  position: relative;
  z-index: 3;
  min-height: 260px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 40px;
  padding: 48px 56px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 92% 18%, rgba(126, 200, 246, .14), transparent 24%),
    radial-gradient(circle at 82% 82%, rgba(245, 138, 173, .12), transparent 24%),
    linear-gradient(120deg, #ffffff 0%, #f0fbff 55%, #fff7fb 100%);
  border: 1px solid rgba(240, 232, 223, .88);
  box-shadow: 0 14px 34px rgba(116, 88, 63, .08);
  overflow: hidden;
}

.om-guide-hero__label {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 6px 14px;
  border-radius: 999px;
  color: #55aee2;
  background: #eaf8ff;
  border: 1px solid rgba(126, 200, 246, .22);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
}

.om-guide-hero h1 {
  margin: 0 0 16px;
  color: #4b372e;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: .04em;
}

.om-guide-hero__copy p:not(.om-guide-hero__label) {
  margin: 0;
  color: #66564c;
  font-weight: 800;
  line-height: 2;
}

.om-guide-hero__deco {
  position: relative;
  min-height: 190px;
}

.om-guide-deco {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 900;
  animation: omSoftBob 5.2s ease-in-out infinite alternate;
}

.om-guide-deco--note {
  right: 48px;
  top: 20px;
  width: 116px;
  height: 116px;
  color: #55aee2;
  background: #eaf8ff;
  font-size: 66px;
}

.om-guide-deco--heart {
  left: 34px;
  bottom: 22px;
  width: 78px;
  height: 78px;
  color: #ee729c;
  background: #fff1f6;
  font-size: 44px;
  animation-delay: -.8s;
}

.om-guide-deco--circle {
  right: 152px;
  bottom: 10px;
  width: 56px;
  height: 56px;
  background: #ffd95b;
  opacity: .72;
  animation-delay: -1.4s;
}

.om-guide-main,
.om-guide-property,
.om-guide-faq {
  padding-top: 28px;
  padding-bottom: 0;
}

.om-guide-faq {
  padding-bottom: 72px;
}

.om-guide-card {
  position: relative;
  z-index: 3;
  margin: 0 0 28px;
  padding: 32px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(240, 232, 223, .88);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.om-guide-card::before {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 134px;
  height: 134px;
  border-radius: 999px;
  background: rgba(126, 200, 246, .13);
  pointer-events: none;
}

.om-guide-card:nth-of-type(even)::before {
  background: rgba(245, 138, 173, .12);
}

.om-guide-card__heading {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
}

.om-guide-card__icon {
  display: grid;
  place-items: center;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  color: #55aee2;
  background: #eaf8ff;
  font-size: 28px;
  font-weight: 900;
  animation: omSoftBob 5.2s ease-in-out infinite alternate;
}

.om-guide-card:nth-of-type(even) .om-guide-card__icon {
  color: #ee729c;
  background: #fff1f6;
}

.om-guide-card__heading p {
  margin: 0 0 2px;
  color: #55aee2;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .16em;
}

.om-guide-card:nth-of-type(even) .om-guide-card__heading p {
  color: #ee729c;
}

.om-guide-card__heading h3 {
  margin: 0;
  color: #4b372e;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: .04em;
}

.om-guide-text p,
.om-guide-list li,
.om-guide-note,
.om-faq-answer p {
  color: #5b4b42;
  font-size: 15px;
  line-height: 2;
  font-weight: 700;
}

.om-guide-text p {
  margin: 0 0 12px;
}

.om-guide-text p:last-child {
  margin-bottom: 0;
}

.om-guide-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.om-guide-list--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.om-guide-list li {
  list-style: none;
  position: relative;
  padding: 14px 16px 14px 42px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 96% 14%, rgba(126, 200, 246, .08), transparent 24%),
    #ffffff;
  border: 1px solid #f0e8df;
}

.om-guide-list li::before {
  content: "♪";
  position: absolute;
  left: 15px;
  top: 16px;
  color: #55aee2;
  font-size: 14px;
  font-weight: 900;
}

.om-guide-list li:nth-child(even)::before {
  content: "♡";
  color: #ee729c;
}

.om-property-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.om-table-wrap {
  position: relative;
  z-index: 2;
  overflow-x: auto;
  border-radius: 22px;
  border: 1px solid #f0e8df;
  background: #ffffff;
}

.om-guide-table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
}

.om-guide-table th,
.om-guide-table td {
  padding: 15px 18px;
  border-right: 1px solid #f0e8df;
  border-bottom: 1px solid #f0e8df;
  color: #5b4b42;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 700;
  vertical-align: top;
}

.om-guide-table th:last-child,
.om-guide-table td:last-child {
  border-right: none;
}

.om-guide-table tr:last-child th,
.om-guide-table tr:last-child td {
  border-bottom: none;
}

.om-guide-table thead th {
  color: #ffffff;
  background: linear-gradient(180deg, #7ec8f6 0%, #55aee2 100%);
  text-align: center;
  font-weight: 900;
}

.om-guide-table tbody th {
  width: 150px;
  color: #4b372e;
  background: #f0fbff;
  font-weight: 900;
}

.om-guide-note {
  margin: 16px 0 0;
  padding: 18px 20px;
  border-radius: 20px;
  background: #fff7fb;
  border: 1px solid rgba(245, 138, 173, .16);
}

.om-faq-list {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 16px;
}

.om-faq-item {
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(240, 232, 223, .88);
  box-shadow: 0 8px 18px rgba(116, 88, 63, .06);
  overflow: hidden;
}

.om-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  color: #4b372e;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 900;
  background:
    radial-gradient(circle at 96% 18%, rgba(126, 200, 246, .11), transparent 20%),
    linear-gradient(90deg, #ffffff 0%, #f0fbff 100%);
}

.om-faq-item:nth-child(even) summary {
  background:
    radial-gradient(circle at 96% 18%, rgba(245, 138, 173, .11), transparent 20%),
    linear-gradient(90deg, #ffffff 0%, #fff7fb 100%);
}

.om-faq-item summary::-webkit-details-marker {
  display: none;
}

.om-faq-item summary span {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: #ffffff;
  background: #55aee2;
  font-size: 20px;
  font-weight: 900;
}

.om-faq-item:nth-child(even) summary span {
  background: #ee729c;
}

.om-faq-item summary::after {
  content: "＋";
  margin-left: auto;
  color: #ff9d11;
  font-size: 24px;
  font-weight: 900;
}

.om-faq-item[open] summary::after {
  content: "−";
}

.om-faq-answer {
  display: flex;
  gap: 14px;
  padding: 22px 24px 24px;
  border-top: 1px solid #f0e8df;
  background: #ffffff;
}

.om-faq-answer > span {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: #ffffff;
  background: #ff9d11;
  font-size: 20px;
  font-weight: 900;
}

.om-faq-answer p {
  margin: 0;
}

.om-guide-cta {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: center;
  margin: 38px auto 0;
  padding: 26px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 50%, rgba(126, 200, 246, .13), transparent 20%),
    linear-gradient(90deg, #ffffff 0%, #f0fbff 55%, #fff7fb 100%);
  border: 1px solid rgba(240, 232, 223, .88);
  box-shadow: var(--shadow);
}

.om-guide-cta > div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.om-guide-cta__icon {
  display: grid;
  place-items: center;
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  color: #ee729c;
  background: #fff1f6;
  font-size: 34px;
  font-weight: 900;
}

.om-guide-cta p {
  margin: 0;
  color: #5b4b42;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.8;
}

.om-guide-page .om-cta__btn {
  background: linear-gradient(180deg, #7ec8f6 0%, #55aee2 100%) !important;
  box-shadow: 0 10px 22px rgba(85, 174, 226, .20) !important;
}

@media (max-width: 1180px) {
  .om-guide-hero__inner,
  .om-guide-cta {
    grid-template-columns: 1fr;
  }

  .om-guide-hero__deco {
    display: none;
  }

  .om-guide-list--two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .om-guide-hero {
    padding: 34px 0 24px;
  }

  .om-guide-hero__inner {
    padding: 32px 22px;
    border-radius: 26px;
  }

  .om-guide-hero h1 {
    font-size: 32px;
  }

  .om-guide-card {
    padding: 22px 16px;
    border-radius: 22px;
  }

  .om-guide-card__heading {
    align-items: flex-start;
  }

  .om-guide-card__icon {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  .om-guide-card__heading h3 {
    font-size: 21px;
  }

  .om-guide-list li {
    padding: 13px 14px 13px 38px;
  }

  .om-guide-list li::before {
    left: 13px;
  }

  .om-guide-table {
    min-width: 680px;
  }

  .om-guide-table th,
  .om-guide-table td {
    padding: 12px 14px;
    font-size: 14px;
  }

  .om-faq-item summary {
    padding: 18px 16px;
    font-size: 15px;
  }

  .om-faq-answer {
    padding: 18px 16px 20px;
  }

  .om-guide-cta {
    padding: 22px 16px;
  }

  .om-guide-cta > div {
    align-items: flex-start;
  }

  .om-guide-cta .om-cta__btn {
    max-width: none;
  }
}


/* ========================================
   Guide icon silhouette 2026052243
   入園案内ページのアイコンをシルエットSVGに変更
======================================== */
.om-guide-card__icon {
  position: relative;
  overflow: hidden;
  font-size: 0 !important;
  line-height: 1;
}

.om-guide-card__icon svg {
  width: 28px;
  height: 28px;
  display: block;
  color: currentColor;
}

.om-guide-card__icon--wallet svg,
.om-guide-card__icon--clock svg,
.om-guide-card__icon--phone svg,
.om-guide-card__icon--bag svg,
.om-guide-card__icon--baby svg,
.om-guide-card__icon--sprout svg {
  stroke-linecap: round;
  stroke-linejoin: round;
}

.om-guide-card__icon--moon svg,
.om-guide-card__icon--flower svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 768px) {
  .om-guide-card__icon svg {
    width: 24px;
    height: 24px;
  }

  .om-guide-card__icon--moon svg,
  .om-guide-card__icon--flower svg {
    width: 22px;
    height: 22px;
  }
}
