
:root{
--txt:#3E332C;           /*  var(--txt)  */
--enji:#951528;           /*  var(--enji)  */
--enji-soft:#FFF0F0;      /*  var(--enji-soft)  */
--red:red;      /*  var(--red)  */
--beige:#FBFAF9;      /*  var(--beige)  */	
--line:#D3CDC0; /*  var(--line)  */	

}

/* =========================================================
   TOP 2026 / local reset（TOP専用）
========================================================= */
.section-wrap h1,
.section-wrap h2,
.section-wrap h3,
.section-wrap h4,
.section-wrap p,
.section-wrap ul,
.section-wrap ol,
.section-wrap li,
.section-wrap dl,
.section-wrap dt,
.section-wrap dd{
  margin: 0;
  padding: 0;
	background: none;
}


.section-wrap img{
  max-width: 100%;
  height: auto;

}


/* =========================================================
明朝
========================================================= */
.font-mincho{
  font-family:
    "Yu Mincho",
    "游明朝",
    "Hiragino Mincho ProN",
    "Hiragino Mincho Pro",
    "Noto Serif JP",
    serif;
}

/* 見出し用・明朝 */
.font-mincho-title{
  font-family:
    "Yu Mincho",
    "游明朝",
    "Hiragino Mincho ProN",
    "Hiragino Mincho Pro",
    "Noto Serif JP",
    serif;
  font-weight: 600;
  letter-spacing: .02em;
}

/* =========================================================
  TOP 2026 / PC固定 共通ベース
========================================================= */
.section-wrap {
		font-size: 14px;
	line-height: 1.6;
}


/* ---------- ラッパー ---------- */
.section-wrap{
  width: 100%;

}

/* 背景（薄い暖色グレーを共通背景に） */
.section-wrap.bg-gray{
  background: #F1EFED;
}

/* ---------- box-sizing の指定が---------- */
*, *::before, *::after { box-sizing: border-box; }


/* ---------- セクション：PC固定幅 ---------- */
section#news-and-links,
section#services,
section#followup-care,
section#about-clinic,
section#certifications{
  width: 950px;
  margin: 0 auto;
  padding: 40px 0px;
	box-sizing: border-box;
}

section#about-clinic{
  padding: 55px 0px;

}

section#news-and-links{
	padding-top: 0px;
	padding-bottom: 30px;
}




/* ---------- 2カラム共通（Row-1） ---------- */
.layout-2col{
  display: flex;
  align-items: flex-start;
}
.main-col{
  flex: 1;
  min-width: 0;
}
.side-col{
  width: 300px; /* 基本幅（必要なら各セクションで上書き） */
}

/* ---------- サイドブロック共通 ---------- */
.side-links.side-blocks{

}
.side-block{
margin-bottom: 20px;
}

/* ---------- 見出し共通（赤ライン＋左アイコン） ----------
   ※ Row-1 の見出しは共通化し、必要に応じて
      アイコン画像だけ差し替える運用
--------------------------------------------------------- */
h3.section-title{
  font-size: 15px;
	margin-bottom: 5px;
  padding: 10px 0 10px 34px;
	border-top: 1px solid var(--enji);
  border-bottom: 1px solid var(--enji);
  position: relative;
  letter-spacing: .04em;
	padding-left: 38px;
	padding-bottom: 10px;
	font-weight: normal;
}
.section-title:before{
  content:"";
  position:absolute;
  left: 0;
  top: 6px;
  width: 30px;
  height: 30px;
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  opacity: .95;
}

/* 「一覧リンク付き見出し」専用 */
h3.section-title.has-more{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 右側リンク */
.section-title.has-more .news-more{
  font-size: 13px;
margin: 0 5px 0px 0;
  white-space: nowrap;
}



/* ---------- 見出しアイコン割当（必要に応じて差し替えOK） ---------- */
.ico_shinchaku:before{     background-image: url(/images/ico/ico_info.svg); }
.ico_campaign:before{      background-image: url(/images/ico/ico_campaigns.svg); }
.ico_comfort:before{       background-image: url(/images/ico/ico_comfort.svg); }
.ico_osusumekensa:before{  background-image: url(/images/ico/ico_ct.svg); }
.ico_nintei:before{  background-image: url(/images/ico/ico_nintei.svg);}
.ico_nintei{margin-bottom: 15px!important; }


/* ----------ボタン） ---------- */
.service-card .btn,
a.btn{
  position: relative;
  display: inline-block;
  padding: 8px 20px 7px;
  border: 1px solid var(--enji);
  border-radius: 999px;
  font-size: 13px;
  font-weight: bold;
  color: var(--enji);
  letter-spacing: .04em;
  background: #fff;
  text-decoration: none;
	transition: 0.3s;

}
a.btn:hover{
  background: #FFF0F0;

}



/* アイコン付きの時だけ左余白 */
a.btn-ico{
	padding-left: 56px;
}

/* ★これが無いと表示されません（疑似要素の箱を作る） */
a.btn-ico::before{
  content:"";
  position: absolute;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: .95;
  top: 51%;
	left: 25px;
}

/* カレンダーアイコン */
a.ico_calender::before{
  background-image: url(/images/ico/ico_calendar.svg);

}






/* ---------- リストの赤▶（共通） ---------- */
/* 矢印付きリンク（モダン版） */
a.arrow-red,
#news-and-links .side-block ul.bullet a{
  display: inline-flex;         /* ★ */
  align-items: flex-start;      /* ★ 先頭揃え */
  gap: 8px;                     /* ★ 矢印と文字の間 */
  text-decoration: none;
  padding-left: 0;              /* ←不要になる */
  position: relative;           /* ←beforeで不要なら消してOK */
	background: none;
}

/* 矢印（三角） */
a.arrow-red::before,
#news-and-links .side-block ul.bullet a::before{
  content: "";
  flex: 0 0 auto;               /* ★縮まない */
  width: 0;
  height: 0;

  border-left: 6px solid var(--enji);
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;

  margin-top: .55em;            /* ★文字のベースラインに合わせる（微調整） */
  position: static;             /* ★ absolute をやめる */
}

/* hover はそのまま */
a.arrow-red:hover,
#news-and-links .side-block ul.bullet a:hover{
  text-decoration: underline;
}





/* =========================================================
  Row-1：新着＋コラム ／ サイド3ブロック
========================================================= */
#news-and-links{
}

/* 2カラム：スクショ寄せ（共通値を上書き） */
#news-and-links .layout-2col{
  gap: 34px;
}
#news-and-links .side-col{
  width: 304px;
	box-sizing: border-box
}


#news-and-links #news-wrapper{
border: none;
	padding: 0;
	margin-bottom: 20px;
	}


/* 右サイド：箇条書き（赤▶） */
#news-and-links .side-block ul.bullet{
  list-style: none;
  padding: 0;
  margin: 0;
}
#news-and-links .side-block ul.bullet li{
  padding: 6px 0;
  border-bottom: 1px dotted #AAA;

  line-height: 1.55;
}
#news-and-links .side-block ul.bullet li:last-child{ border-bottom: 0; }




/* =========================================================
  Row-2：人間ドック・健診（services）
========================================================= */
.section-wrap.bg-gray #services{
}
#services .top-services{
  text-align: center;
}
h2.section-title-line{
  font-size: 23px;
  font-weight: bold;
  letter-spacing: .06em;
  margin: 0 0 20px;
  position: relative;
  display: inline-block;
  padding: 0 34px;
  border-bottom: 0;     /* 共通.section-title の下線を無効化 */
}
h2.section-title-line:before,
h2.section-title-line:after{
  content: "";
  position: absolute;
  top: 50%;
  width: 110px;
  height: 1px;
  background: var(--enji);
  opacity: .55;
}
h2.section-title-line:before{ left: -120px; }
h2.section-title-line:after{ right: -120px; }

#services .top-services .section-lead{
  margin: 0 0 28px;

  color: #333;
  letter-spacing: .04em;
}

/* =========================================================
  Services（カード）
  ・pictogram を写真の下中央に「半分かぶせ」表示（写真の外に出す）
========================================================= */

/* 2x2 グリッド */
#services .service-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 26px;
}

/* カード共通 */
#services .service-card{
  background: #fff;
  border-radius: 10px;
  padding: 0;
  overflow: hidden; /* カード自体の角丸は維持 */
}

/* カード全体リンク */
#services .service-link{
  display: block;
  margin: 20px 20px 25px;
  color: inherit;
  text-decoration: none;
}

/* 写真エリア（pictogramの土台） */
#services .service-media{
  position: relative;
  overflow: visible;          /* ★ pictogram を外に出す */
}

/* 写真だけを切り抜く内側ラッパー */
#services .service-photo{
  height: 238px;
  border-radius: 10px;
  overflow: hidden;           /* ★ 写真の角丸クリップはここで */
  background: #eee;
}

/* 写真 */
#services .service-photo img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 1.25s ease;
  will-change: transform;
}

/* hoverで写真拡大 */
#services .service-link:hover .service-photo img{
  transform: scale(1.15);
	opacity: 1 !important;
}



/* pictogram（写真の外に出して半分かぶせる） */
#services .service-pictogram{
  position: absolute;
  left: 50%;
  bottom: 0;                  /* 写真の下端に合わせる */
  transform: translate(-50%, 50%);  /* ★ 下に50%出す＝半分かぶる */

  width: auto;                /* 必要なら調整 */
  height: 23px;

  z-index: 5;
  pointer-events: none;
}




/* アイコン */
#services .service-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* 念のため */
}
#services .service-icon img{
  width: 86px;
  height: 86px;
  display: block;
  transition: transform .5s ease; /* ← 拡大アニメ */
  will-change: transform;
}

/* テキスト */
#services .service-name{
  margin: 24px 0 12px;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: .04em;
}


#services .is-icon .service-name{
  margin: 10px 0 12px;

}

#services  .service-desc{
  margin: 0 0 14px;
  color: #333;
  line-height: 1.6;
}

/* pictogram は hover しても一切変化させない */
#services .service-pictogram{
  transform: translate(-50%, 50%);
  transition: none;        /* ← アニメーション無効 */
}

#services .service-link:hover .btn{
  background: #FFF0F0;
}

/* =========================================================
  下段横長ボタン（wide）
========================================================= */
#services .service-wide{
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 26px;
  margin-top: 6px;
}

#services .wide-btn{
  background: #fff;
  border-radius: 10px;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

/* wideアイコン */
#services .ico-hikakuhyo img{
  width: 22px;

  display: block;
}

#services .ico-kenpo img{
  width: 32px;

  display: block;
}

/* wideテキスト */
#services .wide-text{
  font-size: 14px;
  font-weight: bold;
  letter-spacing: .04em;

}
/* 協会けんぽ・コース検査項目表　ボタン */
#services a.wide-btn:hover .wide-text{
color: var(--enji);

}


/* =========================================================
  Row-3：再検査・精密検査・外来診療（followup-care）
========================================================= */
#followup-care{
  text-align: center;
}



/* 横長写真（cover） */
#followup-care .followup-hero{
  width: 100%;
  height: 170px;
  border-radius: 10px;
  overflow: hidden;
  background: #eee;
  margin: 6px 0 18px;
}
#followup-care .followup-hero img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* 文章 */
#followup-care .followup-lead{
  margin: 0 0 18px;

  color: #333;
  letter-spacing: .03em;
}
#followup-care .followup-sublead{
  margin: 26px 0 18px;

  color: #333;
  letter-spacing: .03em;
}

/* ボタン */
#followup-care a.followup-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 240px;
  padding: 12px 18px;
  border: 1px solid #9b9b9b;
  border-radius: 4px;
  background: #fff;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  letter-spacing: .04em;
  box-sizing: border-box;
}

#followup-care a.followup-btn:hover{
	color: var(--enji);

}

#followup-care .followup-dot{
  width: 12px;               /* SVGサイズ */
  height: 12px;
  display: inline-block;

  background: url("../images/ico/arrow_circle.svg") no-repeat center center;
  background-size: contain;

  border-radius: 0;          /* 念のため */
}

#followup-care .followup-primary{ margin: 8px 0 0; }
#followup-care .followup-buttons{
  display: flex;
  justify-content: center;
  gap: 26px;
  margin: 0;
}
#followup-care .followup-buttons .followup-btn{ min-width: 270px; }

/* カレンダーボタン（ピル） */
#followup-care .followup-calendar{ margin-top: 28px; }


/* =========================================================
  施設紹介（about-clinic）
========================================================= */
#about-clinic{
}
#about-clinic .clinic-about{
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
#about-clinic .about-media{

  flex: 0 0 164px;
  border-radius: 6px;
  overflow: hidden;

}
#about-clinic .about-media img{
  width: 100%;
  height: auto;
  display: block;
}
#about-clinic .about-body{
  flex: 1;
  min-width: 0;
}
#about-clinic .about-eyebrow{
	font-size: 22px;
	margin-bottom: 0px;
  color: var(--enji);


}

#about-clinic .about-title{
  margin-bottom: 5px;
  font-size: 22px;
  line-height: 1.65;
  color: #5a3a2b;



}
#about-clinic .about-text{
  margin: 0 0 16px;

  line-height: 1.9;
  color: #333;
}
#about-clinic .about-links{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}


/* =========================================================
  認証＋同友会グループ（既存のまま）
  ※ここは未整理のままでもOKですが、ベースに合わせて
    .bottom-row/.nintei/.side-group は残しています
========================================================= */
.bottom-row{
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.bottom-row .nintei{
  flex: 1;
  min-width: 0;
  margin: 0;
}
.bottom-row .side-group{
  width: 304px;
  flex: 0 0 304px;
  margin: 0;
	box-sizing: border-box;
}

/* 左：認定 */
.nintei{

}

.cert-list{
  list-style: none;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 10px;
  row-gap: 15px;
	
}
.cert-list .cert-item:first-child{
  grid-column: 1 / -1;
  margin-bottom: 2px;
}
.cert-item{
  display: grid;
  grid-template-columns: 72px 1fr;
  column-gap: 10px;
  align-items: center;
}
.cert-icon{
  width: 72px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-icon img{
  max-width: 72px;
  max-height: 56px;
  width: auto;
  height: auto;
  display: block;
}
.cert-text{
	font-size: 12px;
  line-height: 1.55;
}

/* 右：同友会グループ */
.side-group{
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  background: #fff;
  padding: 20px 20px ;

}
.group-inner{

}
.group-logo{
  text-align: center;
  margin-bottom: 20px;
}

p.group-text{
	margin-bottom: 15px;
}


.group-logo img{
padding-top: 10px;
}
.group-body{

	

}
ul.group-links{
margin-bottom: 15px;
  margin-left: 10px;
}
.group-links li{
	margin-bottom: 5px;

}

.group-links li a{
text-decoration: none;

}

.group-links li a:hover{
text-decoration: underline;
	color: #009E53;

}

.group-banner{
	border-top: 1px dotted #009E53;
	padding-top: 15px;

}



/* =========================================================
  Column Tabs（.box なし前提 / このCSSだけで完結）
  - tabs__nav に区切り線（非アクティブ下の線）を表示
  - アクティブだけ 1px 被せて下線を隠し、パネルと一体化
  - パネル枠はパネル側（tabs__panel）だけ
========================================================= */

.column-tabs{

}

/* =========================================================
  1) タブ見出し
========================================================= */
.column-tabs .tabs__nav{
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  align-items: flex-end;
  gap: 0;

  /* ★ 非アクティブタブの下に見える区切り線 */
  border-bottom: 1px solid #9f9f9f;
}

/* 各タブ */
.column-tabs .tabs__tab{
  display: inline-block;
  min-width: 120px;
  padding: 8px 5px 7px;
  text-align: center;
  font-size: 13px;
  font-weight: normal;
  color: #333;
  text-decoration: none;
  background: #f1f1f1;
  border: 1px solid #9f9f9f;
  border-bottom: 0;                 /* 下は tabs__nav の線に任せる */
  border-radius: 4px 4px 0 0;
  position: relative;
  top: 0;                           /* ★非アクティブは被せない */
  z-index: 2;
	transition: background-color 0.25s ease;
}

.column-tabs .tabs__tab:hover{
  background: #f7f7f7;

}

/* アクティブ */
.column-tabs .tabs__tab.is-active{
  background: #fff;
  color: #111;
	padding: 10px 5px;

  top: 1px;                         /* ★アクティブだけ1px被せ */
  z-index: 3;
}

/* アクティブタブ直下だけ白で塗って、tabs__nav の線を隠す */
.column-tabs .tabs__tab.is-active::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: #fff;                 /* パネル背景と同じ */
}

/* hidden */
.column-tabs .tabs__panel[hidden]{
  display: none !important;
}

/* =========================================================
  2) パネル（枠はここだけ）
========================================================= */
.column-tabs .tabs__panel{
  border: 1px solid #9f9f9f;
  border-top: 0;                    /* ★上線は tabs__nav の区切り線に任せる */
  background: #fff;
  padding: 10px 15px 10px;
  box-sizing: border-box;

  /* h3 → 下に2カラム（左画像 136px / 右可変） */
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 10px;
  align-items: start;
}

/* =========================================================
  3) タブ中身：共通
========================================================= */
/* 見出し（全幅） */
.column-tabs .tabs__panel > h3{
grid-column: 1 / -1;
  margin: 5px 0 5px;
  padding: 0 0 8px;
  border-bottom: 1px solid var(--enji);
  font-size: 15px;
  font-weight: normal;
  line-height: 1.2;
}

.column-tabs .tabs__panel > h3 a{
  color: inherit;
  text-decoration: none;
}
.column-tabs .tabs__panel > h3 a:hover{
  text-decoration: underline;
	color: var(--enji)
}

/* 左サムネ */
.column-tabs .tabs__panel > p{
  margin: 0;
}
.column-tabs .tabs__panel > p img{
  display: block;
}

/* 右本文（dl / ul） */
.column-tabs .tabs__panel > dl,
.column-tabs .tabs__panel > ul{
  margin: 0;
  padding: 0;
  min-width: 0; /* 折り返し対策 */
}

/* =========================================================
  4) column2（dt+dd を1行化／全幅点線）
========================================================= */
.column-tabs dl.column2{
  --dtw: 60px;
  --gap: 2px;

  display: grid;
  grid-template-columns: var(--dtw) 1fr;
  column-gap: var(--gap);

  max-height: 180px;
  overflow-y: auto;

  margin: 0;
  padding: 0;
}

.column-tabs dl.column2 dt{
  padding: 7px 0;
  margin: 0;
  white-space: nowrap;
}

.column-tabs dl.column2 dd{
  position: relative;
  padding: 7px 0;
  margin: 0;
  line-height: 1.5;
  min-width: 0;
}
.column-tabs dl.column2 dt:first-of-type,
.column-tabs dl.column2 dd:first-of-type {
  padding-top: 0;
}

/* 行全体に点線（dt側まで伸ばす） */
.column-tabs dl.column2 dd::after{
  content: "";
  position: absolute;
  left: calc(-1 * (var(--dtw) + var(--gap)));
  right: 0;
  bottom: 0;
  border-bottom: 1px dotted #AAAAAA;
}

.column-tabs dl.column2 dd:last-of-type::after{
  display: none;
}

.column-tabs dl.column2 a{
  text-decoration: none;
}
.column-tabs dl.column2 a:hover{
  text-decoration: underline;
}

/* =========================================================
  5) メディカルニュース / 老友新聞（ul.column_mn-royu）
========================================================= */
.column-tabs .column_mn-royu{
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 180px;
  overflow-y: auto;
}

.column-tabs .column_mn-royu li{
  display: flex;
  align-items: flex-start;
  gap: 10px;

  padding: 6px 0;
  border-bottom: 1px dotted #AAA;
}

.column-tabs .column_mn-royu li:last-child{
  border-bottom: none;
}

/* アイコン */
.column-tabs .column_mn-royu .icon-mn_royu{
  flex: 0 0 58px;
  margin-top: 3px; /* 1行目中央寄せの微調整 */
}

/* テキスト */
.column-tabs .column_mn-royu li a{
  flex: 1;
  display: block;
  min-width: 0;

  line-height: 1.5;
  color: #333;
  text-decoration: none;
}

.column-tabs .column_mn-royu li a:hover{
  text-decoration: underline;
}


/* dropdownが切れないように（最小） */
.gnav{
  overflow: visible !important;
}

/* お元気ですかタブ内 */

.column-tabs ul.list__gdot{
margin-left: 4px;
	
}

.column-tabs ul.list__gdot li{
padding-left: 12px;
  background-image: url(/images/common/icon/circle01_red.png);
  background-repeat: no-repeat;
  background-size: 4px;
  background-position: left 8px;
	margin-bottom: 5px;
	
}


a.icon__arrow04_red{
	text-decoration: none;
}

/*-----------------------------------
スライド
-----------------------------------*/

section#hero{
  width: 950px;
  margin: 0 auto;
  padding: 0 0 10px;
  box-sizing: border-box;
}

/* 念のため #hero も同じ値に（既存CSSとの競合保険） */

/* スライダー全体（950固定） */
.hero-slider{
  width: 950px;
  position: relative;
  margin: 0 auto;
}

/* 表示領域：950×300固定 */
.hero-viewport{
  width: 950px;
  height: 300px;
  overflow: hidden;
  position: relative;
}

/* トラック（slide用） */
.hero-track{
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translate3d(0,0,0);
  transition: transform 700ms ease; /* slide時に使う */
}

/* スライド：950×300 */
.hero-slide{
  flex: 0 0 100%;
  width: 950px;
  height: 300px;
}

.hero-slide a,
.hero-slide img{
  display: block;
  width: 950px;
  height: 300px;
}

.hero-slide img{
  object-fit: cover;
}
	
.hero-slide a img:hover{
opacity: 1;
	}

/* =========================
   モード切替：fade（その場で切替）
========================= */
.hero-slider[data-mode="fade"] .hero-track{
  display: block;
  position: relative;
  height: 100%;
  transform: none !important;
  transition: none !important;
}

.hero-slider[data-mode="fade"] .hero-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1200ms ease;
  pointer-events: none;
}

.hero-slider[data-mode="fade"] .hero-slide.is-active{
  opacity: 1;
  pointer-events: auto;
}


/* =========================
   下段（影＋矢印＋ドット）
========================= */
/* 下段（影＋矢印＋ドット） */
.hero-under{
  width: 950px;
  height: 50px;

  /* ★影画像は「背景」として敷く（重ねない） */
  background: url("/images/main/main_img/bg_slide.jpg") no-repeat left top;

  /* ★矢印＋ドットを普通に横並び */
  display: flex;
  align-items: center;       /* ← 縦センターで揃う */
  justify-content: center;
  gap: 40px;
  margin: 0;
}

/* 影用divは使わない（残すなら非表示） */
.hero-shadow{
  display: none;
}

/* ドット（通常フロー） */
.hero-dots{
  display: flex;
  gap: 18px;
  margin: 0;
}

/* 共通ドット */
.hero-dots button{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #cfc7bf;
  cursor: pointer;
  appearance: none;
  transition: transform .15s ease, background-color .15s ease;
}
.hero-dots button:hover{
  background: #bfb6ad;
  transform: scale(1.3);
}
.hero-dots button.is-active{
  background: #a43a42;
}

/* 矢印（absoluteなし） */
.hero-arrow{
  background: none;
  border: none;

  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
	margin-bottom: 5px;

  font-size: 28px;
  line-height: 1;
  color: #bfb6ad;
  cursor: pointer;

  transition: color .25s ease;
  appearance: none;
}
.hero-arrow:hover{ color: #a43a42; }
.hero-arrow:focus{ outline: none; }




/*950PX幅に左右にパディングつける

#headerInner .clearfix,
.header-utility__inner,
.header-container,
section#news-and-links,
section#services,
section#followup-care,
section#about-clinic,
section#certifications,
section#hero,
#siteFooter .footer-inner{
	
width: 950px!important;
box-sizing: content-box;
	padding-left: 20px!important;
	padding-right: 20px!important;
}
*/



