@charset "UTF-8";

/* * {
  outline: 2px solid blue;
} */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;

}

.main {
  height: 2000px;
}

body {
  background-color: rgb(255, 255, 255);
  margin: 0 auto;
  max-width: 1920px;
  font-family: 'Noto Serif JP', serif;
  color: #292929;
}

/* リンク設定 */
a {
  color: inherit;
  text-decoration: none;
  transition-duration: 0.5s;
}

/* 画像 */
img {
  max-width: 100%;
  height: auto;
}

h2 {
  font-size: 48px;
  font-weight: normal;
  color: #5a4b41;
}

.subheading {
  font-size: 20px;
  color: #d28b38;
}

h3 {
  font-size: 27px;
}

.shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* ------------------------------
   フェードアップ演出
------------------------------ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}

.delay-4 {
  transition-delay: 0.8s;
}

.delay-5 {
  transition-delay: 1.0s;
}

.delay-6 {
  transition-delay: 1.2s;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.fade-up-left {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.fade-up-left.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.fade-up-right {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.fade-up-right.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0);
}


/* --------------------------------------------
---------ヘッダー------------------------------ */

header {
  width: 100%;
  height: 100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.header-left {
  margin-top: 15px;
}

.header-left h1 {
  font-size: 13px;
  font-weight: 100;
  margin: 0 0 5px 15px;
}

.header-left img {
  width: 350px;
  height: auto;
}

.header-right .oya-menu {
  display: flex;
  justify-content: center;
  align-items: stretch;
  /* 高さを均等にする */
  margin-top: 40px;
  position: relative;
}

/* メニューアイテム */
.oya-menu-li {
  list-style: none;
  font-size: 15px;
  text-align: center;
  position: relative;
  margin-right: 45px;
}

.oya-menu-li:last-child {
  margin-right: 0;
}

/* リンクスタイル */
.oya-menu-li a {
  text-decoration: none;
  transition-duration: 0.5s;
  position: relative;
  text-decoration: none;
  color: #292929;
}

.oya-menu-li a:hover {
  opacity: .5;
}

/* サブメニュー開閉時に回転させたい場合の例（JSで open クラスを付与する必要あり） */
.oya-menu-li.open .arrow-icon {
  transform: rotate(180deg);
}

/* サブメニューのベースデザイン */
.sub-menu {
  list-style: none;
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  /* ← 親の中央位置を起点に */
  transform: translateX(-50%);
  /* ← 自分の幅の半分だけ左にずらして中央揃えに */
  background: #fff;
  border: 1px solid #ddd;
  width: 250px;
  /* 必要に応じて調整 */
  z-index: 1000;
  padding: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* サブメニューの各項目 */
.sub-menu li {
  padding: 0;
  border-bottom: 1px solid #e0e0e0;
}

.sub-menu li:last-child {
  border-bottom: none;
}

.sub-menu li a {
  display: block;
  padding: 12px 18px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  text-align: left;
  background: #3f382f;
  transition: all 0.3s ease;
  text-align: center;
}

/* ホバー時のカラー反転 */
.sub-menu li a:hover {
  background: #bdaea5;
  color: #fff;
}

/* 親メニューにホバーで表示 */
.oya-menu-li:hover .sub-menu {
  display: block;
}

/* サブメニュー内リンクのホバー時の透明度を無効にする */
.sub-menu li a:hover {
  opacity: 1 !important;
}

/* スクロールしたら */
.scroll-nav {
  background-color: #e6e0d9;
  /* グレージュ：落ち着いた上品な背景色 */
  box-shadow: 0 0.5rem 1rem rgba(91, 80, 70, 0.1);
  /* 少し濃いトーンで影も変更 */
  height: 85px;
}

.scroll-nav h1 {
  display: none;
}

.scroll-nav img {
  width: 350px;
  height: auto;
}

.scroll-nav .header-left {
  margin-top: 20px;
}

.scroll-nav .oya-menu {
  margin-top: 32px;
  position: relative;
}

/* サブメニューの各項目 */
.scroll-nav .sub-menu li,
.scroll-nav .sub-menu li a {
  margin: 0;
  padding: 0;
  border: none;
  background-color: #5b5046;
  color: #fff;
  border-bottom: 1px solid #bdaea531;
}

.scroll-nav .sub-menu li a {
  padding: 12px 18px;
}

/* ホバー時のカラー反転 */
.scroll-nav .sub-menu li a:hover {
  background: #bdaea5;
  color: #5b5046;
}

.underLine a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #5b5046;
  bottom: -1px;
  /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1);
  /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s;
  /*変形の時間*/
}

.underLine a:hover::after {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}

.arrow-icon {
  margin-left: 0.4em;
  font-size: 0.75em;
  color: #5b5046;
  transition: transform 0.3s ease;
}

/* ---------------------------------------
--------TOPに戻るボタン--------------------- */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: block;
  width: 140px;
  height: 140px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* 画像に余白を付けたければここで調整 */
.back-to-top img {
  width: 100%;
  height: auto;
}


/* ---------------------------------------
--------サイドバー--------------------- */
.l-side__wrap {
  position: fixed;
  top: 30%;
  right: -260px;
  width: 320px;
  background-color: #e6e0d9;
  /* 明るめのグレージュ */
  border-radius: 10px 0 0 10px;
  display: flex;
  transition: right 0.3s ease;
  z-index: 999;
}

.l-side__wrap:hover {
  right: 0;
}

.l-side__btn {
  width: 60px;
  background-color: #5b5046;
  /* ダークグレージュ（アクセント） */
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.8rem;
  padding: 10px 0;
  border-radius: 10px 0 0 10px;
}

.reserve-content {
  flex: 1;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.reserve-title {
  color: #5b5046;
  /* メインアクセントカラーに合わせる */
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  margin: 0;
}

.reserve-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #fff;
  border-radius: 6px;
  padding: 10px 15px;
  text-decoration: none;
  color: #5b5046;
  /* テキストカラーも統一 */
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.reserve-link img {
  width: 26px;
  height: 26px;
}

.reserve-link:hover {
  background-color: #d6ccc2;
  /* ベージュ寄りの淡いカラー */
}

/* ---------------------------------------
--------スライダー--------------------- */

.main-visual {
  display: flex;
  flex-wrap: wrap;
  height: 100vh;
  position: relative;
}

/* 左のスライダー */
.mv-slider {
  width: 50%;
  height: 100vh;
  overflow: hidden;
}

.mv-slider .swiper,
.mv-slider .swiper-slide {
  width: 100%;
  height: 100%;
}

.mv-slider img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* 右のテキスト */
.mv-text {
  width: 50%;
  background: linear-gradient(135deg, #f0e5d8, #ffffff, #F3F0EE);
  padding: 145px 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.mv-text-top img {
  width: 80%;
  margin-bottom: 50px;
}

.mv-text-bottom {
  position: relative;
  margin-left: 30px;
}

.mv-catch {
  margin-left: 50px;
}

.mv-catch .mainText {
  font-size: 240%;
  margin: 20px 0;
  line-height: 1.5;
}

.mv-catch .subText {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.mv-message p {
  margin: 0;
  line-height: 1.8;
}

/* ボタンデザイン */
.mv-btn {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  width: 180px;
  /* 横幅を揃える */
  padding: 12px 0;
  font-size: 14px;
  border-radius: 3px;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  box-sizing: border-box;
}

.btn-primary {
  background: #5b5046;
  color: #fff;
}

.btn-primary:hover {
  background: #3f382f;
}

.btn-secondary {
  border: 1px solid #7A6A58;
  color: #7A6A58;
  background: #fff;
}

.btn-secondary:hover {
  background: #f3f3f3;
}

/* スクロールアニメーション */
.scroll {
  position: absolute;
  left: -30px;
  top: 0;
  writing-mode: vertical-rl;
  font-size: 12px;
  color: #646464;
  margin-top: 37px;
}

.scroll::before {
  animation: scroll 2s infinite;
  background-color: #000;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
  z-index: 2;
}

.scroll::after {
  background-color: #ccc;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/* ---------------------------------
--------お知らせ--------------------- */
/* .news-section {
  max-width: 900px;
  margin: 100px auto;
  padding: 60px 20px;
}

.news-heading {
  margin-bottom: 0;
}

.news-subheading {
  margin-top: 4px;
  margin-bottom: 40px;
}

.news-list {
  margin: 0;
  padding: 0;
}

.news-item {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #e0e0e0;
  padding: 14px 0;
}

.news-item dt {
  width: 280px;
  font-size: 14px;
  color: #333;
}

.news-item .news-category {
  margin-left: 10px;
  font-size: 14px;
  color: #333;
}

.news-item dd {
  margin: 0;
  font-size: 14px;
  color: #292929;
  flex: 1;
}

.news-item dd a:hover {
  opacity: .5;
  text-decoration: underline;
}

.news-more {
  text-align: right;
  margin-top: 30px;
}

.news-link {
  font-size: 13px;
  color: #292929;
  text-decoration: none;
  border-bottom: 1px solid #292929;
  padding-bottom: 2px;
  transition: opacity 0.3s;
}

.news-link:hover {
  opacity: 0.6;
} */

/* ---------------------------------
--------お知らせ--------------------- */
.news-section {
  max-width: 900px;
  margin: 100px auto;
  padding: 60px 20px;
}

.news-heading {

  font-weight: bold;

  margin-bottom: 0;
}

.news-subheading {

  font-size: 14px;
  margin-top: 4px;
  margin-bottom: 40px;
  color: #666;
}

.news-list {
  margin: 0;
  padding: 0;
}

.news-item {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #e0e0e0;
  padding: 14px 0;
}

.news-item dt {
  width: 280px;
  font-size: 14px;
  color: #333;
}

.news-item .news-category {
  margin-left: 10px;
  font-size: 14px;
  color: #333;
  background-color: #f2f2f2;
  padding: 2px 8px;
  border-radius: 4px;
}

.news-item dd {
  margin: 0;
  font-size: 14px;
  color: #292929;
  flex: 1;
}

.news-item dd a {
  color: #292929;
  text-decoration: none;
}

.news-item dd a:hover {
  opacity: .5;
  text-decoration: underline;
}

.news-more {
  text-align: right;
  margin-top: 30px;
}

.news-link {
  font-size: 13px;
  color: #292929;
  text-decoration: none;
  border-bottom: 1px solid #292929;
  padding-bottom: 2px;
  transition: opacity 0.3s;
}

.news-link:hover {
  opacity: 0.6;
}

/* ------------------------------
   診療理念セクション 全体レイアウト
------------------------------ */
/* .philosophy-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
} */

/* 親要素で左右に並べる */
/* .philosophy-content {
  display: flex;
  width: 100%;
  height: 100%;
} */

/* ------------------------------
   左側テキストブロック（画面の左半分）
------------------------------ */
/* .philosophy-text {
  width: 50%;
  background-color: #fff;
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.philosophy-text h2 {
  color: #646464;
  margin-bottom: 10px;
  font-size: 40px;
  text-align: center;
}

.subheading-center {
  font-size: 20px;
  margin-bottom: 60px;
  text-align: center;
}

.philosophy-lead {
  font-size: 34px;
  color: #8C6954;
  margin-bottom: 20px;
  line-height: 1.5;
}

.philosophy-desc {
  color: #333;
  margin-bottom: 32px;
}

.btn-detail {
  position: relative;
  display: inline-flex;
  align-items: center;
  background-color: #8c6342;
  color: #fff;
  padding: 10px 50px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.btn-detail:hover {
  transform: translateY(-2px);
  background-color: #755131;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-icon {
  margin-left: 14px;
  font-size: 8px;
  transition: transform 0.3s ease;
}

.btn-detail:hover .btn-icon {
  transform: translateX(4px);
} */

/* ------------------------------
   右側画像ブロック（画面の右半分）
------------------------------ */
/* .philosophy-image {
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.philosophy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */


/* -------------------------------------------------------
-------------「ヒロ・デンタルクリニック」診療理念--------- */

/* 基本レイアウト設定 */
.philosophy-wrapper02 {
  width: 100%;
  display: flex;
  /* 横並びレイアウト */
  justify-content: space-between;
  /* 画像とテキストを左右に配置 */
  align-items: center;
  /* 縦方向の中央揃え */
  padding: 150px 20px;
  background: linear-gradient(135deg, #f5e9dc, #fff, #e6d7c5);
  position: relative;
  gap: 30px;
  /* 画像とテキストの間隔 */
}

.philosophy-content02 {
  display: flex;
  align-items: flex-start;
  /* 上揃え */
  justify-content: space-between;
  width: 100%;
  gap: 30px;
  /* 画像とテキストの間隔 */
}

/* 画像のスタイル */
.philosophy-image02 {
  display: flex;
  flex-direction: column;
  /* 画像を縦並びに */
  gap: 10px;
  /* 画像間のスペース */
  padding-bottom: 60px;
  width: 25%;
}


.philosophy-image02 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
}

.images1 {
  width: 210px;
  height: auto;
  margin-left: 95px;
  margin-top: 100px;
}

.images2 {
  width: 300px;
  height: auto;
  margin-top: 298px;
}

.images3 {
  width: 280px;
  height: auto;
  margin-top: 200px;
  margin-left: 140px;
}

.images5 {
  width: 350px;
  height: auto;
  margin-top: 200px;
}

.images4 {
  width: 250px;
  height: auto;
  margin-top: 200px;
  margin-left: 90px;
}

.images6 {
  max-width: 300px;
  height: auto;
  margin-left: 20px;
  margin-top: 200px;
}

.images7 {
  max-width: 280px;
  height: auto;
  margin-left: 100px;
  margin-top: 200px;
}

.images8 {
  width: 250px;
  height: auto;
  margin-right: 0px;
  margin-top: 250px;
}

/* テキストのスタイル */
.philosophy-text02 {
  flex: 1;
  position: sticky;
  top: 300px;
  width: 800px;
  margin: 0 auto;
}

.philosophy-text02::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  backdrop-filter: blur(1px);
  /* 少し強調 */
  -webkit-backdrop-filter: blur(1px);
  filter: blur(8px);
  -webkit-filter: blur(8px);
  box-shadow: 0 0 40px 30px rgba(255, 255, 255, 0.85);
  /* 濃く・広げる */
  -webkit-box-shadow: 0 0 40px 30px rgba(255, 255, 255, 0.85);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
}

.philosophy-text02::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 750px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9));
  -webkit-filter: blur(60px);
  filter: blur(60px);
}

.philosophy-text02 h2 {
  font-size: 43px;
  color: #5a4b41;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  z-index: 7;
}

.philosophy-text02 .subheading {
  font-size: 20px;
  text-align: center;
  color: #d28b38;
  margin-bottom: 35px;
  position: relative;
  z-index: 7;
}

.philosophy-lead02 {
  font-size: 27px;
  color: #5b5046;
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: center;
  position: relative;
  z-index: 7;
}

.size35 {
  font-size: 35px;
}

.font-size22 {
  font-size: 22px;
  font-weight: 600;
  text-decoration: underline 7px solid rgba(247, 234, 196, 0.9);
}

.philosophy-desc02 {
  color: #333;
  margin-bottom: 32px;
  margin: 0 auto;
  position: relative;
  z-index: 7;
  line-height: 1.7;
}

.center {
  text-align: center;
  margin-top: 30px;
  position: relative;
  z-index: 7;
}

.philosophy-text02 .btn-detail {
  display: inline-block;
  padding: 10px 60px;
  background-color: #2e2e2e;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
}

.philosophy-text02 .btn-detail:hover {
  background-color: #2e2e2e80;
}

/* ---------------------------------------
--------伊勢崎　ヒロデンタルクリニックの特徴--------------------- */
.feature-section {
  background: linear-gradient(to bottom, #ffffff 0%, #fff8f0 100%);
  position: relative;
}

.feature-heading {
  text-align: center;
  padding-top: 150px;
  /* ヘッダー分のスペース確保 */
  margin-bottom: 60px;
  /* feature-scroll との間隔 */
}

.feature-section h2 {
  text-align: center;
  font-weight: normal;
}

.feature-section .subheading {
  font-size: 20px;
  text-align: center;
}

/* === スクロール領域 === */
.feature-scroll-wrapper {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.feature-scroll {
  display: flex;
  align-items: flex-start;
  height: 60%;
  width: max-content;
  gap: 100px;
  min-width: 100vw;
}

.feature-cards {
  display: flex;
  gap: 100px;
  height: 100%;
  padding-left: 550px;
  padding-right: 350px;
}

/* === 各カード === */
.feature-card {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  width: max-content;
  height: 100%;
}

.feature-number {
  position: relative;
}

.feature-number::after {
  content: "01";
  line-height: .75;
  letter-spacing: 0;
  font-size: 150px;
  font-weight: 900;
  font-style: normal;
  color: rgba(91, 80, 70, 0.3);
  position: absolute;
  top: -22px;
  right: 0;
  z-index: -1;
}

.number02::after {
  content: "02";
}

.number03::after {
  content: "03";
}

.number04::after {
  content: "04";
}

.feature-card-img {
  width: 576px;
  height: auto;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
  border-radius: 10px;
}

.feature-card-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;

}

.feature-card-text {
  padding-top: 75px;
  max-width: 344px;
  line-height: 1.8;
}

.feature-card-text h3 {
  font-size: 27px;
  color: #5b5046;
  padding-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.font-size20 {
  font-size: 20px;
  text-decoration: underline 6px solid rgba(247, 234, 196, 0.9);
}

.font-size18 {
  font-size: 18px;
  font-weight: 600;
text-decoration: underline 6px solid rgba(247, 234, 196, 0.9);
}

/* ------------------------------
   ヒロデンタルクリニックの治療が伊勢崎の方々に選ばれる理由
------------------------------ */
.reasons-section {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 190px 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 241, 224, 0.7), rgba(255, 255, 255, 0.9)),
    url(https://hirodentalclinic.com/test/wp-content/uploads/2025/06/slide-image01.jpeg) no-repeat center center / cover;
  position: relative;
  z-index: 1;
}

/* .reasons-section::after {
  content: '';
  width: 100%;
  height: 610px;
  position: absolute;
  top: 20%;
  left: 0;
  background-image:
    linear-gradient(0deg, rgba(210, 190, 160, 0.2) 1px, rgba(0, 0, 0, 0) 0),
    linear-gradient(90deg, rgba(210, 190, 160, 0.2) 1px, rgba(0, 0, 0, 0) 0);
  background-size: 20px 20px;
  background-position: center;
  z-index: 2;
} */

.reasons-section h2 {
  text-align: center;
}

.reasons-section .subheading {
  text-align: center
}

.reason-list {
  max-width: 1500px;
  margin: 65px auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.reason-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 0 30px;
}

.reason-block .reason-image img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 50%;
  /* ← 角を丸く（円形） */
  margin: 30px auto;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);

}

/* ホバー時に左右に揺れる */
.reason-image img:hover {
  animation: sway 1.2s ease-in-out infinite;
}

/* 左右にゆらゆら回転 */
@keyframes sway {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(2deg);
  }

  50% {
    transform: rotate(-2deg);
  }

  75% {
    transform: rotate(1.5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.reason-title {
  font-size: 27px;
  font-weight: bold;
  color: #5b5046;
  margin-bottom: 10px;
  text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.reason-text p {
  font-size: 15px;
  color: #2e2e2e;
  line-height: 1.7;
}

.margin-top80 {
  margin-top: 80px;
}

/* ------------------------------
   理事長あいさつセクション 全体レイアウト
------------------------------ */
.greeting-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
}

/* 親要素で左右に並べる */
.greeting-content {
  display: flex;
  width: 100%;
  height: 100%;
}

.greeting-geading {
  position: relative;
}

.greeting-geading::before {
  content: '';
  width: 140px;
  height: 140px;
  background: rgba(221, 188, 125, 0.15);
  border-radius: 50%;
  position: absolute;
  top: -46%;
  right: 5px;
  z-index: 0;
  filter: blur(5px);
  /* ぼかしを強調 */
}

/* ------------------------------
   左側テキストブロック（理事長あいさつ）
------------------------------ */
.greeting-text {
  width: 50%;
  background-color: #fff;
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.greeting-text::before {
  content: '';
  width: calc(100% - 100px);
  height: 310px;
  background: rgba(155, 141, 128, 0.1);
  position: absolute;
  top: 35%;
  left: 0;
  z-index: 0;
  /* clip-path: polygon(0 25%, 100% 0, 100% 75%, 0% 100%); */
}

.greeting-text::after {
  content: '';
  width: calc(100% - 160px);
  height: 300px;
  background: rgba(155, 141, 128, 0.1);
  position: absolute;
  top: 26%;
  left: 0;
  z-index: 0;
  /* clip-path: polygon(0 25%, 100% 0, 100% 75%, 0% 100%); */
}

.greeting-text h2 {
  margin-bottom: 10px;
}

.greeting-lead {
  font-size: 34px;
  color: #5b5046;
  margin: 25px 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.greeting-desc {
  color: #333;
  margin-bottom: 32px;
}

.greeting-btn {
  margin-top: 20px;
}

.btn-detail {
  display: inline-flex;
  align-items: center;
  background-color: #2e2e2e;
  color: #fff;
  padding: 10px 50px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.btn-detail:hover {
  transform: translateY(-2px);
  background-color: #2e2e2e80;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-icon {
  margin-left: 14px;
  font-size: 8px;
  transition: transform 0.3s ease;
}

.btn-detail:hover .btn-icon {
  transform: translateX(4px);
}

/* ------------------------------
   右側画像ブロック（理事長あいさつ）
------------------------------ */
.greeting-image {
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.greeting-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ---------------------------------------
--------日本歯科医師会からのお知らせ--------------------- */
.announcement-section {
  width: 100%;
  margin: 0 auto 100px auto;
  background: linear-gradient(135deg, #f0e5d8, #ffffff, #F3F0EE);
  position: relative;
}

.announcement-section::before {
  content: '';
  width: 500px;
  height: 500px;
  border-radius: 50%;
  position: absolute;
  left: 5%;
  bottom: -50%;
  background-image:
    linear-gradient(0deg, rgba(210, 190, 160, 0.2) 1px, rgba(0, 0, 0, 0) 0),
    linear-gradient(90deg, rgba(210, 190, 160, 0.2) 1px, rgba(0, 0, 0, 0) 0);
  background-size: 20px 20px;
  background-position: center;
  z-index: 1;
}

.announcement-section::after {
  content: '';
  width: 550px;
  height: 550px;
  border-radius: 50%;
  position: absolute;
  right: 0;
  bottom: -120%;
  background-image:
    linear-gradient(0deg, rgba(210, 190, 160, 0.2) 1px, rgba(0, 0, 0, 0) 0),
    linear-gradient(90deg, rgba(210, 190, 160, 0.2) 1px, rgba(0, 0, 0, 0) 0);
  background-size: 20px 20px;
  background-position: center;
  z-index: 1;
}

.width1300 {
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px;
  position: relative;
}

.announcement-content h2 {
  text-align: center;
  margin-bottom: 50px;
}

.announcement-content p {
  margin-top: 20px;
}

/* ----当院の医療安全への取り組みについて --------------------
 舌下免疫療法を行っている患者様へのお願い--------------------- */
.notice-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1300px;
  margin: 100px auto;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

/* 上段2つ横並び */
.notice-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

/* 上段用リンク（45%＋gapで全体約100%） */
.notice-row:not(.center-row) a {
  flex: 1 1 calc(50% - 15px);
  max-width: calc(50% - 15px);
}

/* 下段（中央1列） */
.center-row {
  justify-content: center;
}

.center-row a {
  flex: 1 1 100%;
  max-width: 100%;
}

.notice-box {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  padding: 24px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  width: 100%;
  position: relative;
}

.notice-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.arrow-btn {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 32px;
  height: 32px;
  border: 1px dashed #bdaea5;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s, transform 0.3s;
}

.arrow-btn span {
  color: #5d3b32;
  font-size: 9px;
}

.notice-box:hover .arrow-btn {
  background: #f4f1ef;
  transform: translateX(3px);
}

.notice-box h2 {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.notice-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.notice-box .red {
  color: #c00;
  font-weight: bold;
}

.align-left {
  text-align: start;
}

/* ----医療費控除について-------------------------------------
 ------採用情報はこちら--------------------- */

/* .attempt {
  width: 100%;
  height: auto;

}

.width1500 {
  max-width: calc(1500px + 10%);
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
}

.red {
  color: red;
}

.attempt-content {
  display: block;
  /* aタグはデフォルトでインラインなので、ブロック要素にする */
/* max-width: 1300px;
  margin: 100px auto;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #f3f3f3;
  box-shadow: 0px 0px 10px -5px #646464;
  padding: 30px;
  z-index: 0;

}

.attempt-content:hover {
  filter: brightness(0.9);
}

.attempt-text h2 {
  color: #646464;
  margin-bottom: 15px;
}

.attempt-text {
  width: 80%;
}

.attempt-img {
  width: 20%;
} */

/*---------------------------------------------
----- 当院の新型ウィルス対策について ------------*/
.virus-secsion {
  width: 100%;
  margin: 115px auto 0 auto;
  padding: 100px 0;
  background: linear-gradient(135deg, #fff, #bdaea531, #fff);
  position: relative;
}

.virus-secsion::before {
  position: absolute;
  content: "";
  width: 1200px;
  height: 500px;
  bottom: 0;
  left: 0;
  background-image: repeating-linear-gradient(45deg,
      rgba(218, 189, 125, 0.2),
      /* ゴールドベースの薄色 */
      rgba(218, 189, 125, 0.2) 5px,
      rgba(255, 255, 255, 0) 5px,
      rgba(255, 255, 255, 0) 10px);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  z-index: 0;
}

.virus-secsion h2 {
  text-align: center;
}

.virus-desc {
  text-align: center;
  margin-top: 50px;
}

.virus-contents {
  max-width: 1200px;
  margin: 70px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  /* ブロック間に余白 */
}

.virus-block {
  flex: 1 1 48%;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.06); */
}


.virus-block img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  box-shadow: 0px 0px 6px 0px #5d3b32;
  border-radius: 10px;
}

.virus-block h3 {
  font-size: 27px;
  text-align: center;
  margin-bottom: 15px;
  color: #555;
}

.virus-block ul {
  list-style: disc;
  padding-left: 16px;
  line-height: 1.8;
  color: #333;
  /* テキストの色（必要に応じて） */
}

.virus-block ul li::marker {
  color: #8c6342;
  /* リストマーク「・」だけを茶色に */
}

.virus-block-text {
  line-height: 1.8;
  color: #333;
}

/* 背景 */
.back-ground {
  width: 100%;
  margin: 0 auto;
  padding: 100px 0;
  background: #ECE8E1;
  position: relative;
}

.back-ground::before {
  content: '';
  width: 100%;
  height: 1400px;
  background: rgba(122, 106, 88, 0.5);
  position: absolute;
  top: 9%;
  left: 0;
  z-index: 0;
  clip-path: polygon(0 40%, 100% 0, 100% 60%, 0% 100%);
  z-index: 0;
}

/* ------------------------------
   採用情報セクション 全体レイアウト
------------------------------ */
.recruit-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* 親要素で左右に並べる */
.recruit-content {
  display: flex;
  max-width: 1500px;
  height: 100%;
  margin: 0 auto;
  box-shadow: -4px 5px 5px rgba(0, 0, 0, 0.05);
}

/* ------------------------------
   左側テキストブロック（採用情報）
------------------------------ */
.recruit-text {
  width: 40%;
  /* background-color: #fff; */
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f0ece5;
}

.recruit-text h2 {
  margin-bottom: 10px;
}

.recruit-desc {
  color: #333;
  margin: 32px 0;
}

.btn-detail {
  display: inline-flex;
  align-items: center;
  background-color: #2e2e2e;
  color: #fff;
  padding: 10px 50px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.btn-detail:hover {
  transform: translateY(-2px);
  background-color: #2e2e2e80;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-icon {
  margin-left: 14px;
  font-size: 8px;
  transition: transform 0.3s ease;
}

.btn-detail:hover .btn-icon {
  transform: translateX(4px);
}

.takasaki-wrapper {
  margin-top: 100px;
}

/* ------------------------------
   右側画像ブロック（採用情報）
------------------------------ */
.recruit-image {
  width: 60%;
  height: 580px;
  overflow: hidden;
  position: relative;
  /* border-radius: 10px; */
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);

}

.recruit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 提携先医療機関 */
.takasaki-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 60px 0;
  position: relative;
  z-index: 10;
}

.takasaki-content {
  display: flex;
  max-width: 1500px;
  width: 100%;
  box-shadow: 4px 5px 5px rgba(0, 0, 0, 0.05);
}

.takasaki-text {
  width: 40%;
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f0ece5;

}

.takasaki-text h2 {
  margin-bottom: 10px;
}

.takasaki-btn {
  display: inline-flex;
  align-items: center;
  background-color: #2e2e2e;
  color: #fff;
  padding: 10px 50px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  margin-top: 30px;
}

.takasaki-btn:hover {
  transform: translateY(-2px);
  background-color: #2e2e2e80;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-icon {
  margin-left: 14px;
  font-size: 8px;
  transition: transform 0.3s ease;
}

.takasaki-btn:hover .btn-icon {
  transform: translateX(4px);
}

.takasaki-image {
  width: 60%;
  overflow: hidden;
  position: relative;
  /* box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3); */
  /* border-radius: 10px; */
}

.takasaki-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------------------------------------
--------診療案内--------- */
/* 全体セクションのスタイル */
.treatment-section {
  padding: 80px 0;
  background:
    linear-gradient(135deg, rgba(247, 234, 196, 0.7), rgba(255, 255, 255, 0.9), rgba(247, 234, 196, 0.7)),
    url(https://hirodentalclinic.com/wp-content/uploads/2025/06/gaigan.jpeg) no-repeat center center / cover;
}

.treatment-section h2,
.treatment-section p {
  text-align: center;
}

.treatment-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  /* 横並び・自動調整 */
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto;
}

.treatment-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.treatment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.treatment-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.treatment-card h3 {
  font-size: 27px;
  color: #5a4b41;
  margin-bottom: 10px;
  text-align: center;
  border-bottom: 2px solid rgba(247, 234, 196, 0.9);
  line-height: 1.7;
}

.treatment-card p {
  font-size: 16px;
  color: #333;
	text-align: start;
}

/* ---------------------------------------
--------症例紹介--------------------- */
.case-section {
  width: 100%;
  margin: 0 auto;
  /* background: #f9f9f9; */
  padding: 150px 0 50px 0;
  position: relative;
  z-index: 10;
}

.case-section::before {
  content: '';
  width: 100%;
  height: 610px;
  position: absolute;
  top: 20%;
  left: 0;
  background-image:
    linear-gradient(0deg, rgba(210, 190, 160, 0.2) 1px, rgba(0, 0, 0, 0) 0),
    linear-gradient(90deg, rgba(210, 190, 160, 0.2) 1px, rgba(0, 0, 0, 0) 0);
  background-size: 20px 20px;
  background-position: center;
  z-index: 2;
}

.case-section::after {
  content: '';
  width: 100%;
  height: 480px;
  background: rgba(122, 106, 88, 0.5);
  position: absolute;
  top: 35%;
  left: 0;
  z-index: 0;
  clip-path: polygon(0 25%, 100% 0, 100% 75%, 0% 100%);
}

.case-heading h2,
.case-heading .subheading {
  text-align: center;
  margin-bottom: 10px;
}

.case-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 35px;
  max-width: 1200px;
  margin: 50px auto;
  position: relative;
  z-index: 3;
}

.case-block {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  width: 30%;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.case-title {
  font-size: 27px;
  margin: 15px 0 10px 0;
  color: #5a4b41;
  font-weight: bold;
}

.case-image {
  width: 90%;
  margin: 0 auto;
}

.case-img {
  position: relative;
  /* width: 300px; */
  height: 140px;
  margin: 15px auto;
}

.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.case-img::before {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 2px 6px;
  font-size: 12px;
  border-radius: 4px;
  z-index: 10;
}

.case-img.before::before {
  content: 'Before';
}

.case-img.after::before {
  content: 'After';
}

/* ボタンリンク */
.case-block a {
  margin: 16px 0 20px 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid #5b5046;
  background-color: transparent;
  color: #5b5046;
  border-radius: 5px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.case-block a::after {
  content: "▶";
  transition: transform 0.3s ease;
  font-size: 10px;
}

.case-block a:hover {
  background-color: #2e2e2e;
  color: #fff;
}

.case-block a:hover::after {
  transform: translateX(4px);
}

/* ---------------------------------------
--------ピックアップ診療--------- */
.pickup-section {
  width: 100%;
  padding: 80px;
  position: relative;
}

.pickup-section::before {
  content: '';
  width: 100%;
  height: 1100px;
  background: rgba(122, 106, 88, 0.1);
  position: absolute;
  top: 20%;
  left: 0;
  z-index: 0;
  /* clip-path: polygon(100% 30%, 0 10%, 0 70%, 100% 90%); */
}


.pickup-section::after {
  content: '';
  width: 65%;
  height: 900px;
  background-image: repeating-linear-gradient(45deg,
      rgba(122, 106, 88, 0.2),
      rgba(122, 106, 88, 0.2) 5px,
      rgba(255, 255, 255, 0) 5px,
      rgba(255, 255, 255, 0) 10px);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);

  position: absolute;
  bottom: 0%;
  right: 0;
  z-index: 1;
}

.pickup-title {
  text-align: center;
}

.pickup-block,
.pickup-reverse {
  position: relative;
  max-width: 1200px;
  height: 435px;
  margin: 50px auto;
  background: #F7F7F7;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 5;
}

/* 背景画像 */
.pickup-block::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-image: url("https://hirodentalclinic.com/wp-content/uploads/2025/06/yobou01.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* テキストエリア */
.pickup-content {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  max-width: 900px;
  background: #fff;
  padding: 60px 40px;
  /* box-shadow: rgba(0, 0, 0, 0.05) 3px 5px 5px; */
  text-align: left;
  top: 7%;
  left: 0;
}

.pickup-content::before {
  content: '';
  width: 50%;
  height: 100%;
  background-image:
    linear-gradient(0deg, rgba(210, 190, 160, 0.2) 1px, rgba(0, 0, 0, 0) 0),
    linear-gradient(90deg, rgba(210, 190, 160, 0.2) 1px, rgba(0, 0, 0, 0) 0);
  background-size: 10px 10px;
  /* 格子の幅と高さを設定 */
  clip-path: polygon(100% 100%, 100% 0, 0 0, 60% 100%);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}

.pickup-text {
  width: 50%;
  position: relative;
  z-index: 10;
}

.pickup-text::after {
  content: '';
  width: 165px;
  height: 165px;
  background: rgba(221, 188, 125, 0.15);
  border-radius: 50%;
  position: absolute;
  top: -14%;
  right: 54px;
  z-index: 0;
  filter: blur(5px);
}

.pickup-lead {
  padding-bottom: 15px;
  text-decoration: underline 7px solid rgba(247, 234, 196, 0.9);
}

.gold {
  font-size: 22px;
  color: #d28b38;
}

.pickup-text h3 {
  color: #5b5046;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.pickup-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
}

.pickup-btn a {
  background-color: #2e2e2e;
  color: #fff;
  padding: 10px 50px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.pickup-btn a:hover {
  transform: translateY(-2px);
  background-color: #2e2e2e80;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-icon {
  margin-left: 14px;
  font-size: 8px;
  transition: transform 0.3s ease;
}

.btn-detail:hover .btn-icon {
  transform: translateX(4px);
}

.pickup-list {
  width: 75%;
  border-top: 1px solid #646464;
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.pickup-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 5px;
  color: #333;
  font-size: 15px;
  line-height: 24px;
}

.pickup-list li:first-child {
  margin-top: 15px;
}

/* チェックマークアイコン */
.pickup-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #d28b38;
  /* ゴールド系カラー */
  font-size: 14px;
}

.pickup-text-image {
  width: 50%;
  position: relative;
  z-index: 2;
}

.image_left {
  width: 270px;
  height: 215px;
}

.image_right {
  width: 200px;
  height: 150px;
}

.pickup-text-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.image_left {
  position: absolute;
  bottom: -20px;
  left: 0px;
  z-index: 3;
}

.image_right {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

/* 根管治療 */
/* reverse用：テキスト左／画像右 */
/* 背景画像 */
.pickup-reverse::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background-image: url("https://hirodentalclinic.com/wp-content/uploads/2025/06/staff.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}

/* テキストエリア */
.reverse {
  margin-left: auto;
  top: 6%;
}

/* pickup-image-group：画像2枚重ね用 */
.pickup-image-group {
  width: 50%;
  position: relative;
  z-index: 2;
}

/* 右上の画像 */
.image-right.image1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 160px;
  z-index: 2;
}

/* 左下の画像 */
.image-right.image2 {
  position: absolute;
  bottom: -20px;
  left: 10px;
  width: 270px;
  height: 215px;
  z-index: 3;
}

.pickup-image-group img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* 削らない虫歯治療背景画像 */
.carisolv-treatment::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background-image: url("https://hirodentalclinic.com/wp-content/uploads/2025/06/yobou01.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}

.carisolv {
  top: 11%;
}

/* ---------------------------------------
--------ヒロ・デンタルクリニックについて--------- */
/* 親ラッパー */
.clinic-sention {
  width: 100%;
  margin: 0 auto;
  padding: 120px 0;
  background: linear-gradient(135deg, #fff, #F7F7F7, #fff);

}

.clinic-sention h2,
.clinic-sention p {
  text-align: center;
}

/* 横並びラッパー */
.clinic-sention-flex {
  max-width: 1200px;
  margin: 90px auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  /* スマホ対応 */
}

/* 左側：医院情報 */
.clinic-info {
  flex: 1 1 550px;
  /* background: #fff; */
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* 1行ごとの医院データ */
.clinic-data {
  display: flex;
  border-bottom: 1px solid #ccc;
  padding: 16px 0;
  font-size: 16px;
  color: #333;
  align-items: flex-start;
}

/* 左ラベル部分 */
.clinic-data dt {
  width: 150px;
  font-weight: bold;
  color: #7A6A58;
  flex-shrink: 0;
  padding-left: 10px;
  margin-right: 20px;
  border-left: 3px solid #7A6A58;
}

/* 内容部分 */
.clinic-data dd {
  flex: 1;
  margin: 0;
  line-height: 1.7;
}

/* 右側：地図 */
.clinic-map {
  flex: 1 1 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* iframeのサイズ調整（スマホにも対応） */
.clinic-map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: none;
  /* filter: brightness(80%); */
}

.clinic-sention-end {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}

.clinic-sention-bunner {
  margin-top: 50px;
}

.clinic-sention-bunner a:hover {
  opacity: .5;
}

.clinic-sention-bunner img {
  max-width: 350px;
  margin-bottom: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.maina img {
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.brown {
	color: #7A6A58;
}

/* ---------------------------------------
--------フォトギャラリー--------------------- */
.photo-gallery .swiper-slide {
  width: 400px;
  /* 表示幅に応じて調整可 */
  height: auto;
}

.photoSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.photo-gallery .swiper-slide img {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover;
}

.clinic-time-table {
  max-width: 1200px;
  margin: 50px auto;
}

/* ---------------------------------------
--------フッター--------------------- */
footer {
  width: 100%;
  padding-top: 50px;
  background:
    linear-gradient(135deg, rgba(122, 106, 88, 0.9), rgba(38, 23, 13, .7), rgba(38, 23, 13, .7)),
    url(https://hirodentalclinic.com/wp-content/uploads/2025/06/slide-image01.jpeg) no-repeat center center / cover;
  position: relative;
  z-index: 1;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  color: #fff;
}

.foot-left {
  width: 50%;
}

.info {
  width: 80%;
  margin: 0 auto;
}

.f-logo {
  display: flex;
  justify-content: center;
  /* 横方向の中央揃え */
  align-items: center;
  /* 縦方向の中央揃え */
  text-align: center;
  /* テキストを中央揃えにする */
  width: 100%;
  margin: 0 auto;
}

.f-logo img {
  width: 350px;
  height: auto;
  margin-bottom: 15px;
}

.address,
.f-flex {
  margin-left: 20px;
  padding-top: 5px;
}

.car::before {
  content: '';
  display: inline-block;
  width: 27px;
  height: 27px;
  padding-bottom: 10px;
  background-image: url(https://hirodentalclinic.com/wp-content/uploads/2025/06/car02.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 10px;
}

.parking::before {
  content: '';
  display: inline-block;
  width: 27px;
  height: 27px;
  padding-bottom: 10px;
  background-image: url(https://hirodentalclinic.com/wp-content/uploads/2025/06/parking02.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 10px;
}

/* フッターの表 */
.time-table {
  width: 80%;
  border-collapse: collapse;
  margin: 20px auto 0 auto;
  border: 1px solid #ddd;
  border-collapse: separate;
  overflow: hidden;
  border-spacing: 0;
  text-align: center;
  background: #fff;
  margin-bottom: 15px;
  font-family: serif;
  color: #646464;
}

.time-table th,
.time-table td {
  padding: 15px 5px;
  vertical-align: middle;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  line-height: 1;
  font-weight: normal;
}

.time-table th:last-child,
.time-table td:last-child {
  border-right: none;
}

.time-table tr:last-child th,
.time-table tr:last-child td {
  border-bottom: none;
}

.time-table th {
  background: #F3F0EE;
  color: #646464;
}

.time-table th.bg01 {
  background: #fff;
  color: #333;
}

.time-table th:first-child {
  width: 33%;
}

.time-table th:last-child {
  width: 12%;
}

.time-table td {
  width: calc(55% / 6);
  color: #ad9180;
}

.time-table.f-time-table th {
  background: #F9F6EC;
  color: #ad9180;
}

.time-table.f-time-table th.bg01 {
  background: #fff;
  color: #333;
}

.time-table.wide th:first-child {
  width: 25%;
}

.time-table.wide th:last-child {
  width: 10%;
}

.Saturday p {
  text-align: center;
  color: #fff;
}

iframe {
  width: 100%;
  height: 450px;
}

.foot-right {
  width: 50%;
}

.footer-list {
  width: 100%;
  margin: 50px 0;
  display: flex;
  justify-content: space-around;
  color: #fff;
}

.footer-list li {
  list-style: none;
}

.category {
  width: 100%;
  margin: 0 auto;
  line-height: 200%;
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
}

.category ul li a {
  text-decoration: none;
  transition-duration: 0.5s;
}

.category ul li a:hover {
  text-decoration-line: underline;
  text-decoration-color: #f0e5d8;
  opacity: .5;
}

.small {
  text-align: center;
  color: #fff;
  background-color: #2e2e2e80;
  padding: 10px;
}

.foot-end {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  width: 80%;
  margin: 0 auto;
}

.btn-primary02,
.btn-secondary02 {
  display: inline-block;
  width: 180px;
  /* 横幅を揃える */
  padding: 12px 0;
  font-size: 14px;
  border-radius: 3px;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  box-sizing: border-box;
}

.btn-primary02 {
  background: #5b5046;
  color: #fff;
  border: 1px solid #bdaea5;
}

.btn-primary02:hover {
  background: #3f382f;
}

.btn-secondary02 {
  border: 1px solid #7A6A58;
  color: #7A6A58;
  background: #fff;
}

.btn-secondary02:hover {
  background: #5b5046;
  color: #fff;
}