@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

main a {
  text-decoration: underline;
}
main a:hover {
  text-decoration: none;
}

/* ==========================================================================
   Main & Section Layout (シンプル版)
   ========================================================================== */
.l-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.l-header__logo svg {
  height: 46px;
  width: auto;
  display: block;
}
.l-header__logo svg path {
  fill: #791336;
}
.l-header__logo:hover {
  opacity: 0.85;
}

.main {
  width: 100%;
}

.section {
  width: 100%;
  padding: 50px 0;
  box-sizing: border-box;
}
.section.is-pt-none {
  padding-top: 0 !important;
}
.section.is-pb-none {
  padding-bottom: 0 !important;
}
.section.white {
  background-color: #ffffff;
}
.section.pink-gray {
  background-color: #f4eff1;
}
.section.ivory {
  background-color: #fafaf5;
}
@media screen and (min-width: 769px) {
  .section {
    padding: 80px 0;
  }
}

.content {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.content.sec {
  max-width: 840px;
}

.u-mb-xs {
  margin-bottom: 10px !important;
}

.u-mb-s {
  margin-bottom: 15px !important;
}
@media screen and (min-width: 769px) {
  .u-mb-s {
    margin-bottom: 20px !important;
  }
}

.u-mb-m {
  margin-bottom: 20px !important;
}
@media screen and (min-width: 769px) {
  .u-mb-m {
    margin-bottom: 40px !important;
  }
}

.u-mb-l {
  margin-bottom: 40px !important;
}
@media screen and (min-width: 769px) {
  .u-mb-l {
    margin-bottom: 80px !important;
  }
}

.promo_box {
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.text-box {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* ==========================================================================
   共通
   ========================================================================== */
.u-text-fix {
  text-align: justify;
  text-justify: inter-ideograph;
  word-break: break-all;
  overflow-wrap: break-word;
}

/* ==========================================================================
   フォントサイズ（pタグ初期値 ＆ シンプルユーティリティ）
   ========================================================================== */
p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
@media screen and (min-width: 769px) {
  p {
    font-size: 16px;
  }
}

.lh20 {
  line-height: 2.0em !important;
}

.u-f18 {
  font-size: 16px !important;
}
@media screen and (min-width: 769px) {
  .u-f18 {
    font-size: 18px !important;
  }
}

.u-f14 {
  font-size: 14px !important;
}

.u-text-center {
  text-align: center !important;
}

.p-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-list__item {
  position: relative;
  padding-left: 1.2em;
  font-size: 14px;
  line-height: 1.6;
  color: #333333;
}
.p-list__item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .p-list {
    gap: 12px;
  }
  .p-list__item {
    font-size: 15px;
  }
}
/* ==========================================================================
   共通コンポーネント：2パターンの区切り線 (`<hr>`)
   ========================================================================== */
.c-line-simple {
  border: none;
  height: 1px;
  background-color: #d4af37;
  margin-top: 40px;
  margin-bottom: 40px;
  width: 100%;
}

.c-line-star {
  border: none;
  width: 100%;
  position: relative;
  text-align: center;
  margin-top: 27px;
  margin-bottom: 27px;
  height: 26px;
  background: linear-gradient(to bottom, transparent calc(50% - 0.5px), #d4af37 calc(50% - 0.5px), #d4af37 calc(50% + 0.5px), transparent calc(50% + 0.5px));
}
.c-line-star::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 115px;
  height: 26px;
  background-color: #fafaf5;
  background-image: url("/tokokai/_shared/images/star.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  box-sizing: content-box;
  padding: 0 10px;
}

/* ==========================================================================
   見出し
   ========================================================================== */
section h3 {
  font-family: "Noto Serif JP", serif !important;
  font-size: 32px;
  margin-bottom: 25px;
  letter-spacing: 0.1em;
  text-align: left;
  color: #791336;
}
section h3.is-center {
  text-align: center;
}
@media screen and (min-width: 769px) {
  section h3 {
    font-size: 38px;
  }
}
section h4 {
  font-family: "Noto Serif JP", serif !important;
  font-size: 28px;
  margin-bottom: 25px;
  letter-spacing: 0.1em;
  color: #5c1d24;
  text-align: left;
}
section h4.is-center {
  text-align: center;
}
section h4.is-line {
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 40px;
}
section h4.is-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #d4af37;
}
section h4.is-white {
  color: #ffffff !important;
}
section h4.is-white::after {
  background-color: #ffffff !important;
}
@media screen and (min-width: 769px) {
  section h4 {
    font-size: 32px;
  }
  section h4.is-line {
    padding-bottom: 18px;
  }
}
section h5 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Noto Serif JP", serif !important;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #791336;
  margin: 0 0 24px 0;
}
section h5::before {
  content: "";
  width: 14px;
  height: 14px;
  background-color: #791336;
  transform: rotate(45deg);
  flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  section h5 {
    font-size: 26px;
    margin-bottom: 32px;
  }
  section h5::before {
    width: 16px;
    height: 16px;
  }
}
section h6 {
  font-family: "Noto Serif JP", serif !important;
  color: #791336;
  font-size: 20px;
  font-weight: normal !important;
  letter-spacing: 0.08em;
  line-height: 1.4 !important;
  margin: 0 0 16px 0 !important;
}
@media screen and (min-width: 769px) {
  section h6 {
    font-size: 24px;
    margin-bottom: 20px !important;
  }
}
section h6 span {
  font-size: 18px;
  font-weight: normal !important;
}
@media screen and (min-width: 769px) {
  section h6 span {
    font-size: 22px;
  }
}

/* ==========================================================================
   共通テーブル（一番上だけthルール・変数対応版）
   ========================================================================== */
.p-common-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #791336;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 40px;
}
.p-common-table th, .p-common-table td {
  border: 1px solid #791336;
  padding: 12px 10px;
  vertical-align: middle;
  color: #333333;
}
.p-common-table th {
  background-color: #f4eff1;
  text-align: center;
  font-size: 16px;
}
.p-common-table td {
  background-color: #ffffff;
  text-align: left;
}
.p-common-table .is-bg-ivory {
  background-color: #fafaf5 !important;
}
.p-common-table .is-bg-table {
  background-color: #f4eff1 !important;
}
.p-common-table .is-w-small {
  width: 85px;
}
.p-common-table .is-w-medium {
  width: 90px;
}
.p-common-table .is-w-tiny {
  width: 55px;
}
.p-common-table .text-center {
  text-align: center;
}
.p-common-table .font-bold {
  font-weight: bold;
}
@media screen and (min-width: 769px) {
  .p-common-table {
    font-size: 15px;
  }
  .p-common-table th, .p-common-table td {
    padding: 16px 20px;
  }
  .p-common-table th {
    font-size: 20px;
  }
  .p-common-table .is-w-small {
    width: 180px;
  }
  .p-common-table .is-w-medium {
    width: 140px;
  }
  .p-common-table .is-w-tiny {
    width: 90px;
  }
}

/* ==========================================================================
   トップ・主要ページ：イベント特別フィーチャーブロック (`.p-featured-event` / 全体リンク版)
   ========================================================================== */
.p-featured-event {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 896px;
  margin: 0 auto;
  box-sizing: border-box;
  text-decoration: none;
  transition: opacity 0.3s ease;
  margin-bottom: 25px;
}
.p-featured-event:hover {
  opacity: 0.75;
  text-decoration: none;
}
.p-featured-event:hover .card-title {
  color: #791336;
}
@media screen and (min-width: 769px) {
  .p-featured-event {
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
    margin-bottom: 50px;
  }
}
.p-featured-event .event-img {
  width: 100%;
  aspect-ratio: 343 / 244;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid #ccc;
}
@media screen and (min-width: 769px) {
  .p-featured-event .event-img {
    width: 45%;
    flex-shrink: 0;
    aspect-ratio: 343 / 244;
  }
}
.p-featured-event .event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.p-featured-event .event-info {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .p-featured-event .event-info {
    width: 55%;
    padding: 6px 0;
  }
}
.p-featured-event .event-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 12px;
}
@media screen and (min-width: 769px) {
  .p-featured-event .event-meta {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
  }
}
.p-featured-event .event-meta .date {
  color: #333333;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 12px;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 769px) {
  .p-featured-event .event-meta .date {
    font-size: 14px;
    letter-spacing: 0.05em;
  }
}
.p-featured-event .event-meta .category {
  font-size: 10px;
  color: #ffffff;
  padding: 2px 20px;
  font-weight: bold;
  background-color: #791336;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .p-featured-event .event-meta .category {
    font-size: 11px;
    padding: 4px 30px;
  }
}
.p-featured-event .event-meta .category.is-event {
  background-color: #aa853e;
}
.p-featured-event .card-title {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif !important;
  font-size: 13px;
  color: #333333;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color 0.3s ease;
}
@media screen and (min-width: 769px) {
  .p-featured-event .card-title {
    font-size: 16px;
    margin-bottom: 14px;
    line-height: 1.5;
  }
}
.p-featured-event .card-txt {
  color: #333333;
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: justify;
  display: block !important;
  overflow: visible !important;
  -webkit-line-clamp: unset !important;
}
@media screen and (min-width: 769px) {
  .p-featured-event .card-txt {
    font-size: 13px;
    line-height: 1.7;
  }
}

/* ==========================================================================
   お知らせ（下層・複数行並び対応＆PC250px幅固定・全体リンク対応・MTリンク版）
   ========================================================================== */
.p-news-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-bottom: 30px;
  font-family: "Noto Serif JP", serif !important;
  font-size: 14px;
  color: #333333;
}
@media screen and (min-width: 769px) {
  .p-news-tabs {
    gap: 15px;
    margin-bottom: 40px;
    font-size: 16px;
  }
}
.p-news-tabs button, .p-news-tabs a {
  display: inline-block;
  background: none;
  border: none;
  padding: 4px 8px;
  cursor: pointer;
  color: #333333;
  font-family: "Noto Serif JP", serif !important;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .p-news-tabs button, .p-news-tabs a {
    padding: 5px 10px;
    font-size: 16px;
  }
}
.p-news-tabs button.is-active, .p-news-tabs a.is-active {
  color: #791336;
  font-weight: bold;
}
.p-news-tabs button:hover, .p-news-tabs a:hover {
  color: #862b4a;
}
.p-news-tabs .tabs-line {
  color: #dcd3ca;
}
@media screen and (max-width: 768px) {
  .p-news-tabs .tabs-line {
    display: none;
  }
}

.p-news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
  margin-bottom: 40px;
  padding: 0 15px;
  width: 100%;
}
.p-news-grid > p.u-text-center {
  display: block !important;
  grid-column: 1 / -1 !important;
  width: 100% !important;
  text-align: center !important;
  margin: 0 auto !important;
}
@media screen and (min-width: 769px) {
  .p-news-grid {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 800px;
    justify-content: center;
    gap: 48px 67px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
  .p-news-grid .p-news-card {
    max-width: 252px;
    width: 100%;
  }
}

.p-news-card {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  width: 100%;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.p-news-card:hover {
  opacity: 0.75;
  text-decoration: none;
}
.p-news-card:hover .card-title {
  color: #791336;
}
.p-news-card .card-img {
  width: 100%;
  aspect-ratio: 343 / 244;
  overflow: hidden;
  margin-bottom: 10px;
  background-color: #ffffff;
  border: 1px solid #ccc;
}
@media screen and (min-width: 769px) {
  .p-news-card .card-img {
    margin-bottom: 16px;
  }
}
.p-news-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-news-card .card-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 10px;
}
@media screen and (min-width: 769px) {
  .p-news-card .card-meta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    gap: 0;
  }
}
.p-news-card .card-meta .date {
  color: #333333;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 12px;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 769px) {
  .p-news-card .card-meta .date {
    font-size: 14px;
    letter-spacing: 0.05em;
  }
}
.p-news-card .card-meta .category {
  font-size: 10px;
  color: #ffffff;
  padding: 2px 20px;
  font-weight: bold;
  background-color: #791336;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (min-width: 769px) {
  .p-news-card .card-meta .category {
    font-size: 11px;
    padding: 4px 30px;
  }
}
.p-news-card .card-meta .category.is-info {
  background-color: #791336;
}
.p-news-card .card-meta .category.is-event {
  background-color: #aa853e;
}
.p-news-card .card-meta .category.is-katsudohokoku {
  background-color: #2A3261;
}
.p-news-card .card-title {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif !important;
  font-size: 13px;
  color: #333333;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1.4;
  transition: color 0.3s ease;
}
@media screen and (min-width: 769px) {
  .p-news-card .card-title {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.5;
  }
}
.p-news-card .card-txt {
  color: #333333;
  font-size: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .p-news-card .card-txt {
    font-size: 13px;
    line-height: 1.6;
  }
}

.p-news-empty {
  grid-column: 1 / -1;
  text-align: center;
  font-family: "Noto Serif JP", serif !important;
  font-size: 16px;
  color: #888888;
  padding: 80px 0;
}

/* ==========================================================================
   下層ページ共通のメインタイトルブロック（1100px最適化版）
   ========================================================================== */
.p-page-head {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 0;
}
.p-page-head h3 {
  font-family: "Noto Serif JP", serif !important;
  font-size: 32px;
  letter-spacing: 0.1em;
  color: #5c1d24;
  margin: 0;
}
.p-page-head h3.is-center {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .p-page-head h3 {
    font-size: 38px;
  }
}
.p-page-head.is-visual {
  padding: 50px 0 40px;
}
@media screen and (min-width: 769px) {
  .p-page-head.is-visual {
    padding: 60px 0 30px;
  }
}
.p-page-head.is-visual .p-page-head__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media screen and (min-width: 769px) {
  .p-page-head.is-visual .p-page-head__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }
}
.p-page-head.is-visual h3 {
  text-align: center;
}
@media screen and (min-width: 769px) {
  .p-page-head.is-visual h3 {
    text-align: center;
    flex: 1;
    white-space: nowrap;
  }
}
.p-page-head.is-visual .p-page-head__img {
  width: 100%;
  max-width: 100%;
}
@media screen and (min-width: 769px) {
  .p-page-head.is-visual .p-page-head__img {
    flex: 0 1 740px;
  }
}
.p-page-head.is-visual .p-page-head__img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ==========================================================================
   共通コンポーネント：ボタン (`.c-btn`)
   ========================================================================== */
.p-btn-wrap {
  text-align: center;
}

.c-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  line-height: 1 !important;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
  font-size: 14px;
  padding: 14px 42px 14px 28px;
  background-color: #791336;
  color: #ffffff;
}
.c-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.3s ease, right 0.3s ease;
}
.c-btn:hover {
  opacity: 0.9;
  text-decoration: none;
}
.c-btn::after {
  right: 16px;
}
.c-btn:hover::after {
  right: 13px;
}
@media screen and (min-width: 769px) {
  .c-btn {
    font-size: 15px;
    padding: 12px 54px 12px 42px;
  }
  .c-btn::after {
    right: 22px;
  }
  .c-btn:hover::after {
    right: 19px;
  }
}
.c-btn.--lg {
  width: 100%;
  max-width: 320px;
  font-size: 15px;
  padding: 16px 54px 16px 42px;
}
.c-btn.--lg::after {
  right: 24px;
}
.c-btn.--lg:hover::after {
  right: 21px;
}
@media screen and (min-width: 769px) {
  .c-btn.--lg {
    max-width: 300px;
    font-size: 16px;
    padding: 16px 60px 16px 48px;
  }
  .c-btn.--lg::after {
    right: 28px;
  }
  .c-btn.--lg:hover::after {
    right: 25px;
  }
}
.c-btn:hover {
  background-color: #862b4a;
}
.c-btn.--reverse {
  background-color: #ffffff;
  color: #791336 !important;
  border: 1px solid #791336;
}
.c-btn.--reverse::after {
  border-top-color: #791336;
  border-right-color: #791336;
}
.c-btn.--reverse:hover {
  background-color: #f4eff1;
  opacity: 1;
}

/* ==========================================================================
   共通コンポーネント：Q&A（pタグ完全統一・構造最適化版）
   ========================================================================== */
.p-qa {
  width: 100%;
  margin: 30px auto;
}
.p-qa dt, .p-qa dd {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: #000000;
}
@media screen and (min-width: 769px) {
  .p-qa dt, .p-qa dd {
    gap: 24px;
  }
}
.p-qa dt > p, .p-qa dd > p {
  flex: 1;
  margin: 0;
  padding-top: 2px;
}
.p-qa dt {
  margin-bottom: 24px;
}
@media screen and (min-width: 769px) {
  .p-qa dt {
    margin-bottom: 32px;
  }
}
.p-qa__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: #ffffff;
  font-family: "Noto Serif JP", serif !important;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (min-width: 769px) {
  .p-qa__badge {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
}
.p-qa__badge.--q {
  background-color: #aa853e;
}
.p-qa__badge.--a {
  background-color: #791336;
}

/* ==========================================================================
   共通コンポーネント：L字あしらい四角ボタン（PC:24px・矢印バランス復元版）
   ========================================================================== */
.c-box-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px 8px 0;
  overflow: visible !important;
  width: 100%;
  max-width: 356px;
  min-height: 84px;
  padding: 16px 56px 16px 40px;
  border: 1px solid #791336;
  background: #ffffff;
  color: #791336;
  text-decoration: none;
  font-size: 18px;
  line-height: 1 !important;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (min-width: 769px) {
  .c-box-btn {
    font-size: 24px;
  }
}
.c-box-btn.--bg-pink {
  background: #f4eff1;
}
.c-box-btn.--bg-pink:hover {
  background: #f4eff1;
}
.c-box-btn::before {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 100%;
  height: 100%;
  border-right: 1px solid #791336;
  border-bottom: 1px solid #791336;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.c-box-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 16px;
  height: 16px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: right 0.3s ease;
}
.c-box-btn:hover {
  text-decoration: none;
  background: #fcfaf5;
  box-shadow: 8px 8px 0 0 #791336;
}
.c-box-btn:hover::before {
  opacity: 0;
}
.c-box-btn:hover::after {
  right: 18px;
}

/* ==========================================================================
   アプリ紹介（公式ソースベース：PC時左右反転版）
   ========================================================================== */
.p-app-block {
  margin: 40px 0;
  padding: 78px 0 36px;
  background: radial-gradient(circle at 0 0, rgba(0, 0, 0, 0) 30px, #ffffff 0%) top left, radial-gradient(circle at 100% 0, rgba(0, 0, 0, 0) 30px, #ffffff 0%) top right, radial-gradient(circle at 0 100%, rgba(0, 0, 0, 0) 30px, #ffffff 0%) bottom left, radial-gradient(circle at 100% 100%, rgba(0, 0, 0, 0) 30px, #ffffff 0%) bottom right;
  background-size: 51% 51%;
  background-repeat: no-repeat;
}

.p-app-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 0 24px;
}

.p-app-visual {
  text-align: center;
  order: 2;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.p-app-visual img {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  margin: 0 auto;
}

.p-app-info {
  text-align: left;
  order: 1;
}

.u-app-lead {
  margin: 0 0 12px;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 1.5;
  color: #791336;
  font-weight: normal;
}

.u-app-title {
  margin: 0 0 18px;
  font-family: "Noto Serif JP", serif;
  font-weight: normal;
  line-height: 1.15;
  color: #791336;
}
.u-app-title span {
  display: inline;
  padding: 0;
  background: none;
  font-size: 25px;
  line-height: 1.15;
  color: #791336;
}

.u-app-line {
  width: 100%;
  max-width: 620px;
  margin: 0 0 24px;
  border: 0;
  border-top: 2px solid #aa853e;
}

.u-app-text {
  max-width: 620px;
  margin: 0 0 28px;
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.95;
  letter-spacing: 0.01em;
  color: #333333;
}

.u-app-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
}
.u-app-btns a {
  display: inline-block;
  transition: opacity 0.3s ease;
}
.u-app-btns a:hover {
  opacity: 0.8;
}
.u-app-btns img {
  display: block;
  width: auto;
  height: 48px;
}

@media screen and (min-width: 769px) {
  .p-app-block {
    padding: 50px 0 50px;
  }

  .p-app-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 7%;
    padding: 0 98px 0 70px;
  }

  .p-app-visual {
    width: 34%;
    margin-top: -90px;
  }
  .p-app-visual img {
    max-width: 342px;
    margin: 0 auto 0 0;
  }

  .p-app-info {
    width: 58%;
    padding-top: 20px;
  }

  .u-app-lead {
    margin-bottom: 14px;
    font-size: 22px;
    line-height: 1.45;
    letter-spacing: 0.03em;
  }

  .p-app-visual,
  .p-app-info {
    order: initial;
  }

  .u-app-title {
    margin-bottom: 24px;
  }
  .u-app-title span {
    font-size: 32px;
    line-height: 1.08;
  }

  .u-app-line {
    max-width: 590px;
    margin-bottom: 28px;
  }

  .u-app-text {
    max-width: 590px;
    margin-bottom: 34px;
    font-family: sans-serif;
    font-size: 19px;
    line-height: 2.05;
    letter-spacing: 0.01em;
  }

  .u-app-btns {
    gap: 0 18px;
  }
  .u-app-btns img {
    height: 64px;
    margin-bottom: 10px;
  }
}
/* ==========================================================================
   共通・固有コンポーネント：大見出し ＆ 支部紹介（PC画像340px固定版）
   ========================================================================== */
.c-heading-primary {
  font-family: "Noto Serif JP", serif !important;
  color: #791336;
  font-size: 28px;
  font-weight: normal;
  margin: 0 0 16px 0;
}
@media screen and (min-width: 769px) {
  .c-heading-primary {
    font-size: 36px;
    margin-bottom: 24px;
  }
}

.p-branch {
  display: block;
  width: 100%;
  margin: 32px auto;
}
@media screen and (min-width: 769px) {
  .p-branch {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    margin: 80px auto;
  }
}
.p-branch-thumb {
  width: 70%;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .p-branch-thumb {
    width: 240px;
    flex-shrink: 0;
    margin-bottom: 0;
  }
}
.p-branch-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.p-branch-body {
  flex: 1;
}
.p-branch-body > p {
  line-height: 1.9;
  text-align: justify;
  margin: 0 0 24px 0;
}
@media screen and (min-width: 769px) {
  .p-branch-body > p {
    margin-bottom: 32px;
  }
}
.p-branch-box {
  border: 1px solid #791336;
  background-color: #ffffff;
  padding: 16px 24px;
  width: 100%;
}
.p-branch-box p {
  color: #000000;
  font-size: 14px;
  line-height: 2.0;
  margin: 0;
}
@media screen and (min-width: 769px) {
  .p-branch-box p {
    font-size: 15px;
  }
}

/* ==========================================================================
   Donation Section（テキスト中央揃え ＆ フォント環境依存対策版）
   ========================================================================== */
.p-donation {
  position: relative;
  background-color: #791336;
  padding: 40px 0;
  overflow: hidden;
  /* 上下のゴールドライン */
  border-top: 8px solid #aa853e;
  border-bottom: 8px solid #aa853e;
  /* 背景の透かし文字 */
}
.p-donation__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.p-donation__content {
  width: 100%;
  color: #ffffff;
  text-align: center;
}
.p-donation__txt {
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: left;
}
.p-donation__txt br {
  display: none;
}
.p-donation__btn-wrap {
  display: flex;
  justify-content: center;
}
.p-donation__bg-text {
  position: absolute;
  bottom: -55px;
  right: 20px;
  z-index: -1;
  font-family: "Cormorant Garamond", serif, Georgia, "Times New Roman", serif;
  font-size: 70px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.1);
  pointer-events: none;
  line-height: 1;
}

@media screen and (min-width: 769px) {
  .p-donation {
    padding: 80px 0;
  }

  .p-donation__txt {
    line-height: 2;
    text-align: center;
  }
  .p-donation__txt br {
    display: block;
  }

  /* PC用の背景透かし文字サイズ・位置調整 */
  .p-donation__bg-text {
    font-size: 100px;
    bottom: -100px;
  }
}
/* ==========================================================================
   共通コンポーネント：パンくずリスト (`.c-breadcrumbs`)
   ========================================================================== */
.c-breadcrumbs {
  width: 100%;
  padding: 20px 0;
  box-sizing: border-box;
}
.c-breadcrumbs ol {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-breadcrumbs li {
  font-size: 11px;
  line-height: 1.2;
  color: #888888;
  font-weight: 400;
}
@media screen and (min-width: 769px) {
  .c-breadcrumbs li {
    font-size: 13px;
  }
}
.c-breadcrumbs li:not(:first-child) {
  display: inline-flex;
  align-items: center;
}
.c-breadcrumbs li:not(:first-child)::before {
  content: ">";
  margin: 0 8px;
  color: #888888;
  font-size: 11px;
  font-weight: normal;
}
@media screen and (min-width: 769px) {
  .c-breadcrumbs li:not(:first-child)::before {
    margin: 0 12px;
    font-size: 13px;
  }
}
.c-breadcrumbs li a {
  color: #888888;
  text-decoration: none;
  transition: color 0.3s ease;
}
.c-breadcrumbs li a:hover {
  color: #791336;
  text-decoration: none;
}
.c-breadcrumbs li.current {
  color: #333333;
}

/* ==========================================================================
   共通コンポーネント：ページネーション (`.c-pagination`)
   ========================================================================== */
.c-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 50px;
  font-family: "Noto Serif JP", serif !important;
  font-size: 16px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) {
  .c-pagination {
    font-size: 18px;
  }
}
.c-pagination a,
.c-pagination span,
.c-pagination strong,
.c-pagination li a,
.c-pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 8px;
  color: #791336;
  text-decoration: none;
  line-height: 1;
  box-sizing: border-box;
  vertical-align: middle;
}
.c-pagination a {
  font-weight: 400;
  transition: opacity 0.3s ease;
}
.c-pagination a:hover {
  opacity: 0.6;
  text-decoration: none;
}
.c-pagination .current,
.c-pagination strong,
.c-pagination li.is-active span {
  font-weight: 700;
  background: none;
  cursor: default;
}
.c-pagination ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-gallery {
  width: 100%;
  padding: 40px 15px;
}
.p-gallery__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 15px;
}
.p-gallery__item {
  width: calc((100% - 15px) / 2);
  margin: 0;
  display: flex;
  flex-direction: column;
}
.p-gallery__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-gallery__img {
    width: 250px;
    height: auto;
  }
}
.p-gallery__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-gallery__caption {
  font-size: 14px;
  line-height: 1.5;
  color: #333333;
  margin-top: 12px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-gallery {
    padding: 60px 0;
  }
  .p-gallery__inner {
    max-width: 1280px;
    margin: 0 auto;
    gap: 0 40px;
  }
  .p-gallery__item {
    width: calc((100% - (40px * 2)) / 3);
  }
  .p-gallery__caption {
    font-size: 15px;
    margin-top: 16px;
  }
}
.p-branch-nav-container {
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-branch-nav-row {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-branch-nav-row {
    flex-direction: row;
    align-items: flex-start;
  }
}

.p-branch-nav-label {
  font-size: 20px;
  font-weight: bold;
  color: #791336;
  line-height: 1.4;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .p-branch-nav-label {
    min-width: 110px;
    margin-bottom: 0;
    padding-top: 4px;
  }
}

.p-branch-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  row-gap: 12px;
  overflow: hidden;
}
.p-branch-nav-list li {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.4;
  white-space: nowrap;
  padding-right: 16px;
  margin-right: 16px;
  position: relative;
}
.p-branch-nav-list li::after {
  content: "|";
  position: absolute;
  right: -4px;
  color: #333333;
  font-weight: normal;
  opacity: 0.7;
}
.p-branch-nav-list li a {
  color: #333333;
  text-decoration: none;
  transition: opacity 0.3s, color 0.3s;
}
.p-branch-nav-list li a:hover {
  color: #791336;
  opacity: 0.8;
}

.p-contact-tabs {
  width: 100%;
  max-width: 1000px;
  margin: 50px auto;
  padding: 0 20px;
}

.p-contact-tabs__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 50px;
  border-bottom: 1px solid #cccccc;
}

.p-contact-tabs__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 30px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 12px 12px 0 0;
  color: #333333;
  background-color: #d1d1d1;
  transition: background-color 0.3s, color 0.3s, opacity 0.3s;
}
.p-contact-tabs__button:hover {
  opacity: 0.85;
}
.p-contact-tabs__button.is-active {
  color: #ffffff;
  background-color: #791336;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-contact-tabs__button {
    min-width: 140px;
    padding: 12px 16px;
    font-size: 15px;
  }
}

.p-contact-tabs__container {
  background: #ffffff;
}

.p-contact-tabs__content {
  display: none;
  padding: 40px 0;
}

/* ==========================================================================
ページスクロール（TOPに戻るボタン）
========================================================================== */
.c-pagetop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 950;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.c-pagetop.is-show {
  opacity: 1;
  visibility: visible;
}
.c-pagetop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #791336;
  border: 1px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: opacity 0.3s, background-color 0.3s;
}
.c-pagetop a::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
  margin-top: 4px;
}
.c-pagetop a:hover {
  opacity: 0.85;
  background-color: #8f1640;
}
