@charset "UTF-8";
/* ==========================================================================
   変数定義
   ========================================================================== */
/* ── Text ── */
/* ── Brand (ゴールド / ブラウン系) ── */
/* ── Accent (紫) ── */
/* ── Neutrals ── */
/* ── Fonts ── */
/* ── Breakpoints / Layout ── */
/* ==========================================================================
   リセット & ベース
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
a:hover {
  opacity: 0.7;
}

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

button {
  font-family: inherit;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  color: inherit;
}

main {
  display: block;
}

/* ==========================================================================
   共通：セクション見出し
   ========================================================================== */
.section-heading {
  position: relative;
}
.section-heading__decoration {
  display: block;
  width: 200px;
  height: 2px;
  margin-bottom: 35px;
  background: linear-gradient(to right, #8d5e05 0%, #8d5e05 50%, #c9c1b0 50%, #c9c1b0 100%);
}
.section-heading__subtitle {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN", serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  color: #8d5e05;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .section-heading__subtitle {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
}
.section-heading__title {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN", serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  color: #333;
}
@media screen and (max-width: 767px) {
  .section-heading__title {
    font-size: 2.6rem;
  }
}
.section-heading--light .section-heading__subtitle,
.section-heading--light .section-heading__title {
  color: #fff;
}
.section-heading--light .section-heading__decoration {
  background: linear-gradient(to right, #fff 0%, #fff 50%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.4) 100%);
}

/* ==========================================================================
   コンテナ共通
   ========================================================================== */
.company__inner, .faq__inner, .flow__inner, .chat-create__inner, .finish__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================================
   ヘッダー
   ========================================================================== */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e6dfd0;
  position: relative;
  z-index: 100;
}
.site-header__top {
  padding: 10px 0;
}
.site-header__inner {
  max-width: 1390px;
  margin: 0 auto;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .site-header__inner {
    padding: 0 15px;
  }
}
.site-header__brand {
  flex: 1;
}
.site-header__tagline {
  font-size: 1rem;
  color: #666;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .site-header__tagline {
    display: none;
  }
}
.site-header__logo {
  display: inline-block;
}
.site-header__logo img {
  height: 48px;
}
@media screen and (max-width: 767px) {
  .site-header__logo img {
    height: 36px;
  }
}
.site-header__temple-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  background: #fff;
  color: #6c42a4;
  border: 1px solid #6c42a4;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  min-width: 280px;
  transition: background 0.2s ease, color 0.2s ease;
}
@media screen and (max-width: 1024px) {
  .site-header__temple-btn {
    min-width: auto;
  }
}
@media screen and (max-width: 767px) {
  .site-header__temple-btn {
    display: none;
  }
}
.site-header__temple-btn:hover {
  background: #6c42a4;
  color: #fff;
  opacity: 1;
}
.site-header__temple-btn:hover .site-header__temple-icon {
  filter: brightness(0) invert(1);
}
.site-header__temple-icon {
  display: inline-block;
  width: 34.667px;
  height: 26px;
  background: url("../img/newtop/icon_temple.svg") no-repeat center/contain;
  transition: filter 0.2s ease;
}
.site-header__menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
@media screen and (max-width: 767px) {
  .site-header__menu-toggle {
    display: flex;
  }
}
.site-header__menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.site-header__menu-toggle[aria-expanded=true] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.site-header__menu-toggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.site-header__menu-toggle[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   グローバルナビ
   ========================================================================== */
.global-nav {
  border-top: 1px solid #e6dfd0;
  padding: 16px 0;
}
@media screen and (max-width: 767px) {
  .global-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e6dfd0;
    padding: 0;
  }
  .global-nav.is-open {
    display: block;
  }
}
.global-nav__list {
  display: flex;
  justify-content: center;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .global-nav__list {
    gap: 25px;
  }
}
@media screen and (max-width: 767px) {
  .global-nav__list {
    flex-direction: column;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .global-nav__item {
    border-bottom: 1px solid #e6dfd0;
  }
}
/* モバイル（ハンバーガー）のみで表示する項目を PC で隠す */
@media screen and (min-width: 768px) {
  .global-nav__item--mobile-only { display: none !important; }
}
.global-nav__link {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .global-nav__link {
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
  }
  .global-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #b8935a;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
  }
  .global-nav__link:hover {
    opacity: 1;
  }
  .global-nav__link:hover::after {
    transform: scaleX(1);
  }
}
@media screen and (max-width: 767px) {
  .global-nav__link {
    display: block;
    padding: 15px 20px;
  }
}

/* ==========================================================================
   FV（ファーストビュー）
   ========================================================================== */
.fv {
  position: relative;
  background: #faf5e9;
  z-index: 1;
}
.fv__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.fv__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.fv__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .fv__inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .fv__inner {
    position: relative;
    flex-direction: column;
    padding: 20px 20px 40px;
    align-items: stretch;
  }
}
.fv__content {
  max-width: 733px;
  width: 100%;
  padding: 60px 0 40px;
}
@media screen and (max-width: 1024px) {
  .fv__content {
    padding: 50px 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .fv__content {
    padding: 0;
    position: relative;
    z-index: 2;
  }
}
.fv__copy {
  margin-bottom: 15px;
}
.fv__headline {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN", serif;
  font-size: 4.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .fv__headline {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__headline {
    font-size: 2.6rem;
  }
}
.fv__lead {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #333;
}
@media screen and (max-width: 1024px) {
  .fv__lead {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__lead {
    font-size: 1.4rem;
  }
}
.fv__features {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .fv__features {
    gap: 10px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .fv__features {
    width: 70%;
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    justify-content: start;
  }
}
.fv__feature {
  flex: 1;
  aspect-ratio: 1/1;
  max-width: 200px;
  background: #fff;
  border: 1px solid #e6dfd0;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .fv__feature {
    padding: 10px;
    max-width: 140px;
  }
}
@media screen and (max-width: 767px) {
  .fv__feature {
    aspect-ratio: 1/1;
    width: 100%;
    max-width: none;
    padding: 8px;
  }
}
@media screen and (max-width: 767px) {
  .fv__feature:nth-child(3) {
    grid-column: 1/-1;
    justify-self: center;
    width: calc((100% - 4px) / 2);
  }
}
.fv__feature-label {
  font-size: 1.4rem;
  color: #b8935a;
  margin-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .fv__feature-label {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 767px) {
  .fv__feature-label {
    font-size: 1.08rem;
  }
}
.fv__feature-value {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .fv__feature-value {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__feature-value {
    font-size: 1.8rem;
  }
}
.fv__feature-value strong {
  font-size: 3.2rem;
  color: #8b6f47;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .fv__feature-value strong {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__feature-value strong {
    font-size: 2.16rem;
  }
}
.fv__feature-value span {
  font-size: 1.4rem;
  margin-left: 4px;
}
@media screen and (max-width: 1024px) {
  .fv__feature-value span {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__feature-value span {
    font-size: 1.26rem;
  }
}
.fv__feature-note {
  font-size: 1.2rem;
  color: #666;
  margin-top: 6px;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .fv__feature-note {
    font-size: 0.9rem;
    margin-top: 4px;
  }
}
@media screen and (max-width: 767px) {
  .fv__feature-note {
    font-size: 1.08rem;
  }
}
.fv__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 50px;
  background: #b8935a;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(184, 147, 90, 0.3);
}
@media screen and (max-width: 1024px) {
  .fv__cta {
    padding: 16px 32px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__cta {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.8rem;
  }
}
.fv__cta-arrow {
  display: inline-block;
  width: 18px;
  height: 25px;
  background: url("../img/newtop/icon_point.svg") no-repeat center/contain;
  flex-shrink: 0;
}
.fv__visual {
  position: relative;
  flex-shrink: 0;
  width: 430px;
  align-self: flex-end;
}
@media screen and (max-width: 1024px) {
  .fv__visual {
    width: 260px;
  }
}
@media screen and (max-width: 767px) {
  .fv__visual {
    position: absolute;
    bottom: 129px;
    right: 20px;
    width: 30%;
    max-width: 140px;
    margin: 0;
    z-index: 1;
  }
}
.fv__visual-chat {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
}
.fv__visual-ihai {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 76%;
  height: auto;
  z-index: 1;
}

/* ==========================================================================
   FV直下：Googleレビュー（KV帯の外／白地）
   ========================================================================== */
.fv-review {
  position: relative;
  background: #fff;
}
.fv-review__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px 20px;
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .fv-review__inner {
    padding: 12px 16px 16px;
    gap: 8px;
  }
}
.fv-review__card {
  background: #fff;
  border: 2px solid #d99a5a;
  border-radius: 14px;
  padding: 10px 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "rating label"
    "count  btn";
  align-items: center;
  column-gap: 12px;
  row-gap: 4px;
  text-decoration: none;
  color: inherit;
  transition: background-color 150ms, border-color 150ms;
}
.fv-review__card:hover {
  background: #faf6ed;
  border-color: #b87132;
  text-decoration: none;
  color: inherit;
}
.fv-review__card:hover .fv-review__btn {
  text-decoration: underline;
}
.fv-review__rating { grid-area: rating; }
.fv-review__label  { grid-area: label; }
.fv-review__count  { grid-area: count; text-align: center; }
.fv-review__btn    { grid-area: btn; }
.fv-review__label {
  margin: 0;
  font-size: 1.15rem;
  color: #555;
  font-weight: 500;
  line-height: 1.25;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.fv-review__label-text {
  display: inline-block;
}
.fv-review__icon {
  width: 1.4em;
  height: 1.4em;
  fill: #d99a5a;
  flex-shrink: 0;
}
.fv-review__rating {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 3px;
  line-height: 1;
}
.fv-review__star {
  color: #e0a51a;
  font-size: 2.6rem;
  line-height: 1;
}
.fv-review__score {
  color: #6b5535;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
}
.fv-review__count {
  margin: 0;
  font-size: 0.92rem;
  color: #777;
}
.fv-review__btn {
  display: inline-block;
  font-size: 0.95rem;
  color: var(--color-gold-dark);
  text-decoration: none;
  white-space: nowrap;
}
.fv-review__btn:hover {
  color: var(--color-gold-dark);
  text-decoration: underline;
}
@media screen and (max-width: 575.98px) {
  .fv-review__card { padding: 8px 10px; column-gap: 10px; }
  .fv-review__label { font-size: 1rem; }
  .fv-review__score { font-size: 2.3rem; }
  .fv-review__star { font-size: 2rem; }
  .fv-review__count { font-size: 0.82rem; }
  .fv-review__btn { font-size: 0.85rem; }
}

/* ==========================================================================
   お位牌の仕上がり
   ========================================================================== */
.finish {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .finish {
    padding: 60px 0;
  }
}
.finish__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .finish__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
  }
}
.finish__left .section-heading {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .finish__left .section-heading {
    margin-bottom: 30px;
  }
}
.finish__visual img {
  width: 100%;
  max-width: 550px;
  height: auto;
}
.finish__right {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 520px;
}
@media screen and (max-width: 767px) {
  .finish__right {
    min-height: auto;
    justify-content: flex-start;
  }
}
.finish__decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 630px;
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .finish__decoration {
    display: none;
  }
}
.finish__decoration img {
  width: 100%;
  height: auto;
}
.finish__text {
  position: relative;
  z-index: 1;
  font-size: 1.6rem;
  line-height: 1.85;
  color: #333;
  max-width: 550px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .finish__text {
    font-size: 1.4rem;
    margin-left: 0;
  }
}

/* ==========================================================================
   チャットでかんたん制作（STEP01 / カテゴリ選択）
   ========================================================================== */
.chat-create {
  padding: 100px 0;
  background: #faf5e9;
}
@media screen and (max-width: 767px) {
  .chat-create {
    padding: 60px 0;
  }
}
.chat-create__header {
  display: flex;
  gap: 100px;
  margin-bottom: 80px;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .chat-create__header {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .chat-create__header {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }
}
.chat-create__desc {
  flex: 1;
  font-size: 1.5rem;
  line-height: 2;
  max-width: 525px;
}
@media screen and (max-width: 767px) {
  .chat-create__desc {
    font-size: 1.4rem;
  }
}
.chat-create__step-desc {
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .chat-create__step-desc {
    font-size: 1.4rem;
  }
}

/* カテゴリカード */
.category-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 33px;
}
@media screen and (max-width: 1024px) {
  .category-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .category-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.category-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}
.category-card__link {
  display: block;
}
.category-card__link:hover {
  opacity: 1;
}
.category-card__image {
  background: #e6dfd0;
  aspect-ratio: 275/183;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 37.5px;
}
.category-card__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.category-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.category-card__title {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #333;
  margin: 0;
}
.category-card__arrow {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../img/newtop/icoon_arrow_link.svg") no-repeat center/contain;
  flex-shrink: 0;
}
.category-card__desc {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #333;
  margin: 0;
}
.category-card__price {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: #b8935a;
  margin: 0;
}

/* ==========================================================================
   中間CTA
   ========================================================================== */
.mid-cta {
  padding: 80px 20px;
  background: #b8935a;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mid-cta {
    padding: 40px 20px;
  }
}
.mid-cta__inner {
  max-width: 442px;
  margin: 0 auto;
}
.mid-cta__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 28px 65px;
  width: 100%;
  background: #fff;
  border-radius: 100px;
  color: #8d5e05;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid #8d5e05;
  box-shadow: 0 6px 0 #6b4504, 0 10px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  animation: midCtaPulse 1.8s ease-in-out infinite;
}
.mid-cta__link:hover {
  opacity: 1;
  transform: translateY(-2px);
  background: #fff7e8;
  box-shadow: 0 8px 0 #6b4504, 0 14px 32px rgba(0, 0, 0, 0.3);
  animation-play-state: paused;
}
.mid-cta__link:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #6b4504, 0 4px 12px rgba(0, 0, 0, 0.25);
}
@keyframes midCtaPulse {
  0%, 100% {
    box-shadow: 0 6px 0 #6b4504, 0 10px 24px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(255, 255, 255, 0.6);
  }
  50% {
    box-shadow: 0 6px 0 #6b4504, 0 10px 24px rgba(0, 0, 0, 0.25), 0 0 0 14px rgba(255, 255, 255, 0);
  }
}
@media screen and (max-width: 767px) {
  .mid-cta__link {
    padding: 24px 30px;
    gap: 14px;
  }
}
.mid-cta__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  line-height: 1;
}
.mid-cta__sub {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: inherit;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .mid-cta__sub {
    font-size: 1.4rem;
  }
}
.mid-cta__main {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: inherit;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .mid-cta__main {
    font-size: 2rem;
  }
}
.mid-cta__arrow {
  display: inline-block;
  width: 32px;
  height: 44px;
  background: url("../img/newtop/icon_arrow_cta.svg") no-repeat center/contain;
  flex-shrink: 0;
}

/* ==========================================================================
   ご注文からお届けまで（5ステップ）
   ========================================================================== */
.flow {
  padding: 100px 0;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .flow {
    padding: 60px 0;
  }
}
.flow__header {
  margin-bottom: 75px;
}
@media screen and (max-width: 767px) {
  .flow__header {
    margin-bottom: 40px;
  }
}
.flow__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .flow__list {
    gap: 16px;
  }
}
.flow__row {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .flow__row {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .flow__row {
    flex-wrap: nowrap;
    gap: 12px;
  }
}
@media screen and (max-width: 767px) {
  .flow__row {
    flex-direction: column;
    gap: 16px;
  }
}
.flow__arrow {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: url("../img/newtop/flow_arrow.svg") no-repeat center/contain;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .flow__arrow {
    width: 28px;
    height: 28px;
  }
}
@media screen and (max-width: 767px) {
  .flow__arrow {
    transform: rotate(90deg);
    width: 31px;
    height: 31px;
  }
}

.flow-step {
  width: 320px;
  height: 320px;
  flex-shrink: 0;
  border: 1px solid #999;
  border-radius: 50%;
  padding: 0 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .flow-step {
    width: 280px;
    height: 280px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .flow-step {
    width: 210px;
    height: 210px;
    gap: 6px;
    padding: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  .flow-step {
    width: 260px;
    height: auto;
    border-radius: 16px;
    padding: 24px 20px;
    gap: 8px;
  }
}
.flow-step__icon {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .flow-step__icon {
    width: 48px;
    height: 48px;
  }
}
@media screen and (max-width: 767px) {
  .flow-step__icon {
    width: 55px;
    height: 55px;
  }
}
.flow-step__icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.flow-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 20px;
  background: #cfb78d;
  color: #fff;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN", serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 50px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .flow-step__num {
    font-size: 1.3rem;
    padding: 5px 14px;
  }
}
@media screen and (max-width: 767px) {
  .flow-step__num {
    font-size: 1.4rem;
    padding: 6px 17px;
  }
}
.flow-step__title {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  color: #333;
  margin: 0;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .flow-step__title {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .flow-step__title {
    font-size: 1.36rem;
  }
}
.flow-step__desc {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.35;
  color: #333;
  margin: 0;
  width: 220px;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .flow-step__desc {
    font-size: 1.1rem;
    width: 170px;
  }
}
@media screen and (max-width: 767px) {
  .flow-step__desc {
    font-size: 1.19rem;
    width: auto;
  }
}

/* ==========================================================================
   よくあるご質問
   ========================================================================== */
.faq {
  padding: 0 0 100px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 0 0 60px;
  }
}
.faq__header {
  max-width: 1000px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .faq__header {
    margin-bottom: 30px;
  }
}
.faq__list {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #faf5e9;
  border: 1px solid #e6dfd0;
  border-radius: 8px;
  overflow: hidden;
}
.faq-item__q {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 20px;
  text-align: left;
  font-size: 1.5rem;
  font-weight: 500;
}
.faq-item__q-mark {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #b8935a;
  background: #fff;
  border-radius: 50%;
}
.faq-item__q-text {
  flex: 1;
  line-height: 1.5;
}
.faq-item__toggle {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}
.faq-item__toggle::before, .faq-item__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #b8935a;
  transition: transform 0.3s ease;
}
.faq-item__toggle::before {
  width: 16px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq-item__toggle::after {
  width: 2px;
  height: 16px;
  transform: translate(-50%, -50%);
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px 0 80px;
}
.faq-item__a p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #333;
  padding-bottom: 20px;
}
.faq-item.is-open .faq-item__a {
  max-height: 500px;
}
.faq-item.is-open .faq-item__toggle::after {
  transform: translate(-50%, -50%) scaleY(0);
}

/* ==========================================================================
   寺院・僧侶の皆さまへ
   ========================================================================== */
.temple {
  padding: 100px 0;
  background: url("../img/newtop/temple_bg.webp") right center/auto 100% no-repeat, linear-gradient(to right, #f1f1fd 0%, #a587cd 100%);
  color: #333;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .temple {
    padding: 80px 0;
    background: linear-gradient(to right, #f1f1fd 0%, #a587cd 100%);
  }
  .temple::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/newtop/temple_bg.webp") calc(100% + 100px) center/auto 100% no-repeat;
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
  }
}
@media screen and (max-width: 767px) {
  .temple {
    padding: 60px 0;
    background: linear-gradient(to right, #f1f1fd 0%, #a587cd 100%);
  }
}
.temple__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.temple__content {
  max-width: 600px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .temple__content {
    max-width: 100%;
  }
}
.temple__content .section-heading {
  margin-bottom: 35px;
}
.temple__text {
  font-size: 1.6rem;
  line-height: 1.85;
  margin-bottom: 35px;
  color: #333;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .temple__text {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .temple__text {
    font-size: 1.4rem;
  }
}
.temple__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 20px 35px;
  background: #6c42a4;
  color: #fff;
  border: 1px solid #6c42a4;
  border-radius: 50px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  transition: opacity 0.2s ease;
}
.temple__btn:hover {
  opacity: 0.85;
}
@media screen and (max-width: 767px) {
  .temple__btn {
    width: 100%;
    justify-content: center;
    padding: 18px 24px;
    font-size: 1.6rem;
  }
}
.temple__btn-icon {
  display: inline-block;
  width: 50px;
  height: 37.5px;
  background: url("../img/newtop/icon_temple.svg") no-repeat center/contain;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}
.temple__visual {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 640px;
  height: 554px;
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .temple__visual {
    display: none;
  }
}
.temple__cloud {
  position: absolute;
  top: 37px;
  left: 0;
  width: 606px;
  height: 480px;
  object-fit: contain;
  opacity: 0.4;
  mix-blend-mode: soft-light;
}

/* ==========================================================================
   会社概要
   ========================================================================== */
.company {
  padding: 100px 0;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .company {
    padding: 60px 0;
  }
}
.company__header {
  max-width: 1000px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .company__header {
    margin-bottom: 30px;
  }
}
.company__table {
  max-width: 1000px;
  margin: 0 auto;
}
.company__row {
  display: grid;
  grid-template-columns: 115px 1fr;
  gap: 15px;
  padding: 28px 0;
  border-bottom: 1px solid #e6dfd0;
}
.company__row:first-child {
  border-top: 1px solid #e6dfd0;
}
@media screen and (max-width: 767px) {
  .company__row {
    grid-template-columns: 1fr;
    padding: 16px 0;
    gap: 4px;
  }
}
.company__row dt {
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
}
@media screen and (max-width: 767px) {
  .company__row dt {
    font-size: 1.3rem;
    color: #b8935a;
  }
}
.company__row dd {
  font-size: 1.5rem;
  color: #333;
}
@media screen and (max-width: 767px) {
  .company__row dd {
    font-size: 1.4rem;
  }
}
.company__row dd a {
  color: #b8935a;
  text-decoration: underline;
}
.company__note {
  max-width: 1000px;
  margin: 20px auto 0;
  font-size: 1.2rem;
  color: #666;
}

/* ==========================================================================
   フッター
   ========================================================================== */
.site-footer {
  background: #333;
  padding: 80px 0 30px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .site-footer {
    padding: 40px 0 20px;
  }
}
.site-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
}
@media screen and (max-width: 1024px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .site-footer__inner {
    padding: 0 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .site-footer__brand {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 40px;
    align-items: start;
  }
}
@media screen and (max-width: 767px) {
  .site-footer__brand {
    text-align: center;
  }
}
.site-footer__logo-text {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN", serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: #b8935a;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .site-footer__logo-text {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 10px;
  }
}
.site-footer__logo-text sup {
  font-size: 0.6em;
  vertical-align: super;
}
.site-footer__tagline {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .site-footer__tagline {
    grid-column: 1;
    grid-row: 2;
    margin-bottom: 0;
  }
}
.site-footer__payment {
  background: #fff;
  padding: 14px 20px;
  border-radius: 4px;
  max-width: 340px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .site-footer__payment {
    grid-column: 2;
    grid-row: 1/3;
    align-self: center;
    max-width: 280px;
  }
}
@media screen and (max-width: 767px) {
  .site-footer__payment {
    max-width: 240px;
    padding: 10px 14px;
    margin-left: auto;
    margin-right: auto;
  }
}
.site-footer__payment img {
  display: block;
  max-width: 100%;
}
.site-footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  justify-items: start;
}
@media screen and (max-width: 767px) {
  .site-footer__nav {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.site-footer__nav-col {
  min-width: 0;
}
.site-footer__nav-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #b8935a;
  margin-bottom: 15px;
}
.site-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 1.3em;
  list-style: disc;
}
.site-footer__nav-list li {
  color: #fff;
}
.site-footer__nav-list li::marker {
  color: #fff;
  font-size: 0.8em;
}
.site-footer__nav-list li a {
  font-size: 1.4rem;
  color: #fff;
  display: inline-block;
  padding: 2px 0;
}
.site-footer__copyright {
  max-width: 1400px;
  margin: 80px auto 0;
  padding: 0 40px;
  font-size: 1.3rem;
  color: #999;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .site-footer__copyright {
    margin-top: 40px;
    padding: 0 20px;
    font-size: 1.1rem;
  }
}

/* ===== お知らせバナー (ホーム → /news/ への導線) ===== */
.site-notice {
  max-width: 1100px;
  margin: 32px auto 56px;
  padding: 0 20px;
}
.site-notice__banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 18px 24px;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: background-color 150ms;
  flex-wrap: wrap;
}
.site-notice__banner:hover {
  background-color: #faf6ed;
  text-decoration: none;
}
.site-notice__date {
  color: #888;
  font-size: 1.05rem;
  white-space: nowrap;
}
.site-notice__more {
  margin-left: auto;
  color: #b8935a;
  font-size: 1.1rem;
  white-space: nowrap;
}
@media (max-width: 575.98px) {
  .site-notice__banner { gap: 10px; padding: 12px 14px; }
  .site-notice__more { margin-left: 0; width: 100%; text-align: right; }
}
/* legacy/未使用となった折りたたみセレクタは保持してもよいが、簡素化のため削除 */
.site-notice__inner,
.site-notice__summary,
.site-notice__chevron,
.site-notice__body,
.site-notice__lead,
.site-notice__list,
.site-notice__note { /* no-op */ }
.site-notice__summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 28px;
  display: flex;
  gap: 14px;
  align-items: center;
  user-select: none;
  transition: background-color 150ms;
}
.site-notice__summary:hover { background-color: #faf6ed; }
.site-notice__summary::-webkit-details-marker { display: none; }
.site-notice__summary::marker { content: ''; }
.site-notice__badge {
  flex-shrink: 0;
  background: #b8935a;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.site-notice__title {
  flex: 1;
  font-size: 1.35rem;
  color: #6b5535;
  font-weight: bold;
  line-height: 1.4;
  min-width: 200px;
}
.site-notice__chevron {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-right: 2.5px solid #b8935a;
  border-bottom: 2.5px solid #b8935a;
  transform: rotate(45deg);
  transition: transform 200ms;
  margin-right: 4px;
  margin-top: -4px;
}
.site-notice__inner[open] .site-notice__chevron {
  transform: rotate(-135deg);
  margin-top: 4px;
}
.site-notice__body {
  padding: 4px 28px 22px;
  border-top: 1px dashed #e6dfd0;
}
.site-notice__lead {
  margin: 12px 0;
  font-size: 1.25rem;
  line-height: 1.7;
  color: #555;
}
.site-notice__list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}
.site-notice__list li {
  position: relative;
  padding: 10px 0 10px 26px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #444;
  border-top: 1px dashed #e6dfd0;
}
.site-notice__list li:first-child {
  border-top: none;
}
.site-notice__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: #b8935a;
  font-weight: bold;
}
.site-notice__list strong {
  color: #6b5535;
  margin-right: 0.3em;
}
.site-notice__list a {
  color: #b8935a;
  text-decoration: underline;
  margin-left: 0.3em;
}
.site-notice__note {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid #efe9dc;
  font-size: 1.05rem;
  color: #777;
}
.site-notice__note a {
  color: #b8935a;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .site-notice {
    margin: 20px auto 36px;
    padding: 0 12px;
  }
  .site-notice__summary {
    padding: 14px 16px;
    gap: 10px;
  }
  .site-notice__body { padding: 4px 16px 18px; }
  .site-notice__title { font-size: 1.2rem; }
  .site-notice__lead { font-size: 1.05rem; }
  .site-notice__list li { font-size: 1rem; }
  .site-notice__note { font-size: 0.95rem; }
}
