.page-about .vertical-line{
    background: #a07628;
}

.page-about .vertical-title{
    color: #a07628;
}

.page-about .menu-block ul li a:hover{
    color: #a07628;
}

.page-about .menu-block ul li a.active{
    color: #a07628;
}

.page-about .menu-section-title{
    color: #a07628;
}

.page-about .column-section{
    border: 1px solid #a07628;
}

/* ▼ 教育方針：タイトル1 */
.education-policy-title {
    position: relative; /* 内部のテキスト配置を安定させる */
    background-image: url('../../img/policy-title-1.png');
    max-width: 244px;
    height: 64px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; /* 必要に応じて contain も検討 */
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center; /* この指定で、タイトル文字はコンテナ内中央寄せ */
    margin-bottom: 16px;
}

/* ▼ 教育方針：タイトル2 */
.education-policy-title-2 {
    position: relative;
    background-image: url('../../img/policy-title-2.png');
    width: 354px;
    height: 64px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center; /* こちらもコンテナ内のテキストを中央寄せ */
    margin-bottom: 16px;
}

/* ▼ 教育方針：タイトル3（タイトル2とほぼ同様） */
.education-policy-title-3 {
    position: relative;
    background-image: url('../../img/policy-title-2.png');
    width: 354px;
    height: 64px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

  /* education-policy セクション全体 */
.education-policy {
  display: flex;
  align-items: center;         /* 垂直方向の中央寄せ */
  justify-content: space-between; 
  margin-bottom: 32px;         /* 下余白はお好みで */
}

/* 左カラム（テキスト部分） */
.education-policy-left {
  max-width: 60%;             /* テキスト領域の幅を適度に制限 */
}

/* 右カラム（画像部分） */
.education-policy-right {
  max-width: 40%;             /* 画像領域の幅を適度に制限 */
  display: flex;
  justify-content: flex-end;  /* 画像を右寄せ */
}

.education-policy-right img {
  display: block;            /* inline要素の隙間などを回避 */
  width: 200px !important;
  height: 200px !important;
  border-radius: 50%;        /* 正円化 */
  object-fit: cover;         /* はみ出す部分をトリミング */

}
  

.education-policy-heading{
    font-size: 24px;
    color: #a07628;
    margin-bottom: 16px;
}

.column-title-christian {
    text-align: center;
    width: 252px;
    height: auto;
    margin: 0 auto 24px auto !important; 
}

.column-section .logo{
    width: 252px;
    height: auto;
    margin: 0 auto 24px auto !important; 
}

.en-overview-title{
    font-size: 20px;
    margin-left: 32px;
    margin-bottom: 56px;
}

.en-overview-item{
    display: flex;
    flex-direction: column;
    margin-left: 32px;
}

.en-overview-item-title{
    font-size: 18px;
    margin-bottom: 8px;
}

.en-overview-item-content{
    margin-bottom: 24px;
    font-size: 16px;
    margin-left: 16px;

    li{
        font-size: 16px;
    }
}

/* en-history-content 全体 */
.en-history-content {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  font-family: sans-serif;
}

/* 各セクション */
.history-section {
  margin-bottom: 60px;
}

/* セクション見出し */
.history-section-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #a07628;
  border-bottom: 2px solid #a07628;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/* タイムライン各項目 */
.history-item {
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0;
  border-bottom: 1px dashed #ccc;
  margin-bottom: 10px;
}

.history-item:last-child {
  border: none;
  margin-bottom: 0;
}

/* 日付、周年、内容のカラム */
.history-date {
  flex: 0 0 150px;
  font-weight: bold;
  color: #a07628;
  margin-right: 10px;
}

.history-anniversary {
  flex: 0 0 100px;
  font-style: italic;
  color: #555;
  margin-right: 10px;
}

.history-description {
  flex: 1;
  color: #333;
  line-height: 1.5;
}

.floor-plan{
    max-width: 898px;
    height: auto;
}

.animal-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;   /* 2列 */
  grid-template-rows: auto auto;   /* 高さは自動 */
  grid-gap: 16px;                  /* 画像同士の余白 */
  margin-top: 24px;                /* 上下余白はお好みで */
}

/* 画像の配置エリアを指定 (grid-area) してもOKですが、  
   ここでは「1枚目を2列にわたって配置、下段に2枚」を簡単に指定します */

.animal-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 8px;  /* 角丸など可愛く演出、不要なら削除 */
}

/* 横位置写真（1枚目）を上段2列分に広げる */
.animal-photo.horizontal {
  grid-column: 1 / span 2; /* 1列目から開始して2列分使う */
  grid-row: 1;            /* 1行目に配置 */
}

/* 縦位置写真2枚（2枚目・3枚目）は下段で左/右に並ぶ */
.animal-photo.vertical1 {
  grid-column: 1; 
  grid-row: 2;
}
.animal-photo.vertical2 {
  grid-column: 2;
  grid-row: 2;
}

/* レスポンシブ（スマホサイズ） */
@media screen and (max-width: 768px) {
  .history-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .history-date,
  .history-anniversary {
    flex: none;
    margin-right: 0;
    margin-bottom: 5px;
  }
}

.column-notion li{
    font-size: 12px;
}

.en-kessan-title{
    font-size: 20px;
    margin-top: 72px;
    margin-left: 32px;
    margin-bottom: 32px;
}

.en-kessan-title-link{
    font-size: 18px;
    margin-left: 32px;
    text-decoration: underline;
}

.en-kujou-title{
    font-size: 20px;
    margin-top: 72px;
    margin-left: 32px;
    margin-bottom: 32px;
}

.en-kujou-content{
    font-size: 18px;
    margin-left: 32px;
}

.care-item a{
    text-decoration: underline;
}

@media screen and (max-width: 1024px) {
    .page-about .menu-sticky{
        background-color: #a07628;
    }

    .page-about .vertical-title{
        color: #fff;
    }
    
    .page-about .menu-btn {
        border: 1px solid #a07628;
    }

    .page-about .menu-btn .hamburger-icon{
        color: #a07628;
    }

    .page-about .menu-overlay{
        border: 1px solid #a07628;
    }

    .page-about .menu-overlay a{
        color: #a07628;
    }

    .page-about .column-section{
        border: 1px solid #a07628;
    }

    .page-about .education-policy-title{
        font-size: 16px;
        width: 197px;
        height: 52px;
        background-image: url('../../img/sp-policy-title-1.png');
    }

    .page-about .education-policy-title-2,
    .page-about .education-policy-title-3{
        width: 241px;
        height: 64px;
        font-size: 16px;
        background-image: url('../../img/sp-policy-title-2.png');
    }

    .page-about .education-policy-heading{
        font-size: 18px;
    }
    .education-policy {
        flex-direction: column-reverse;  /* 上: 画像, 下: テキスト */
        align-items: center;
        justify-content: center;
        text-align: center;
      }
    
      .education-policy-left {
        max-width: 100%;
        text-align: center;       /* テキストを中央揃え */
        margin: 0 auto 16px auto;
      }
    
      .education-policy-right {
        max-width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 16px;
      }
    
      .education-policy-right img {
        width: 180px;
        height: 180px;
      }
    
      /* タイトル1のスマホサイズ */
      .page-about .education-policy-title {
        font-size: 16px;
        width: 197px;
        height: 52px;
        background-image: url('../../img/sp-policy-title-1.png');
        margin: 0 auto;
        margin-bottom: 16px;
      }
    
      /* タイトル2,3のスマホサイズ */
      .page-about .education-policy-title-2,
      .page-about .education-policy-title-3 {
        width: 241px;
        height: 64px;
        font-size: 16px;
        background-image: url('../../img/sp-policy-title-2.png');
        margin: 0 auto;
        margin-bottom: 16px;
      }
    
      .page-about .education-policy-heading {
        font-size: 18px;
      }

      .column-title-christian{
        width: 150px;
      }

      .en-overview-item-content{
          font-size: 14px;
     
        li{
            font-size: 14px;
        }
    }

    .en-kessan-title-link{
        font-size: 14px;
    }


      .animal-gallery {
        grid-template-columns: 1fr;  /* 1列 */
        grid-gap: 12px;
      }
      /* 画像をすべて縦並び (1枚ずつ) */
      .animal-photo.horizontal {
        grid-column: 1;
        grid-row: auto;  /* 自動で順番に配置 */
      }
      .animal-photo.vertical1 {
        grid-column: 1;
        grid-row: auto;
      }
      .animal-photo.vertical2 {
        grid-column: 1;
        grid-row: auto;
      }
    }