@charset "utf-8";

/* Clinic Hero Section */
.clinic-hero {
  background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)),
              url('../img/bg_main2.jpg') no-repeat center/cover;
  padding: 180px 20px 100px;
  text-align: center;
  position: relative;
}

.clinic-copy {
  font-size: 40px;
  font-weight: bold;
  color: var(--color-font-deep-base);
  margin-bottom: 30px;
}

.clinic-desc {
    font-size: 14px;
    line-height: 1.8;
    max-width: 900px;
    margin: 20px auto 0;
    text-align: left;
}

/* clinic.css - Le Blanc セクションのみ追加部分 */
.cdc{
  width: 100%;
  max-width: 300px;
}

.clinic-accordion {
  margin: 60px auto;
  max-width: 1000px;
  padding: 0 20px;
}

.accordion-btn {
  width: 100%;
  background: #bce1de;
  color: #000;
  padding: 3px 20px;
  height:100px;
  font-size: 42px;
  text-align: left;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  
}
.accordion-btn img {
  width: 120px;
  height: auto;
  margin: 0 0 0 auto;
}

.accordion-content {
  display: none;
  padding: 30px 20px;
  border-radius: 10px;
  margin-top: 10px;
  background-color: var(--color-bg-be);
}

.clinic-section-title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

.clinic-feature-list {
  margin-bottom: 30px;
}

.feature-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--color-bg-gold);
  margin: 25px 0 10px;
}

.clinic-service li {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.8;
  position: relative;
}

.clinic-service .bg-label {
  display: inline-block;
  margin-bottom: 3px;
  font-weight: bold;
  background: linear-gradient(transparent 60%, #e8d9ce 0%);
}

.clinic-photo_large img{
  width: 100%;
  max-width: 800px;
  margin: 10px auto;
  display: block;
  border-radius: 10px;
}

.clinic-photo img,
.profile-img img {
  width: 100%;
  max-width: 340px;
  margin: 10px auto;
  display: block;
  border-radius: 10px;
}

.profile-text {
  flex: 1;
}

.clinic-profile {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 30px 0;
  justify-content: space-between;
}

.clinic-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.clinic-gallery img {
  width: calc(33.333% - 10px);
  height: auto;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .clinic-gallery img {
    width: 100%;
  }
  .clinic-profile {
    flex-direction: column;
  }
  .accordion-btn {
    font-size: 18px;
    padding: 16px;
  }
}

.profile-text{
  width: 60%;
  max-width: 100%;
}
@media (max-width: 800px) {
  .profile-text {
    width: 100%;
  }
}

.proof-gallery {
width: 50%;
max-width: 100%;
}
@media (max-width: 800px) {
  .proof-gallery {
    width: 100%;
  }
}

.lb_proof{
  width: 300px;
  max-width: 100%;
  padding:40px 0 0 40px;
}

/*科目ボタン追加*/
.clinic-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin: 60px auto 30px;
  max-width: 1000px;
  padding: 0 20px;
}
.category-btn {
  background-color:var(--color-bg-base);
  color: white;
  padding: 10px 20px;
  border-radius: 13px;
  font-size: 16px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.category-btn:hover {
  background-color: #3ab2af;
}
.clinic-section-anchor {
  text-align: center;
  font-size: 36px;
  margin-top: 80px;
}

/* 共通：診療科目セクションの画像表示用 */
.clinic-photo img {
  width: 100%;
  max-width: 800px;
  margin: 30px auto;
  display: block;
  border-radius: 10px;
}

/* 美の進化ボタンスタイル */
.clinic-banner-link {
  text-align: center;
  margin: 40px 0;
}

.btn-link {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 20px 40px;
  display: inline-block;
  font-size: 32px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
}

/* 費用メニュー下部のテキスト */
.text-center {
  text-align: center;
  margin-bottom: 20px;
}

.zoom-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.zoom-gallery a {
  position: relative;
  display: block;
  width: calc(33.333% - 10px);
  overflow: hidden;
  border-radius: 6px;
}

.zoom-gallery img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  border-radius: 6px;
}

/* ホバーでズーム */
.zoom-gallery a:hover img {
  transform: scale(1.05);
}

/* 拡大アイコン（Unicodeバージョン） */
.zoom-gallery a::after {
  content: "\1F50D";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  color: white;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.zoom-gallery a:hover::after {
  opacity: 0.85;
}