@charset "UTF-8";
/* ==========================================================================
   1. 基本レイアウト・幅制限の設定（1階層追加に完全対応）
   ========================================================================== */
body {
  font-family: "Noto Serif JP", serif;
  color: #333333;
  line-height: 1.8;
  margin: 0;
  padding: 0;
}

.container {
  width: 100%;
  max-width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 60px;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 汎用ボタン */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #791336;
  background: #f7f1f3;
  color: #791336;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
}
.btn:hover {
  background: #fcfaf5;
}

/* ==========================================================================
   2. テキスト・見出し共通グループ設定（フォント・カラーの一括集約）
   ========================================================================== */
p, figcaption {
  color: #333333;
  line-height: 2.0em;
  letter-spacing: 0.05em;
}

h2, h3, h4 {
  font-family: "Noto Serif JP", serif;
  color: #791336;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   3. クラスなし：タグ標準の統一デザイン定義
   ========================================================================== */
body section p {
  font-size: 15px;
  margin-bottom: 1.5em;
}
@media screen and (min-width: 769px) {
  body section p {
    font-size: 16px;
  }
}
body section p.red {
  color: #791336 !important;
}
body section .center {
  text-align: center;
}
body section strong {
  font-weight: bold;
}
body section h2 span {
  font-size: 16px;
}
body section h3 {
  font-size: 20px;
  margin: 0px 0 20px 0;
}
body section h3 span {
  font-size: 16px;
}
@media screen and (min-width: 769px) {
  body section h3 {
    font-size: 24px;
  }
}
body section h4 {
  font-size: 18px;
  margin: 0px 0 15px 0;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}
@media screen and (min-width: 769px) {
  body section h4 {
    font-size: 20px;
  }
}
body section h4 small {
  font-size: 14px;
  font-weight: normal;
  color: #333333;
  margin-left: 8px;
}
body section ul li {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 2em;
  text-indent: -1.5em;
  /* マイナスの値を指定してマーカーと文字をずらす */
  font-size: 13px;
}
@media screen and (min-width: 769px) {
  body section ul li {
    font-size: 14px;
  }
}
body section figure {
  margin-bottom: 1.5em;
}
body section figcaption {
  text-align: center;
  font-size: 13px;
  color: #888888;
  margin-top: 10px;
}
@media screen and (min-width: 769px) {
  body section figcaption {
    font-size: 14px;
  }
}
body section hr {
  border: none;
  border-top: 1px solid #aa853e;
  margin: 35px 0;
}
@media screen and (min-width: 769px) {
  body section hr {
    margin: 70px 0;
  }
}

/* ==========================================================================
   パンくずリスト（背景は透明、幅はヘッダーロゴと同じcontainer幅で広がる）
   ========================================================================== */
.c-breadcrumb {
  width: 100%;
  background: transparent;
  padding: 15px 20px 25px;
}
@media screen and (min-width: 769px) {
  .c-breadcrumb {
    padding: 30px 40px 50px;
  }
}
.c-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-breadcrumb li {
  font-size: 12px;
  color: #888888;
  line-height: 1.4;
}
@media screen and (min-width: 769px) {
  .c-breadcrumb li {
    font-size: 13px;
  }
}
.c-breadcrumb li a {
  color: #333333;
  text-decoration: none;
}
.c-breadcrumb li a:hover {
  color: #791336;
  text-decoration: underline;
}
.c-breadcrumb li:not(:last-child)::after {
  content: ">";
  margin: 0 8px;
  color: #888888;
}

/* ==========================================================================
   4. クラスあり：特別な出し分けクラス（差分のみ）
   ========================================================================== */
section {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (min-width: 769px) {
  section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

section.pt_no {
  padding-top: 0px;
}

section.pb_no {
  padding-bottom: 0px;
}

/* 背景突き抜け用ユーティリティ */
.u-bg-full {
  width: 100%;
}
.u-bg-full.--ivory {
  background-color: #fcfaf5;
}
.u-bg-full.--pink {
  background-color: #f7f1f3;
}

.u-txt-center {
  text-align: center !important;
}

.u-txt-sub {
  font-size: 13px;
  color: #888888;
}

.u-txt-brand {
  color: #791336;
  font-weight: bold;
}

/* ① 【h2.c-hd-page】各下層ページの最上部タイトル専用
   上下にゴールドの細線を引いて中央揃えにする */
h2.c-hd-page {
  font-size: 22px;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #aa853e;
  border-bottom: 1px solid #aa853e;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) {
  h2.c-hd-page {
    font-size: 28px;
    padding: 30px 0;
    margin-bottom: 60px;
  }
}

/* ② 【h2.c-hd-motto】TOPページの「敬神奉仕」専用
   特大サイズ・完全に中央揃えにする（上下線はなし） */
h2.c-hd-motto {
  font-size: 26px;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 769px) {
  h2.c-hd-motto {
    font-size: 32px;
    margin-bottom: 50px;
    letter-spacing: 0.2em;
  }
}

/* ③ 【h3.c-hd-center】文章の中央に配置されるタイトル用
   装飾線を持たず、標準のh3プロパティを引き継いだまま中央揃え（センター）にします */
h3.c-hd-center {
  font-size: 20px;
  text-align: center;
  margin: 0px 0 15px 0;
}
@media screen and (min-width: 769px) {
  h3.c-hd-center {
    font-size: 25px;
    margin: 0px 0 25px 0;
  }
}

.u-bg-card {
  background-color: #ffffff;
  box-sizing: border-box;
  padding: 30px 20px;
  margin: 20px auto;
}
@media screen and (min-width: 769px) {
  .u-bg-card {
    padding: 60px 80px;
    margin: 40px auto;
  }
}

/* ==========================================================================
   【スマホくり抜き縮小版】スクープエッジ背景（モバイルファースト）
   ========================================================================== */
.p-app-block {
  margin: 30px 0;
  padding: 40px 20px;
  position: relative;
  box-sizing: border-box;
  background-color: #f4eff1;
  background-image: radial-gradient(circle at 0 0, rgba(0, 0, 0, 0) 15px, #ffffff 16px), radial-gradient(circle at 100% 0, rgba(0, 0, 0, 0) 15px, #ffffff 16px), radial-gradient(circle at 0 100%, rgba(0, 0, 0, 0) 15px, #ffffff 16px), radial-gradient(circle at 100% 100%, rgba(0, 0, 0, 0) 15px, #ffffff 16px);
  background-position: top left, top right, bottom left, bottom right;
  background-size: 51% 51%;
  background-repeat: no-repeat;
}
@media screen and (min-width: 769px) {
  .p-app-block {
    margin: 40px 0;
    padding: 80px;
    background-image: radial-gradient(circle at 0 0, rgba(0, 0, 0, 0) 30px, #ffffff 31px), radial-gradient(circle at 100% 0, rgba(0, 0, 0, 0) 30px, #ffffff 31px), radial-gradient(circle at 0 100%, rgba(0, 0, 0, 0) 30px, #ffffff 31px), radial-gradient(circle at 100% 100%, rgba(0, 0, 0, 0) 30px, #ffffff 31px);
  }
}

/* ==========================================================================
   【アイコン20px・最大化版】ボタン・コンポーネント（モバイルファースト）
   ========================================================================== */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 380px;
  margin: 30px auto;
  padding: 18px 25px;
  background-color: #791336;
  border: none;
  border-radius: 9999px;
  box-sizing: border-box;
  text-decoration: none;
  position: relative;
  transition: background-color 0.3s, opacity 0.3s;
}
.btn__text {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: normal;
  color: #ffffff;
  line-height: 1.4;
  text-align: center;
}
.btn.--arrow::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 13px;
  height: 13px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
.btn.--external::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("../_shared/images/icn_out.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.btn:hover {
  opacity: 0.9;
  background-color: #8f1640;
}
@media screen and (min-width: 769px) {
  .btn {
    max-width: 460px;
    padding: 22px 35px;
  }
  .btn__text {
    font-weight: bold;
    font-size: 18px;
  }
  .btn.--arrow::after {
    right: 35px;
    width: 14px;
    height: 14px;
  }
  .btn.--external::after {
    right: 35px;
    width: 22px;
    height: 22px;
  }
}

/* ==========================================================================
   下層ページ：単一写真ブロック（中央配置仕様）
   ========================================================================== */
.p-single-photo {
  width: 100%;
  margin: 35px auto;
  padding: 0 20px;
  box-sizing: border-box;
  /* --------------------------------------------------
     PC表示
     -------------------------------------------------- */
}
.p-single-photo__inner {
  width: 100%;
  margin: 0 auto;
}
.p-single-photo__inner img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 769px) {
  .p-single-photo {
    margin: 50px auto;
    padding: 0;
  }
}

/* ==========================================================================
   画像グリッド・コンポーネント（モバイルファースト）
   ========================================================================== */
.u-img-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}
.u-img-grid__item {
  margin: 0;
  width: calc((100% - 15px) / 2);
}
.u-img-grid.--col3 {
  justify-content: center;
}
.u-img-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .u-img-grid img {
    aspect-ratio: 1 / 1;
  }
}
.u-img-grid figcaption {
  text-align: left;
  font-size: 13px;
  line-height: 1.5;
  color: #333333;
  margin-top: 10px;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 769px) {
  .u-img-grid {
    flex-wrap: nowrap;
    gap: 40px;
    margin-bottom: 40px;
  }
  .u-img-grid.--col2 .u-img-grid__item {
    width: calc((100% - 30px) / 2);
  }
  .u-img-grid.--col3 {
    justify-content: flex-start;
  }
  .u-img-grid.--col3 .u-img-grid__item {
    width: calc((100% - (30px * 2)) / 3);
  }
  .u-img-grid.--col3 img {
    aspect-ratio: auto;
  }
}

/* ==========================================================================
   下層ページ：メインヘッダー画像（固定高トリミング・右下配置）
   ========================================================================== */
.c-page-header {
  position: relative;
  width: 100%;
  height: 250px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
  /* --------------------------------------------------
     PC表示
     -------------------------------------------------- */
}
.c-page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.c-page-header__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-page-header h1.c-hd-page {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-family: "Noto Serif JP", serif;
  font-weight: normal;
  font-size: 30px;
  letter-spacing: 0.1em;
  margin: 0;
  padding: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  border: none !important;
  line-height: 1.2;
  text-align: right;
}
@media screen and (min-width: 769px) {
  .c-page-header {
    height: 400px;
  }
  .c-page-header h1.c-hd-page {
    font-size: 50px;
    padding: 30px 60px;
  }
}
