.postContents h3 {
  border-bottom: 2px solid #c8b084; /* 茶色の下線 */
  padding-bottom: 5px; /* 下線と文字の間隔 */
}

.postContents h2 {
  position: relative; /* 相対位置指定 */
  border-bottom: 2px solid #c8b084; /* 茶色の下線 */
  padding-bottom: 5px; /* 下線と文字の間隔 */
  padding-left: 15px; /* 縦棒の分のスペース */
}

.postContents h2::before {
  content: ""; /* 必須 */
  position: absolute; /* 絶対位置指定 */
  top: 0;
  left: 0;
  width: 6px; /* 縦棒の幅 */
  height: 100%; /* 縦棒の高さ */
  background-color: #c8b084; /* 茶色の縦棒 */
}
.postContents img {
	margin-top: 15px!important;
}
.image-gallery-container {
    display: flex;
    width: 100%;
}

.main-image {
    width: 70%; /* メイン画像の幅 */
    margin-right: 20px;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}
.tag-list {
  margin-bottom: 10px; /* サムネイルとの間隔 */
}

.tag {
  background-color: #CDB38B; /* 薄い茶色に変更 */
  color: #fff; /* 白文字 */
  padding: 5px 10px; /* パディング */
  border-radius: 5px; /* 角丸 */
  margin-right: 5px; /* タグ間の間隔 */
  text-decoration: none; /* リンクの下線を消す */
  display: inline-block; /* 横並びにする */
}

.tag:hover {
  background-color: #B3966D; /* ホバー時の色 */
}
.colored-articles {
	background-color: white;
}
/* .thumbnail-container {
    width: 30%; 
    display: flex;
    flex-direction: column;
}
 */
.thumbnail {
    width: 100%; /* 元のサイズを維持 */
    max-width: 50%; /* サムネイルの最大幅を50%に制限 */
    height: auto;
    margin-bottom: 5px;
    cursor: pointer;
}


.facility-info {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-family: sans-serif;
  line-height: 1.6;
}

.facility-name {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #333;
  font-weight: bold;
  border-bottom: 2px solid #c8b084; /* 茶色の下線 */
  padding-bottom: 5px; /* 下線と文字の間隔 */
}

.facility-info p {
  margin-bottom: 5px;
  color: #666;
  font-size: 0.85em; /* より近いフォントサイズ */
}

.facility-info a {
  color: #337ab7;
  text-decoration: none;
}

.facility-button {
  display: block; /* ブロック要素にする */
  width: fit-content; /* 内容に合わせて幅を調整 */
  margin: 10px auto; /* 左右中央に配置 */
  background-color: #c8b084;
  color: #fff!important; /* 文字を白にする */
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.75em;
  text-align: center; /* 文字を中央に配置 */
}

.facility-button:hover {
  background-color: #b09a73;
}

 .rectangular-quote {
    background-color: #f0f0f0; /* 長方形の背景色 */
    padding: 20px;
    border-radius: 5px; /* 角丸 */
    display: flex;
    align-items: center; /* アイコンとテキストを垂直方向に中央揃え */
  }

  .rectangular-quote__icon {
	  font-family: "Noto Sans JP";
    font-size: 4em; /* 引用符のサイズ */
    line-height: 1;
    color: #333;
  }

  .rectangular-quote__text {
    font-size: 16px;
    color: #333;
  }

.gallery-switch {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.gallery-main {
    flex: 1;
    max-width: 70%;
}

.gallery-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.gallery-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 25%;
}

.gallery-thumbnail {
    cursor: pointer;
    position: relative;
    transition: opacity 0.3s ease;
}

.gallery-thumbnail:hover {
    opacity: 0.8;
}

.gallery-thumbnail.active {
    border: 2px solid #c8b084;
}

.gallery-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .gallery-switch {
        flex-direction: column;
    }

    .gallery-main {
        max-width: 100%;
    }

    .gallery-thumbnails {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .gallery-thumbnail {
        width: calc(33.33% - 7px);
    }
}
#post-footer {
  border: 1px solid #ddd; /* Light gray border */
  padding: 20px;        /* Spacing inside the border */
  margin-top: 20px;     /* Spacing above the section */
  display: flex;        /* Use flexbox for layout */
  align-items: flex-start; /* Align items to the top */
}

#post-footer img {
  width: 100px;       /* Adjust image width as needed */
  height: auto;
  margin-right: 20px;  /* Spacing between image and text */
  border-radius: 5px;   /* Optional: Rounded corners for the image */
}

#post-footer .text-container {
  flex: 1;            /* Allow text container to take remaining space */
}

#post-footer p {
  margin: 0;           /* Remove default paragraph margins */
  line-height: 1.6;   /* Adjust line height for readability */
}

#post-footer .credit {
  font-size: 0.9em;    /* Slightly smaller font size for the credit lines */
  color: #666;         /* Gray color for the credit lines */
}

.single .viral__bg img,
.single .post-thumbnail img,
.eyecatch .eyecatch__link img {
    transition: none !important;
    transform: none !important;
}
.single .viral__bg img:hover,
.single .post-thumbnail img:hover,
.single .eyecatch img:hover {
    transition: none !important;
    transform: none !important;
}


