html{
  font-weight: 300;
}
/* モーダル表示中（未回答時）にスクロールを禁止するクラス */
body.modal-open {
  overflow: hidden !important;
  /* スマホ等のタッチデバイスでも完全に止める場合 */
  touch-action: none; 
}

/* 以降のコンテンツ（例: chapter03やセクション等）を未回答時に非表示・操作不可にする場合 */
/* 今回はbodyにクラスをつけて一括で制御、またはJS側で非表示クラスをコントロールします */
.disabled-content {
  opacity: 0.3;
  pointer-events: none; /* クリックや選択を無効化 */
  user-select: none;
}
/* 表示・非表示を切り替えるためのCSS（もし無ければ追加してください） */
.note {
  display: none !important;
}
/* モーダル表示中に背景をスクロールさせないためのクラス */
:root {
  counter-reset: num;

  /* colors 見本*/
  --black: #000;
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #eb0000;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --orange-light: #f68d2e;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #D2CEC7;
  --text-color:#575759;
  --con-back-color:#575759;
  --aboreto-font-family:"Aboreto", system-ui;
  --Klee-font-family: "Klee One", cursive;
  --normal-font: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", sans-serif;
  --text-primary: #f0f6fc;
  --color-open: #abd2e4;       /* 診察中：クリーンなグリーン */
  --color-close: #bb4a44;      /* 休診・時間外：鮮やかなレッド */
  --color-accent: #9e7b96;     /* アクセント：スマートなブルー */
  /*transform*/
  --transform-50-Y:translateY(-50%);
  --transform-50-X:translateX(-50%);
  --zone-color: rgba(168, 164, 133, 0.8);
    /* body sizes */
  --body-font-size-32:clamp(28px, 26.182px + 0.485vw, 32px);
  --body-font-size-30:clamp(25px, 22.727px + 0.606vw, 30px);
  --body-font-size-28:clamp(22px, 19.273px + 0.727vw, 28px);
  --body-font-size-26:clamp(20px, 17.273px + 0.727vw, 26px);
  --body-font-size-24:clamp(21px, 19.636px + 0.364vw, 24px);
  --body-font-size-20:clamp(18px, 17.091px + 0.242vw, 20px);
  --body-font-size-18:clamp(16px, 15.091px + 0.242vw, 18px);
  --body-font-size-16:clamp(14px, 15.091px + 0.202vw, 16px);
  --body-font-size-14:clamp(13px, 12.545px + 0.121vw, 14px);
  --body-font-size-12:clamp(12px, 12.000px + 0vw, 12px);
  --body-font-size-10:clamp(10px, 10.000px + 0vw, 10px);
  /* Heading Variables */
  --h1-font-size:clamp(25px, 19.231px + 1.538vw, 50px);
  --h2-font-size:clamp(23px, 19.818px + 0.848vw, 30px);
  --h3-font-size:clamp(20px, 18.182px + 0.485vw, 24px);
  --h4-font-size:clamp(18px, 17.091px + 0.242vw, 20px);
  /* Font Weight */
  --font-weight-small: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --font-weight-bolder: 900;
   /*shadow*/
 --shadow-size--medium: 0 max(.0625rem, 1px) 0 
color-mix(in srgb, var(--color--utility-black) 10%, transparent);
  /*margin*/
  --margin-b-10:10px;
  --margin-b-15:15px;
  --margin-b-20:20px;
  --margin-b-25:25px;
  --margin-b-30:30px;
  --margin-b-35:35px;
  --margin-b-40:40px;
  --margin-b-45:45px;
  --margin-b-50:50px;
  --margin-b-55:55px;
  --margin-b-60:60px;
}
/**margin**/
.m_a {
  margin: auto;
}
.mt_0 {
  margin-top: 0!important;
}
.mt_10 {
  margin-top: var(--margin-b-10)!important;
}
.mt_15 {
  margin-top: var(--margin-b-15)!important;
}
.mt_20 {
  margin-top: var(--margin-b-20)!important;
}
.mt_30 {
  margin-top: var(--margin-b-30)!important;
}
.mt_60 {
  margin-top: var(--margin-b-60)!important;
}
.mt_120 {
  margin-top: 120px!important;
}
.mb_0 {
  margin-bottom: 0!important;
}
.mb_10 {
  margin-bottom: var(--margin-b-10)!important;
}
.mb_15 {
  margin-bottom: var(--margin-b-15)!important;
}
.mb_20 {
  margin-bottom: var(--margin-b-20)!important;
}
.mb_30 {
  margin-bottom: var(--margin-b-30)!important;
}
.mb_60 {
  margin-bottom: var(--margin-b-60)!important;
}
.mb_120 {
  margin-bottom: 120px!important;
}
.on1366, .on1280, .on1024, .on768, .on480, .on375 {
  display: none;
}
.w_1500{
  max-width: 1500px;
  width: 98%;
  margin: auto;
}
@media (min-width:1367px) {
  .off1366 {
    display: none!important;
  }
  .on1366 {
    display: block!important;
  }
}
@media (max-width:1280px) {
  .off1280 {
    display: none !important;
  }
  .on1280 {
    display: block !important;
  }
}
@media (max-width:1024px) {
  .off1024 {
    display: none!important;
  }
  .on1024 {
    display: block!important;
  }
}
@media (max-width:768px) {
  .off768 {
    display: none!important;
  }
  .on768 {
    display: block!important;
  }
}
@media (max-width:480px) {
  .off480 {
    display: none!important;
  }
  .on480 {
    display: block!important;
  }
}
.fixed-re-answer {
  position: fixed;
  right: 20px;
  bottom: 15px;
  width: 35%;
  max-width: 150px;
  z-index: 99;
}
#btn-re-answer{
 position: relative;
   padding:10px 3px 3px 60px;
background: linear-gradient(135deg, rgb(255 255 255 / 95%), rgb(248 242 237 / 95%), rgb(231 211 193 / 95%), rgb(231 211 193 / 95%)), linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)) !important;
  border-radius: 10px;
 box-shadow: 0 0px 10px rgba(231, 211, 193,.8);
  border: none;
  font-size: 11px;
  text-align: left;
  line-height: 1.2em;
  color:#2d2c2c;
  cursor: pointer;
  border: solid 1px #fff;
 text-shadow: -.5px -.5px 0 #fff, .5px -.5px 0 #fff, -.5px .5px 0 #fff, .5px .5px 0 #fff !important;
}

/*
#btn-re-answer::after{
  content: "";
  background: url(../img/common/ic_loding.svg)no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 50%;
  transform: var(--transform-50-X);
  top: 10px;
}*/
.ic_lodeing{
  position: absolute;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: var(--transform-50-Y);
}
@media (min-width:769px) {
#btn-re-answer{
padding: 10px 3px 10px 32px;
        height: 60px;
        width: 100%;
}.ic_lodeing {
}
}
@media (max-width:768px) {
#btn-re-answer{
padding: 10px 3px 10px 32px;
        height: 70px;
        width: 100%;
}.ic_lodeing {

}
}
.ripple-loader {
  position: relative;
  width: 1px;
  height: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ripple-circle {
  position: absolute;
  border: 1px solid rgb(157, 141, 126); /* サイトのテーマカラーに合わせて変更 */
  border-radius: 50%;
  animation: ripple 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  opacity: 0;
}

.ripple-circle:nth-child(2) {
  animation-delay: -0.75s;
}

@keyframes ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width:20px;
    height:20px;
    opacity: 0;
  }
}

/**********statement__************/
:is(.statement__copy,.statement__txt) div span {
    overflow: hidden;
    display: inline-block;
}
:is(.statement__copy,.statement__txt) div em {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0)
}

.statement__copy.active > div em,.statement__txt span.active em{
	-webkit-transition: -webkit-transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
	transition: -webkit-transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
	transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
	transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0)
}

.statement__copy.active > div span:nth-of-type(1) em,.statement__txt .active em {
	-webkit-transition-delay: .2s;
	transition-delay: .2s
}

.statement__copy.active > div span:nth-of-type(2) em {
	-webkit-transition-delay: .45s;
	transition-delay: .45s
}

.statement__copy.active > div span:nth-of-type(3) em {
	-webkit-transition-delay: .7s;
	transition-delay: .7s
}
.statement {
	width: calc(100% - 80px);
	max-width: 1600px;
	padding-top:120px;
	margin: 0 auto 120px;
	position: relative
}

@media (max-width: 767px) {
	.statement {
		width: 89.33333vw;
		padding-top: 6.93333vw;
		margin-bottom: 23.46667vw
	}
}

.statement__border {
	width: 100%;
	height: 1px;
	background-color: #D2CEC7;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: -webkit-transform 2s cubic-bezier(0.16, 1, 0.3, 1);
	transition: -webkit-transform 2s cubic-bezier(0.16, 1, 0.3, 1);
	transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1);
	transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 2s cubic-bezier(0.16, 1, 0.3, 1)
}

.statement__border.active {
	-webkit-transform: scaleX(1);
	transform: scaleX(1)
}

/**********statement__************/
/**********コンテンツパーツ************/
h2:not(.h2_nost){
  font-family:var(--aboreto-font-family); 
  font-weight: 400;
  color: #F3F3F3;
  font-size:clamp(50px, 28.873px + 5.634vw, 110px);
  line-height: 1.5em;
}
h2:not(.h2_nost) em{
  display: block;
  
}
h2:not(.h2_nost) em:nth-of-type(2){
  margin-left: 5%;
}
.flex{
  display: flex;
  flex-wrap: wrap;
}
.link01{
  background:rgba(186, 184, 157, 0.9);
  padding: 0px 30px 15px 71px;
  color: #fff;
  border-radius: 30px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}
.top-arrow {
	display: inline-block;
	position: relative;
	height: 3.81944vw;
	line-height: 3.81944vw;
	padding-left: 4.93056vw
}

@media (min-width: 1440px) {
	.top-arrow {
		height: 55px
	}
}

@media (min-width: 1440px) {
	.top-arrow {
		line-height: 55px
	}
}

@media (min-width: 1440px) {
	.top-arrow {
		padding-left: 71px
	}
}

.top-arrow:before,
.top-arrow:after {
	content: "";
	display: block;
	background-size: contain;
	width: 3.88889vw;
	height: 3.81944vw;
	position: absolute;
	top: 0;
	left: 0
}

@media (min-width: 1440px) {

	.top-arrow:before,
	.top-arrow:after {
		width: 56px
	}
}

@media (min-width: 1440px) {

	.top-arrow:before,
	.top-arrow:after {
		height: 55px
	}
}

.top-arrow:before {
	background: url(../img/common/ic_link01.svg) no-repeat center center;
	z-index: 6;
}
.top-arrow.pdf:before {
	background: url(../img/common/ic_blank.svg) no-repeat center center;
	z-index: 6;
}
.top-arrow.blank:before {
	background: url(../img/common/ic_pdf.svg) no-repeat center center;
	z-index: 6;
}
.top-arrow:after {
	-webkit-transition: -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1);
	transition: -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1);
	transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
	transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 1s cubic-bezier(0.16, 1, 0.3, 1);
	background: #fff no-repeat center center;
	border-radius: 50%;
}

.top-arrow:hover:before {
	-webkit-animation: kf-arrow-hover 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	animation: kf-arrow-hover 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards
}

.top-arrow:hover:after {
	-webkit-transform: rotate(180deg) scale(1.1);
	transform: rotate(180deg) scale(1.1)
}

@media (max-width: 767px) {
	.top-arrow {
		font-size: 3.33333vw;
		height: 12vw;
		line-height: 12vw;
		padding-left: 15.46667vw
	}

	.top-arrow:before,
	.top-arrow:after {
		width: 12.4vw;
		height: 12vw
	}
}

@-webkit-keyframes kf-arrow-hover {
	0% {
		-webkit-transform: translate3d(-20%, 0, 0);
		transform: translate3d(-20%, 0, 0);
		opacity: 0
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1
	}
}

@keyframes kf-arrow-hover {
	0% {
		-webkit-transform: translate3d(-20%, 0, 0);
		transform: translate3d(-20%, 0, 0);
		opacity: 0
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1
	}
}
.link02 {
    padding-bottom: 5px;
    margin-bottom: var(--margin-b-15);
    display: inline-block;
    background-image: linear-gradient(rgb(89, 87, 87), rgb(89, 87, 87));
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 100% 1px;
    transition: background-size 0.3s;
}
.link02.ty02 {
    background-image: linear-gradient(#fff, #fff);
}
a:hover .link02,.link02:hover {
    background-position: bottom left;
    background-size: 0% 1px;
}
.link02 span{
    transition: filter 0.5s;
}
/*.link02:not(.blank,.pdf) span {
padding-right: 30px;
position: relative;
}

.link02:not(.blank,.pdf) span::before,
.link02:not(.blank,.pdf) span:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 1px;
  border-radius: 9999px;
  background-color:var(--text-color);
  transform-origin: calc(100% - 0px) 50%;
}

.link02:not(.blank,.pdf) span::before {
  transform: rotate(45deg);
}
.link02:not(.blank,.pdf) span::after {
  transform: rotate(-45deg);
}*/
.link02.blank,.link02.pdf{
  padding-right: 15px;
  position: relative;
}
.link02.blank::after,.link02.pdf::after{
	content: "";
	display: block;
	background-size: contain;
	width: 10px;
	height: 10px;
	position: absolute;
	top: 50%;
  transform: var(--transform-50-Y);
	right: 3px;
}
.link02.blank::after{
  background: url(../img/common/ic_blank-black.svg)no-repeat top left;
  background-size: contain;
}
.link02.pdf::after{
  background: url(../img/common/ic_pdf-black.svg)no-repeat top left;
  background-size: contain;
}
.link03{
  border: #D2CEC7 1px solid;
  padding: 15px 30px;
  text-align: center;
 transition: all 0.5s ease;
  border-radius: 15px;

}
.link03:hover{
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(81, 67, 63, 0.3);
  display: inline-block;
}
a:hover .link02 span,.link02 span:hover {
    filter: blur(1px);
}
.dl01 {
  display: flex;
  flex-flow: wrap;
  justify-content: flex-start;
  width: 100%;
}
.dl01 > dt {
  width: 15%;
  padding-right: 5px;
}
.dl01 > dt:after {
  content: "：";
}
.dl01 > dd {
  width: 85%;
  margin-left: 0px;
  margin-bottom: 20px;
}
.dl02 > dt{
  width: 100%;
  border-bottom: solid 1px var(--primary);
  padding:0 15px 5px;
  margin-bottom: var(--margin-b-30);
}
.dl02 > dd{
  margin-bottom: var(--margin-b-30); 
}
.ul01 {
    margin-left: 20px;
}
.ul01 > li {
    margin-bottom: 0.5em;
    position: relative;
}
.ul01 > li::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 1px;
    top: 13px;
    left: -17px;
    background:#BB8D64;
}
.ul_notice {
    margin-left: 20px;
}
.ul_notice > li {
    margin-bottom: 0.5em;
    position: relative;
}
.ul_notice > li::before {
    content: "※";
    position: absolute;
    width: 25px;
    height: 23px;
    left: -17px;
}
.ol01 {
  padding-left: 1rem;
}
.ol01 > li{
  list-style-type: decimal;
  margin-bottom: .75em;
}
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}
td,th {
  vertical-align: middle;
  padding: 0;
  font-weight: normal;
}
.table01 {
    width: 100%;
    line-height: 1.8;
    border: 1px solid var(--primary);
  } 
  .table01 tr {
    border-bottom: 1px solid var(--primary);
    background-color: rgb(255, 255, 255,.25);
  }
  .table01 th {
    min-width: 5.8em;
    text-align: left;
  }
  .table01 td{
    font-weight: 600;
  }
  .table01 th, .table01 td {
    border-right: 1px solid var(--primary);
    padding: 2%;
  }
  .table02 {
    width: 100%;
    line-height: 1.8;
    border-top: 1px solid var(--text-color);
  }
  .table02 tr {
    border-bottom: 1px solid var(--text-color);
  }
  .table02 th {
    width: 9em;
  }
  .table02 th, .table02 td {
    vertical-align: top;
    padding: 1em;
  }
.div_topics01{
  padding: 15px;
  background:rgba(255,255,255,.3);
  border: solid 1px var(--primary);
  margin:1px 1px var(--margin-b-30) 1px;
  position: relative;
}

.div_topics01 .headline{
  font-style: var(--Klee-font-family);
  font-size: var(--body-font-size-18);
  text-align: center;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: var(--margin-b-30);
}
.div_topics01 .headline::after{
  content: "";
  background: var(--primary);
  width: 80px;
  height: 1px;
  bottom: 0;
  left: 50%;
  position: absolute;
  transform: var(--transform-50-X);
}
.div_information{
  position: relative;
  padding: 2% 3% 2% 80px;
  background: #fff;
  margin: 30px auto;
  border-radius: 30px;

}
.div_information::after{
  content: "";
  background: url(../img/common/ic_information.svg)no-repeat center left;
  background-size: contain;
  width: 40px;
  height: 40px;
  left: 20px;
  top: 50%;
  position: absolute;
  transform: var(--transform-50-Y);
}
.div_information p{
  font-weight: bold;
}
/**********コンテンツパーツ************/
/****************お知らせ共通パーツ********************/
.ul_category{
    display: flex;
    justify-content: stretch;
    margin: 30px auto;
  }
  .ul_category li{
    margin-right: 15px;
  }
  .a_category{
     background-color: #E7D3C1;
    border-radius: 30px;
    font-size: 12px;
    border: solid 1px #fff;
    padding:3px 10px;
    text-align: center;
    font-weight: 500;
  }
  /* 未読バッジ */
.badge-unread {
  background: #e5e4e3;
  color: #8c7a5d;
  padding: 2px 6px 2px 20px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: bold;
  position: relative;
  display: none;
}
.badge-unread::before{
  content: "";
  background: url(../img/common/ic_check.svg)no-repeat center;
  background-size: contain;
  width: 12px;
  height: 12px;
  position: absolute;
  left: 3px;
  top: 5px;

}
.news-item.is-read {
  opacity: 0.6; 
}
.news-item.is-read .badge-unread {
  display: block; 
}
/****************お知らせ共通パーツ********************/
.text_logo{
  width: 100%;
  display: inline-block;
  font-size: var(--body-font-size-12);
  font-weight: var(--font-weight-medium);
  margin-bottom: 0px;
}
.footer .text_logo,.header-menu-overlay .text_logo{
  text-align: center;
}
.header-menu-overlay .text_logo{
  color: #fff;
}
@media (min-width: 768px) {
.header-inner .text_logo{
  width: 200px;
    text-align: center;
    font-size: var(--body-font-size-12);
  }
}@media (max-width: 767px) {
.header-inner .text_logo{
    position: absolute;
    bottom: 5px;
    left: 5.33333vw;
    font-size: var(--body-font-size-10);
}
}
.loading {
  position: fixed;
  inset: 0;
  z-index: 1000000;
  height: 100svh;
background: linear-gradient(180deg, #DFDBD3 0%, #AA9E8A 100%);
}

.loading__inner {
  width: 100%;
  height: inherit;
  display: grid;
  place-content: center;
  row-gap: 10px;
}
.loading__text{

}
.loading__text {
  font-size: clamp(1.75rem, 1.568rem + 0.91vw, 2.25rem);
  letter-spacing: 0.2em;
  line-height: 1;
  text-align: center;
  color: #fff;
  font-family:var(--aboreto-font-family); 
  font-weight: 400;
}
.loading__text .large{
    font-size:clamp(2.5rem, 2.136rem + 1.82vw, 3.5rem);
    display: block;
}
.loading__logo {
  margin: 0 auto;
  width: min(250px, 100%);
}

@media (max-width: 767px) {
.about-clinic .about-clinic__text .inner p{
  margin-top: 30px;
}
}
.footer-info-wrap{
  background:linear-gradient(rgba(0, 0, 0, 0.8), rgba(58, 50, 45, 0.8)),url(../img/common/back_timetable.webp) ;
  background-size: cover;
  width: 100%;
}
.footer-info-wrap > .inner{
max-width: 1600px;
padding: 10% 0;
margin: auto;
display: flex;
flex-wrap: wrap;
justify-content: stretch;
}
.footer-info-wrap .footer-news,.footer-info-wrap .footer-timetable{
padding: 0 2%;
}
.footer-info-wrap :is(.footer-news,.footer-timetable) h2{
  font-family: var(--aboreto-font-family);
  margin-bottom: 15px;
  line-height: 1em;
}
@media (min-width: 1200px) {
.footer-info-wrap .footer-news,.footer-info-wrap .footer-timetable{
width: 50%;
}

.footer-info-wrap :is(.footer-news,.footer-timetable) h2{

  font-size: 40px;
}
.footer-info-wrap .footer-news{
padding-right: 30px;
}
.footer-info-wrap .footer-timetable{
  padding-left: 30px;
}
.footer-info-wrap .footer-news dl{
margin-bottom: 30px;
}
}
@media (max-width: 1200px){
  .footer-info-wrap .footer-news,.footer-info-wrap .footer-timetable{
    width: 100%;
  }
  .footer-info-wrap .footer-news{
    margin-bottom: 45px;
  }
  .footer-info-wrap :is(.footer-news,.footer-timetable) h2{
    font-size: 30px;
  }
}
@media (max-width: 485px) {
.footer-info-wrap :is(.footer-news,.footer-timetable) h2{
  /*white-space: nowrap;*/
  font-size: clamp(8vw, 5vw, 3rem);
}
}
.footer-info-wrap .footer-news dl{
display: flex;
flex-wrap: wrap;
justify-content: stretch;
align-items: flex-end;
color: #fff;
margin-bottom: 15px;
}
.footer-info-wrap .footer-news :is(dl dt,dl dd){
  border-bottom: solid 1px rgb(229, 228, 227);
  padding: 15px;
}
.footer-info-wrap .footer-news dl dt{
width: 100px;
font-size: 12px;
}
.footer-info-wrap .footer-news dl dd{
  width: calc(100% - 100px);
}

.footer-info-wrap .footer-timetable .dl01{
  color: #fff;
}
@scope(.footer-info-wrap){
.news-list{
  margin-bottom: 30px;
}
.news-item {
  padding:20px 20px;
  margin-bottom: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: solid 1px rgb(229, 228, 227);
  color:  rgb(229, 228, 227);
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.news-item:hover {
  transform: translateX(5px);
  background: rgb(231, 230, 230 .2);
}.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 0.85rem;
}
.news-item .news-title{
  font-weight: 400;
}
.news-label {
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: bold;
}
.a_category{
  color:var(--text-color);
}

}
@scope (.footer-timetable) {
.table-time {
 width: 100%;
margin-bottom: 15px;
 text-align: center;
 border-collapse: collapse;
 border-spacing: 0;
}
.table-time th,.table-time td{
  padding: 15px;
}
.table-time th {
 border-bottom: solid 4px rgb(229, 228, 227);
 color: #fff;
}
.table-time td {
 color: #fff;
 border-bottom: solid 1px rgb(229, 228, 227);
}
  
.div_clock h3{
color: #fff;
text-align: center;
}
.clock-container {
 background: rgba(17,13,23, .5);
 backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
 border: 1px solid rgba(255, 255, 255, 0.08);
 border-radius: 24px;
 padding: 40px 60px;
 width: 100%;
 text-align: center;
 box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }
@media (min-width: 768px) {
.inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.clock-container{
width: 350px;
margin-right: 30px;
}
.div_timedate{
width: calc((100% - 350px) - 30px);
}

}
@media (max-width: 767px) {
  .clock-container :is(.div_clock,.div_timedate){
width: 100%;
}
.clock-container .div_clock{
  margin-bottom: 30px;
}
.div_timedate{
  margin-top: 45px;
}
}

        /* 休み・時間外（closed-mode）のときのスタイル */
 .clock-container.closed-mode .digital-display{
opacity: 0.45;                             /* 全体を薄くする（お好みで 0.5 などに微調整してください） */
filter: grayscale(0.2) contrast(0.95);    /* わずかに色味を落として落ち着かせる効果 */
 box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* シャドウも少し控えめに */
 }
      
 /* --- デジタル時計部分 --- */
        .digital-display {
            margin-bottom: 20px;
        }

        /* 現在の時刻 */
        .time-main {
            font-family: var(--aboreto-font-family);
            font-size: 4.5rem;
            
            line-height: 1;
            letter-spacing: -0.02em;
            color:#f0f6fc;
            text-shadow: 0 0 20px rgba(240, 246, 252, 0.15);
        }

        /* カレンダー（日付・曜日） */
        .date-sub {
            font-size: 1.1rem;
            color:#8b949e;
            margin-top: 8px;
            letter-spacing: 0.05em;
        }

        /* --- ステータス表示（診察中 / 休診） --- */
        .status-wrapper {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 15px 0;
        }

        .status-badge {
            font-size: 1.1rem;
            padding: 8px 24px;
            border-radius: 50px;
            letter-spacing: 0.1em;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        /* 動的な状態変化のCSSクラス */
        .status-badge.open {
            background-color: rgba(63, 185, 80, 0.15);
            color:var(--color-open);
            border: 1px solid rgba(63, 185, 80, 0.3);
            box-shadow: 0 0 15px rgba(63, 185, 80, 0.1);
        }

        .status-badge.close {
            background-color: rgba(248, 81, 73, 0.15);
            color: var(--color-close);
            border: 1px solid rgba(248, 81, 73, 0.3);
            box-shadow: 0 0 15px rgba(248, 81, 73, 0.1);
        }

        /* --- アナウンステキスト --- */
        .notice-box {
            margin-top: 15px;
            padding: 16px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.04);
        }

        .notice-text {
            font-size: 1.05rem;
            color: var(--text-primary);
            letter-spacing: 0.02em;
        }
      .dl_timelist{
        border-bottom: solid 1px #fff;
        margin-bottom:30px ;
      }
        .dl_timelist,.dl01{
        text-align: left;
      }
        .dl_timelist > dt{
        background: rgba(255,255,255,.3);
        color: #fff;

        padding: 5px 15px;
        margin-bottom: 15px;
      }  
      .dl01 dt{
        width: 90px;
      }
      .dl01 dd{
        width: calc(100% - 90px);      }
      }


/* ボタンのスタイル */
.header-menu-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  z-index: 110;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  gap: 8px;
  /*
  border:solid 1px #fff;
  border-radius: 50%;
  padding: 10px 10px 13px;
  box-shadow: 0 0px 10px rgba(231, 211, 193, .8);
  width: 63px;
  height: 63px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  background:rgba(255,255,255,.5);*/
}
.bar {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #2d2c2c;
   mix-blend-mode: difference;
}
/*.header-menu-btn:after{
  content: "menu";
  font-size: 10px;
  position: absolute;
  width:80px;
  height: 10px;
  left: 50%;
  bottom: 5px;
  transform: var(--transform-50-X);
  display: block;
  font-family: var(--aboreto-font-family);
}*?
/* メニュー全体のスタイル（初期状態は非表示） */
.header-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: var(--con-back-color);
  transform: translateY(-100%);
  overflow-y: auto;
}
.header-menu-container{
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 95%;
  justify-content: center;

}
.header_logo{
  width: 100%;
}
.header_logo img{
  width: 180px;
  margin:30px auto;
  display: block;
}
.header-menu-links {
  list-style: none;
  text-align: center;
  padding: 0;
}

.header-nav-list li {
  margin: 25px 0 30px;
  overflow: hidden; 
}

.header-nav-list:not(.info) li.l01{
padding: 0px 10px 5px;
border-bottom: 1px solid #f0f6fc;
box-shadow: 0px 4px 3px -3px rgba(0, 0, 0, .25);
}
.header-nav-list:not(.info) li:not(.l01){
  padding:0px 15px 0;
}
.nav-link {
  color: #fff;
}
.nav-link :is(a,a:after,a:before){
  transition: filter 0.5s;
}
.nav-link :is(a,a:after,a:before):hover{
  filter: blur(1px);
}
@media (min-width: 768px) {
  .header-nav-list:not(.info){
  width:calc((100% / 3) - 45px);
  }
  .header-nav-list:not(.info):not(:nth-of-type(3)){
    margin-right: 45px;
  }
}
@media (max-width: 767px){
  .header-menu-overlay{
    padding-bottom: 80px;
  }
  .header-menu-container{
    justify-content: left;
  }
  .header-nav-list:not(.info){
  width:calc((100% / 2) - 15px);
  }
  .header-nav-list:not(.info):nth-of-type(odd){
    margin-right: 15px;
  }
}
.header-nav-list.info{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 1%;
  max-width: 500px;
  width: 100%;
}
@scope(.header-nav-list.info){
li{
  width: 48%;
}
:is(.reserve,.tel,.insta) a{
  position: relative;
  max-width: 280px;
  width: 100%;
  border-radius: 8px;
  text-align: center;
padding:20px 30px 20px;
display: block;
background: rgba(17,13,23, .5);
 backdrop-filter: blur(12px);
}
:is(.reserve,.tel,.insta) a::after{
   content: "";
   background-size: contain;
   position: absolute;
   left: 10px;
   top: 50%;
   transform: var(--transform-50-Y);
   width: 25px;
   height: 15px;

}
.reserve a:after{
  background: url(../img/common/header_calender_icon-white.svg) no-repeat center;
  background-size: contain;
}
.tel a:after{
  background: url(../img/common/tel_icon-white.svg) no-repeat center;
  background-size: contain;
}
.insta a:after{
  background: url(../img/common/ic_Instagram-white.svg) no-repeat center;
  background-size: contain;
}
}