.content01__description .detail {
	margin-bottom: 1rem;
	font-size: 16px;
	background: #00864B;
	/*background:  #3cb371;*/
	/*border: solid 2px #00864B;*/
	padding: 0.5rem 1.2rem;	
	border-radius: 10px;
	color: #ffffff;
}


.point-bn-area {
  background-color:#D4D4D4; 
  padding: 8px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  text-align: center;
	width: 90%;
max-width: 980px;
	margin: 0 auto 80px;
}

.point-bn-inner {
  max-width: 960px;
  margin: 0 auto;
}

/* メイン見出し */
.point-bn-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* 白枠のコンテンツ部分 */
.point-bn-content {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 4px;
}

.point-bn-sub-title {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.point-bn-sub-title span {
  color: #bf0000; 
}

.point-bn-text {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 30px;
}

.point-bn-text span {
  color: #bf0000;
  font-weight: bold;
}

/* 吹き出し */
.point-bn-balloon {
  display: inline-block;
  /*background-color: #ffebee;*/
	background-color: #FFFDD6;
  padding: 15px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  margin-bottom: 25px;
  color: #333;
}

.point-bn-balloon::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #FFFDD6 transparent transparent transparent;
}

/* イラスト部分（簡易再現） */
.point-bn-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  /*gap: 20px;*/
  /*margin-bottom: 30px;*/
}


/* リンクボタン風テキスト */
.point-bn-link {
  display: inline-block;
  color: #0066cc;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: opacity 0.3s;
}

.point-bn-link:hover {
  text-decoration: underline;
  opacity: 0.7;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .point-bn-title {
    font-size: 18px;
  }
  .point-bn-sub-title {
    font-size: 18px;
  }
  .point-bn-text {
    font-size: 13px;
    text-align: left;
  }
  .point-bn-balloon {
    font-size: 12px;
    padding: 10px 15px;
  }
}




/* ギャラリー全体のスタイル */
.gallery-section {
  padding: 50px 20px;
  background-color: #fff; /* 背景色はサイトに合わせて調整してください */
}

.gallery-container {
  max-width: 960px;
  margin: 0 auto;
}

.gallery-title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.gallery-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: #bf0000;
}

/* グリッドレイアウト（PCは4列、スマホは2列） */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.gallery-item {
  width: calc(25% - 11.25px); /* (100% - gap*3)/4 */
  display: block;
  overflow: hidden;
  border-radius: 4px;
  transition: opacity 0.3s;
}

.gallery-item:hover {
  opacity: 0.8;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* --- Lightbox CSS --- */
.lightbox {
  display: none; /* 通常時は非表示 */
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
}

/* :target を使って表示を切り替え */
.lightbox:target {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  border: 3px solid #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* 背景クリックで閉じるための透明なリンク */
.lightbox-close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: default;
}

/* 右上の×ボタン */
.close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 30px;
  text-decoration: none;
  font-weight: bold;
}

/* ナビゲーションボタンの基本スタイル */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 40px;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 10px;
  transition: background 0.3s;
  z-index: 10001; /* 画像より前面に */
  user-select: none;
}

.nav-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* 左矢印 */
.nav-btn.prev {
  left: -60px;
}

/* 右矢印 */
.nav-btn.next {
  right: -60px;
}

/* スマホでは画像に重なるように調整 */
@media screen and (max-width: 768px) {
  .nav-btn {
    padding: 15px 5px;
    font-size: 30px;
  }
  .nav-btn.prev {
    left: 0;
  }
  .nav-btn.next {
    right: 0;
  }
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .gallery-item {
    width: calc(50% - 7.5px); /* (100% - gap*1)/2 */
  }
}
