@charset "UTF-8";
body {
  overflow-x: visible;
}

/* ==========================================================================
アンカー
========================================================================== */
html {
  scroll-behavior: auto !important;
  /* 慣性スクロールをスムーズにする（iOS/Safariなどのモバイル対応） */
  -webkit-overflow-scrolling: touch;
}

/* リンクをクリックした時の「一瞬のチラつき」を抑える */
a {
  -webkit-tap-highlight-color: transparent;
}

/* Safari用：そのまま */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  _::-webkit-full-page-media, _:future, :root html {
    scroll-behavior: auto !important;
  }
}
/* アンカー余白はJS側で計算するので、このCSSは「保険」として残すか、
   JSのheaderHeightと数値を合わせておきます */
#top-link01,
#top-link02,
#kindergarten,
#p-school,
#secondary-school,
#university,
#grad-school,
#kaede,
#link01, #link02, #link03, #link04, #link05, #link06,
#history01, #history02, #history03,
.anchor {
  scroll-margin-top: 100px;
  /* JSのheaderHeightと同じ数値にする */
}

#app {
  scroll-margin-top: 120px;
  /* JSのheaderHeightと同じ数値にする */
}

/* ==========================================================================
共通：上付き文字（※などの注釈・小さく上に配置）
========================================================================== */
/* HTML記述例： <sup>※1</sup> または テキスト<sup>※</sup> */
sup {
  font-size: 0.7em;
  /* 文字のサイズを元の70%に縮小 */
  vertical-align: super;
  /* 位置を上に持ち上げる */
  line-height: 1;
  /* 行間（行高）が上下に広がって崩れるのを防ぐ */
  margin-left: 0.15em;
  /* 前の文字とくっつきすぎないように微小な隙間 */
  font-weight: normal;
  /* 見出し（h2など）の中で使われても太くなりすぎないようにリセット */
}
a sup {
  display: inline-block;
  text-decoration: none !important;
}

/* ==========================================================================
ページスクロール
========================================================================== */
.c-pagetop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 950;
  opacity: 0;
  visibility: hidden;
  transition: 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%;
  position: relative;
}
.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;
}

/* ==========================================================================
ページタイトル
========================================================================== */
audio::-webkit-media-controls-panel {
  background-color: #c0a084;
}

/*薄茶色部分*/
audio::-webkit-media-controls-play-button {
  background-color: #f3ffe2;
  border-radius: 50%;
}

/*再生停止ボタン部分*/
audio::-webkit-media-controls-current-time-display {
  color: #4c2b0b;
}

/*経過時間*/
.l-page-header {
  position: relative;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 40px;
}
.l-page-header.--has-img {
  height: 250px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .l-page-header.--has-img {
    height: 400px;
  }
}
.l-page-header.--has-img .l-page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.l-page-header.--has-img .l-page-header__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-page-header.--has-img .l-page-header__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.l-page-header.--has-img .c-hd2 {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 30px;
  letter-spacing: 0.1em;
  margin: 0;
  padding: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 769px) {
  .l-page-header.--has-img .c-hd2 {
    font-size: 50px;
    padding: 30px 60px;
  }
}
.l-page-header:not(.--has-img) {
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid #aa853e;
  border-bottom: 1px solid #aa853e;
}
@media screen and (min-width: 769px) {
  .l-page-header:not(.--has-img) {
    padding: 60px 20px;
  }
}
.l-page-header:not(.--has-img) .c-hd2 {
  color: #791336;
  font-size: 28px;
  margin: 0;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  .l-page-header:not(.--has-img) .c-hd2 {
    font-size: 32px;
  }
}

/* ==========================================================================
 パンくずリスト：シンプル版
 ========================================================================== */
.breadcrumb {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 20px 0px;
  font-size: 12px;
  line-height: 1.5;
  color: #888888;
}
@media screen and (min-width: 769px) {
  .breadcrumb {
    padding: 40px 50px 0px;
  }
}
.breadcrumb__inner {
  word-break: break-all;
}
.breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb__divider {
  margin: 0 8px;
  color: #ccc;
  display: inline-block;
}
.breadcrumb__current {
  color: #333333;
}

/* ==========================================================================
通常ページ
========================================================================== */
.l-column-layout__main {
  /* 箇条書きリスト（○印・ぶら下げインデント） */
  /* 共通パーツ：テーブル（デザイン忠実再現・字間補正版） */
}
.l-column-layout__main i {
  font-style: italic;
}
.l-column-layout__main a {
  color: #333333;
}
.l-column-layout__main a:hover {
  text-decoration: underline;
}
.l-column-layout__main a.common {
  text-decoration: underline;
  color: #1a0dab;
}
.l-column-layout__main a.common:hover {
  text-decoration: none;
}
.l-column-layout__main p.cap {
  font-size: 12px;
  line-height: 1.5em;
  margin-top: 10px;
}
.l-column-layout__main .center {
  text-align: center;
}
.l-column-layout__main .right {
  text-align: right;
}
.l-column-layout__main p {
  font-size: 16px;
}
.l-column-layout__main ul.p-list-circle {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}
.l-column-layout__main ul.p-list-circle > li {
  position: relative;
  padding-left: 1.5em;
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 10px;
  text-align: justify;
}
@media screen and (min-width: 769px) {
  .l-column-layout__main ul.p-list-circle > li {
    font-size: 15px;
  }
}
.l-column-layout__main ul.p-list-circle > li:last-child {
  margin-bottom: 0;
}
.l-column-layout__main ul.p-list-circle > li::before {
  content: "○";
  position: absolute;
  left: 0;
  top: 0;
  color: #333333;
}
.l-column-layout__main table.c-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #791336;
  margin-bottom: 30px;
  background-color: #ffffff;
  letter-spacing: 0.05em;
}
.l-column-layout__main table.c-table th, .l-column-layout__main table.c-table td {
  border: 1px solid #791336;
  padding: 12px 15px;
  line-height: 1.6;
  vertical-align: middle;
  color: #333333;
}
@media screen and (min-width: 769px) {
  .l-column-layout__main table.c-table th, .l-column-layout__main table.c-table td {
    padding: 18px 20px;
  }
}
.l-column-layout__main table.c-table th,
.l-column-layout__main table.c-table .c-table__label {
  font-weight: normal;
  text-align: center;
  background-color: #ffffff;
  font-size: 16px;
  padding-left: calc(15px + 0.05em);
}
@media screen and (min-width: 769px) {
  .l-column-layout__main table.c-table th,
  .l-column-layout__main table.c-table .c-table__label {
    font-size: 20px;
    padding-left: calc(20px + 0.05em);
  }
}
.l-column-layout__main table.c-table td {
  font-weight: normal;
  text-align: left;
  font-size: 14px;
}
@media screen and (min-width: 769px) {
  .l-column-layout__main table.c-table td {
    font-size: 16px;
  }
}
.l-column-layout__main table.c-table.--bg-label th,
.l-column-layout__main table.c-table.--bg-label .c-table__label {
  background-color: #f4eff1;
}
.l-column-layout__main table.c-table .u-ta-center {
  text-align: center !important;
  padding-left: calc(15px + 0.05em) !important;
}
@media screen and (min-width: 769px) {
  .l-column-layout__main table.c-table .u-ta-center {
    padding-left: calc(20px + 0.05em) !important;
  }
}
.l-column-layout__main table.c-table .u-ta-right {
  text-align: right !important;
}
.l-column-layout__main table.c-table .u-w-20 {
  width: 20% !important;
  white-space: normal !important;
}
.l-column-layout__main table.c-table .u-w-30 {
  width: 30% !important;
  white-space: normal !important;
}
.l-column-layout__main table.c-table .u-w-40 {
  width: 40% !important;
  white-space: normal !important;
}
.l-column-layout__main table.c-table .c-table__note {
  display: block;
  font-size: 12px;
  margin-top: 5px;
  font-weight: normal;
}
.l-column-layout__main .u-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 30px;
}
.l-column-layout__main .u-table-wrap table.c-table {
  margin-bottom: 0;
}
@media screen and (max-width: 560px) {
  .l-column-layout__main .u-table-wrap table.c-table {
    min-width: 500px;
  }
}

figcaption {
  font-size: 13px;
  margin-top: 10px;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 769px) {
  figcaption {
    font-size: 14px;
    text-align: left;
  }
}
figcaption.--center {
  text-align: center !important;
}
figcaption.--left {
  text-align: left !important;
}

.c-info-box {
  border: 1px solid #791336;
  padding: 10px 20px;
  background: #fff;
}
.c-info-box p {
  margin: 0;
  font-size: 13px;
  line-height: 2.0em;
  color: #333333;
}
.c-info-box.--dotted {
  border: 1px dotted #aa853e;
}
@media screen and (min-width: 769px) {
  .c-info-box {
    padding: 30px 45px;
  }
  .c-info-box p {
    font-size: 14px;
  }
}

/* ==========================================================================
   共通部品：アコーディオン（開閉時のみ枠線版）
   ========================================================================== */
.c-accordion {
  width: 100%;
  margin-bottom: 20px;
  background-color: #f4eff1;
  transition: background-color 0.3s;
  border: 1px solid transparent;
}
.c-accordion__title {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  line-height: 1.4;
}
.c-accordion__title::-webkit-details-marker {
  display: none;
}
.c-accordion__title:hover {
  background-color: #fcfaf5;
}
.c-accordion__title::before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  font-family: monospace;
  font-size: 22px;
  color: #791336;
  margin-right: 12px;
  flex-shrink: 0;
}
.c-accordion[open] {
  background-color: #fff;
  border-color: #aa853e;
}
.c-accordion[open] .c-accordion__title {
  background-color: #f4eff1;
  border-bottom: 1px solid #aa853e;
}
.c-accordion[open] .c-accordion__title::before {
  content: "−";
}
.c-accordion__content {
  padding: 20px;
  line-height: 1.8;
  color: #333333;
  background-color: #fff;
}
.c-accordion__content p.ttl {
  display: inline-block;
  padding: 5px 10px;
  margin-bottom: 10px;
  color: #791336;
  border: 1px solid #791336;
  font-size: 0.9em;
  font-weight: bold;
}

@media screen and (min-width: 769px) {
  .c-accordion__title {
    padding: 22px 30px;
    font-size: 18px;
  }

  .c-accordion__content {
    padding: 30px;
  }
}
/* 共通パーツ：ギャラリー（サイズ固定・スマホ端数中央版） */
.c-gallery-multi {
  margin: 40px 0;
}
.c-gallery-multi__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 15px;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 769px) {
  .c-gallery-multi__list {
    justify-content: flex-start;
    gap: 30px 25px;
  }
}
.c-gallery-multi__item {
  width: calc((100% - 15px) / 2);
  flex: 0 0 auto;
}
@media screen and (min-width: 769px) {
  .c-gallery-multi__item {
    width: calc((100% - 50px) / 3);
  }
}
.c-gallery-multi__item img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
}
.c-gallery-multi__item figcaption {
  font-size: 11px;
  line-height: 1.4;
  color: #333333;
}
@media screen and (min-width: 769px) {
  .c-gallery-multi__item figcaption {
    font-size: 14px;
  }
}

.c-list-pdf {
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 769px) {
  .c-list-pdf {
    margin-bottom: 50px;
  }
}
.c-list-pdf li {
  margin-bottom: 18px;
}
.c-list-pdf a {
  color: #333333;
  transition: opacity 0.3s;
}
.c-list-pdf a:hover {
  opacity: 0.7;
  text-decoration: underline;
}
.c-list-pdf__icon {
  display: block;
  width: 20px;
  height: 20px;
  background: url("/gakuin/_shared/images/icon_pdf.png") no-repeat center/contain;
  flex: 0 0 20px;
}
.c-list-pdf__label {
  line-height: 1.7;
  white-space: nowrap;
}
.c-list-pdf__texts {
  min-width: 0;
}
.c-list-pdf__spec {
  display: block;
  line-height: 1.7;
}
.c-list-pdf__spec + .c-list-pdf__spec {
  margin-top: 2px;
}

.c-list-pdf--spec li {
  margin-bottom: 18px;
}
.c-list-pdf--spec a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.c-list-pdf--spec .c-list-pdf__icon {
  margin-top: 0.2em;
}
.c-list-pdf--spec .c-list-pdf__content {
  display: grid;
  grid-template-columns: 4em 1fr;
  column-gap: 1.2em;
  align-items: start;
  flex: 1;
  min-width: 0;
}
.c-list-pdf--spec .c-list-pdf__texts {
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .c-list-pdf--spec .c-list-pdf__content {
    grid-template-columns: 1fr;
    row-gap: 2px;
  }
}

.c-list-pdf--icon li {
  margin-bottom: 14px;
}
.c-list-pdf--icon a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.c-list-pdf--icon .c-list-pdf__icon {
  margin-top: 0.2em;
}
.c-list-pdf--icon .c-list-pdf__content {
  flex: 1;
  min-width: 0;
  line-height: 1.7;
}
.c-list-pdf--icon .c-list-pdf__label,
.c-list-pdf--icon .c-list-pdf__texts,
.c-list-pdf--icon .c-list-pdf__spec {
  display: inline;
}
.c-list-pdf--icon .c-list-pdf__label {
  margin-right: 1em;
}
.c-list-pdf--icon .c-list-pdf__spec + .c-list-pdf__spec::before {
  content: " ";
}

.c-list-pdf--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}
.c-list-pdf--inline li {
  margin-bottom: 0;
}
.c-list-pdf--inline a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.c-list-pdf--inline .c-list-pdf__content {
  display: block;
}
.c-list-pdf--inline .c-list-pdf__label {
  display: inline;
  line-height: 1.5;
}
.c-list-pdf--inline .c-list-pdf__texts {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-list-pdf--inline {
    gap: 10px 16px;
  }
}

/* --- PDF注釈（共通パーツ） --- */
.c-pdf-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #333333;
  line-height: 1.6;
  margin-top: 10px;
}
.c-pdf-note::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: url("/gakuin/_shared/images/icon_pdf.png") no-repeat center/contain;
  margin-top: 1px;
}
.c-pdf-note.--center {
  justify-content: center;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .c-pdf-note {
    font-size: 14px;
    margin-top: 15px;
    gap: 10px;
  }
  .c-pdf-note::before {
    width: 22px;
    height: 22px;
  }
}

.u-external::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 4px;
  vertical-align: middle;
  background-color: currentColor;
  -webkit-mask: url("../images/icon-external.svg") no-repeat center/contain;
  mask: url("../images/icon-external.svg") no-repeat center/contain;
}

/* ==========================================================================
見出し
========================================================================== */
.l-column-layout__main h3.c-hd3 {
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
  color: #791336;
  padding: 10px 0;
  border-top: 1px solid #aa853e;
  border-bottom: 1px solid #aa853e;
  text-align: center;
  letter-spacing: 0.05em;
  text-indent: 0.1em;
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  .l-column-layout__main h3.c-hd3 {
    font-size: 28px;
    padding: 15px 0;
    margin-bottom: 60px;
  }
}
.l-column-layout__main h4.c-hd4,
.l-column-layout__main h5.c-hd5 {
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  color: #791336;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.l-column-layout__main h4.c-hd4 span,
.l-column-layout__main h5.c-hd5 span {
  font-size: 18px;
}
@media screen and (min-width: 769px) {
  .l-column-layout__main h4.c-hd4,
  .l-column-layout__main h5.c-hd5 {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .l-column-layout__main h4.c-hd4 span,
  .l-column-layout__main h5.c-hd5 span {
    font-size: 22px;
  }
}
.l-column-layout__main h4.c-hd4 span.small,
.l-column-layout__main h5.c-hd5 span.small {
  font-size: 14px;
}
@media screen and (min-width: 769px) {
  .l-column-layout__main h4.c-hd4 span.small,
  .l-column-layout__main h5.c-hd5 span.small {
    font-size: 15px;
  }
}
.l-column-layout__main h4.c-hd4.--center,
.l-column-layout__main h5.c-hd5.--center {
  text-align: center;
  text-indent: 0.05em;
}
.l-column-layout__main h4.c-hd4.--black,
.l-column-layout__main h5.c-hd5.--black {
  color: #333333;
}
.l-column-layout__main h5.c-hd5 {
  padding-bottom: 10px;
  border-bottom: 1px solid #aa853e;
}
@media screen and (min-width: 769px) {
  .l-column-layout__main h5.c-hd5 {
    padding-bottom: 20px;
  }
}
.l-column-layout__main h6.c-hd6 {
  font-size: 17px;
  margin-bottom: 10px;
}
@media screen and (min-width: 769px) {
  .l-column-layout__main h6.c-hd6 {
    font-size: 18px;
  }
}

/* ==========================================================================
   Googleマップ埋め込み（レスポンシブ対応）
   ========================================================================== */
.c-map-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  line-height: 0;
}
.c-map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

.p-access__map {
  margin-bottom: 40px;
}
@media screen and (max-width: 560px) {
  .p-access__map {
    margin-bottom: 30px;
  }
}

/* ==========================================================================
背景突き抜け（Flexレイアウト対応版）
========================================================================== */
.u-bg-full {
  position: relative;
  z-index: 1;
  padding: 50px 0;
  margin-bottom: 50px;
}
@media screen and (min-width: 769px) {
  .u-bg-full {
    padding: 100px 0;
    margin-bottom: 100px;
  }
}

.no-bg-block {
  padding: 0px 0 50px;
}
@media screen and (min-width: 769px) {
  .no-bg-block {
    padding: 0px 0 100px;
  }
}

.u-bg-full::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  /* デフォルト：アイボリー（薄黄色） */
  background-color: #fafaf5;
  z-index: -1;
  /* --- [スマホ] 左右均等に画面一杯まで広げる --- */
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
}
@media screen and (min-width: 769px) {
  .u-bg-full::before {
    left: -50vw;
    width: 200vw;
    transform: none;
  }
}

.u-bg-full.--pink::before {
  background-color: #f4eff1;
}

.u-bg-full.--no-mb {
  margin-bottom: 0 !important;
}
.u-bg-full.--no-mb::before {
  height: 100%;
}

body {
  overflow-x: clip;
  /* hidden ではなく clip を使うのがモダンな解決策です */
}

/* ==========================================================================
 汎用2カラム：基本47%均等 ＋ 親クラスで比率セットを制御
 ========================================================================== */
.l-2col {
  display: flex !important;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.l-2col__l, .l-2col__s {
  min-width: 0;
  width: 47%;
}
@media screen and (max-width: 768px) {
  .l-2col.--sp-stack {
    flex-direction: column;
  }
  .l-2col.--sp-stack .l-2col__l, .l-2col.--sp-stack .l-2col__s {
    width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .l-2col.--sp-stack .l-2col__s {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .l-2col.--r23 {
    flex-direction: column;
    align-items: center;
  }
  .l-2col.--r23 .l-2col__s {
    width: 50% !important;
    margin: 0 auto 20px !important;
  }
  .l-2col.--r23 .l-2col__l {
    width: 100% !important;
  }
}
@media screen and (min-width: 769px) {
  .l-2col.--r23 .l-2col__s {
    width: 23%;
  }
  .l-2col.--r23 .l-2col__l {
    width: 72%;
  }
}
.l-2col.--r39 .l-2col__s {
  width: 39%;
}
.l-2col.--r39 .l-2col__l {
  width: 52%;
}

/* ==========================================================================
区切り線（ゴールド）
 ========================================================================== */
/* 区切り線（ゴールド） */
hr.c-line {
  border: none;
  border-top: 1px solid #aa853e;
  margin: 30px 0;
  overflow: visible;
  position: relative;
  /* --- 背景色別のバリエーション --- */
}
@media screen and (min-width: 769px) {
  hr.c-line {
    margin: 60px 0;
  }
}
hr.c-line.--ornament::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 30px;
  background-image: url("../images/ico-ornament.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: #ffffff;
}
hr.c-line.--ivory.--ornament::after {
  background-color: #fafaf5;
}
hr.c-line.--pink.--ornament::after {
  background-color: #f4eff1;
}
hr.c-line.--sm {
  margin: 30px 0;
}
@media screen and (min-width: 769px) {
  hr.c-line.--sm {
    margin: 40px 0;
  }
}

/* ==========================================================================
人々ボックス
 ========================================================================== */
h3.c-heading-person {
  font-family: "Noto Serif JP", serif;
  color: #791336;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  line-height: 1.4;
  font-size: 20px;
}
@media screen and (min-width: 769px) {
  h3.c-heading-person {
    font-size: 25px;
  }
}
h3.c-heading-person small {
  display: inline-block;
  font-size: 0.7em;
  margin-left: 0.5em;
  font-weight: normal;
}
h3.c-heading-person.--center {
  text-align: center;
  text-indent: 0.05em;
}

/* --- Person Item (人物紹介) --- */
.p-person-card {
  position: relative;
  padding: 0px 0 40px;
  margin-bottom: 40px;
  /* 反転レイアウト */
}
@media screen and (min-width: 769px) {
  .p-person-card {
    padding: 0px 0 60px;
    margin-bottom: 60px;
  }
}
.p-person-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(170, 133, 62, 0.5);
  z-index: 1;
}
.p-person-card.--no-border {
  padding-bottom: 0;
  margin-bottom: 30px;
}
.p-person-card.--no-border::after {
  display: none;
}
.p-person-card.--no-border .p-person-card__bg-name {
  bottom: 0;
}
.p-person-card__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  .p-person-card__inner {
    flex-direction: row;
    gap: 50px;
  }
}
.p-person-card__img {
  width: 200px;
  flex-shrink: 0;
  z-index: 2;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .p-person-card__img {
    width: 232px;
  }
}
.p-person-card__img img {
  width: 100%;
  height: auto;
  display: block;
}
.p-person-card__body {
  flex: 1;
  z-index: 2;
}
.p-person-card__bg-name {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 200;
  color: #c9b171;
  opacity: 0.7;
  line-height: 1;
  z-index: 0;
  position: absolute;
  bottom: -4px;
  right: 0;
  font-size: 28px;
  text-align: center;
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .p-person-card__bg-name {
    font-size: 54px;
    bottom: -9px;
    margin-top: 0;
  }
}
@media screen and (min-width: 769px) {
  .p-person-card.--reverse .p-person-card__inner {
    flex-direction: row-reverse;
  }
  .p-person-card.--reverse .p-person-card__bg-name {
    right: auto;
    left: 0;
  }
}

/* --- 特別装飾バリエーション (.--special) --- */
.p-person-card.--special .p-person-card__img-unit {
  width: 280px;
  flex-shrink: 0;
  margin: 0 auto;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .p-person-card.--special .p-person-card__img-unit {
    width: 320px;
    margin: 0;
  }
}
.p-person-card.--special .p-person-card__img-unit img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 769px) {
  .p-person-card.--special.--reverse .p-person-card__inner {
    flex-direction: row-reverse;
  }
  .p-person-card.--special.--reverse .p-person-card__bg-name {
    right: auto;
    left: 0;
  }
}

.p-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.p-modal__inner {
  position: relative;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-modal__img {
  width: 90%;
  max-width: 900px;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.p-modal__caption {
  display: none;
  color: #fff;
  font-size: 15px;
  margin-top: 15px;
  line-height: 1.6;
}

/* ==========================================================================
共通ボタン
   ========================================================================== */
.c-btn-pub {
  position: relative;
  z-index: 1;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 40px 24px 24px;
  border: 1px solid #791336;
  background: #f7f1f3;
  color: #791336 !important;
  text-decoration: none !important;
  font-size: 19px;
  letter-spacing: 0.08em;
  box-sizing: border-box;
  transition: background-color .28s ease, color .28s ease, border-color .28s ease;
  /* 右下の線 */
  /* 矢印 */
}
@media screen and (max-width: 560px) {
  .c-btn-pub {
    min-height: 96px;
    padding: 18px 56px 18px 20px;
    font-size: 17px;
  }
}
.c-btn-pub::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 9px;
  width: 100%;
  height: 100%;
  border-right: 1px solid #791336;
  border-bottom: 1px solid #791336;
  box-sizing: border-box;
  pointer-events: none;
  z-index: -1;
  transition: border-color .28s ease;
}
.c-btn-pub::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 50%;
  width: 16px;
  height: 16px;
  border-top: 2px solid #791336;
  border-right: 2px solid #791336;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color .28s ease;
}
.c-btn-pub:hover {
  background: #fcfaf5;
  color: #862b4a;
  border-color: #862b4a;
}
.c-btn-pub:hover::before {
  border-right-color: #862b4a;
  border-bottom-color: #862b4a;
}
.c-btn-pub:hover::after {
  border-top-color: #862b4a;
  border-right-color: #862b4a;
}
.c-btn-pub small {
  font-size: 0.78em;
}

/* ==========================================================================
   ダウンロードボタン（c-btn-pubを拡張 / 指定アイコン使用）
   ========================================================================== */
.c-btn-pub.--download {
  padding-right: 80px;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  transition: all .28s ease;
  /* 既存の矢印アイコンをリセットして画像アイコンに差し替え */
}
@media screen and (max-width: 560px) {
  .c-btn-pub.--download {
    max-width: 100%;
    padding-right: 66px;
  }
}
.c-btn-pub.--download::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: url("../images/icon_dl.png") no-repeat center/contain;
  border: none;
  right: 20px;
}
@media screen and (max-width: 560px) {
  .c-btn-pub.--download::after {
    right: 15px;
  }
}
.c-btn-pub.--download:hover {
  border-color: #862b4a;
}

/* ==========================================================================
共通部品：ボタン（矢印が文字のすぐ横に並ぶ・上下センター自動同期版）
========================================================================== */
.c-btn {
  /* ★inline-flexの「中身を自動で上下中央にする機能」を100%活かします */
  display: inline-flex;
  align-items: center;
  /* これで文字もアイコンも、自動で上下中央になります */
  justify-content: center;
  background-color: #791336;
  color: #ffffff !important;
  text-decoration: none !important;
  border-radius: 9999px;
  transition: opacity 0.3s;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  position: relative;
  /* ★文字自体の謎の上下余白をリセットして、ブラウザ間のズレの根源を消す */
  line-height: 1;
  /* height（高さ固定）は削除し、上下均等なpaddingで高さを表現する */
  padding-top: 15px;
  padding-bottom: 17px;
  padding-left: 24px;
  padding-right: 24px;
  /* 左右の余白を均等に */
  font-size: 14px;
  max-width: 320px;
  /* ★標準の矢印：文字のすぐ右隣に並び、上下中央も自動で連動 */
  /* --- 外部リンクアイコン --- */
}
.c-btn:hover {
  opacity: 0.8;
}
.c-btn::after {
  content: "";
  display: inline-block;
  /* 流れに乗せる */
  flex-shrink: 0;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transform: rotate(45deg);
  /* 文字との間隔（ここで文字との距離を調整します） */
  margin-left: 0.8em;
  /* 補正用の margin-top はすべて【削除】します */
  margin-top: 1px !important;
  position: static !important;
  /* absoluteを解除 */
}
.c-btn.--external::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  -webkit-mask: url("../images/icon-external.svg") no-repeat center/contain;
  mask: url("../images/icon-external.svg") no-repeat center/contain;
  background-color: #ffffff;
  border: none;
  transform: none;
  margin-left: 8px;
  margin-top: 1px !important;
  /* 削除 */
  position: static !important;
}

/* --- PCサイズ以上 --- */
@media screen and (min-width: 769px) {
  .c-btn {
    /* PCサイズで少しボタンを太くする調整 */
    padding-top: 17px;
    padding-bottom: 17px;
    font-size: 15px;
    max-width: 280px;
  }
}
/* --- 特殊サイズ：大（--lg） --- */
.c-btn.--lg {
  padding-top: 19px;
  padding-bottom: 21px;
  font-size: 18px;
  max-width: 400px;
}
@media screen and (min-width: 769px) {
  .c-btn.--lg {
    padding-top: 21px;
    padding-bottom: 21px;
    font-size: 20px;
  }
}

/* --- 特殊サイズ：小（--sm） --- */
.c-btn.--sm {
  padding-top: 9px;
  padding-bottom: 11px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 13px;
  max-width: 300px;
}
.c-btn.--sm::after {
  width: 6px;
  height: 6px;
  border-top: 1.5px solid #ffffff;
  border-right: 1.5px solid #ffffff;
  margin-left: 8px;
  margin-top: 2px !important;
}
.c-btn.--sm.--external::after {
  width: 14px;
  height: 14px;
  margin-left: 8px;
  margin-top: 2px !important;
}
.c-btn.--sm.--center {
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
文字専用ポップアップ（新規追加分）
========================================================================== */
.p-text-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  /* 既存のヘッダーや画像ポップアップより上に表示 */
  display: none;
  /* 初期状態は非表示（JSでflexに切り替え） */
  align-items: center;
  justify-content: center;
  /* 背景の黒ベタ（半透明） */
  /* 中央の白い箱（文字専用のサイズ感） */
  /* 右上の閉じる「×」ボタン */
  /* 内部の文字エリア（長文ならここでスクロール） */
}
.p-text-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
.p-text-modal__inner {
  position: relative;
  background: #ffffff;
  width: 90%;
  max-width: 800px;
  /* 読みやすいように横幅を制限 */
  max-height: 80vh;
  /* 画面からはみ出さないように縦幅を制限 */
  padding: 40px 20px;
  box-sizing: border-box;
  border-radius: 6px;
  /* 少し角を丸めて上品に */
  z-index: 10;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.p-text-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 32px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  color: #999999;
  padding: 0;
  transition: color 0.2s;
}
.p-text-modal__close:hover {
  color: #333333;
}
.p-text-modal__content {
  overflow-y: auto;
  /* ここが縦スクロールの肝 */
  font-size: 15px;
  line-height: 1.7;
  color: #333333;
  -webkit-overflow-scrolling: touch;
  /* スマホで滑らかにスクロールさせる */
  padding-right: 20px;
}
.p-text-modal__content h3 {
  font-size: 18px;
  font-weight: bold;
  color: #791336;
  margin-bottom: 15px;
  border-bottom: 2px solid #aa853e;
  padding-bottom: 8px;
}
.p-text-modal__content p {
  margin-bottom: 1em;
}
.p-text-modal__content p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   共通パーツ：テキストリンク・アイコン出し分け
   ========================================================================== */
.c-link-text {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.c-link-text::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
}
.c-link-text.--pdf::after {
  width: 18px;
  height: 22px;
  background-image: url("/gakuin/_shared/images/icon_pdf.png");
}
.c-link-text.--word::after {
  width: 18px;
  height: 18px;
  background-image: url("/gakuin/_shared/images/icon_word.png");
}
.c-link-text.--excel::after {
  width: 18px;
  height: 18px;
  background-image: url("/gakuin/_shared/images/icon_exe.png");
}
.c-link-text.--powerpoint::after {
  width: 18px;
  height: 18px;
  background-image: url("/gakuin/_shared/images/icon_point.png");
}
.c-link-text.--external::after {
  width: 15px;
  height: 15px;
  background-color: #000;
  -webkit-mask: url("/gakuin/_shared/images/icon-external.svg") no-repeat center/contain;
  mask: url("/gakuin/_shared/images/icon-external.svg") no-repeat center/contain;
}

/* ==========================================================================
 ユーティリティ：右寄せラッパー
 ========================================================================== */
.u-right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .u-right {
    justify-content: flex-end;
  }
}

/* --- 改行ユーティリティ --- */
.sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}

/* ==========================================================================
 2カラムレイアウト：追従＆中央寄せ確定版
 ========================================================================== */
.l-column-layout {
  overflow: visible;
  padding: 40px 0;
}
.l-column-layout.--no-mb {
  padding-bottom: 0 !important;
}
.l-column-layout__inner.container {
  display: block;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: visible !important;
}
@media screen and (min-width: 769px) {
  .l-column-layout__inner.container {
    display: flex !important;
    justify-content: space-between;
    align-items: stretch !important;
    gap: 40px;
  }
}
@media screen and (min-width: 769px) {
  .l-column-layout.--no-sidebar .l-column-layout__inner.container {
    justify-content: center;
  }
}
@media screen and (min-width: 769px) {
  .l-column-layout.--no-sidebar .l-column-layout__main {
    flex: none;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  .l-column-layout.--no-sidebar .u-bg-full::before {
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100vw !important;
  }
}
.l-column-layout__sidebar {
  display: none;
}
@media screen and (min-width: 769px) {
  .l-column-layout__sidebar {
    display: block;
    width: 21%;
    max-width: 210px;
    min-width: 200px;
    margin-bottom: 0;
  }
}
.l-column-layout__main {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .l-column-layout__main {
    flex: 1;
    max-width: 760px;
    min-width: 0;
    position: relative !important;
    overflow: visible;
  }
}

@media screen and (min-width: 769px) {
  .l-side-container {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    z-index: 10;
    will-change: transform;
    margin-bottom: 40px;
  }
}

/* ==========================================================================
 ローカルメニュー：整理版
 ========================================================================== */
.l-side-nav {
  width: 100%;
  padding-bottom: 0;
  background-color: #791336;
  /* --- 階層別デザイン --- */
}
.l-side-nav__list, .l-side-nav__sub {
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-side-nav__item2, .l-side-nav__item3, .l-side-nav__item4 {
  position: relative;
}
.l-side-nav__item2::after, .l-side-nav__item3::after, .l-side-nav__item4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background-color: #aa853e;
  z-index: 1;
}
.l-side-nav__row {
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: relative;
}
.l-side-nav__link, .l-side-nav__text {
  display: block;
  flex: 1;
  padding: 20px 0;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.4;
  transition: opacity 0.3s;
}
.l-side-nav__link:hover, .l-side-nav__text:hover {
  opacity: 0.7;
}
.l-side-nav__toggle {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  margin-right: -10px;
  color: inherit;
}
.l-side-nav__toggle::before, .l-side-nav__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background-color: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.l-side-nav__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.l-side-nav__sub {
  display: none;
  padding-bottom: 10px;
}
.l-side-nav__sub .l-side-nav__link {
  padding: 8px 8px 8px 20px !important;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  color: #ffffff;
}
.l-side-nav__sub .l-side-nav__link::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  margin-top: 6px;
  margin-right: 10px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  transform: rotate(45deg);
}
.l-side-nav__sub li.no-icon > .l-side-nav__link::before {
  display: none !important;
  content: none !important;
}
.l-side-nav__sub li.no-icon > .l-side-nav__link {
  padding-left: 20px !important;
}
.l-side-nav__item2 {
  background-color: #791336;
  color: #ffffff;
}
.l-side-nav__item2 > .l-side-nav__row .l-side-nav__link {
  font-size: 19px;
  font-family: "Noto Serif JP", serif;
}
.l-side-nav__item3 {
  background-color: #862b4a;
  color: #ffffff;
}
.l-side-nav li.is-open > .l-side-nav__sub {
  display: block;
}
.l-side-nav li.is-open > .l-side-nav__row .l-side-nav__toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.l-side-nav li:last-child::after {
  display: none;
}
.l-side-nav__banner {
  background-color: #791336;
  padding: 20px;
}
.l-side-nav__banner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  font-size: 12px;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
}
.l-side-nav__banner-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================
   特定の階層（アンカーリンク）だけ矢印を強制復活させる
   ========================================================== */
.l-side-nav__sub .l-side-nav__sub .l-side-nav__link::before {
  content: "" !important;
  display: block !important;
  width: 5px;
  height: 5px;
  border-right: 1px solid #fff !important;
  border-bottom: 1px solid #fff !important;
  transform: rotate(45deg);
  margin-right: 10px;
  margin-top: 6px;
  flex-shrink: 0;
}

.l-side-nav__sub .l-side-nav__sub .l-side-nav__link {
  padding-left: 20px !important;
}

/* ==========================================================================
   年表
   ========================================================================== */
.p-history-item {
  display: flex;
  flex-direction: column;
  padding: 30px 0;
  border-bottom: 1px solid #aa853e;
  gap: 15px;
}
@media screen and (min-width: 769px) {
  .p-history-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
}
.p-history-item__head {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  color: #791336;
  display: flex;
}
.p-history-item__head p {
  display: inline-block;
  font-size: 26px;
  line-height: 1.0em;
}
@media screen and (min-width: 769px) {
  .p-history-item__head p {
    font-size: 36px;
  }
}
.p-history-item__head p small {
  font-size: 17px;
  font-weight: normal;
}
@media screen and (min-width: 769px) {
  .p-history-item__head p small {
    font-size: 20px;
  }
}
.p-history-item__head br {
  display: none;
}
@media screen and (min-width: 769px) {
  .p-history-item__head br {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .p-history-item__head {
    width: 18%;
    max-width: 140px;
    flex-shrink: 0;
  }
}
.p-history-item__body {
  flex: 1;
  line-height: 1.8;
  color: #333333;
}
@media screen and (min-width: 769px) {
  .p-history-item__body {
    display: flex;
    gap: 30px;
  }
}
.p-history-item__body h3 {
  font-size: 17px;
  margin-bottom: 12px;
}
@media screen and (min-width: 769px) {
  .p-history-item__body h3 {
    font-size: 20px;
  }
}
.p-history-item__body p {
  margin: 0;
}
@media screen and (min-width: 769px) {
  .p-history-item__content {
    width: 59%;
    max-width: calc(760px - 140px - 220px - 60px);
  }
}
.p-history-item__gallery {
  width: 100%;
  margin-top: 15px;
  display: flex;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  .p-history-item__gallery {
    display: block;
    width: 38%;
    max-width: 220px;
    margin-top: 0;
    flex-shrink: 0;
  }
}
.p-history-item__gallery figure {
  width: 50%;
  margin: 0 0 15px 0;
}
@media screen and (min-width: 769px) {
  .p-history-item__gallery figure {
    width: auto;
  }
}
.p-history-item__gallery figure img {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
  transition: opacity 0.3s;
}
.p-history-item__gallery figure img:hover {
  opacity: 0.7;
}
.p-history-item.--short .p-history-item__head p {
  font-size: 17px;
  font-weight: normal;
  line-height: 1.3em;
  width: 4.5em;
}
@media screen and (min-width: 769px) {
  .p-history-item.--short .p-history-item__head p {
    font-size: 20px;
  }
}

.c-btn-icon {
  background: none;
  border: none;
  padding: 0;
  margin-left: 10px;
  margin-top: 5px;
  cursor: pointer;
  display: inline-flex;
  align-items: flex-start;
  transition: transform 0.2s;
}
.c-btn-icon img {
  width: 24px;
  height: auto;
  display: block;
}
.c-btn-icon:hover {
  transform: scale(1.1);
}

/* ==========================================================================
   オーディオプレイヤー（自作）
   ========================================================================== */
.p-audio-wrap {
  text-align: center;
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-audio-wrap .p-audio-title {
  font-family: "Noto Serif JP", serif;
  color: #791336;
  font-size: 18px;
  margin-bottom: 15px;
}

.audiojs {
  margin: 0 auto;
  width: 100%;
  max-width: 430px;
  height: 54px;
  background: #791336;
  display: flex;
  align-items: center;
  border-radius: 27px;
  padding: 0 25px;
  box-sizing: border-box;
  user-select: none;
}
.audiojs .play-pause {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  flex-shrink: 0;
}
.audiojs .play-pause .play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #aa853e;
}
.audiojs .play-pause .pause {
  width: 12px;
  height: 16px;
  border-style: double;
  border-width: 0 0 0 12px;
  border-color: #aa853e;
  display: none;
}
.audiojs.playing .play {
  display: none;
}
.audiojs.playing .pause {
  display: block;
}
.audiojs .time {
  font-size: 14px;
  color: #aa853e;
  margin-left: 15px;
  margin-right: 20px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.audiojs .time em {
  font-style: normal;
}
.audiojs .time strong {
  font-weight: normal;
}
.audiojs .scrubber {
  flex-grow: 1;
  height: 4px;
  background: #ffffff;
  position: relative;
  cursor: pointer;
  border-radius: 2px;
}
.audiojs .scrubber .progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #888888;
  z-index: 2;
  border-radius: 2px;
}
.audiojs .scrubber .loaded {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #333333;
  border-radius: 2px;
}
.audiojs .volume-icon {
  width: 20px;
  height: 18px;
  margin-left: 20px;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: opacity 0.2s;
}
.audiojs .volume-icon::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 2px;
  width: 4px;
  height: 8px;
  background: #aa853e;
}
.audiojs .volume-icon::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 4px;
  border-style: solid;
  border-width: 8px 10px 8px 0;
  border-color: transparent #aa853e transparent transparent;
}
.audiojs .volume-icon.is-muted {
  opacity: 0.6;
  background: linear-gradient(45deg, transparent 45%, #aa853e 45%, #aa853e 55%, transparent 55%);
}
.audiojs .volume-icon.is-muted::after {
  border-color: transparent #888 transparent transparent;
}
.audiojs .volume-icon.is-muted::before {
  background: #888;
}

@media screen and (max-width: 560px) {
  .audiojs {
    height: 48px;
    padding: 0 15px;
  }
  .audiojs .time {
    font-size: 12px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .audiojs .volume-icon {
    margin-left: 10px;
  }
}
/* ==========================================================================
内側角丸
   ========================================================================== */
.p-lyrics-block {
  margin: 40px 0;
  padding: 60px 0px 20px;
  text-align: center;
  color: #333333;
  line-height: 2;
  font-family: "Noto Serif JP", serif;
  color: #791336;
  background: radial-gradient(circle at 0 0, rgba(0, 0, 0, 0) 20px, #ffffff 0%) top left, radial-gradient(circle at 100% 0, rgba(0, 0, 0, 0) 20px, #ffffff 0%) top right, radial-gradient(circle at 0 100%, rgba(0, 0, 0, 0) 20px, #ffffff 0%) bottom left, radial-gradient(circle at 100% 100%, rgba(0, 0, 0, 0) 20px, #ffffff 0%) bottom right;
  background-size: 51% 51%;
  background-repeat: no-repeat;
}
.p-lyrics-block__content {
  padding: 0 40px;
}
.p-lyrics-block .kashi_box {
  max-width: 580px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .p-lyrics-block .kashi_box {
    display: flex;
    gap: 5%;
  }
  .p-lyrics-block .kashi_box .kashi01 {
    order: 1;
  }
  .p-lyrics-block .kashi_box .kashi02 {
    order: 2;
  }
  .p-lyrics-block .kashi_box .kashi03 {
    order: 3;
  }
}
.p-lyrics-block .kashi_box .kashi {
  width: 70%;
  margin: 0 auto 30px;
}
@media screen and (min-width: 769px) {
  .p-lyrics-block .kashi_box .kashi {
    width: 30%;
    margin: 0;
  }
}
.p-lyrics-block__title {
  font-weight: normal !important;
  font-size: 25px;
  margin-bottom: 0px;
  display: block;
}
@media screen and (min-width: 769px) {
  .p-lyrics-block__title {
    font-size: 32px;
  }
}
.p-lyrics-block__title02 {
  font-weight: normal !important;
  font-size: 20px;
  margin-bottom: 20px;
  display: block;
}
@media screen and (min-width: 769px) {
  .p-lyrics-block__title02 {
    font-size: 25px;
  }
}

/* ==========================================================================
マージン
   ========================================================================== */
.u-mb-xs {
  margin-bottom: 10px !important;
}
@media screen and (min-width: 769px) {
  .u-mb-xs {
    margin-bottom: 10px !important;
  }
}

.u-mb-ss {
  margin-bottom: 10px !important;
}
@media screen and (min-width: 769px) {
  .u-mb-ss {
    margin-bottom: 20px !important;
  }
}

.u-mb-s {
  margin-bottom: 20px !important;
}
@media screen and (min-width: 769px) {
  .u-mb-s {
    margin-bottom: 40px !important;
  }
}

.u-mb-m {
  margin-bottom: 40px !important;
}
@media screen and (min-width: 769px) {
  .u-mb-m {
    margin-bottom: 60px !important;
  }
}

.u-mb-l {
  margin-bottom: 60px !important;
}
@media screen and (min-width: 769px) {
  .u-mb-l {
    margin-bottom: 100px !important;
  }
}

/* ==========================================================================
   【Movable Type サイト検索結果】本番出力HTML完全対応デザイン
   ========================================================================== */
.l-column-layout__main #s-result {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  width: 100% !important;
  max-width: 1000px !important;
  margin: 40px auto !important;
  padding: 0 20px !important;
  box-sizing: border-box !important;
  clear: both !important;
  /* ----------------------------------------------------------------------
     検索結果カード（1記事ずつの塊）
     ---------------------------------------------------------------------- */
  /* ----------------------------------------------------------------------
     ページネーション（1 2 3 »）
     ---------------------------------------------------------------------- */
}
.l-column-layout__main #s-result .mt-site-search-result__message {
  display: block !important;
  border-bottom: 1px solid #eeeeee !important;
  padding-bottom: 15px !important;
  margin-bottom: 30px !important;
  text-align: left !important;
}
.l-column-layout__main #s-result .mt-site-search-result__message .mt-site-search-result__message-about {
  font-family: "Noto Serif JP", serif !important;
  font-size: 24px !important;
  color: #791336 !important;
  font-weight: bold !important;
  display: block !important;
  margin-bottom: 8px !important;
}
@media screen and (min-width: 769px) {
  .l-column-layout__main #s-result .mt-site-search-result__message .mt-site-search-result__message-about {
    font-size: 30px !important;
    display: inline-block !important;
    margin-bottom: 0 !important;
    margin-right: 15px !important;
  }
}
.l-column-layout__main #s-result .mt-site-search-result__message .mt-site-search-result__message-message {
  font-size: 14px !important;
  color: #888888 !important;
  display: block !important;
}
@media screen and (min-width: 769px) {
  .l-column-layout__main #s-result .mt-site-search-result__message .mt-site-search-result__message-message {
    display: inline-block !important;
    font-size: 16px !important;
  }
}
.l-column-layout__main #s-result .mt-site-search-result__list {
  display: block !important;
  width: 100% !important;
}
.l-column-layout__main #s-result .mt-site-search-result-item {
  display: block !important;
  padding: 25px 0 !important;
  border-bottom: 1px dashed #aa853e !important;
  text-align: left !important;
  background: none !important;
  box-sizing: border-box !important;
  transition: background-color 0.3s ease !important;
}
@media screen and (min-width: 769px) {
  .l-column-layout__main #s-result .mt-site-search-result-item {
    padding: 30px 10px !important;
  }
}
.l-column-layout__main #s-result .mt-site-search-result-item:hover {
  background-color: #fcfaf5 !important;
}
.l-column-layout__main #s-result .mt-site-search-result-item .mt-site-search-result-item__link {
  text-decoration: none !important;
  display: block !important;
  margin-bottom: 10px !important;
}
.l-column-layout__main #s-result .mt-site-search-result-item .mt-site-search-result-item__link .mt-site-search-result-item__label {
  font-size: 18px !important;
  line-height: 1.4 !important;
  color: #333333 !important;
  font-weight: bold !important;
  transition: color 0.3s ease !important;
}
@media screen and (min-width: 769px) {
  .l-column-layout__main #s-result .mt-site-search-result-item .mt-site-search-result-item__link .mt-site-search-result-item__label {
    font-size: 20px !important;
  }
}
.l-column-layout__main #s-result .mt-site-search-result-item .mt-site-search-result-item__link:hover .mt-site-search-result-item__label, .mt-site-search-result-item:hover .l-column-layout__main #s-result .mt-site-search-result-item .mt-site-search-result-item__link .mt-site-search-result-item__label {
  color: #791336 !important;
  text-decoration: underline !important;
}
.l-column-layout__main #s-result .mt-site-search-result-item .mt-site-search-result-item__url {
  display: block !important;
  margin-top: 4px !important;
}
.l-column-layout__main #s-result .mt-site-search-result-item .mt-site-search-result-item__url cite {
  font-style: normal !important;
  font-size: 12px !important;
  color: #999999 !important;
  word-break: break-all !important;
}
.l-column-layout__main #s-result .mt-site-search-result-item .mt-site-search-result-item__excerpt {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: #888888 !important;
  margin: 0 !important;
  word-break: break-all !important;
}
@media screen and (min-width: 769px) {
  .l-column-layout__main #s-result .mt-site-search-result-item .mt-site-search-result-item__excerpt {
    font-size: 15px !important;
  }
}
.l-column-layout__main #s-result .mt-site-search-result-item .mt-site-search-result-item__excerpt b, .l-column-layout__main #s-result .mt-site-search-result-item .mt-site-search-result-item__excerpt strong {
  font-weight: bold !important;
  color: #791336 !important;
  padding: 0 2px !important;
  border-radius: 2px !important;
}
.l-column-layout__main #s-result .mt-site-search__pagination {
  margin-top: 50px !important;
  width: 100% !important;
  display: block !important;
}
@media screen and (min-width: 769px) {
  .l-column-layout__main #s-result .mt-site-search__pagination {
    margin-top: 70px !important;
  }
}
.l-column-layout__main #s-result .mt-site-search__pagination ul {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 12px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.l-column-layout__main #s-result .mt-site-search__pagination .mt-site-search-pagination-item {
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
}
.l-column-layout__main #s-result .mt-site-search__pagination .mt-site-search-pagination-item .mt-site-search-pagination-item__link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 40px !important;
  height: 40px !important;
  padding: 0 6px !important;
  font-size: 15px !important;
  box-sizing: border-box !important;
  text-decoration: none !important;
  border: 1px solid #aa853e !important;
  color: #aa853e !important;
  background-color: #ffffff !important;
  border-radius: 4px !important;
  transition: all 0.3s ease !important;
}
.l-column-layout__main #s-result .mt-site-search__pagination .mt-site-search-pagination-item .mt-site-search-pagination-item__link span {
  font-size: 18px !important;
  line-height: 1 !important;
}
.l-column-layout__main #s-result .mt-site-search__pagination .mt-site-search-pagination-item .mt-site-search-pagination-item__link:hover {
  background-color: #791336 !important;
  border-color: #791336 !important;
  color: #ffffff !important;
}
.l-column-layout__main #s-result .mt-site-search__pagination .mt-site-search-pagination-item .mt-site-search-pagination-item__link:hover strong {
  color: #ffffff !important;
}
.l-column-layout__main #s-result .mt-site-search__pagination .mt-site-search-pagination-item--current .mt-site-search-pagination-item__link {
  background-color: #791336 !important;
  border-color: #791336 !important;
  color: #ffffff !important;
  cursor: default !important;
}
.l-column-layout__main #s-result .mt-site-search__pagination .mt-site-search-pagination-item--current .mt-site-search-pagination-item__link strong {
  font-weight: bold !important;
  color: #ffffff !important;
}
