/**
 * LP - 参加、体験してこそ出会える高野山
 * PC版のみ（SP版は別途作成）
 * Figma: 高野山_共有用
 * 10px = 1rem
 */
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");

:root {
  --lpFont: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", var(--sun-serif);
}

html {
  font-size: min(10px, 100vw / 1440 * 10);
}

@media (max-width: 720px) {
  html {
    font-size: min(10px, calc(100vw / 375 * 10));
  }
}

/* body全体のフェードイン（1秒経過後に開始） */
body {
  opacity: 0;
  animation: l-lp-body-fadein 1.2s ease-out 1.2s forwards;
}

@keyframes l-lp-body-fadein {
  to {
    opacity: 1;
  }
}

body #p-container {
  padding-top: var(--header);
}

/* ==============================
      共通CSS
  ============================== */
/* 縁取り文字用 */
.--outlineText {
  position: relative;
  -webkit-text-stroke: var(--strokeWidth) var(--strokeColor);
  -webkit-text-fill-color: var(--fillColor);
}


.--outlineText::before {
  content: attr(data-text);
  position: absolute;
  -webkit-text-stroke: 0;
}

/* ==============================
      LPヘッダー
  ============================== */
.l-lp-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
  background-color: #ffffff;
  box-shadow: 0 0.2rem 0.4rem 0 rgba(0, 0, 0, 0.06);
}

.l-lp-header_inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}

/* ロゴ（Figma: Frame 6973 / 224×32.36px） */
.l-lp-header_logo {
  display: block;
  padding: 1.7rem 0 1.4rem 4.7rem;
  text-decoration: none;
}

@media (max-width: 720px) {
  .l-lp-header_logo {
    padding: 1.8rem 0 1.7rem 1.7rem;
  }
}

.l-lp-header_logo-fig {
  width: 22.4rem;
  margin: 0;
  padding: 0;
  line-height: 0;
}

@media (max-width: 720px) {
  .l-lp-header_logo-fig {
    width: 20.7rem;
  }
}

/* メニューボタン（Figma: Frame 6975） */
.l-lp-header_menu-btn {
  transition: 0.3s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.8rem 0 3.5rem;
  background-color: #960000;
  border: none;
  border-radius: 0 0 0 2rem;
  cursor: pointer;
  font-family: inherit;
}

.l-lp-header_menu-btn-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 3.5rem;
}

/* ハンバーガーアイコン（Figma: Group 1785 / 35×22px）- HTML/CSSで再現 */
.l-lp-header_menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 3.5rem;
  height: 2.2rem;
  margin: 0;
  padding: 0;
}

.l-lp-header_menu-icon_line {
  display: block;
  height: 0.2rem;
  background-color: #ffffff;
  transition: 0.3s ease;
  transform-origin: center;
}

.l-lp-header_menu-icon_line:nth-child(1) {
  width: 3.5rem;
  margin-left: 0;
}

.l-lp-header_menu-icon_line:nth-child(2) {
  width: 3rem;
  margin-left: 0.5rem;
}

.l-lp-header_menu-icon_line:nth-child(3) {
  width: 2.5rem;
  margin-left: 1rem;
}

/* メニュー開時：三本線を×に変形 */
.l-lp-header.is-menu-open .l-lp-header_menu-btn {
  border-radius: 2rem 0 0 0;
}

.l-lp-header.is-menu-open .l-lp-header_menu-icon {
  align-items: center;
  justify-content: center;
}

.l-lp-header.is-menu-open .l-lp-header_menu-icon_line:nth-child(1) {
  width: 3.5rem;
  transform: translateY(0.2rem) rotate(45deg);
  margin: 0;
}

.l-lp-header.is-menu-open .l-lp-header_menu-icon_line:nth-child(2) {
  opacity: 0;
}

.l-lp-header.is-menu-open .l-lp-header_menu-icon_line:nth-child(3) {
  width: 3.5rem;
  transform: translateY(-0.2rem) rotate(-45deg);
  margin: 0;
}

/* MENU/CLOSEテキスト（擬似要素で切り替え） */
.l-lp-header_menu-txt {
  display: block;
  width: 100%;
  font-family: "Hiragino Mincho Pro", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", var(--serif);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.26em;
  color: #ffffff;
  text-align: center;
}

.l-lp-header_menu-txt::before {
  content: "MENU";
}

.l-lp-header.is-menu-open .l-lp-header_menu-txt::before {
  content: "CLOSE";
}

/* ハンバーガーメニュー開閉 */
.l-lp-header {
  flex-direction: column;
  align-items: stretch;
}

.l-lp-header_menu {
  overflow-y: auto;
  width: 100%;
  height: calc(100vh - var(--header));
  max-height: 0;
  background-color: #960000;
  transition: max-height 0.3s ease-out;
}

.l-lp-header.is-menu-open .l-lp-header_menu {
  max-height: calc(100vh - var(--header));
}

.l-lp-header_menu-list {
  margin: 0;
  padding: 3rem 4.7rem 12rem;
  list-style: none;
}

.l-lp-header_menu-item {
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.3);
}

.l-lp-header_menu-item:last-child {
  border-bottom: none;
}

.l-lp-header_menu-link {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 2rem 0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

a.l-lp-header_menu-link:hover {
  opacity: 0.8;
}

.l-lp-header_menu-link>svg {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  object-fit: contain;
}

.l-lp-header_menu-link>svg path {
  fill: currentColor;
}

.l-lp-header_menu-arrow {
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.l-lp-header_menu-arrow svg {
  width: 100%;
  height: 100%;
}

.l-lp-header_menu-trigger.is-open .l-lp-header_menu-arrow {
  transform: rotate(-180deg);
}

.l-lp-header_submenu {
  display: none;
  margin: 0;
  padding: 0 0 2rem 2rem;
  list-style: none;
}

.l-lp-header_menu-item--has-child.is-open .l-lp-header_submenu {
  display: block;
}

.l-lp-header_submenu>li {
  margin-top: 2rem;
}

.l-lp-header_submenu>li:first-child {
  margin-top: 0;
}

.l-lp-header_submenu>li>a {
  display: block;
  padding: 0.8rem 0;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.l-lp-header_submenu>li>a:hover {
  opacity: 0.8;
}

.l-lp-header_submenu>li>a::before {
  content: "−";
  margin-right: 0.5rem;
}

.l-lp-header_submenu ul {
  margin: 0.8rem 0 0 2rem;
  padding: 0;
  list-style: none;
}

.l-lp-header_submenu ul a {
  display: block;
  padding: 0.4rem 0;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.l-lp-header_submenu ul a:hover {
  opacity: 0.8;
}

.l-lp-header_submenu ul a::before {
  content: "−";
  margin-right: 0.5rem;
}


/* ============================== */
/*  LPフッター */
/* ============================== */
footer {
  background-color: #009B4A;
}

/* ==============================
     LPコンテナ・コンテンツエリア
 ============================== */
.l-lp-s-container {
  font-family: var(--lpFont);
}

.l-lp-s-container *[id] {
  display: block;
  padding-top: var(--header);
  margin-top: calc(-1 * var(--header));
}

/* フッターエリア：LP用の背景色は後で指定 */
/* .page-lp .c-footer { } */

/* c-footAnimation：LPでは非表示（必要に応じて） */
/* .page-lp .c-footAnimation { display: none; } */

/* ============================== */
/*  メインビジュアル */
/* ============================== */
.l-lp-section-mv {
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url("../../images/lp-prayer_experience/mv-bg.jpg") no-repeat center center / cover;
}

.l-lp-section-mv-images {
  --duration: 36;
  overflow: hidden;
  width: 100%;
  padding: 5.8rem 0 13.5rem;
}

@media (max-width: 720px) {
  .l-lp-section-mv-images {
    padding: 3.7rem 0 14.4rem;
  }
}

.l-lp-section-mv-images-track {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  gap: 5.3rem;
  padding: 0 2.65rem;
  width: max-content;
  animation: l-lp-mv-scroll calc(var(--duration) * 1s) linear infinite;
}

@media (max-width: 720px) {
  .l-lp-section-mv-images-track {
    gap: 2.6rem;
    padding: 0 1.35rem;
  }
}

.l-lp-section-mv-image {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  flex-shrink: 0;
  width: 50.2rem;
  margin: 0;
  line-height: 0;
  animation: l-lp-mv-image-bounce calc(var(--duration) * 0.25s) cubic-bezier(0.25, 0, 0.25, 1) infinite alternate;
}

@media (max-width: 720px) {
  .l-lp-section-mv-image {
    width: 24rem;
  }
}

.l-lp-section-mv-image:nth-child(odd) {
  animation-direction: alternate-reverse;
}

.l-lp-section-mv-image img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

@keyframes l-lp-mv-scroll {
  from {
    transform: translateX(calc(50% - 50vw));
  }

  to {
    transform: translateX(calc(25% - 50vw));
  }
}

@keyframes l-lp-mv-image-bounce {
  0% {
    transform: translateY(6.2rem);
  }

  100% {
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  @keyframes l-lp-mv-image-bounce {
    0% {
      transform: translateY(3rem);
    }

    100% {
      transform: translateY(0);
    }
  }
}

.l-lp-section-mv-text {
  position: absolute;
  z-index: 10;
  bottom: 19rem;
  left: 19.8rem;
}

@media (max-width: 720px) {
  .l-lp-section-mv-text {
    bottom: 15.8rem;
    left: 2.2rem;
  }
}

.l-lp-section-mv-ttl {
  width: 70.7rem;
  filter: drop-shadow(0 0.1rem 1.5rem rgba(0, 0, 0, 0.2));
}

@media (max-width: 720px) {
  .l-lp-section-mv-ttl {
    width: 30.4rem;
  }
}

.l-lp-section-mv-animation {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  pointer-events: none;
}

/* ==============================
       行事・イベント一覧
     ============================== */
.l-lp-section-events-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8.1rem;
  padding: 8.7rem 24.4rem 7.2rem;
  background-color: #EFEFE0;
}

@media (max-width: 720px) {
  .l-lp-section-events-grid {
    padding: 5.6rem 2rem 5.8rem;
  }
}

.l-lp-section-events-grid-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8.1rem;
  width: 100%;
}

.l-lp-section-events-grid-head {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 1.6rem;
  padding-bottom: 4.2rem;
  border-bottom: 0.1rem solid #3A3A3A;
}

@media (max-width: 720px) {
  .l-lp-section-events-grid-head {
    padding-bottom: 2.4rem;
  }
}

.l-lp-section-events-grid-head-label {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.l-lp-section-events-grid-head-dot {
  aspect-ratio: 1;
  width: 0.5rem;
  background-color: #009B4A;
  border-radius: 50%;
}

.l-lp-section-events-grid-head-cat {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  color: #3A3A3A;
}

@media (max-width: 720px) {
  .l-lp-section-events-grid-head-cat {
    font-size: 1.6rem;
  }
}

.l-lp-section-events-grid-head-ttl {
  margin: 0;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #3A3A3A;
}

@media (max-width: 720px) {
  .l-lp-section-events-grid-head-ttl {
    font-size: 2.4rem;
    line-height: 1.4;
  }
}

.l-lp-section-events-grid-content {
  display: flex;
  flex-direction: column;
  gap: 6.7rem;
  width: calc(100% + 50vw);
  margin-left: -50vw;
}

@media (max-width: 720px) {
  .l-lp-section-events-grid-content {
    gap: 6.4rem;
    width: 100%;
    margin: 0;
  }
}

.l-lp-section-events-grid-group {
  --dateColor: #009B4A;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 4.2rem;
}

@media (max-width: 720px) {
  .l-lp-section-events-grid-group {
    flex-direction: column;
    gap: 4rem;
  }
}

.l-lp-section-events-grid-group:nth-child(even) {
  --dateColor: #DB5331;
}

.l-lp-section-events-grid-date {
  flex: auto;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 1rem;
  white-space: nowrap;
  padding: 1rem 2.4rem 0.2rem 0;
  background-color: #fff;
  border-radius: 0 2rem 2rem 0;
}

@media (max-width: 720px) {
  .l-lp-section-events-grid-date {
    gap: 0.4rem;
    margin-left: -2rem;
    padding: 1.4rem 2.8rem 1.4rem 4.2rem;
  }
}

.l-lp-section-events-grid-date-month {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
  color: #3A3A3A;
  margin-bottom: 1.7rem;
}

@media (max-width: 720px) {
  .l-lp-section-events-grid-date-month {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
  }
}

.l-lp-section-events-grid-date-num {
  display: flex;
  align-items: baseline;
}

.l-lp-section-events-grid-date-value {
  font-size: 6.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--dateColor);
}

@media (max-width: 720px) {
  .l-lp-section-events-grid-date-value {
    font-size: 4.8rem;
  }
}

.l-lp-section-events-grid-date-day {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
  color: #3A3A3A;
  margin-bottom: 1.1rem;
}

@media (max-width: 720px) {
  .l-lp-section-events-grid-date-day {
    font-size: 2.6rem;
    margin-bottom: 0.4rem;
  }
}

.l-lp-section-events-grid-cards {
  flex-basis: 81.6rem;
  display: flex;
  gap: 4.2rem;
  min-width: 0;
}

@media (max-width: 720px) {
  .l-lp-section-events-grid-cards {
    flex-basis: auto;
    flex-direction: column;
    gap: 4.9rem;
  }
}

.l-lp-section-events-grid-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.l-lp-section-events-grid-card-img {
  aspect-ratio: 388 / 233;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 2rem;
  background: #fff;
}

.l-lp-section-events-grid-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
}

.l-lp-section-events-grid-card-body {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.l-lp-section-events-grid-card-ttl {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #3A3A3A;
}

.l-lp-section-events-grid-card-desc {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #3A3A3A;
  margin-top: 1.6rem;
}

.l-lp-section-events-grid-card-desc-en {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #3A3A3A;
  margin-top: 1.6rem;
}

.l-lp-section-events-grid-card-btn {
  display: flex;
  padding: 0.8rem 4.2rem 0.8rem 2.7rem;
  border: 0.1rem solid #3A3A3A;
  border-radius: 100em;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #3A3A3A;
  margin: 2.4rem 0 0 auto;
  background: url("../../images/lp-prayer_experience/icon_arrow-right_bk.svg") no-repeat center right 2.7rem / 0.5rem auto;
}

.l-lp-section-events-grid-card-btn:hover {
  opacity: 0.8;
}

/* ==============================
        高野山の魅力をもっと知る
     ============================== */
.l-lp-section_charm {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 8rem 24.4rem;
  background-color: #ffffff;
}

@media (max-width: 720px) {
  .l-lp-section_charm {
    padding: 5.4rem 2rem;
  }
}

.l-lp-section_charm-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  width: 100%;
  max-width: 95.2rem;
}

/* セクション見出し（Frame 6895） */
.l-lp-section_charm-head {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 3.2rem;
}

@media (max-width: 720px) {
  .l-lp-section_charm-head {
    gap: 0;
    justify-content: space-between;
    width: 100%;
  }
}

.l-lp-section_charm-icon {
  width: 2.827rem;
  margin: 0;
  padding: 0;
  line-height: 0;
}

@media (max-width: 720px) {
  .l-lp-section_charm-icon {
    width: 3.2rem;
  }
}

.l-lp-section_charm-icon img {
  width: 100%;
}

.l-lp-section_charm-ttl {
  margin: 0;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #333333;
  text-align: center;
}

@media (max-width: 720px) {
  .l-lp-section_charm-ttl {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}

.l-lp-section_charm-ttl strong {
  color: #009B4A;
}

/* カードコンテナ（Frame 6899） */
.l-lp-section_charm-cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5.1rem;
  width: 100%;
  padding: 3.2rem 6.3rem 5rem;
  background-color: #ffffff;
  border: 0.3rem solid #009B4A;
}

@media (max-width: 720px) {
  .l-lp-section_charm-cards {
    flex-direction: column;
    gap: 4rem;
    padding: 3.2rem 0.9rem 5rem;
  }
}

/* カード（Frame 6896 / 6897） */
.l-lp-section_charm-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
  width: 35.7rem;
}

@media (max-width: 720px) {
  .l-lp-section_charm-card {
    width: 100%;
  }
}

.l-lp-section_charm-card-ttl {
  margin: 0;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #333333;
  text-align: center;
}

@media (max-width: 720px) {
  .l-lp-section_charm-card-ttl {
    font-size: 2.2rem;
    line-height: 1.5;
  }
}

.l-lp-section_charm-card-ttl strong {
  color: #009B4A;
}

.l-lp-section_charm-card-img {
  overflow: hidden;
  aspect-ratio: 1;
  width: 29.6rem;
  border-radius: 50%;
  line-height: 0;
}

@media (max-width: 720px) {
  .l-lp-section_charm-card-img {
    width: 25.6rem;
  }
}

.l-lp-section_charm-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
}

/* 詳細ボタン（Frame 6903） */
.l-lp-section_charm-card-btn {
  position: absolute;
  bottom: -1.4rem;
  right: 3.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  width: 2.9rem;
  text-decoration: none;
  color: inherit;
}

@media (max-width: 720px) {
  .l-lp-section_charm-card-btn {
    bottom: -0.6rem;
    right: 1.35rem;
  }
}

.l-lp-section_charm-card-btn-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  width: 3rem;
  background-color: #DB5331;
  border-radius: 2.3rem;
  line-height: 0;
}

.l-lp-section_charm-card-btn-icon img {
  width: 0.5rem;
  object-fit: contain;
  vertical-align: top;
}

.l-lp-section_charm-card-btn-txt {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #3A3A3A;
  text-align: center;
}

.l-lp-section_charm-card-btn-line {
  display: block;
  width: 100%;
  height: 0.1rem;
  background-color: #3A3A3A;
}

/* 区切り線（Rectangle 997） */
.l-lp-section_charm-divider {
  flex-shrink: 0;
  width: 0.3rem;
  height: 27.1rem;
  background-color: #009B4A;
}

@media (max-width: 720px) {
  .l-lp-section_charm-divider {
    width: 100%;
    height: 0.3rem;
  }
}

/* ==============================
      青空瞑想 イベント
     ============================== */
.l-lp-section-event {
  --thisColor: #009B4A;
  --arrow-icon-url: url("../../images/lp-prayer_experience/icon_arrow-right_green.svg");
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 0 0 16.9rem;
  background-color: var(--thisColor);
}

@media (max-width: 720px) {
  .l-lp-section-event {
    padding: 0 2rem 7rem;
  }
}

.l-lp-section-event-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6.7rem;
  width: 100%;
  max-width: 104rem;
}

@media (max-width: 720px) {
  .l-lp-section-event-inner {
    gap: 4rem;
  }
}

/* 日付バッジ（Frame 6905） */
.l-lp-section-event-date {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  white-space: nowrap;
  width: 40.4rem;
  margin: 0 auto;
  padding: 1.85rem 10.4rem 2.45rem;
  background-color: #ffffff;
  border-radius: 0 0 2rem 2rem;
}

@media (max-width: 720px) {
  .l-lp-section-event-date {
    gap: 0.4rem;
    width: auto;
    padding: 1.2rem 5.5rem;
  }
}

.l-lp-section-event-date-month {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  color: #3A3A3A;
}

@media (max-width: 720px) {
  .l-lp-section-event-date-month {
    font-size: 2.4rem;
  }
}

.l-lp-section-event-date-num {
  display: flex;
  align-items: baseline;
  position: relative;
}

.l-lp-section-event-date-value {
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--thisColor);
}

@media (max-width: 720px) {
  .l-lp-section-event-date-value {
    font-size: 4.8rem;
  }
}

.l-lp-section-event-date-day {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  color: #3A3A3A;
}

@media (max-width: 720px) {
  .l-lp-section-event-date-day {
    font-size: 2.6rem;
  }
}

/* イベントカード一覧（Frame 6942） */
.l-lp-section-event-cards {
  display: flex;
  flex-direction: column;
  gap: 12rem;
}

@media (max-width: 720px) {
  .l-lp-section-event-cards {
    gap: 8rem;
  }
}

.l-lp-section-event-card {
  margin: 0;
}

.l-lp-section-event-card-inner {
  display: flex;
  gap: 7rem;
  padding-right: 11.9rem;
}

@media (max-width: 720px) {
  .l-lp-section-event-card-inner {
    flex-direction: column;
    gap: 4rem;
    padding-right: 0;
  }
}

.l-lp-section-event-card-ttl {
  margin: 0;
  flex-shrink: 0;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.25em;
  color: #ffffff;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  width: 1em;
}

@media (max-width: 720px) {
  .l-lp-section-event-card-ttl {
    font-size: 4rem;
    line-height: 1.3;
    letter-spacing: 0.04em;
    writing-mode: horizontal-tb;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    width: 100%;
  }
}

.l-lp-section-event-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 6.2rem;
}

@media (max-width: 720px) {
  .l-lp-section-event-card-body {
    padding-top: 0;
  }
}

.l-lp-section-event-card-main {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}

@media (max-width: 720px) {
  .l-lp-section-event-card-main {
    gap: 5.6rem;
  }
}

.l-lp-section-event-card-imgs {
  display: flex;
  gap: 2.6rem;
}

@media (max-width: 720px) {
  .l-lp-section-event-card-imgs {
    flex-direction: column;
    gap: 2.4rem;
  }
}

.l-lp-section-event-card-img {
  flex: 1;
  aspect-ratio: 388 / 233;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 2rem;
  line-height: 0;
  background: #fff;
}

@media (max-width: 720px) {
  .l-lp-section-event-card-img {
    border-radius: 1.8rem;
  }
}

.l-lp-section-event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
}

.l-lp-section-event-card-content {
  min-width: 0;
}

.l-lp-section-event-card-catch {
  padding: 1rem 1.9rem;
  background-color: #ffffff;
  border-radius: 0.4rem;
}

.l-lp-section-event-card-catch-txt {
  margin: 0;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--thisColor);
}

@media (max-width: 720px) {
  .l-lp-section-event-card-catch-txt {
    font-size: 2.8rem;
  }
}

.l-lp-section-event-card-desc {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-top: 2.4rem;
}

@media (max-width: 720px) {
  .l-lp-section-event-card-desc {
    margin-top: 2.4rem;
  }
}

.l-lp-section-event-card-desc-ja {
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 160%;
  letter-spacing: 0.04em;
}

@media (max-width: 720px) {
  .l-lp-section-event-card-desc-ja {
    font-size: 2rem;
    line-height: 1.8;
  }
}

.l-lp-section-event-card-desc-en {
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 160%;
  margin-top: 1.6rem;
  letter-spacing: 0.04em;
}

@media (max-width: 720px) {
  .l-lp-section-event-card-desc-en {
    font-size: 2rem;
    line-height: 1.6;
    margin-top: 2.4rem;
  }
}

.l-lp-section-event-card-detail {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin: 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-top: 4rem;
}

.l-lp-section-event-card-info {
  width: 100%;
  border-collapse: collapse;
  margin-top: 3.2rem;
}

@media (max-width: 720px) {
  .l-lp-section-event-card-info {
    margin-top: 4rem;
  }
}

.l-lp-section-event-card-info th,
.l-lp-section-event-card-info td {
  margin: 0;
  padding: 1.4rem 2.4rem;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #fff;
  border: 0.1rem solid #fff;
  vertical-align: middle;
}

@media (max-width: 720px) {

  .l-lp-section-event-card-info th,
  .l-lp-section-event-card-info td {
    font-size: 1.8rem;
    line-height: 1.5;
    padding: 1.4rem 0.95rem;
  }
}

.l-lp-section-event-card-info th {
  width: 0;
  white-space: nowrap;
}

.l-lp-section-event-card-info td small {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
  margin-top: 0.6rem;
}

@media (max-width: 720px) {
  .l-lp-section-event-card-info td small {
    font-size: 1.3rem;
  }
}

.l-lp-section-event-card-cta {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  margin-top: 4.8rem;
}

@media (max-width: 720px) {
  .l-lp-section-event-card-cta {
    margin-top: 6.4rem;
  }
}

.l-lp-section-event-card-cta-ttl {
  margin: 0;
  padding: 0.7rem 1.2rem;
  background-color: #ffffff;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--thisColor);
}

@media (max-width: 720px) {
  .l-lp-section-event-card-cta-ttl {
    font-size: 2.4rem;
    padding: 0.6rem 1.2rem;
  }
}

.l-lp-section-event-card-cta-tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 720px) {
  .l-lp-section-event-card-cta-tel {
    gap: 1.4rem;
  }
}

.l-lp-section-event-card-cta-tel-icon {
  width: 5.4rem;
}

@media (max-width: 720px) {
  .l-lp-section-event-card-cta-tel-icon {
    width: 3.8rem;
  }
}

.l-lp-section-event-card-cta-tel-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

@media (max-width: 720px) {
  .l-lp-section-event-card-cta-tel-txt {
    gap: 0.5rem;
  }
}

.l-lp-section-event-card-cta-tel-num {
  font-size: 6.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #ffffff;
}

@media (max-width: 720px) {
  .l-lp-section-event-card-cta-tel-num {
    font-size: 4.6rem;
  }
}

.l-lp-section-event-card-cta-tel-label {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #ffffff;
}

@media (max-width: 720px) {
  .l-lp-section-event-card-cta-tel-label {
    font-size: 1.3rem;
  }
}

.l-lp-section-event-card-cta-btns {
  display: flex;
  justify-content: center;
  gap: 5.2rem;
  width: 100%;
  margin-top: 0;
}

@media (max-width: 720px) {
  .l-lp-section-event-card-cta-btns {
    flex-direction: column;
    gap: 2.1rem;
  }
}

.l-lp-section-event-card-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 2.6rem 3.4rem;
  border-radius: 100em;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--thisColor);
  transition: opacity 0.2s;
  background: var(--arrow-icon-url) no-repeat center right 3.4rem / 0.9rem auto, #ffffff;
}

@media (max-width: 720px) {
  .l-lp-section-event-card-cta-btn {
    font-size: 2.2rem;
    padding: 2.3rem 3.4rem;
  }
}

.l-lp-section-event-card-cta-btn:hover {
  opacity: 0.9;
}

.l-lp-section-event-card-desc-note {
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.04em;
  color: #fff;
  margin-top: 4rem;
  padding: 2.4rem;
  border: 0.2rem solid #FFFFFF;
}

@media (max-width: 720px) {
  .l-lp-section-event-card-desc-note {
    font-size: 1.8rem;
    padding: 2.2rem;
  }
}

.l-lp-section-event-card-desc-note a {
  text-decoration: underline;
}

/* 地図・場所情報（Figma: Frame 6933 / 157:3421） */
.l-lp-section-event-card-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2rem;
  width: 100%;
  margin-top: 6.4rem;
}

.l-lp-section-event-card-map-cards {
  display: flex;
  gap: 4rem;
  width: 100%;
}

@media (max-width: 720px) {
  .l-lp-section-event-card-map-cards {
    flex-direction: column;
    gap: 2.4rem;
  }
}

.l-lp-section-event-card-map-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.6rem;
}

@media (max-width: 720px) {
  .l-lp-section-event-card-map-card {
    justify-content: flex-start;
  }
}

.l-lp-section-event-card-map-card-label {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--thisColor);
  padding: 0.3rem 1.8rem;
  background: #fff;
  border-radius: 0.5rem;
}

.l-lp-section-event-card-map-card-value {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #fff;
}

.l-lp-section-event-card-map-img {
  aspect-ratio: 802 / 506;
  width: 100%;
  background: #fff;
}

.l-lp-section-event-card-map-img iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
}

.l-lp-section-event-card-map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 2.6rem 7rem;
  border: 0.2rem solid #ffffff;
  border-radius: 100em;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin-top: 0.8rem;
  background: url("../../images/lp-prayer_experience/icon_arrow-right_wh.svg") no-repeat center right 3.4rem / 0.9rem auto;
}

@media (max-width: 720px) {
  .l-lp-section-event-card-map-btn {
    font-size: 2.2rem;
    width: 100%;
    padding: 2.3rem 3.4rem;
  }
}

.l-lp-section-event-card-map-btn:hover {
  opacity: 0.9;
  background-color: rgba(255, 255, 255, 0.1);
}

/* オレンジ背景 */
.l-lp-section-event.--orange {
  --thisColor: #DB5331;
  --arrow-icon-url: url("../../images/lp-prayer_experience/icon_arrow-right_orange.svg");
  margin-top: 0.6rem;
}

@media (max-width: 720px) {
  .l-lp-section-event.--orange {
    margin-top: 0.3rem;
  }
}

/* ==============================
        高野山の行事・イベントをチェック
     ============================== */
.l-lp-section-events {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
  padding: 6.4rem 2.4rem;
  background-color: #EFEFE0;
}

@media (max-width: 720px) {
  .l-lp-section-events {
    padding: 6.4rem 2rem;
  }
}

.l-lp-section-events-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  width: 100%;
  max-width: 96.3rem;
}

/* セクション見出し（Frame 6895） */
.l-lp-section-events-head {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 1.3rem;
}

@media (max-width: 720px) {
  .l-lp-section-events-head {
    gap: 1.5;
  }
}

.l-lp-section-events-head strong {
  color: #DB5331;
}

.l-lp-section-events-icon {
  width: 2.6rem;
  margin: 0;
  padding: 0;
  line-height: 0;
}

@media (max-width: 720px) {
  .l-lp-section-events-icon {
    width: 3.8rem;
  }
}

.l-lp-section-events-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: top;
}

.l-lp-section-events-ttl {
  margin: 0;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #333333;
  text-align: center;
}

@media (max-width: 720px) {
  .l-lp-section-events-ttl {
    font-size: 2.6rem;
    line-height: 1.3;
  }
}

/* カード（Frame 6943） */
.l-lp-section-events-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2rem;
  width: 100%;
}

.l-lp-section-events-card-img {
  width: 100%;
  max-width: 96.3rem;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 2rem;
  line-height: 0;
  background: #fff;
}

.l-lp-section-events-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 2.65rem 3.2rem;
  border-radius: 100em;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #ffffff;
  transition: opacity 0.2s;
  min-width: 37.5rem;
  background: url("../../images/lp-prayer_experience/icon_arrow-right_wh.svg") no-repeat center right 3.4rem / 0.9rem auto, #DB5331;
}

@media (max-width: 720px) {
  .l-lp-section-events-card-btn {
    font-size: 2.2rem;
    padding: 2.3rem 3.4rem;
    min-width: 100%;
  }
}

.l-lp-section-events-card-btn:hover {
  opacity: 0.9;
}

/* ============================== */
/*高野山をもっと知る*/
/* ============================== */
.l-lp-section-pages {
  padding: 9.1rem 2.4rem 16rem;
  background: url("../../../img/common/bg-cloud.png") no-repeat, url("../../../img/common/bg.jpg") no-repeat;
  background-size: 1440px auto, 100% auto;
  background-position: top center;
}

@media (max-width: 720px) {
  .l-lp-section-pages {
    padding: 6.8rem 1.8rem 13.2rem;
  }
}

.l-lp-section-pages-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  width: 100%;
  max-width: 95.2rem;
  margin: 0 auto;
}

/* セクション見出し */
.l-lp-section-pages-head {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 45.8rem;
}

/* カードコンテナ */
.l-lp-section-pages-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  width: 100%;
}

@media (max-width: 720px) {
  .l-lp-section-pages-container {
    flex-direction: column;
    gap: 2.4rem;
  }
}

/* カード */
.l-lp-section-pages-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - 2.4rem) / 2);
  padding: 1.6rem 0 2.4rem;
  background: #ffffff;
  border-radius: 0.8rem;
  box-shadow: 0 0.4rem 0.8rem 0 rgba(0, 0, 0, 0.12);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

@media (max-width: 720px) {
  .l-lp-section-pages-item {
    width: 100%;
  }
}

.l-lp-section-pages-item:hover {
  opacity: 0.9;
}

.l-lp-section-pages-item-ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin: 0;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  min-height: 6.4rem;
}

.l-lp-section-pages-item-ttl img {
  flex-shrink: 0;
  width: 2.667em;
  height: 2.667em;
  object-fit: contain;
}

.l-lp-section-pages-item-img {
  margin: 1.6rem 0 0;
  padding: 0;
  line-height: 0;
}

.l-lp-section-pages-item-img img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

.l-lp-section-pages-item-desc {
  margin: 1.6rem auto 0;
  padding: 0 2.4rem;
  font-size: 1.6rem;
  line-height: 1.8;
}

.l-lp-section-pages-item-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6em;
  margin-top: 1.6rem;
  padding: 1.4rem 2.4rem;
  font-size: 1.4rem;
  line-height: 1.43;
  border: 0.1rem solid currentColor;
}

.l-lp-section-pages-item-btn::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  margin-left: -0.25em;
  border: solid currentColor;
  border-width: 0.1rem 0.1rem 0 0;
  transform: rotate(45deg);
}

/* イベントカード */
.l-lp-section-pages-item-event {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 4rem;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border-radius: 0.8rem;
}

.l-lp-section-pages-item-event-txt {
  position: absolute;
  z-index: 2;
  bottom: 2.8rem;
  left: 3.2rem;
  right: 3.2rem;
}

.l-lp-section-pages-item-event-ttl {
  margin: 0;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #ffffff;
}

.l-lp-section-pages-item-btn--event {
  margin-top: 2.4rem;
  background: #ffffff;
  border-color: #ffffff;
}

.l-lp-section-pages-item-event-img {
  margin: 0;
  padding: 0;
  line-height: 0;
}

.l-lp-section-pages-item-event-img img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

/* バナー */
.l-lp-section-pages-item-banner {
  flex-basis: calc(100% / 952 * 464);
  margin-top: 4rem;
}

.l-lp-section-pages-item-banner-link {
  display: block;
}

.l-lp-section-pages-item-banner-link figure {
  margin: 0;
  padding: 0;
  line-height: 0;
}

.l-lp-section-pages-item-banner-link img {
  width: 100%;
  height: auto;
  vertical-align: top;
}