@charset "utf-8";
/* CSS Document */



:root{
--txt:#3E332C;           /*  var(--txt)  */
--enji:#07A485;           /*  var(--enji)  */
--enji-soft:#FFF0F0;      /*  var(--enji-soft)  */
--red:red;      /*  var(--red)  */
--beige:#FBFAF9;      /*  var(--beige)  */	
--line:#D3CDC0; /*  var(--line)  */	

}

/* =========================================================
ピンク帯
========================================================= */

.endoscope-notice {
  background: #f3d5fb;
  text-align: center;
}

.endoscope-notice a {
  display: block;
  padding: 10px 15px;
  color: #00147A;
	font-weight: 500;

  text-decoration: none;
font-size: 15px;
  letter-spacing: 0.05em;	
}

.endoscope-notice a:hover {
  text-decoration: underline;
}

@media(max-width:425px) {
.endoscope-notice a {
font-size: 14px;
}
}



/* =========================================================
明朝
========================================================= */
.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;
	margin-top: 20px;
}


/* ---------- ラッパー ---------- */
.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: 1200px;
  margin: 0 auto;
  padding: 40px 50px;

}



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: 12px 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(/fukagawa/image/ico/ico_info.svg); }
.ico_campaign:before{      background-image: url(/fukagawa/image/ico/ico_campaigns.svg); }
.ico_comfort:before{       background-image: url(/fukagawa/image/ico/ico_comfort.svg); }
.ico_osusumekensa:before{  background-image: url(/fukagawa/image/ico/ico_ct.svg); }
.ico_vaccine:before{  background-image: url(/fukagawa/image/ico/ico_vaccine.svg);}



/* ----------ボタン） ---------- */
.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;
	margin-top: 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; }













/* -------------------------
ピックアップ 
---------------------------*/

.pickup-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
	margin-bottom: 20px;
}

.pickup-card {
  display: block;
  padding: 15px;
  text-decoration: none;
  color: #222;
  border: 1px solid #d8d0c8;
  border-left: 8px solid #00a88a;
  box-sizing: border-box;
  transition: .25s;
}

.pickup-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
}

.pickup-bottom {
  display: flex;
  align-items: start;
  gap: 30px;
}

.pickup-text {
  flex: 1;
margin-top: 5px;	
}

.pickup-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.pickup-category {
display: inline-block;
  flex-shrink: 0;
  padding: 7px 12px 6px;
  background: #00a88a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  line-height: 1.0;
}

.pickup-card h3 {
  flex: 1;
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
}

.pickup-text ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pickup-text li {
position: relative;
  padding-left: 1.2em;
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 1.6;
}

.pickup-text li:last-child {
  margin-bottom: 0;
}

.pickup-text li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #00a88a;
  font-weight: bold;
}

.pickup-image {
  width: 240px;
  flex-shrink: 0;
}

.pickup-image img {
  display: block;
  width: 100%;
  border-radius: 6px;
height: 130px;	
object-fit: cover;	
}

/* ピンク */
.pickup-pink {
  border-left-color: #f16ac6;
}

.pickup-pink .pickup-category {
  background: #f16ac6;
}

.pickup-pink .pickup-text li::before {
  color: #f16ac6;
}

/* ゴールド */
.pickup-gold {
  border-left-color: #c79b35;
}

.pickup-gold .pickup-category {
  background: #c79b35;
}

.pickup-gold .pickup-text li::before {
  color: #c79b35;
}

/* SP */
@media (max-width: 767px) {
  .pickup-section {
    gap: 15px;
    margin: 20px 0;
  }

  .pickup-card {
    padding: 10px 15px 20px;
  }

.pickup-category {

  padding: 3px 8px;

  font-size: 9px;


}	
	
  .pickup-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .pickup-title-row {
 
    gap: 8px;
  }

  .pickup-card h3 {
    font-size: 20px;
  }

  .pickup-text li {
    font-size: 14px;
    line-height: 1.6;
  }

  .pickup-image {
    width: 100%;
    height: 100px;
    overflow: hidden;
	  margin: 0 auto;
  }

  .pickup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}








/*トップページ
--------------------------------------------------------------*/
/*トップページ　お知らせ＆バナー（縦3）*/
#news_and_banner .main__left {
  padding-bottom: 0px;
}
#main.toppage #news {
  margin-bottom: 20px;
}
/*経鼻内視鏡検査を導入しました（ボックス・グレー線）*/
#main.toppage .box_line__gray.cassette_blk {
  border: 1px solid #BFB9B0;
}
#main.toppage .box_line__gray.cassette_blk {
  margin-top: 25px;
  padding: 18px 24px 18px;
}
#main.toppage .box_line__gray.cassette_blk h3 {
  padding-bottom: 5px;
  font-size: 17px;
  border-bottom: 1px solid #0C9F84;
}
#main.toppage .box_line__gray.cassette_blk .blk {
  padding-top: 10px;
}
#main.toppage .box_line__gray.cassette_blk .ttlsub .ttl {
  padding-top: 10px;
  font-size: 16px;
}
#main.toppage .box_line__gray.cassette_blk .ttlsub .subject {
  padding-top: 3px;
}
#main.toppage .box_line__gray.cassette_blk .ttlsub:first-child {
  padding-top: 12px;
}
@media(max-width:768px) {}
@media(min-width:416px) {
  #main.toppage .box_line__gray.cassette_blk .ttlsub {
    width: 100%;
    margin-left: -110px;
    padding-left: 110px;
    box-sizing: border-box;
  }
  #main.toppage .box_line__gray.cassette_blk img {
    padding: 0 20px 10px 0;
  }
}
@media(max-width:415px) {
  #main.toppage .box_line__gray.cassette_blk {
    margin-bottom: 25px;
  }
  #main.toppage .box_line__gray.cassette_blk .blk {
    margin-bottom: 20px;
  }
  #main.toppage .box_line__gray.cassette_blk .left {
    float: none;
  }
  #main.toppage .box_line__gray.cassette_blk img {
    display: block;
    width: 90px;
    margin: 0 auto 0;
  }
}
/*ボタン*/
#main.toppage .box_line__gray.cassette_blk .btn-rcorn, #main .posted_area btn-rcorn {
  display: inline-block;
  width: auto; /*
    width:218px;*/
  padding: 0 32px;
  font-size: 14px;
  height: 32px;
  line-height: 34px;
}
@media(max-width:625px) {
  #main.toppage .box_line__gray.cassette_blk .t_right {
    margin-top: 20px;
    text-align: center;
  }
}
/**/
/*グレーエリア*/
.bg_gray {}
@media(min-width:769px) {
  .bg_gray {
    margin-top: 0px;
  }
}
@media(max-width:768px) {
  .bg_gray {
    margin-top: 20px;
  }
}
.bg_gray.toppage {
  margin-bottom: 40px;
}
@media(max-width:425px) {
  .bg_gray.toppage {
    margin-bottom: 15px;
  }
}
@media(min-width:769px) {
  .bg_gray.toppage p.catch, .bg_gray.toppage h1, .bg_gray.toppage p, .bg_gray.toppage .pict_text {
    width: 780px;
    margin: 0 auto 0;
  }
}
.bg_gray.toppage p.catch, .bg_gray.toppage h1 {
  text-align: center;
}
.bg_gray.toppage p.catch {
  margin-top: 37px;
  font-size: 28px;
  letter-spacing: 4px;
}
@media(max-width:375px) {
  .bg_gray.toppage p.catch {
    letter-spacing: 0px;
  }
}
.bg_gray.toppage h1 {
  margin-top: 45px;
  margin-bottom: 25px;
  letter-spacing: 8px;
}
.bg_gray.toppage h1 span {
  font-size: 36px;
}
@media(max-width:768px) {
  .bg_gray.toppage p.catch {
    font-size: 23px;
  }
  .bg_gray.toppage h1 span {
    font-size: 31px;
  }
}
.bg_gray.toppage p {
  margin-bottom: 20px;
}
.bg_gray.toppage .pict_text {
  clear: both;
  overflow: hidden;
  margin-bottom: 50px;
}
.bg_gray.toppage .pict_text li {
  float: left;
  width: 29%;
  margin: 0 2% 0;
  text-align: center;
}
@media(min-width:331px) and (max-width:556px) {
  .bg_gray.toppage .pict_text {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0;
  }
  .bg_gray.toppage .pict_text li {
    float: none;
    width: width:calc(100% / 3);
    margin: 12px;
  }
}
@media(max-width:330px) {
  .bg_gray.toppage .pict_text li {
    float: none;
    width: 100%;
    margin-bottom: 40px;
  }
  .bg_gray.toppage .pict_text li:last-child {
    margin-bottom: 0;
  }
}
.bg_gray.toppage .pict_text a {}
.bg_gray.toppage .pict_text img {
  max-width: 100%;
  height: auto;
  margin-bottom: 25px;
}
.bg_gray.toppage .pict_text span {
  display: block;
}
@media(min-width:331px) and (max-width:375px) {
  .bg_gray.toppage .pict_text span {
    font-size: 12px;
  }
}
/*タイトル部分*/
#multiplication {}
@media(max-width:490px) {
  #multiplication {
    text-align: center;
  }
  #multiplication span {
    display: block;
  }
}
#multiplication span.first {}
#multiplication span.second {
  padding-bottom: 15px;
}
#multiplication span.third {}
/*診療科目のテーブル*/
#medic_courses_schedule {
  margin-top: 17px;
  margin-bottom: 12px;
}
#medic_courses_schedule th, #medic_courses_schedule td {
  text-align: center;
}
#medic_courses_schedule td {}
#medic_courses_schedule td span {
  font-size: 18px;
}
.medic_courses_schedule.table_note li, p.medic_courses_schedule.table_note {
  font-size: 13px;
}
.main__left.toppage2 p.medic_courses_schedule.table_note {
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 19px;
}
.main__left.toppage2 .notice-box {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-right: 34px;
  padding-left: 34px;
  margin-bottom: 25px;
}
@media(max-width:768px) {
  .main__left.toppage2 .notice-box {
    margin-bottom: 10px;
  }
}
#medic_courses_schedule td span {
  display: block;
  line-height: 1.0;
}
@media(max-width:634px) {
  #medic_courses_schedule th, #medic_courses_schedule td {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media(max-width:380px) {
  #medic_courses_schedule th, #medic_courses_schedule td {
    padding-right: 4px;
    padding-left: 4px;
  }
  .main__left.toppage2 .notice-box {
    padding-right: 17px;
    padding-left: 17px;
  }
}
.main__left.toppage2 .notice-box p {
  margin: 1em 0;
}

/*-----------------------------------
大切なお知らせ
-----------------------------------*/
.important-notice {
  width: 100%;
  min-height: 120px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  box-sizing: border-box;

  border: 1px solid #0aaa8c;
  background: #fff;

  text-decoration: none;
  color: #333;

  transition: .2s;
padding: 17px 10px 20px;	
margin-bottom: 15px;	
}

.important-notice:hover {
  background: #f7fffd;
}

.important-notice .label {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 40px;
  padding: 6px 10px;

  margin-bottom: 12px;

  border-radius: 6px;

  background: #0aaa8c;
  color: #fff;

  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.important-notice .text {
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

/*-----------------------------------
並列アイコンリンク
-----------------------------------*/

.content-links {
  width: 100%;

  display: flex;
  justify-content: space-around;
  align-items: flex-start;
margin-bottom: 50px;

}

.content-link {
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  text-align: center;
  text-decoration: none;
  color: #333;

  box-sizing: border-box;
}

.content-link:hover {
  opacity: 1;
}

.content-link img {
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.content-link span {
  display: block;
  margin-top: 10px;

  font-size: 16px;

  line-height: 1.4;

  text-align: center;
}
.letter-space span{
  letter-spacing: 0.15em;
}

/*-----------------------------------
スライド
-----------------------------------*/

section#hero{
  width: 1100px;
  margin: 0 auto;
  padding: 0 0 10px;
  box-sizing: border-box;
}

/* 念のため #hero も同じ値に（既存CSSとの競合保険） */

/* スライダー全体（950固定） */
.hero-slider{
  width: 1100px;
  position: relative;
  margin: 0 auto;
}

/* 表示領域：950×300固定 */
.hero-viewport{
  width: 1100px;
  height: 347px;
  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: 1100px;
  height: 347px;
}

.hero-slide a,
.hero-slide img{
  display: block;
  width: 1100px;
  height: 347px;
}

.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: 1100px;
  height: 50px;

  /* ★影画像は「背景」として敷く（重ねない） */
  background: url("https://www.kasuga-clinic.com/images/main/main_img/bg_slide.jpg") no-repeat left top;

  /* ★矢印＋ドットを普通に横並び */
  display: flex;
  align-items: center;       /* ← 縦センターで揃う */
  justify-content: center;
  gap: 40px;
  margin: 0;
}
.hero-under{
background:
  url("https://www.kasuga-clinic.com/images/main/main_img/bg_slide.jpg")
  no-repeat center top;
background-size: 1100px auto;
}	

/* 影用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: var(--enji)
}

/* 矢印（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: var(--enji); }
.hero-arrow:focus{ outline: none; }




