@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

ul[role=list],
ol[role=list] {
  list-style: none;
}

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

body {
  min-height: 100vh;
  line-height: 1.5;
}

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

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

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

:root {
  --color-text: #1a1a1a;
  --color-bg: #ffffff;
  --color-header-bg: #f5f4f2;
  --font-family-base: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-family-serif: Noto Serif JP, Hiragino Mincho ProN, Yu Mincho, serif;
  --font-family-accent: Shippori Mincho, Hiragino Mincho ProN, serif;
}

body {
  font-family: var(--font-family-base);
  font-size: 16px;
  color: var(--color-text);
  background-color: var(--color-bg);
}

.l-header {
  position: relative;
  z-index: 100;
  background-color: var(--color-header-bg);
}
.l-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 24px;
}
@media (min-width: 768px) {
  .l-header__inner {
    padding: 24px 40px;
  }
}
.l-header__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: inherit;
  text-decoration: none;
}
.l-header__logoMark {
  display: block;
  flex-shrink: 0;
  height: 40px;
}
@media (min-width: 768px) {
  .l-header__logoMark {
    height: 48px;
  }
}
.l-header__logoImg {
  display: block;
  width: auto;
  height: 100%;
}
.l-header__titleText {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-family-serif);
  white-space: nowrap;
}
.l-header__titlePrefix {
  font-size: 14px;
  letter-spacing: 0.05em;
}
.l-header__titleMain {
  font-size: 22px;
  letter-spacing: 0.08em;
}
@media (min-width: 768px) {
  .l-header__titleMain {
    font-size: 26px;
  }
}
.l-header__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 768px) {
  .l-header__toggle {
    display: none;
  }
}
.l-header__toggleBar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.l-header__toggle[aria-expanded=true] .l-header__toggleBar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.l-header__toggle[aria-expanded=true] .l-header__toggleBar:nth-child(2) {
  opacity: 0;
}
.l-header__toggle[aria-expanded=true] .l-header__toggleBar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.l-header__nav {
  font-family: var(--font-family-serif);
}
@media (max-width: 767px) {
  .l-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 0;
    overflow: hidden;
    background-color: var(--color-header-bg);
    transition: height 0.3s ease;
  }
  .l-header__nav.is-open {
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
  }
}
.l-header__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .l-header__menu {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .l-header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 24px;
  }
}
.l-header__menu a {
  display: inline-block;
  padding: 8px 0;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .l-header__menu a:hover {
    opacity: 0.6;
  }
}
@media (max-width: 767px) {
  .l-header__menu li {
    width: 100%;
    border-bottom: 1px solid #e5e0da;
  }
  .l-header__menu a {
    width: 100%;
    padding: 14px 0;
  }
}

.l-footer {
  border-top: 1px solid #cfcac2;
  background-color: var(--color-header-bg);
}
.l-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 24px;
}
@media (min-width: 768px) {
  .l-footer__inner {
    padding: 64px 40px;
  }
}
.l-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.l-footer__socialIcon {
  display: block;
  width: 32px;
  height: 32px;
  transition: opacity 0.2s ease;
}
.l-footer__socialIcon img {
  display: block;
  width: 100%;
  height: 100%;
}
.l-footer__socialIcon:hover {
  opacity: 0.7;
}
.l-footer__nav {
  font-family: var(--font-family-serif);
}
.l-footer__menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .l-footer__menu {
    writing-mode: vertical-rl;
    gap: 24px;
    font-size: 16px;
  }
}
.l-footer__menu a {
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .l-footer__menu a:hover {
    opacity: 0.6;
  }
}

.c-button {
  display: inline-block;
  padding: 12px 32px;
  font-size: 15px;
  line-height: 1;
  color: #fff;
  background-color: #1a1a1a;
  border-radius: 4px;
  transition: opacity 0.2s ease;
}
.c-button:hover {
  opacity: 0.8;
}

.c-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background-color: rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.c-lightbox.is-active {
  opacity: 1;
  visibility: visible;
}
.c-lightbox__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
}
.c-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.c-lightbox__close::before, .c-lightbox__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background-color: #fff;
}
.c-lightbox__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-lightbox__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.p-mainvisual {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.p-mainvisual__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity 2.5s ease, transform 7s ease-out;
}
.p-mainvisual__image.is-active {
  opacity: 1;
  transform: scale(1.08);
}

.p-pageTitle {
  padding: 32px 24px;
  font-family: var(--font-family-accent);
  font-size: 24px;
  text-align: center;
  font-weight: 400;
}
@media (min-width: 768px) {
  .p-pageTitle {
    padding: 64px 24px 32px 24px;
    font-size: 32px;
    letter-spacing: 0.2em;
  }
}

.p-pageContent {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 24px;
  line-height: 1.8;
}
.p-pageContent__heading {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
  padding-bottom: 14px;
  font-family: var(--font-family-accent);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
.p-pageContent__heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background-color: #2f6f4f;
}
@media (min-width: 768px) {
  .p-pageContent__heading {
    font-size: 23px;
    margin-bottom: 28px;
  }
}

.p-pageLead {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 32px;
  font-size: 15px;
  line-height: 1.9;
  text-align: center;
}

.p-catchcopy {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px 24px 28px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0) 100%);
}
@media (min-width: 768px) {
  .p-catchcopy {
    padding: 80px 48px 48px;
  }
}
.p-catchcopy__main {
  font-family: var(--font-family-serif);
  font-size: 24px;
  letter-spacing: 0.06em;
}
@media (min-width: 768px) {
  .p-catchcopy__main {
    font-size: 48px;
  }
}
.p-catchcopy__lead {
  max-width: 520px;
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .p-catchcopy__lead {
    font-size: 18px;
  }
}

.p-demo + .p-demo {
  margin-top: 48px;
}

.p-demoLabel {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 16px;
}
.p-demoLabel__tag {
  display: inline-block;
  padding: 2px 10px;
  font-family: var(--font-family-accent);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #2f6f4f;
}
.p-demoLabel__title {
  margin-top: 8px;
  font-family: var(--font-family-serif);
  font-size: 17px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-demoLabel__title {
    font-size: 19px;
  }
}
.p-demoLabel__desc {
  max-width: 640px;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

.p-mainvisual--calm .p-mainvisual__image {
  transform: none;
  transition: opacity 4s ease-in-out;
}
.p-mainvisual--calm .p-mainvisual__image.is-active {
  transform: none;
}
.p-mainvisual--pan .p-mainvisual__image {
  transform: scale(1.04) translateX(-1.5%);
  transition: opacity 3s ease, transform 10s ease-out;
}
.p-mainvisual--pan .p-mainvisual__image.is-active {
  transform: scale(1.12) translateX(1.5%);
}
.p-mainvisual--rhythm .p-mainvisual__image {
  transform: translateX(3%) scale(1.02);
  transition: opacity 1.1s ease, transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-mainvisual--rhythm .p-mainvisual__image.is-active {
  transform: translateX(0) scale(1);
}

.p-catchcopy--center {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.22);
}
.p-catchcopy--center .p-catchcopy__vertical {
  writing-mode: vertical-rl;
  font-family: var(--font-family-accent);
  font-size: 28px;
  letter-spacing: 0.3em;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .p-catchcopy--center .p-catchcopy__vertical {
    font-size: 40px;
  }
}
.p-catchcopy--center .p-catchcopy__sub {
  max-width: 480px;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.9;
}
@media (min-width: 768px) {
  .p-catchcopy--center .p-catchcopy__sub {
    font-size: 16px;
  }
}

.p-catchcopy--panel {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.p-catchcopy--panel .p-catchcopy__panelInner {
  width: 100%;
  max-width: 340px;
  padding: 28px 24px;
  color: #fff;
  background-color: rgba(37, 61, 49, 0.82);
}
@media (min-width: 768px) {
  .p-catchcopy--panel .p-catchcopy__panelInner {
    padding: 40px 40px;
  }
}
.p-catchcopy--panel .p-catchcopy__eyebrow {
  font-family: var(--font-family-accent);
  font-size: 14px;
  letter-spacing: 0.16em;
  opacity: 0.85;
}
.p-catchcopy--panel .p-catchcopy__main {
  margin-top: 12px;
  font-family: var(--font-family-serif);
  font-size: 26px;
  letter-spacing: 0.06em;
}
@media (min-width: 768px) {
  .p-catchcopy--panel .p-catchcopy__main {
    font-size: 34px;
  }
}
.p-catchcopy--panel .p-catchcopy__lead {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.9;
}
@media (min-width: 768px) {
  .p-catchcopy--panel .p-catchcopy__lead {
    font-size: 15px;
  }
}

.p-catchcopy--centerBold {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  background: rgba(0, 0, 0, 0.28);
}
.p-catchcopy--centerBold .p-catchcopy__eyebrow {
  font-family: var(--font-family-accent);
  font-size: 14px;
  letter-spacing: 0.2em;
}
.p-catchcopy--centerBold .p-catchcopy__main {
  margin-top: 10px;
  font-family: var(--font-family-serif);
  font-size: 32px;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media (min-width: 768px) {
  .p-catchcopy--centerBold .p-catchcopy__main {
    font-size: 52px;
  }
}
.p-catchcopy--centerBold .p-catchcopy__divider {
  display: block;
  width: 64px;
  height: 1px;
  margin-top: 18px;
  background-color: #c9a15a;
}
.p-catchcopy--centerBold .p-catchcopy__lead {
  max-width: 480px;
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.9;
}
@media (min-width: 768px) {
  .p-catchcopy--centerBold .p-catchcopy__lead {
    font-size: 16px;
  }
}

.p-newsGrid {
  max-width: calc(1080px + 48px);
  margin: 0 auto;
  padding: 64px 24px;
}
.p-newsGrid .p-news__heading {
  max-width: none;
  padding: 0 0 20px;
}
.p-newsGrid__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
}
@media (min-width: 768px) {
  .p-newsGrid__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.p-news__heading {
  position: relative;
  max-width: 800px;
  margin: 0 auto 24px;
  padding: 0 24px 20px;
  font-family: var(--font-family-accent);
  font-size: 20px;
  letter-spacing: 0.1em;
  text-align: center;
}
.p-news__heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 48px;
  height: 2px;
  background-color: #006837;
  transform: translateX(-50%);
}
.p-news__instagram {
  padding: 64px 24px;
}
.p-news__instagramFeed {
  max-width: 1080px;
  margin: 16px auto 48px;
  padding: 0 24px;
}
.p-news__instagramFallback {
  margin-top: 16px;
  text-align: center;
}

.p-regularEvents {
  padding: 64px 0;
  background-color: #faf9f7;
}
.p-regularEvents__inner {
  max-width: calc(1080px + 48px);
  margin: 0 auto;
  padding: 0 24px;
}
.p-regularEvents__heading {
  position: relative;
  margin-bottom: 32px;
  padding-bottom: 20px;
  font-family: var(--font-family-accent);
  font-size: 21px;
  letter-spacing: 0.1em;
  text-align: center;
}
.p-regularEvents__heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 48px;
  height: 2px;
  background-color: #006837;
  transform: translateX(-50%);
}
.p-regularEvents__list {
  display: grid;
  gap: 16px;
}
@media (min-width: 768px) {
  .p-regularEvents__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-regularEvents__item {
  padding: 16px;
  background-color: var(--color-bg);
  border: 1px solid #e5e0da;
  border-radius: 4px;
}
.p-regularEvents__media {
  margin: -16px -16px 12px;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}
.p-regularEvents__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.p-regularEvents .p-notices__tag {
  margin-top: 0;
}
.p-regularEvents__name {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: #006837;
  font-size: 18px;
  font-weight: bold;
}
.p-regularEvents__name::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background-color: #006837;
  transform: rotate(45deg);
}
.p-regularEvents__schedule {
  margin-top: 4px;
}
.p-regularEvents__notes {
  margin-top: 8px;
  font-size: 14px;
  color: #666;
}

.p-omamori__gallery,
.p-animalCemetery__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: calc(1080px + 48px);
  margin: 0 auto 48px;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .p-omamori__gallery,
  .p-animalCemetery__gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-omamori__gallery img,
.p-animalCemetery__gallery img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 4px;
}

.p-kumikoFeature {
  max-width: 1080px;
  margin: 32px auto 0;
  padding: 0 24px;
}
.p-kumikoFeature__heading {
  font-family: var(--font-family-serif);
  font-size: 21px;
  font-weight: 500;
}
.p-kumikoFeature__item {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.9;
}
.p-kumikoFeature__item strong {
  font-weight: bold;
}
.p-kumikoFeature__item a {
  color: #00c;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .p-kumikoFeature__item a:hover {
    opacity: 0.6;
  }
}

.p-kumikoCraftsman {
  margin-top: 48px;
  padding: 48px 0;
  background-color: var(--color-header-bg);
}
.p-kumikoCraftsman__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.p-kumikoCraftsman__heading {
  font-family: var(--font-family-serif);
  font-size: 21px;
  font-weight: 500;
}
.p-kumikoCraftsman__photo {
  margin-top: 16px;
}
.p-kumikoCraftsman__photo img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
}
.p-kumikoCraftsman__text {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.9;
}
.p-kumikoCraftsman__link {
  margin-top: 12px;
}
.p-kumikoCraftsman__link a {
  color: #00c;
  font-size: 16px;
  font-weight: bold;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .p-kumikoCraftsman__link a:hover {
    opacity: 0.6;
  }
}

.p-templeContact {
  font-family: var(--font-family-serif);
}
.p-templeContact__name {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.p-templeContact__meta {
  margin-top: 12px;
}
.p-templeContact__hours {
  font-size: 15px;
}
.p-templeContact__addressLine {
  margin-top: 12px;
  font-size: 15px;
}
.p-templeContact__address, .p-templeContact__tel, .p-templeContact__fax {
  display: block;
}

.p-contactInfo {
  display: grid;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 48px;
  padding: 0 24px;
}
.p-contactInfo__block {
  padding: 24px;
  border: 1px solid #e5e0da;
  border-radius: 4px;
}
.p-contactInfo__heading {
  font-family: var(--font-family-serif);
  font-size: 18px;
  color: #2f6f4f;
  font-weight: 500;
}
.p-contactInfo__text {
  margin-top: 8px;
}
.p-contactInfo__tel, .p-contactInfo__mail {
  margin-top: 12px;
  font-size: 18px;
}
.p-contactInfo__tel a, .p-contactInfo__mail a {
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .p-contactInfo__tel a:hover, .p-contactInfo__mail a:hover {
    opacity: 0.6;
  }
}
.p-contactInfo__note {
  margin-top: 12px;
  font-size: 14px;
  color: #666;
}

.p-notices {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 24px;
}
@media (min-width: 768px) {
  .p-notices {
    flex-direction: row;
    padding: 72px 24px;
  }
}
.p-notices__heading {
  flex-shrink: 0;
  font-family: var(--font-family-serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .p-notices__heading {
    font-size: 24px;
    writing-mode: vertical-rl;
  }
}
.p-notices__body {
  flex: 1;
  min-width: 0;
}
.p-notices__list {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
}
.p-notices__item {
  flex: 0 0 260px;
  scroll-snap-align: start;
}
@media (min-width: 768px) {
  .p-notices__item {
    flex: 0 0 calc((100% - 32px) / 3);
  }
}
.p-notices__item a {
  display: block;
  color: inherit;
}
.p-notices__thumb {
  display: block;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
}
.p-notices__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.p-notices__tag {
  display: inline-block;
  margin-top: 12px;
  padding: 2px 10px;
  font-size: 14px;
  border: 1px solid #999;
  color: #666;
}
.p-notices__tag--orange {
  color: #e0663f;
  border-color: #e0663f;
}
.p-notices__tag--blue {
  color: #2f6fb0;
  border-color: #2f6fb0;
}
.p-notices__tag--green {
  color: #2f6f4f;
  border-color: #2f6f4f;
}
.p-notices__tag--gray {
  color: #666;
  border-color: #999;
}
.p-notices__title {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .p-notices__item a:hover .p-notices__thumb img {
    transform: scale(1.08);
  }
  .p-notices__item a:hover .p-notices__title {
    opacity: 0.7;
  }
}
.p-notices__dots {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 16px;
}
.p-notices__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background-color: #d4cfc7;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.p-notices__dot:hover {
  background-color: #b3aca1;
  transform: scale(1.2);
}
.p-notices__dot.is-active {
  background-color: #1a1a1a;
}

.p-linkCards {
  max-width: calc(1080px + 48px);
  margin: 0 auto;
  padding: 24px 24px 64px;
}
.p-linkCards__list {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .p-linkCards__list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 64px;
  }
}
.p-linkCards__item {
  border-top: none;
  border-bottom: 1px solid #e5e0da;
}
.p-linkCards__item:first-child {
  border-top: 1px solid #e5e0da;
}
@media (min-width: 768px) {
  .p-linkCards__item:nth-child(-n+2) {
    border-top: 1px solid #e5e0da;
  }
}
.p-linkCards__link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 16px;
  color: inherit;
}
.p-linkCards__thumb {
  display: block;
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 4px;
}
.p-linkCards__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.p-linkCards__label {
  flex: 1;
  font-family: var(--font-family-serif);
  font-size: 15px;
  transition: opacity 0.2s ease;
}
@media (min-width: 768px) {
  .p-linkCards__label {
    font-size: 18px;
  }
}
.p-linkCards__arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: #999;
  transition: transform 0.2s ease;
}
@media (hover: hover) {
  .p-linkCards__link:hover .p-linkCards__thumb img {
    transform: scale(1.08);
  }
  .p-linkCards__link:hover .p-linkCards__label {
    opacity: 0.7;
  }
}

.p-access {
  padding: 24px 24px 64px;
}
.p-access__map {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1080px;
  height: 320px;
  margin: 0 auto;
  background-color: var(--color-bg);
  border: 1px solid #e5e0da;
  border-radius: 24px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-access__map {
    height: 480px;
  }
}
.p-access__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.35) brightness(1.03) contrast(0.95);
}
.p-access__mapPin {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -100%);
  pointer-events: none;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.25));
}
.p-access__mapPin svg {
  display: block;
  width: 44px;
  height: auto;
}
@media (min-width: 768px) {
  .p-access__mapPin svg {
    width: 56px;
  }
}
.p-access__mapPinLabel {
  margin-bottom: 4px;
  padding: 4px 10px;
  background-color: #fff;
  color: #2f6f4f;
  font-family: var(--font-family-serif);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
  border: 1px solid #2f6f4f;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .p-access__mapPinLabel {
    font-size: 15px;
    padding: 6px 12px;
  }
}
.p-access .p-templeContact {
  max-width: 1080px;
  margin: 32px auto 0;
}
@media (min-width: 768px) {
  .p-access .p-templeContact {
    display: flex;
    align-items: center;
    gap: 32px;
  }
}
.p-access .p-templeContact__meta {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .p-access .p-templeContact__meta {
    margin-top: 0;
  }
}
.p-access .p-templeContact__addressLine {
  margin-top: 4px;
}
@media (min-width: 768px) {
  .p-access .p-templeContact__addressLine {
    margin-top: 0;
  }
}
.p-access .p-templeContact__address, .p-access .p-templeContact__tel, .p-access .p-templeContact__fax {
  display: inline;
  margin-right: 16px;
}

.p-accessVideos {
  max-width: calc(1080px + 48px);
  margin: 0 auto;
  padding: 0 24px 64px;
}
.p-accessVideos__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .p-accessVideos__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-accessVideos__embed, .p-accessVideos__placeholder {
  aspect-ratio: 16/9;
}
.p-accessVideos__embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.p-accessVideos__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  background-color: var(--color-header-bg);
  border: 1px solid #e5e0da;
}
.p-accessVideos__title {
  margin-top: 8px;
  font-size: 14px;
}
.p-accessVideos__desc {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}

.p-aboutHero {
  max-width: calc(1080px + 48px);
  margin: 0 auto 32px;
  padding: 0 24px;
}
.p-aboutHero img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
}

.p-aboutFeature {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: calc(1080px + 48px);
  margin: 64px auto 0;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .p-aboutFeature {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
}
@media (min-width: 768px) {
  .p-aboutFeature--reverse {
    flex-direction: row-reverse;
  }
}
.p-aboutFeature__media {
  flex: 1;
}
.p-aboutFeature__media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}
.p-aboutFeature__body {
  flex: 1;
}
.p-aboutFeature__heading {
  font-family: var(--font-family-serif);
  font-size: 21px;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}
.p-aboutFeature__body p {
  margin-top: 8px;
  line-height: 1.8;
}
.p-aboutFeature__list {
  margin-top: 12px;
}
.p-aboutFeature__list li {
  position: relative;
  padding-left: 1em;
}
.p-aboutFeature__list li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.p-aboutFeature .c-button {
  display: inline-block;
  margin-top: 20px;
}

.p-aboutGallery {
  max-width: calc(1080px + 48px);
  margin: 64px auto 0;
  padding: 0 24px;
}
.p-aboutGallery__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .p-aboutGallery__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-aboutGallery__trigger {
  display: block;
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .p-aboutGallery__trigger:hover {
    opacity: 0.8;
  }
}
.p-aboutGallery__item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 4px;
}
.p-aboutGallery__name {
  margin-top: 10px;
  font-family: var(--font-family-serif);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .p-aboutGallery__name {
    font-size: 15px;
  }
}
.p-aboutGallery__desc {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}
@media (min-width: 768px) {
  .p-aboutGallery__desc {
    font-size: 15px;
  }
}

.p-annualEvents {
  margin-top: 64px;
  padding: 48px 0;
  background-color: var(--color-header-bg);
}
.p-annualEvents__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.p-annualEvents__heading {
  position: relative;
  padding-bottom: 20px;
  font-family: var(--font-family-accent);
  font-size: 20px;
  letter-spacing: 0.1em;
}
.p-annualEvents__heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 48px;
  height: 2px;
  background-color: #006837;
  transform: translateX(-50%);
}
.p-annualEvents__note {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.8;
}
.p-annualEvents__table {
  width: 100%;
  margin-top: 24px;
  border-collapse: collapse;
  text-align: left;
}
.p-annualEvents__table th,
.p-annualEvents__table td {
  padding: 12px 16px;
  font-weight: normal;
  border-bottom: 1px solid #e5e0da;
}
.p-annualEvents__table th {
  width: 40%;
  color: #666;
}
@media (min-width: 768px) {
  .p-annualEvents__table th {
    width: 220px;
  }
}

.p-kaikanHero {
  position: relative;
  max-width: calc(1080px + 48px);
  margin: 0 auto 32px;
  padding: 0 24px;
}
.p-kaikanHero img:not(.p-kaikanHero__badge) {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
}
.p-kaikanHero__badge {
  position: absolute;
  bottom: 16px;
  width: 96px;
  height: 96px;
}
@media (min-width: 768px) {
  .p-kaikanHero__badge {
    width: 240px;
    height: 240px;
  }
}
.p-kaikanHero__badge--blue {
  right: 140px;
}
@media (min-width: 768px) {
  .p-kaikanHero__badge--blue {
    right: 288px;
  }
}
.p-kaikanHero__badge--orange {
  right: 40px;
}

.p-kaikanCatch {
  max-width: calc(1080px + 48px);
  margin: 0 auto;
  padding: 32px 24px;
  font-family: var(--font-family-accent);
  font-size: 16px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #2f6f4f;
}
@media (min-width: 768px) {
  .p-kaikanCatch {
    font-size: 19px;
  }
}

.p-kaikanInfo {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: calc(1080px + 48px);
  margin: 64px auto 0;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .p-kaikanInfo {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
}
.p-kaikanInfo__media {
  flex: 1;
}
.p-kaikanInfo__media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}
.p-kaikanInfo__body {
  flex: 1;
}
.p-kaikanInfo__heading {
  font-family: var(--font-family-serif);
  font-size: 20px;
}
.p-kaikanInfo__address, .p-kaikanInfo__tel {
  margin-top: 8px;
  font-size: 14px;
}
.p-kaikanInfo__rooms {
  margin-top: 16px;
}
.p-kaikanInfo__rooms li {
  position: relative;
  padding-left: 1em;
  margin-top: 4px;
}
.p-kaikanInfo__rooms li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.p-kaikanInfo__equipment {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}
.p-kaikanInfo__barrierFree {
  margin-top: 12px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.8;
  background-color: var(--color-header-bg);
  border-radius: 4px;
}
.p-kaikanInfo__access {
  max-width: calc(1080px + 48px);
  margin: 24px auto 0;
  padding: 0 24px;
  font-size: 14px;
  line-height: 1.8;
}

.p-kaikanUsage {
  max-width: calc(1080px + 48px);
  margin: 32px auto 0;
  padding: 0 24px;
}
.p-kaikanUsage__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .p-kaikanUsage__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-kaikanUsage__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}
.p-kaikanUsage__name {
  margin-top: 16px;
  font-family: var(--font-family-serif);
  font-size: 20px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-kaikanUsage__name {
    font-size: 22px;
  }
}
.p-kaikanUsage__schedule {
  margin-top: 6px;
  font-size: 14px;
  color: #666;
}
.p-kaikanUsage__note {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e5e0da;
  font-size: 14px;
  text-align: center;
}
.p-kaikanUsage__note a {
  color: #2f6f4f;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .p-kaikanUsage__note a:hover {
    opacity: 0.7;
  }
}

.p-photoPair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: calc(1080px + 48px);
  margin: 64px auto 0;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .p-photoPair {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-photoPair--twoCols {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .p-photoPair--twoCols {
    gap: 24px;
  }
}
.p-photoPair__item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}
.p-photoPair__item figcaption {
  margin-top: 8px;
  font-size: 14px;
}

.p-ctaBox {
  max-width: calc(1080px + 48px);
  margin: 64px 24px;
  padding: 24px;
  border: 1px solid #cfcac2;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .p-ctaBox {
    margin: 64px auto;
  }
}
.p-ctaBox__heading {
  font-family: var(--font-family-serif);
  font-size: 18px;
  color: #2f6f4f;
  font-weight: 500;
}
.p-ctaBox__text {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.8;
}
.p-ctaBox__text a {
  color: #00c;
  font-size: 16px;
  font-weight: bold;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .p-ctaBox__text a:hover {
    opacity: 0.6;
  }
}

.p-serviceBlock {
  max-width: 1080px;
  margin: 56px auto 0;
  padding: 0 24px;
}
.p-serviceBlock__item + .p-serviceBlock__item {
  margin-top: 40px;
}
.p-serviceBlock__heading {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  font-family: var(--font-family-serif);
  font-size: 21px;
  letter-spacing: 0.1em;
}
.p-serviceBlock__heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2f6f4f;
}
@media (min-width: 768px) {
  .p-serviceBlock__heading {
    display: block;
  }
  .p-serviceBlock__heading::after {
    width: 50%;
  }
}
.p-serviceBlock__text {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.9;
}

.p-contactForm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 64px;
}
.p-contactForm__heading {
  font-family: var(--font-family-serif);
  font-size: 20px;
  text-align: center;
  margin-bottom: 24px;
}
.p-contactForm__note {
  color: #c0392b;
}
.p-contactForm .wpcf7-form p {
  margin-top: 20px;
}
.p-contactForm .wpcf7-form label {
  display: block;
  font-size: 14px;
}
.p-contactForm .wpcf7-form .wpcf7-form-required {
  margin-left: 4px;
  font-size: 14px;
  color: #c0392b;
}
.p-contactForm .wpcf7-form input[type=text],
.p-contactForm .wpcf7-form input[type=email],
.p-contactForm .wpcf7-form input[type=tel],
.p-contactForm .wpcf7-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 12px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid #cfcac2;
  border-radius: 4px;
}
.p-contactForm .wpcf7-form textarea {
  min-height: 160px;
  resize: vertical;
}
.p-contactForm .wpcf7-form input[type=submit] {
  display: block;
  margin: 32px auto 0;
  padding: 12px 48px;
  font-size: 15px;
  color: #fff;
  background-color: #1a1a1a;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.p-contactForm .wpcf7-form input[type=submit]:hover {
  opacity: 0.8;
}
.p-contactForm .wpcf7-form .wpcf7-not-valid-tip {
  margin-top: 4px;
  font-size: 14px;
  color: #c0392b;
}
.p-contactForm .wpcf7-form .wpcf7-response-output {
  margin-top: 24px;
  padding: 12px 16px;
  font-size: 14px;
  border-radius: 4px;
}

.p-graveSection {
  max-width: calc(1080px + 48px);
  margin: 80px auto 0 auto;
  padding: 0 24px;
}
.p-graveSection__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
}
.p-graveSection .p-pageContent {
  max-width: none;
  margin-top: 24px;
  padding: 0 0 48px;
}

.p-eitaiPrice {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: calc(1080px + 48px);
  margin: 48px auto 0;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .p-eitaiPrice {
    margin-top: 56px;
  }
}
.p-eitaiPrice__block + .p-eitaiPrice__block {
  padding-top: 40px;
  border-top: 1px solid #e5e0da;
}
.p-eitaiPrice__label {
  font-family: var(--font-family-serif);
  font-size: 16px;
  font-weight: 500;
}
.p-eitaiPrice__table {
  width: 100%;
  margin-top: 16px;
  border-collapse: collapse;
}
.p-eitaiPrice__table th,
.p-eitaiPrice__table td {
  padding: 12px 4px;
  font-weight: normal;
  text-align: left;
  border-bottom: 1px solid #e5e0da;
}
.p-eitaiPrice__table th {
  width: 40%;
  color: #666;
}
.p-eitaiPrice__table td {
  font-weight: bold;
  color: #2f6f4f;
}
.p-eitaiPrice__note {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}

.p-singlePost {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 0;
}
.p-singlePost__header {
  text-align: center;
}
.p-singlePost__title {
  margin-top: 12px;
  font-family: var(--font-family-serif);
  font-size: 22px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .p-singlePost__title {
    font-size: 26px;
  }
}
.p-singlePost__date {
  margin-top: 8px;
  font-size: 14px;
  color: #666;
}
.p-singlePost__thumb {
  margin-top: 32px;
}
.p-singlePost__thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
}
.p-singlePost__content {
  margin-top: 32px;
  font-size: 15px;
  line-height: 1.8;
}
.p-singlePost__content > * + * {
  margin-top: 1.6em;
}
.p-singlePost__content h2 {
  font-family: var(--font-family-serif);
  font-size: 19px;
  font-weight: 500;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e0da;
}
.p-singlePost__content h3 {
  font-family: var(--font-family-serif);
  font-size: 17px;
  font-weight: 500;
}
.p-singlePost__content ul,
.p-singlePost__content ol {
  padding-left: 1.4em;
}
.p-singlePost__content ul > * + *,
.p-singlePost__content ol > * + * {
  margin-top: 0.4em;
}
.p-singlePost__content ul {
  list-style: disc;
}
.p-singlePost__content ol {
  list-style: decimal;
}
.p-singlePost__content a {
  color: #00c;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .p-singlePost__content a:hover {
    opacity: 0.6;
  }
}
.p-singlePost__content img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.p-singlePost__content blockquote {
  padding: 16px 20px;
  background-color: var(--color-header-bg);
  border-left: 4px solid #2f6f4f;
}

.p-singlePost__back {
  max-width: 800px;
  margin: 48px auto 64px;
  padding: 0 24px;
  text-align: center;
}
.p-singlePost__back a {
  color: inherit;
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  .p-singlePost__back a:hover {
    opacity: 0.6;
  }
}

.p-faq {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 64px;
}
.p-faq__group + .p-faq__group {
  margin-top: 40px;
}
.p-faq__category {
  position: relative;
  padding-bottom: 8px;
  font-family: var(--font-family-serif);
  font-size: 19px;
  letter-spacing: 0.08em;
}
.p-faq__category::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #2f6f4f;
}
@media (min-width: 768px) {
  .p-faq__category {
    font-size: 21px;
  }
}
.p-faq__list {
  margin-top: 16px;
  border-top: 1px solid #e5e0da;
}
.p-faq__item {
  border-bottom: 1px solid #e5e0da;
}
.p-faq__details[open] .p-faq__toggle::before {
  transform: rotate(90deg);
}
.p-faq__details[open] .p-faq__toggle::after {
  opacity: 0;
}
.p-faq__question {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 4px;
  cursor: pointer;
  list-style: none;
}
.p-faq__question::-webkit-details-marker {
  display: none;
}
.p-faq__question:hover .p-faq__questionText {
  opacity: 0.75;
}
.p-faq__mark {
  flex: none;
  font-family: var(--font-family-accent);
  font-size: 16px;
  line-height: 1.6;
}
.p-faq__mark--q {
  color: #2f6f4f;
}
.p-faq__mark--a {
  color: #c9a15a;
}
.p-faq__questionText {
  flex: 1;
  padding-top: 1px;
  font-size: 15px;
  line-height: 1.6;
  transition: opacity 0.2s ease;
}
@media (min-width: 768px) {
  .p-faq__questionText {
    font-size: 16px;
  }
}
.p-faq__toggle {
  position: relative;
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 2px;
}
.p-faq__toggle::before, .p-faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #2f6f4f;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.p-faq__toggle::before {
  width: 100%;
  height: 1px;
}
.p-faq__toggle::after {
  width: 1px;
  height: 100%;
}
.p-faq__answer {
  display: flex;
  gap: 12px;
  padding: 0 4px 20px 32px;
}
.p-faq__answerText {
  font-size: 14px;
  line-height: 1.9;
  color: #444;
}
@media (min-width: 768px) {
  .p-faq__answerText {
    font-size: 15px;
  }
}

.u-visuallyHidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.u-mt16 {
  margin-top: 16px;
}

.u-textCenter {
  text-align: center;
}

@media (min-width: 768px) {
  .u-spOnly {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .u-pcOnly {
    display: none !important;
  }
}

.js-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}
.js-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
