@charset "UTF-8";





:root {
/* Primary カラーパレット（Tree Poppy） */
  --primary-50: #fffcea;
  --primary-100: #fff4c5;
  --primary-200: #ffe885;
  --primary-300: #ffd546;
  --primary-400: #ffc11b;
  --primary-500: #f29600;
  --primary-600: #e27600;
  --primary-700: #bb5002;
  --primary-800: #983e08;
  --primary-900: #7c330b;
  --primary-950: #481800;

    /* Accent カラーパレット */
  --accent-50: #f8fde8;
  --accent-100: #eefacd;
  --accent-200: #def4a2;
  --accent-300: #c5eb6b;
  --accent-400: #acdd3e;
  --accent-500: #8dc21f;
  --accent-600: #6d9b15;
  --accent-700: #537714;
  --accent-800: #435e16;
  --accent-900: #3a5017;
  --accent-950: #1d2c07;
  
  
  
  /* メインブランドカラー */
  --color-brand-primary: #f29600;     /* メイン */
  --color-brand-accent: #8dc21f;      /* アクセント */
  
  /* プライマリカラーのバリエーション */
  --color-primary-light: #ffed65;  
  --color-primary-middle:#3b7500; 
  --color-primary-dark: #3b3016;
  
  /* アクセントカラーのバリエーション */
  --color-accent-light:#ffe100;
  --color-accent-middle: #e27600;
  --color-accent-dark: #163b23; /* #1b2e1f */
  

  /* 背景色として使用できるバリエーション */
  --color-bg-primary-pale: #fef7e9; 
  --color-bg-accent-pale: #fff5e6;   
  --color-bg-tertiary-pale: #F9F5F0;
  
  /* 罫線の色 */
  --color-ruled-line: #d6d6d6;
}
/* var() で書けば色変えたら反映されるので使いやすいかも。  */








.txt_primary{
  color:var(--primary-500);
}
.txt_accent{
  color:var(--color-brand-accent);
}










/* ---------------------------------------------

  ローディング画面   

--------------------------------------------- */
/* ローディング画面 */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.8s ease-in-out;
}
.loading-screen::before {
  content: '';
  position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    border: 8px solid var(--primary-300);
    border-radius: 32px;
  pointer-events: none;
}
@media (max-width: 768px) {
.loading-screen::before {
    bottom: 12%;
  }
}

.loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}
.logo {
  z-index: 1;
  animation: logoBounce 2s ease-in-out infinite;
}
.logo img {
  width: auto;
  height: auto;
}
@media (max-width: 768px) {
.logo img {
  max-width: 200px;
  width: auto;
  height: auto;
}
}


@keyframes logoBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-8px);
  }
}
/* ---------------------------------------------

  ローディング画面   

--------------------------------------------- */







/* ---------------------------------------------

  TOP　弧の右からぴょこぴょこアニメ   

--------------------------------------------- */

.curved-section {
  position: relative;
  width: 100%;
  /* 高さを増やしてキャラが途切れないように */
  /* overflow: hidden; */
}

/* SVGの下部分を隠すマスク */
.svg-mask {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: #fffcea;
  z-index: 3;
  clip-path: polygon(0 100%, 50% 0%, 100% 100%);
}

.curved-svg {
  width: 100%;
  /* height: 100px; */
  position: relative;
  z-index: 2;
      margin-bottom: -1px;
}

.background-character {
  position: absolute;
      width: 140px;
    height: 140px;
    bottom: 100px;
    left: 20%; /* 真ん中(50%)より右に配置 */
  transform: translateX(-50%) translateY(120px); /* 初期位置で完全に隠す */
  z-index: 2;
  animation: popUpAndBounce 8s ease-in-out infinite;
  z-index: -1;
}
@media (max-width: 768px) {
.background-character {
    width: 80px;
    height: 80px;
    bottom: 50px;
    left: 18%;
    transform: translateX(-50%) translateY(120px);
  }
}

@keyframes popUpAndBounce {
            /* 0-1秒: SVGの下に完全に隠れている */
            0%, 12.5% {
                transform: translateX(-50%) translateY(120px);
                opacity: 1;
            }
            
            /* 1-1.5秒: 半分だけ飛び出して見える */
            12.5%, 18.75% {
                transform: translateX(-50%) translateY(60px); /* キャラの半分が見える位置（下に移動） */
                opacity: 1;
            }
            
            /* 1.5-6.5秒: 5秒間バウンス（半分見える状態で） */
            18.75% {
                transform: translateX(-50%) translateY(70px);
            }
            21.875% {
                transform: translateX(-50%) translateY(60px);
            }
            25% {
                transform: translateX(-50%) translateY(70px);
            }
            28.125% {
                transform: translateX(-50%) translateY(55px);
            }
            31.25% {
                transform: translateX(-50%) translateY(70px);
            }
            34.375% {
                transform: translateX(-50%) translateY(60px);
            }
            37.5% {
                transform: translateX(-50%) translateY(70px);
            }
            40.625% {
                transform: translateX(-50%) translateY(62px);
            }
            43.75% {
                transform: translateX(-50%) translateY(70px);
            }
            46.875% {
                transform: translateX(-50%) translateY(65px);
            }
            50% {
                transform: translateX(-50%) translateY(70px);
            }
            53.125% {
                transform: translateX(-50%) translateY(67px);
            }
            56.25% {
                transform: translateX(-50%) translateY(70px);
            }
            59.375% {
                transform: translateX(-50%) translateY(68px);
            }
            62.5% {
                transform: translateX(-50%) translateY(70px);
            }
            65.625% {
                transform: translateX(-50%) translateY(69px);
            }
            68.75% {
                transform: translateX(-50%) translateY(70px);
            }
            71.875% {
                transform: translateX(-50%) translateY(70px);
            }
            
            /* 6.5-8秒: SVGの下に戻って隠れる */
            81.25% {
                transform: translateX(-50%) translateY(60px);
                opacity: 1;
            }
            100% {
                transform: translateX(-50%) translateY(120px);
                opacity: 1;
            }
        }
/* ---------------------------------------------

  TOP　弧の右からぴょこぴょこアニメ   

--------------------------------------------- */























/* ここからフェードインアニメーション */
.fade_x .inview {
  animation-name: fade-in;
  animation-duration: .5s;
  animation-timing-function: ease-in-out;
  animation-delay: .4s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@keyframes fade-in {
  0% {
    transform: translateY(40px);
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}



/* ---------------------------------------------

  共通パーツ   

--------------------------------------------- */
.inner {
    width: calc(100% - 160px);
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 1100px) {
  .inner {
    max-width: 90%;
    width: calc(100% - 160px);
    }
  #facilities_inner {
	width: auto;
	}
}

@media (max-width: 768px) {
  .inner,#facilities_inner  {
    width: calc(100% - 40px);
    }
}


/* ---------------------------------------------

  共通パーツ   

--------------------------------------------- */

.marker_y{
text-decoration: underline; /* 下線 */
  text-decoration-thickness: 0.5em; /* 線の太さ */
  text-decoration-color: rgba(255, 228, 0, 0.4); /* 線の色 */
  text-underline-offset: -0.2em; /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}

.t_center{
  text-align: center;
}
.t_left{
  text-align: left;
}

.t_right{
  text-align: right;
}

.outlink {
  color: #035CB8  !important;
  border-bottom: 1px solid #035CB8;
}
.outlink:hover{
  border-bottom:1px solid transparent;
}

.bunken-list{
    display: grid;
    gap: 1.2rem 0.6rem;
    line-height: 1.5;
    font-family: 'Zen Kaku Gothic New';
    font-weight: 500;
}

.txt_indent{
    text-indent: 1.5rem;
}

.indent-list {
  width: 100%;
  padding-left: 1em;
  text-indent: -1em;
}

@media screen and (max-width: 768px) {
  .indent-list {
    width: 100%;
    padding-left: 1.2em;
    text-indent: -1.3em;
  }
}

.space-10 {
    margin-right: 3.8px;
}

.line_bt {
    border-bottom: solid 3px #7edee2;
    padding-bottom: 15px;
    margin-bottom: 24px;
    line-height: 1.8;
}

.line_top {
  border-top: solid 1px #c13d60;
  margin-bottom: 2rem;
  margin-bottom: 2rem;
  padding-top: 1.6rem;
}

.under_dash{
  border-bottom: dashed 2px #F8B500;
  padding-bottom: 4px;
}


.bnr_2p {
display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin: 0 auto;
    padding: 60px 0 80px;
    grid-gap: 2em;
    justify-content: center;
    grid-gap: 2em 8rem;
    justify-content: center;
    width: 80%;
    max-width: 1000px;
}
@media screen and (max-width: 768px) {
  .bnr_2p {
    padding: 20px 0 40px;
    grid-gap: 1em;
    justify-content: center;
    width: 90%;
  }
}

.pdlf12{
      padding-left: 1.2em;
}
















/* ---------------------------------------------

   swiper   

--------------------------------------------- */


/* slider */

.swiper {
  height: calc(100vh - 160px);
    width: 95%;
  border:solid 3px var(--primary-400);
      border: solid 6px var(--primary-400);
    border-radius: 2rem;
}

/*sp*/
@media all and (max-width:768px) {
  .swiper {
border-radius: 15px;
        width: 92%;
        margin-bottom: 10px;
        background-size: cover;
        height: calc(100vh - 17em);
        max-height: 540px;
  }
}


.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background-position: center -11px;
      background-color:rgba(0, 0, 0, 0.2);
}


.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
    opacity: 1;
  object-position:top;
  
}
@media screen and (max-width:750px) {
	.swiper-slide_op_exterior img {
		object-position: 80%;
	}
	.swiper-slide_op_CT img {
		object-position: 66%;
	}
}
  
.swiper-slide-super img {
  object-position: center center;
}

.swiper_back {
position: relative;
    margin-top: 11rem;
}

.swiper_back::before{
  content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    height: 100%;
    width: 100%;
    background: url("../images/bg/catch__bg.svg") no-repeat right top / 100% auto;
}
@media all and (max-width:768px) {
.swiper_back::before{
  content: "";
  position: absolute;
  bottom: -3rem;
  z-index: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url("../images/bg/catch__bg_sp.svg") no-repeat right bottom / 100% auto;
}
}


  /*sp*/
@media all and (max-width:1024px) {
  .swiper_back {
        background-size: cover;
        margin-top:7rem;
        padding-bottom: 2rem;
        padding-bottom: 0rem;
  }
}

/* ---------------------------------------------

   swiper   

--------------------------------------------- */










/* ---------------------------------------------

   キャッチコピー   

--------------------------------------------- */

.catch_contents {
    position: absolute;
    z-index: 10;
    /* top: 70%; */
    bottom: 10rem;
}


@media all and (max-width:1024px) {
  .catch_contents {
    position: absolute;
    left: 0%;
    bottom: 8rem;
    z-index: 10;
  }
}

@media all and (max-width:768px) {
  .catch_contents {
        position: relative;
        bottom: 0rem;
        z-index: 0;
    }
  }




.catch_main_wrap{
  justify-self: center;
}


.catch_main_wrap{
  justify-self: center;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
}
@media all and (max-width:768px) {
  .catch_main_wrap{
justify-self: auto;
    display: flex;
    gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
}

.catch_main_txt {
  /* color: #fff; */
  font-size: 1.8rem;
  font-weight: 600;
    background-color: var(--primary-300);
    /* background-color: rgba(255, 213, 70, 0.9); */
    padding: 0.8rem 3rem 0.8rem 2rem;
    /* text-shadow: 1px 1px 10px rgba(113, 135, 164, 1); */
}


.catch_main_txt span {
  font-size: 2.8rem;
  /* padding: 2.6rem 0; */
}


@media all and (max-width:1024px) {
  .catch_main_txt{
  font-size: 1.6rem;
  border-top-right-radius: 0.6rem;
  border-bottom-right-radius: 0.6rem;
  }
    .catch_main_txt span {
        font-size: 2.4rem;
        line-height: normal;
    }
  }

@media all and (max-width:768px) {
  .catch_main_txt{
        font-size: 1.4rem;
        padding: 0 0 0 2rem;
        padding-right: 0;
        background-color: transparent;
  }
    .catch_main_txt span {
        font-size: 2.8rem;
        line-height: 1.8;
    }
  }


.catch_subcontents {
  position: absolute;
 bottom: 2rem;
  z-index: 10;
}

@media all and (max-width:1024px) {
.catch_subcontents {
    position: absolute;
    /* width: 95%; */
    z-index: 10;
   bottom: 1rem;
}
  }

.catch_sub_wrap {
    background-color: #fff;
    /* background-color: var(--accent-300); */
    padding: 0.6rem 2rem;
    padding-right: 2.4rem;
    width: 100%;
}




@media all and (max-width:1024px) {
  .catch_sub_wrap {
    padding: 0.4rem 1rem;
    padding-right: 2.4rem;
    /* border-top-right-radius: 0.4rem; */
    /* border-bottom-right-radius: 0.4rem; */
}
}

.catch_sub_txt {
  font-size: 2.4rem;
  font-weight: 600;
 color: var(--accent-800); 
}

@media all and (max-width:1024px) {
.catch_sub_txt{
  font-size: 1.6rem;
}
}



.catch__bg_sp{
  position: relative;
}

.catch__bg_sp{
  position: relative;
}


/* ---------------------------------------------

   キャッチコピー   

--------------------------------------------- */























/* ---------------------------------------------

    site map    

--------------------------------------------- */
.f_sitemap{
width: 100%;
}

@media all and (max-width:1024px) {
.f_sitemap {
    width: 100%;
}
}


.f_sitemap ul {
        display: grid;
        grid-template-columns: repeat(3, minmax(100px, 1fr));
        text-align: left;
        gap: 1rem 2rem;
}
@media all and (max-width:768px) {
  .f_sitemap ul {
        grid-template-columns: repeat(2, minmax(95px, 1fr));
}
}

@media all and (min-width:1025px) {
  .f_sitemap {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
  }

}


.sitemap_list{
  position: relative;
      border-bottom: 1px solid #e6e6e6;
}

.sitemap_list:hover{
  border-bottom: 1px solid #00aab8;
}

.sitemap_list a{
padding: 1rem 0;
transition: .3s;
    width: 100%;
    display: block;
  font-size: 15px;
  /*  border-bottom: 1px solid #f6d5da; */
  display: flex;
      justify-content: space-between;
      align-items: center;
}

.sitemap_list :after {
    content: "";
    display: inline-block;
    vertical-align: 1px;
    width: 6px;
    height: 6px;
    margin: 0px 16px 0px 0px;
    border-width: 0px 1px 1px 0px;
    border-style: solid;
    border-color: #00aab8;
    border-top-width: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.f_txt{
      font-size: 14px;
    padding-top: 1rem;
}

.sitemap_list a:hover,
.sitemap_list a:active{
opacity: .7;
      color: #00aab8;
    opacity: 1;
}

/*
.sitemap_list :before {
  content: "";
  display: inline-block;
  border: 2px solid #2ab7a9;
  border: 2px solid #f58daf;
  vertical-align: 1px;
  width: 7px;
  height: 7px;
  margin: 0 12px 0 0;
  border-left-width: 0;
  border-top-width: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
*/

/*sp*/
@media all and (max-width:768px) {


.sitemap_list a{
font-size: 1.4rem;
transition: .3s;
width: 100%;
text-align: left;

}
}

/* ---------------------------------------------

    site map    

--------------------------------------------- */








/* ---------------------------------------------

   btn_pagetop   

--------------------------------------------- */
.pagetop {
  background-color: var(--primary-300);
  border: solid 0px #d4f5ff;
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.pagetop:hover{
      background: var(--primary-400);
}

.pagetop__arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateY(20%) rotate(-45deg);
}


/*sp*/
@media all and (max-width:768px) {
.pagetop {
        background: var(--primary-300);
        height: 40px;
        width: 40px;
        position: fixed;
        right: 14px;
        bottom: 10px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: translateY(20%) rotate(-45deg);
}

}


.datetop__w{
display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
width: 100%;
    padding: 2rem 0 14rem;
}
@media (max-width: 768px) {
.datetop__w{
padding: 2rem 0 4rem;
}
}

.datetop{
    max-width: 680px;
    width: 100%;
margin: 0 auto 0;
}
.datetop a{
display: block;
}

/* ---------------------------------------------

   btn_pagetop   

--------------------------------------------- */





















/* ---------------------------------------------

  btn   

--------------------------------------------- */

.btn_01 {
 /* width: 20rem; */
      display: flex;
    justify-content: center;
}
/*sp*/
@media (max-width: 768px) {
  .btn_01 {
  width: 100%;
}
}

.subpage__w .btn_01 {
  margin-top: 2rem;
      justify-content: flex-start;
}


.btn_01 a {
    color: #fff;
    background-color: var(--primary-500);
    border: solid 2px var(--primary-500);
    box-shadow: rgba(113, 135, 164, 0.12) 0 0 5px 2px;
    border-radius: 50vh;
    align-self: center;
    display: flex;
    justify-content: space-between;
    gap: 3.6rem;
    padding: 1.2rem 6rem;
    padding-right: 2rem;
    font-weight: 600;
}

.btn_01 a:hover {
    color: var(--primary-950);
    border: solid 2px var(--primary-500);
    background-color: #fff;
    box-shadow: none;
}

.btn_01 a:hover .arrow_right{
filter: brightness(1) invert(0);
}

.btn_for_doctor {
	margin-top: 6rem;
}

.fever-outpatient-department .btn_01_orange {
	margin: 5rem auto 0;
	justify-self: flex-end;
	width: 28rem;
}
.fever-outpatient-department .btn_01_orange a {
  letter-spacing: unset;
  color: #fff;
  background-color: #f68804;
  border: solid 2px #f68804;
  border-radius: 50vh;
  align-self: center;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  justify-content: space-between;
  padding: 1rem 2.2rem;
}
.fever-outpatient-department .btn_01_orange a:hover {
  color: #3b2610;
  border: solid 2px  #f68804;
  background-color: #fef9ef;
}

.fever-outpatient-department .btn_01_orange a:hover .arrow_right{
filter: brightness(1) invert(0);
}



/*sp*/
@media (max-width: 768px) {
    .btn_01 {
        display: flex;
        justify-content: center;
    }

.btn_01 a {
        align-self: center;
        display: flex;
        /* padding: 1rem; */
        justify-content: center;
        gap: 4rem;
        /* justify-content: space-between; */
        padding: 1.2rem 4.8rem;
        padding-right: 1.6rem;
        font-size: 1.5rem;
        width: 100%;
        text-align: center;
}
	
 .btn_for_doctor {
	margin-top: 0.2rem;
}
	
}


.arrow_right{
  width: 2rem;
  position: relative;
  filter: brightness(0) invert(1);
}

.btn_01:hover.arrow_right {
    right: 1.8rem;
  
}


.btn_01:hover {
 /* transform: translateX(+5px);
  transition-duration: 0.3s, 2s; */
}


/*  ---------------------------------------  */


.btn_02 {
  width: 27rem;
}

.btn_02 a {
  display: flex;
  gap: 1.2rem;
  justify-content: space-between;
  align-self: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  padding-left: 2.4rem;
  border: solid 2px var(--primary-500);
  border-radius: 50vh;
  box-shadow: rgba(100, 100, 111, 0.2) 3px 5px 10px 0px;
  background-color: var(--primary-500);
  color: #fff;
}

/*sp*/
@media all and (max-width: 768px) {
  .btn_02 {
    width: 16rem;
  }
}

.btn_02 a:hover {
  box-shadow: none;
  background-color: var(--primary-600);
}

.btn_02:hover.arrow_right {
  right: 1.8rem;
}

.btn_02:hover {
  transform: translateX(5px);
  transition-duration: 0.3s, 2s;
}

.btn__side-triangle{
      position: relative;
    width: 1.6rem;
}


/*  ---------------------------------------  */


.btn_03 {
    border-radius: 50vh;
background-color: #7edee2;
    width: 28rem;
      margin-top: 2.8rem;
      background-color: #fff;
    border: solid 2px #7edee2;
    border-radius: 50vh;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 8px 20px -17px rgba(16,24,40,0.4);
  
  }

.btn_03 a {
  align-self: center;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  justify-content: space-between;
  padding: 1.2rem 2.4rem;
}

/*sp*/
@media all and (max-width:768px) {
.btn_03{
  width: 100%;
  margin-top: 1rem;
  }

.btn_03 a {
  padding: 1rem 2.4rem;
}
}

.btn_03:hover.arrow_right {
    right: 1.8rem;
}

.btn_03:hover {
  transform: translateX(+5px);
  transition-duration: 0.3s, 2s;
}


.bnr_download{
    text-align: center;
    width: 100%;
    font-family: 'Zen Kaku Gothic New';
    margin-top: 3.2rem;
    margin-bottom: 2.8rem;
}

.bnr_download a{
    color: #11323b;
    display: block;
    background-color: #effcfc;
    border: solid 1px #7edee2;
  font-weight: bold;
  padding: 16px 16px;
  border-radius: 50vh;
  font-size: 1.8rem;
  box-shadow: rgba(113,135,164,.12) 0px 0px 5px 2px;
}
/*sp*/
@media all and (max-width:768px) {
  .bnr_download{
  width: 100%;
    margin-top: 2rem;
        margin-bottom: 2rem;
  }
.bnr_download a{
  
  }
}
/* ---------------------------------------------

  btn   

--------------------------------------------- */

















/* ---------------------------------------------

  Nav   

--------------------------------------------- */

.nav_alt {
  background-color: #FBFEFF;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding: 1.6rem 0 2rem;
  /* margin-bottom: 60px; */
  z-index: 1;
}

@media screen and (max-width: 1024px) {
  .nav_alt{
  display: none;
}
}


  /*ナビゲーションを横並びに*/
.nav_list_02 {
  position: relative;
  list-style: none;
  display: flex;
}

.nav_alt .nav_item {
  width: 100%;
}

.header_logo_02 {
  position: absolute;
  top: 2.2rem;
  top: 3rem;
  display: flex;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .header_logo_02 {
    display: none;
  }
}











/* ---------------------------------------------

  title   

--------------------------------------------- */

.top_info_ttl .txt-center {
    text-align: center;
}
.ttl_01 {
  display: inline-block;
line-height: 1.6;
      display: grid;
    grid-auto-rows: max-content;
}


.ttl_01 .en {
  line-height: 1em;
  color: var(--primary-500);
  font-weight: 600;
  font-size: 2rem;
  font-family: "Montserrat", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, YakuHanJP_Narrow, 'Zen Kaku Gothic New', sans-serif;
}

@media all and (max-width:768px) {
.ttl_01 .en {
        font-size: 1.5rem;
}
}


.ttl_01 .jp {font-size: 4rem;letter-spacing: 0.1em;font-weight: 600;}

@media all and (max-width:768px) {
  .ttl_01 .jp {
  font-size: 2.8rem;
}
}




.about .ttl_01 .en {
  font-size: 3.2rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}
/*sp*/
@media all and (max-width:768px) {
  .about .ttl_01 .en {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

/*
.head_subttl h3 {
  color: #1D1D1F;
  color: #f58daf;
  font-size: 2.8rem;
  text-align: center;
  letter-spacing: .4rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .head_subttl h3 {
    font-size: 2rem;
    text-align: center;
    letter-spacing: .2rem;
    font-weight: 700;
  }
}
*/

.head_subttl h2 {
  font-size: 3.6rem;
  position: relative;
  padding: 1.5rem;
  text-align: center;
      font-weight: 500;
  padding: 0.8rem 1.5rem 2rem;
}

.head_subttl h2:before {
    position: absolute;
    bottom: 0px;
    content: '';
    border-radius: 3px;
    background: var(--primary-500);
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
}



@media (max-width: 768px) {
  .head_subttl h2 {
    font-size: 2.8rem;
        letter-spacing: 0.1rem;
        font-weight: 500;
padding: 0 0 1rem 0;
    padding: 0.4rem 0 1.2rem 0;
        margin-bottom: 1rem;
  }
}

.info_icon-area{
    margin: 0 auto;
    background-color: #fff;
    /* border: solid 6px #42c7ce; */
    border: solid 4px #7edee2;
    border-radius: 50vh;
    padding: 1rem;
    /* background-color: #7edee2; */
    border-radius: 1.5rem;
    width: 80px;
      border: solid 3px #00aab8;
}



.ttl_mark{
  position: relative;
  z-index: 1;
}

.ttl_mark ::before {
  position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    margin: auto;
    height: 60px;
    width: 100px;
  background: url(../images/silhouette.svg);
  content: "";
  z-index: -1;
  background-size: cover;
}

@media (max-width: 768px) {
  .ttl_mark ::before {
    top: 0;
        height: 40px;
        width: 64px;
  }
}


.ttl_mark_2{
  position: relative;
  z-index: 1;
}

.ttl_mark_2 ::before {
  position: absolute;
  top: 5px;
  left: 0px;
  height: 40px;
  width: 45px;
  background: url(../images/silhouette.svg);
  content: "";
  z-index: -1;
  background-size: cover;
}

@media (max-width: 768px) {
  .ttl_mark_2 ::before {
    top: 0;
    height: 36px;
    width: 43px;
  }
}


.ttl_mark_3{
  position: relative;
  z-index: 1;
}

.ttl_mark_3 ::before {
  position: absolute;
top: -32px;
    left: 0;
    right: 0;
    margin: auto;
    height: 90px;
    width: 120px;
  background: url("../images/silhouette_white.svg");
  content: "";
  z-index: -1;
  background-size: cover;
}

@media (max-width: 768px) {
  .ttl_mark_3 ::before {
top: -12px;
        height: 52px;
        width: 72px;
  }
}


.txt_ttl h3 {
font-size: 2.2rem;
}



@media (max-width: 768px) {
  .txt_ttl h3 {
    font-size: 2rem;
    letter-spacing: .2rem;
    font-weight: 500;
  }
}

.txt_ttl h2 {
  font-size: 2.8rem;
  position: relative;
  padding: 0rem 0 1.6rem;
  border-bottom: 2px solid #ededed;
  /* line-height: 1.8; */
  /* padding-bottom: 8px; */
  margin-bottom: 20px;
  font-weight: 700;
}

.txt_ttl h2:before {
  position: absolute;
  bottom: -2px;
  left: 0;
    width: 28%;
    height: 2px;
    content: '';
    background: var(--primary-500);
}


@media (max-width: 768px) {
  .txt_ttl h2 {
    font-size: 2rem;
    letter-spacing: .1rem;
    padding-bottom: 8px;
    margin-bottom: 32px;
  }
}


.txt_ttl_b h2 {
  font-size: 2rem;
  position: relative;
  font-weight: 600;
  margin-bottom: 20px;
  background-color: var(--primary-50);
  padding: 0.4rem 0;
  padding-left: 2rem;
  border-radius: 0.6rem;
}

.txt_ttl_b h2:before {
  position: absolute;
  bottom: 15px;
  left: 16px;
  left: 0;
  width: 3px;
  height: 80%;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  border-radius: 2rem;
  background: var(--primary-500);
  /* background-color: #00aab8;
  background-color: #00C6CF; */
}


@media (max-width: 768px) {
  .txt_ttl_b h2 {
    /* font-size: 2rem; */
    font-size: 1.6rem;
    letter-spacing: .2rem;
    padding-bottom: 6px;
    margin-bottom: 16px;
    padding-left: 2rem;
    padding-top: 6px;
  }
}



.txt_ttl_w h2 {
  font-size: 1.8rem;
  position: relative;
  background-color: #fff;
  font-weight: 600;
  margin-bottom: 24px;
  padding: 0.4rem 0;
  padding-left: 2rem;
  border-radius: 0.6rem;
}

.txt_ttl_w h2:before {
  content: '';
  /* background-color: #00aab8;
  background-color: #00C6CF; */
  position: absolute;
  bottom: 15px;
  left: 16px;
  left: 0;
  width: 3px;
  height: 80%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 2rem;
  background: var(--primary-500);
}


@media (max-width: 768px) {
  .txt_ttl_w h2 {
    font-size: 2rem;
    font-size: 1.6rem;
    letter-spacing: .2rem;
    padding-bottom: 6px;
    margin-bottom: 16px;
    padding-left: 2rem;
    padding-top: 6px;
  }
	.txt_ttl_w {}
}

/*
  .txt_ttl_w #fever-outpatient-department {
	scroll-margin-top: 0;
  }
*/

.txt_ttl h4 {
font-size: 22px;
padding: 6px 18px;
      font-size: 20px;
    padding: 4px 18px;
    border-left: solid 4px #7edee2;
    margin-bottom: 1.26em;
    margin-bottom: 2rem;
    line-height: 1.25;
    font-weight: 500;
}

@media (max-width: 768px) {
  .txt_ttl h4 {
    font-size: 1.8rem;
        padding: 4px 16px;
        margin-bottom: 1.2rem;
  }
}







.heading__main h2 {
  font-size: 3.6rem;
  position: relative;
  font-weight: 700;
  margin-bottom: 5.6rem;
}


@media (max-width: 768px) {
  .heading__main h2 {
    font-size: 2.8rem;
    margin-bottom: 3.2rem;
  }
}

.heading__main h2::first-letter{
color: var(--primary-600);
}




.heading__sub h3 {
  font-size: 2.8rem;
  position: relative;
  margin-bottom: 4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.heading__sub h3::after {
  /* position: absolute; */
      content: "";
height: 3px;
    background-color: var(--primary-400);
  flex-grow: 1;
      background: linear-gradient(137deg, rgba(242, 150, 0, 1) 28%, rgba(237, 237, 237, 1) 28%);
}


@media (max-width: 768px) {
  .heading__sub h3 {
    font-size: 2.1rem;
    letter-spacing: .1rem;
    margin-bottom: 20px;
    font-weight: 700;
    gap: 1rem;
  }
}



.heading__minor h4{
position: relative;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 0px 0 0 14px;
    margin-bottom: 2rem;
  color: var(--primary-900);
}

@media (max-width: 768px) {
  .heading__minor h4{
          font-size: 1.8rem;
        margin-bottom: 1.6rem;
        padding: 0px 0 0 12px;
  }
}

.heading__minor h4::before {
    position: absolute;
    bottom: 15px;
    left: 16px;
    left: 0;
    width: 4px;
    height: 80%;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    border-radius: 2rem;
    background: var(--primary-500);
}
@media (max-width: 768px) {
.heading__minor h4::before {
    height: 60%;
    top: 53%;
}
}










.point .txt_ttl_w h4 {
font-size: 22px;
padding: 6px 18px;
      font-size: 20px;
    border-left: solid 4px #7edee2;
    margin-bottom: 1.26em;
    margin-bottom: 2rem;
    line-height: 1.25;
    font-weight: 500;
  background-color: #fff;
      padding: 1.6rem 2rem 1.6rem;
  border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
}

@media (max-width: 768px) {
  .point .txt_ttl_w h4 {
    font-size: 1.6rem;
        padding: 8px 16px;
        margin-bottom: 1.2rem;
        line-height: 1.5;
  }
}

.point span {
   color: #00aab8;
}

@media (max-width: 768px) {
  .point span {
  }
}

.point_wrap{
  display: grid;
  gap:4rem;
}
@media (max-width: 768px) {
.point_wrap{
  gap:2rem;
}
}



/* ---------------------------------------------

  title   

--------------------------------------------- */








/* ---------------------------------------------

   News   

--------------------------------------------- */

.news {padding-bottom: 20rem;padding-top: 8rem;}

/*sp*/
@media all and (max-width:768px) {
  .news {
            padding-top: 6rem;
            padding-bottom: 14rem;
  }
}

.news .inner{
  position: relative;
}

.news .inner::after {
    position: absolute;
    content: "";
    z-index: 1;
    bottom: -6rem;
    left: 0px;
    width: 100%;
    height: 1.6rem;
    background: url(../images/logo/icon_flower.png);
    background-size: contain;
}
@media (max-width: 768px) {
.news .inner::after {
        position: absolute;
        content: "";
        z-index: 1;
        width: 98%;
        height: 1rem;
        background-size: contain;
        bottom: -4.2rem;
    }
}



.news__wi {
    width: 100%;
    margin: 0 auto 0;
    display: grid;
    gap: 3.2rem;
    /* grid-template-columns: 26rem 1fr; */
    margin-bottom: 8rem;
}

/*sp*/
@media all and (max-width:768px) {
  .news__wi {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 5rem;
  }
}


.news__title{
  position: relative;
}

.news__title::before {
    position: absolute;
    content: "";
    z-index: 1;
    top: 70%;
    right: 0px;
    width: 78%;
    height: 1.6rem;
    background: url(../images/logo/icon_flower.png);
    background-size: contain;
}

/*sp*/
@media all and (max-width:1024px) {
  .news__title::before {
    position: absolute;
    content: "";
    z-index: 1;
top: 68%;
    right: 0px;
    width: 70%;
    height: 1.4rem;
    background-size: contain;
}
}

/*sp*/
@media all and (max-width:768px) {
  .news__title::before {
    position: absolute;
    content: "";
    z-index: 1;
  top: 65%;
    left: calc(100% - -1rem);
    width: 160%;
    height: 1rem;
    background-size: contain;
}
}




.news_kiji__w {
  border-top: 1px solid #e8e8e8;
  width: 100%;
  height: 40rem;
  margin: 0 auto;
}

.news_kiji__w iframe {
  width: 100%;
  height: 100%;
  padding: 2rem;
  overflow-y: scroll;
}




.topnews4 .scr {
  display: block;
  overflow: auto;
  max-height: 260px;
  width: 100%;
  padding: 0 1.6vw 0 1vw;
  /* border-top: 1px solid #9DBEE1;
 border-bottom: 1px solid #9DBEE1; */
}

.topnews4 {
 /* background-color: #fffefd; */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
  border-top: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
}
 
.topnews4 iframe {
  width: 100%;
  height: 240px;
}

/*sp*/
@media all and (max-width:768px) {
  .topnews4 {
width: 94%;
        margin: 0 auto;
  }

  .topnews4 iframe {
    width: 100%;
    height: 280px;
  }
}

.newskiji1 {
  border-bottom: 1px dotted #cac8bc;
  padding: 24px 0;
  border-bottom: 1px solid #eeeeee;
  display: flex;
  gap: 2rem;
  align-items: center;
}

/*sp*/
@media all and (max-width:768px) {
  .newskiji1 {
    margin: 0 auto;
    padding: 4vw 3vw 4vw 1rem;
    text-align: justify;
    display: grid;
        gap: 0;
  }
}




.news_headlines {
  width: 200px;
}
/*sp*/
@media all and (max-width:768px) {
.news_headlines {
  width: 100%;
}
}


.news_update {
  width: 100%;
  font-size: 1.2rem;
  margin-bottom: 2px;
  font-weight: bold;
}

/*sp*/
@media all and (max-width:768px) {
  .news_update {
    width: 100%;
    font-size: 1.2rem;
  }
}


.news_ttl {
  background-color: #E9FBFF;
  font-size: 1.5rem;
  margin-bottom: 10px;
  line-height: 1;
  padding: 8px 0;
  text-align: center;
  border-radius: 4px;
}

/*sp*/
@media all and (max-width:768px) {
  .news_ttl {
    margin-bottom: 6px;
  }
}


.news_txt {
  font-size: 1.4rem;
  font-weight: normal;
      line-height: 1.5;
}

/*sp*/
@media all and (max-width:768px) {
  .news_txt {
    font-size: 1.3rem;
        line-height: 1.5;
  }
}

/* --------------------------------- */





.link-banner__contents{
display: grid;
align-items: center;
gap: 2%;
  grid-template-columns: 20rem 20rem;
}

/*sp*/
@media all and (max-width:1024px) {
  .link-banner__contents{
  grid-template-columns: 1fr 1fr;
            width: 100%;
}
}



  .btn-blog a {
    position: relative;
    /* background: url("../images/logo/chara.png"); */
    background-size: cover;
    background-position: center right;
    background-color: var(--accent-50);
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    color: #fff;
    background-color: #298737;
    font-weight: 600;
    /* text-shadow: white 3px 0px 2px, white -3px 0px 2px, white 0px -3px 2px, white -3px 0px 2px, white 3px 3px 2px, white -3px 3px 2px, white 3px -3px 2px, white -3px -3px 2px, white 2px 3px 2px, white -2px 3px 2px, white 2px -3px 2px, white -2px -3px 2px, white 3px 2px 2px, white -3px 2px 2px, white 3px -2px 2px, white -3px -2px 2px, white 2px 2px 2px, white -2px 2px 2px, white 2px -2px 2px, white -2px -2px 2px; */
    text-align: left;
    /* border: solid 3px #298737; */
    padding: 14px 20px;
    border-radius: 50vh;
    width: 100%;
    display: flex;
    justify-content: center;
    }

@media (max-width: 750px) {
    .btn-blog a {
      padding: 10px 16px;
        font-weight: 700;
  }
}

.btn-blog a:hover{
      /* border: solid 3px #0f5c1f; */
      background-color: #0f5c1f;
      color: #fff;
}

.btn-blog a::after {
        position: absolute;
        top: 42%;
        right: 12%;
        display: inline-block;
        border: 3px solid #fff;
        border-left-width: 0;
        border-top-width: 0;
        vertical-align: 1px;
        content: "";
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        width: 0.6em;
        height: 0.6em;
        border-radius: 0.1em;
}

@media (max-width: 750px) {
  .btn-blog a::after {
  }
}

.btn-blog a:hover::after {
    border-color: #fff;
}


.btn-instagram a {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(45deg, rgba(254, 212, 117, 1) 0%, rgba(229, 61, 93, 1) 50%, rgba(194, 49, 134, 1) 70%, rgba(156, 56, 187, 1) 100%);
    border-radius: 50vh;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    /* box-shadow: 2px 3px 7px rgba(0, 0, 0, .15); */
    padding: 12px 20px;
    border-radius: 50vh;
    width: 100%;
}
@media (max-width: 750px) {
  .btn-instagram a {
    padding: 6px 16px;
              gap: 6px;
  }
}

.btn-instagram a:hover{
       box-shadow: 1px 2px 3px rgba(0, 0, 0, .1);
      background: linear-gradient(115deg, rgba(254, 212, 117, 1) 0%, rgba(229, 61, 93, 1) 50%, rgba(194, 49, 134, 1) 70%, rgba(156, 56, 187, 1) 100%);
}

.btn-instagram img{
      width: 26px;
}






/* --------------------------------- */

.g-calendar__title{
  position: relative;
}

.g-calendar__title::before {
    position: absolute;
    content: "";
    z-index: 1;
    top: 70%;
    right: 0px;
    width: 78%;
    height: 1.6rem;
    background: url(../images/logo/icon_flower.png);
    background-size: contain;
}

/*sp*/
@media all and (max-width:1024px) {
  .g-calendar__title::before {
    position: absolute;
    content: "";
    z-index: 1;
top: 68%;
    right: 0px;
    width: 70%;
    height: 1.4rem;
    background-size: contain;
}
}

/*sp*/
@media all and (max-width:768px) {
  .g-calendar__title::before {
    position: absolute;
    content: "";
    z-index: 1;
    top: 65%;
    right: 0;
    width: 65%;
    height: 1rem;
    background-size: contain;
  }
}








.requests {
  background-color: var(--accent-50);
  padding: 1.6rem 2rem 2rem;
  border-radius: 1.6rem;
  margin-bottom: 8rem;
}
@media all and (max-width:768px) {
  .requests {
    background-color: var(--accent-50);
    padding: 1.6rem 2rem 2rem;
    border-radius: 1.6rem;
    margin-bottom: 6.4rem;
  }
}
.requests__title {
  text-align: center;
  font-weight: 600;
  font-size: 1.8rem;
  padding-bottom: 1rem;
  color: var(--accent-950);
}

.requests__title .triangle-warning{
  position: relative;
  vertical-align: middle;
}

.requests__title .triangle-warning::before {
    content: "";
    background: url("../images/icons/ic_triangle-warning_.svg");
    width: 1.1em;
    aspect-ratio: 1 /1;
    display: inline-block;
    margin: 0 10px;
    background-size: cover;
}



.requests__text {
  position: relative;
  vertical-align: middle;
}
.requests__text::before {
    content: "";
    background: url("../images/icons/ic_checkbox_line.svg");
    width: 1em;
    aspect-ratio: 1 / 1;
    display: inline-block;
    vertical-align: middle;
    margin: 0 6px 0 0;
    background-size: cover;
}

/* ---------------------------------------------

   News   

--------------------------------------------- */












/* ---------------------------------------------

   google-calendar  

--------------------------------------------- */
.g-calendar {
  margin-top: 40px;
  width: 100%;
  aspect-ratio: 4 / 1.6; /* 比率で高さ制御（レスポンシブ対応） */
  position: relative;
}

/*sp*/
@media all and (max-width:768px) {
  .g-calendar {
  aspect-ratio: 4 / 3.8; /* 比率で高さ制御（レスポンシブ対応） */
  margin-top: 2rem;
}
}

.g-calendar iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* ---------------------------------------------

   google-calendar  

--------------------------------------------- */



















/* ---------------------------------------------

   About   

--------------------------------------------- */

.about{
 /* background: url(../images/merit_bg01.svg); */
  background-size: cover;
  margin-bottom: 120px;
  position: relative;
}

/*sp*/
@media all and (max-width:768px) {
  .about{
  margin-bottom: 65px;
}
}

.about::after {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: auto;
  height: 632px;
  width: 727px;
  background: url("../images/silhouette.svg");
  content: "";
  z-index: -1;
  background-size: cover;
}


@media all and (max-width:768px) {
  .about::after {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    margin: auto;
    height: 85%;
    width: 100%;
    background: url("../images/silhouette.svg");
    content: "";
    z-index: -1;
    background-size: cover;
  }
}

.topabout {
  /* padding: 0 4rem; */
  text-align: justify;
  max-width: 70em;
  margin: 0 auto;
}

.topabout_txt{
  margin-bottom: 2rem;
  line-height: 36px;
}

/*sp*/
@media all and (max-width:768px) {
  .topabout {
    padding: 0px;
    margin-bottom: 0rem;
    font-size: 14px;
  }
  
  .topabout_txt {
    margin-bottom: 2rem;
    line-height: 32px;
  }
}

/* ---------------------------------------------

   About   

--------------------------------------------- */














/*   table   --*/


.tb_01 {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  margin: 10px 0;
}

.tb_01 tr {
  border-bottom: 1px dotted ;
  display: flex;
  vertical-align: middle;
}

.tb_01 th {
  text-align: left;
  font-weight: normal;
  width: 25%;
}

.tb_01 td {
  text-align: left;
  font-weight: normal;
  width: 75%;
}


/*  --------------------------  */



.tb_02 {

}

/*sp*/
@media all and (max-width:768px) {
.tb_02 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
}

.tb_02 tr{
      width: 100%;
    display: grid;
    grid-template-columns: 10rem 1fr;
}

.tb_02 th{
 display: inline-block;
 font-size: 1.8rem;
 font-weight: 500;
 letter-spacing: .3rem;
 border-radius: 200px;
}
/*sp*/
@media all and (max-width:768px) {
.tb_02 tr{
      width: 100%;
        display: flex;
        flex-wrap: wrap;
}
}


.tb_02 th span{
    border-left: solid 4px #00aab8;
    padding-left: 0.6rem;
}

.tb_02 td{
    padding-bottom: 2rem;
    padding-left: 1.2rem;
    line-height: 1.7;
    font-size: 15px;
}

/*sp*/
@media all and (max-width:768px) {
  .tb_02 th{
  /* width: 25%; */
  font-size: 1.4rem;
  font-weight: 600;
}

  
.tb_02 td {
    padding-bottom: 1.2rem;
    line-height: 1.4;
    font-size: 13px;
    text-align: justify;
}
}



/*  --------------------------  */



.tb_03 {

}

/*sp*/
@media all and (max-width:768px) {
.tb_03 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
}

.tb_03 tr{
  font-size: 14px;
}

.gaiyou .tb_03 tr {
    font-size: 14px;
}

.tb_03 th{
  width: 16%;
}

.tb_03 th span{
    border-left: solid 4px #F8B500;
    padding-left: 0.6rem;
}

.tb_03 td{
      padding-bottom: 1.2rem;
    line-height: 1.5;
}

/*sp*/
@media all and (max-width:768px) {
  .tb_03 th{
  width: 25%;
}

  
.tb_03 td {
    padding-bottom: 1rem;
    line-height: 1.4;
    font-size: 13px;
    text-align: justify;
}
}





/*  --------------------------  */

.gaiyou{
      background-color: var(--primary-50);
      padding: 4rem 6rem 8rem;
      border-radius: 1rem;
}
/*sp*/
@media all and (max-width:768px) {
  .gaiyou{
        padding: 2rem 1.5rem 1rem;
  }
}
  

.tb_access {
    font-family: "Noto Sans JP", sans-serif;
      width: 100%;
}

/*sp*/
@media all and (max-width:768px) {
.tb_access {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
}

.tb_access tbody {
    display: grid;
    gap: 2rem;
}
/*sp*/
@media all and (max-width:768px) {
.tb_access tbody {
    display: grid;
    gap: 2.4rem;
}
}

.tb_access tr{
      width: 100%;
    display: grid;
    gap: 1rem;
    grid-template-columns: 30% 1fr;
      align-items: baseline;
}

/*sp*/
@media all and (max-width:768px) {
.tb_access tr{
      width: 100%;
        display: flex;
        flex-wrap: wrap;
      gap: 0.6rem;
}
}

.tb_access th{
 display: flex;
 font-size: 2rem;
 font-weight: 500;
 letter-spacing: .3rem;
    text-align: left;
}

.tb_access th span{
    padding-left: 1rem;
}

.tb_access img{
  width: 3rem;
}

.tb_access td{
    line-height: 1.7;
    font-size: 15px;
}

/*sp*/
@media all and (max-width:768px) {
  .tb_access th{
  /* width: 25%; */
  font-size: 1.8rem;
  font-weight: 600;
}

.tb_access th span{
    padding-left: 0.6rem;
}

  
.tb_access td {
    line-height: 1.4;
    font-size: 14px;
    text-align: justify;
}
}



/*  --------------------------  */





.menu_bg{
background-color: #f5f9f9;
  background-color: #f7fcfd;
    border-radius: 1rem;
    padding: 0 2rem 2rem 1rem;
}

.menu_bg .tb_03 td{
   padding-left: 1rem;
}






.tdbc1{
    background: #edf4ff;
}
.tdbc2{
    background: #fafafa;
}
.tdbc3{
    background: #fffdf9;
  background-color: #f9f9f9;
}
.tdbc4{
}

.tdw1{
width: 80%;
vertical-align: middle;
}

.tdw2{
width: 20%;
text-align: center;
vertical-align: middle;
}

.tdw16{
width: 16%;
vertical-align: middle;
}

.tdw20{
width: 20%;
vertical-align: middle;
}

.tdw25 {
    width: 25%;
    vertical-align: middle;
    color: #111111;
}

.tdw3{
width: 40%;
vertical-align: middle;
}
	

.tdw4{
width: 30%;
text-align: center;
vertical-align: middle;
}

.tdw50{
width: 50%;
vertical-align: middle;
}

.tdw75{
width: 75%;
vertical-align: middle;
}

.tdw74{
width: 68%;
vertical-align: middle;
}

.tdw40{
width: 40%;
vertical-align: middle;
}
/*sp*/
@media all and (max-width:768px) {
.tdw3{
width: 40%;
vertical-align: middle;
}
.tdw25 {
    width: 40%;
    vertical-align: middle;
    color: #111111;
}
.tdw16{
width: 28%;
vertical-align: middle;
  font-size: 1.4rem;
}
  
.tdw74{
width: 74%;
vertical-align: middle;
}
}





.tbl_price {
  border: 1px solid #ccc;
  border-collapse: collapse;
  width: 100%;
  font-size: 1.5rem;
background-color: #fff;
}

.tbl_price td {
  border: 1px solid #e6e6e6;
  padding: 12px 20px;
}

.tbl_price th {
    padding: 12px 20px;
    vertical-align: middle;
    background-color: #f9f9f9;
      border: 1px solid #e6e6e6;
/*  text-align: left; */
}


/*sp*/
@media all and (max-width:768px) {
.tbl_price {
  font-size: 1.3rem;
}
  .tbl_price td {
    padding: 10px 6px 10px 10px;
    padding: 6px 6px 6px 6px;
  }
.tbl_price th {
      padding: 6px 6px 6px 8px;
  }
}



.tbl_price_02 {
  border: 1px solid #ccc;
  border-collapse: collapse;
  width: 100%;
  font-size: 1.5rem;
}

.tbl_price_02 td {
  border: 1px solid #e6e6e6;
  padding: 12px 20px;

}

/*sp*/
@media all and (max-width:768px) {
  .tbl_price_02 td {
    border: 1px solid #ccc;
    padding: 10px 6px 10px 10px;
    font-size: 1.4rem;
  }
}



.tbl_price_pink {
  border: 1px solid #ccc;
  border-collapse: collapse;
  width: 100%;
  font-size: 1.5rem;
}

/*sp*/
@media all and (max-width:768px) {
.tbl_price_pink {
  font-size: 1.4rem;
}
}

.tbl_price_pink th ,.tbl_price_pink td {
  border: 1px solid #e6e6e6;
}

.tbl_price_pink td {
      font-family: "Noto Sans JP", sans-serif;
  padding: 12px 20px;
  vertical-align: middle;
  text-align: center;
}

.tbl_price_pink th {
  padding: 12px 20px;
          vertical-align: middle;
  background-color: #f9f9f9;
}

/*sp*/
@media all and (max-width:768px) {
  .tbl_price_pink td {
    padding: 10px 6px 10px 6px;
  }

.tbl_price_pink th {
      padding: 8px 10px;
}
}


.tbl_price_pink .th_ttl {
  
}

/*sp*/
@media all and (max-width:768px) {
  .tbl_price_pink .th_ttl {
        writing-mode: vertical-rl;
        text-align: justify;
        vertical-align: middle;
        padding-top: 5rem;
    line-height: 1.5;
  }
}

 .w01 {
  
}

 .w02 {
  width: 16%
}

.w03 {
  width: 16%
}

/*sp*/
@media all and (max-width:768px) {
 .w01 {
 
  }

 .w02 {
    width: 18%
}
  
 .w03 {
  width: 20%
}
}

.rates {
 
}

/*sp*/
@media all and (max-width:768px) {
.rates {
  text-align: right;
  line-height: 1.2;
}
}




.tbl_price_pink .w01 {
  width: 28%;
}

.tbl_price_pink .w02 {
  width: 16%
}

.tbl_price_pink .w03 {
  width: 16%
}

/*sp*/
@media all and (max-width:768px) {
  .tbl_price_pink .w01 {
 width:40% ;
  }

.tbl_price_pink .w02 {
    width: 18%
}
  
.tbl_price_pink .w03 {
  width: 20%
}

}

.tbl_price_pink .rates {
 
}

/*sp*/
@media all and (max-width:768px) {
  .tbl_price_pink .rates {
  text-align: right;
  line-height: 1.2;
}
}





  .tbl_price li{
  /*  line-height: 2; */
    padding-bottom: 0.6rem;
  }



/*sp*/
@media all and (max-width:768px) {
.f_address{
width: 100%;
font-size: 1.4rem;
margin: 0 0 5vw 0;
}
}







































.card {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px 20px;
  text-align: left;
}
/* .card_item {
    padding: 0 8px;
}
*/

.card_item a:hover{
  opacity: 0.7;
}


.card_img-area {
 /* aspect-ratio: 3/2; */
  margin-bottom: 20px;
}
.card_img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
 /* box-shadow:  6px 8px 0px 0 rgba(233, 251, 255, 1);
  box-shadow: 8px 7px 0px 0 rgba(213,247,255,1); */
}
.card_ttl {
font-size: 18px;
    font-weight: bold;
    margin-bottom: 6px;
      line-height: 2.1;
}

.card_ttl .num {
  font-family: "Montserrat", sans-serif;
  color: #f58daf;
  padding-right: 12px;
}

.card_txt {
  font-size: 1.4rem;
        line-height: 1.8;
}


@media (max-width: 768px) {
.card_ttl {
      line-height: 1.5;

}

.card_txt {
    font-size: 1.5rem;
}

}









/* ---------------------------------------------

   TOP＿診療案内   

--------------------------------------------- */

.information{
    margin-bottom: 0rem;
    width: 90%;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    background-color: var(--primary-200);
    background-image: radial-gradient(circle, #fef7e9 1px, transparent 1px);
    background-size: 8px 8px;
    background-position: 0px 0px;
    border-radius: 3rem;

  background-image: radial-gradient(circle, #ffffff 1px, transparent 1px), radial-gradient(circle, #ffffff 1px, transparent 1px);
  background-position: 0 0, 8px 16px;
  background-size: 16px 32px;
}


@media (max-width: 768px) {
  .information {
    width: 96%; /* background-color: transparent; */ margin-bottom: 1rem;
    border-radius: 1.6rem;
  }
}

.information__bg {
 background-color: var(--primary-100);
padding: 12rem 0 8rem;
}
@media (max-width: 768px) {
.information__bg {
 background-color: var(--primary-100);
padding: 14rem 0 6rem;
}
}


@media (max-width: 768px) {
  .information .inner{
padding-bottom:  4rem;
}
}


.information .inner{
    margin: 0 auto;

}


/*
.information:after {
    position: absolute;
    content: "";
    background: url("../images/info_icons/face.png") no-repeat;
    background-size: cover;
    width: 153px;
    height: 130px;
    right: 90px;
    bottom: -14px;
    z-index: 1;
}
*/






.top_info_w {
    position: relative;
    padding: 10rem 0 6rem;
    display: grid;
     grid-template-columns: 20rem 1fr; 
    gap: 6rem;
}

@media (max-width: 1024px) {
.top_info_w{
  padding: 3rem 4rem 4rem;
  border-radius: 2rem;
  grid-template-columns:auto;
          gap: 4rem;
}
}

@media (max-width: 768px) {
  .top_info_w {
    padding: 5rem 0 0rem;
    border-radius: 2rem;
    gap: 0rem;
  }
}




.top_info_ttl{
  display: flex;
    display: grid;
    /* justify-content: space-between; */
}

@media (max-width: 1024px) {
.top_info_ttl{
}
}

@media (max-width: 768px) {
.top_info_ttl{

  justify-content: center;
        margin-bottom:2.4rem;
  }
} 

/*
.top_infotxt{
      width: calc(100% - 290px);
    line-height: 3rem;
  align-self: flex-end;
}

@media (max-width: 1024px) {
.top_infotxt{
    width: 100%;
    line-height: 2.4rem;
    margin-bottom: 3.6rem;
    text-align: justify;
  font-size: 1.4rem;
}
}
*/




.info_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.4rem;
  position: relative;
  width: 100%;
}

@media (max-width: 768px) {
.info_list {
  gap: 2rem;
      grid-template-columns: repeat(2, 1fr);
  padding-bottom: 5rem;
        margin: 0 auto;
}
}







.info_item{
    width: 100%;
  display: grid;
}


        .info_link {
            align-content: center;
            align-items: center;
            background-color: #fff;
            border: solid 3px transparent;
            border-radius: 1rem;
            box-shadow: rgba(113, 135, 164, 0.12) 0 0 5px 2px;
            display: grid;
            font-size: 1.8rem;
            font-weight: 700;
            gap: 0.8rem;
            grid-template-rows: 8rem auto;
            justify-content: center;
            justify-items: center;
            letter-spacing: 0.05em;
            padding: 2rem 0 1.4rem;
            position: relative;
            width: 100%;
            text-decoration: none;
            transition: all 0.3s ease;
           /* color: #656565; */
        }

        @media (max-width: 768px) {
            .info_link {
                border-radius: 1.5rem;
                        /* color: #656565; */
        font-size: 1.6rem;
        font-weight: 600;
        gap: 1.2rem;
        grid-template-columns: none;
        grid-template-rows: 6rem 1fr;
                padding: 1.6rem 0 1.6rem;
        text-align: center;
            }
        }
/*
        .info_link:after {
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M9 18l6-6-6-6"/></svg>');
            background-size: cover;
            bottom: 5%;
            content: "";
            display: inline-block;
            height: 1.8rem;
            position: absolute;
            right: 1.2rem;
            transition: right 0.3s;
            vertical-align: middle;
            width: 1.8rem;
            opacity: 0.5;
        }
*/



/* 横矢印
.info_link:after {
  content: "";
  position: absolute;
    bottom: 11%;
  right: 3rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 8px;
  height: 8px;
    border-top: solid 2px #2ab7a9;
  border-right: solid 2px #2ab7a9;
  border-top: solid 2px #f58daf;
  border-right: solid 2px #f58daf;
  transform: translateY(-50%) rotate(45deg);
}
*/

.info_link:after {
  content: "";
  position: absolute;
  bottom: 5%;
  right: 1.2rem;
  transition: right 0.3s;
  background: url(../images/arrow_right_line.svg);
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  vertical-align: middle;
  background-size: cover;
}

.info_link:hover {
        transition-duration: 0.3s, 2s;
        box-shadow: none;
        background-color: #fff;
        border: solid 3px var(--primary-500);
}

.info_link:hover:after {
  right: 0.6rem;
}




.info_icon {
  position: relative;
  width: 8rem;
  transition: 0.3s;
}

@media (max-width: 768px) {
.info_icon {
width: 65px;
justify-self: center;
}
}

.info_link:hover .info_icon {
    transform: scale(0.9);
}



.information .btn_01{
    justify-self: flex-end;
}


/*
  .info_link::before {
    border-radius: 50vh;
    content: "";
    position: absolute;
    width: 9rem;
    aspect-ratio: 1;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
        }
*/

/* 診療科別の背景色 */
        /* 内科の背景色 */
        .info_link--01 {
          border:solid 3px #a3d5f0 ;
          /*  background-color: #e3f2fd;  青系 */
        }

        /* 小児科の背景色 */
        .info_link--02 {
              border:solid 3px var(--accent-300);
           /* background-color: #e8f5e8;  緑系 */
        }

        /* 心療内科の背景色 */
        .info_link--03 {
          border:  solid 3px #ffc4dc; /* ピンク系 */
          
        }
/* ---------------------------------------------

   TOP＿診療案内   

--------------------------------------------- */













/* ---------------------------------------------

   TOP＿サイドボタン  

--------------------------------------------- */

.fixed_side_btn {
    position: fixed;
    right: 0;
    top: 80px;
    z-index: 10;
    width: 60px;
    height: 70%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
  gap:4rem;
}

.fixed_side_btn img{
      width: 2.5rem;
  }

.btn_side{
    background-color: white;
    border: 2px solid #00aab8;
    border-right: none;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    width: 60px;
    letter-spacing: 0.2rem;
  gap:0.4rem;
  }

.resarve {
  background-color: #F8B500;
  background-color: #00aab8;
  color: #fff;
}

.btn_side > .access{
  background-color: #EFF4FF;
}

.btn_side access span{
margin-bottom: 1rem;
  }

  .btn_side span{
  writing-mode: vertical-rl;
  font-size: 16px;
  font-family: 'Zen Kaku Gothic New';
  font-weight: 700;
  }

.fixed_side_btn a:hover , .fixed_side_btn a:active{
transform: translateY(+5px);
    transition-duration: 0.3s, 2s;
}





@media (max-width: 768px) {
  .fixed_side_btn{
    display: none;
  }
}
/* ---------------------------------------------

   TOP＿サイドボタン  

--------------------------------------------- */















/* ---------------------------------------------

     

--------------------------------------------- */





/* ---------------------------------------------

     SP版下部

--------------------------------------------- */

/* ---------------------------------
sp下部バー
 --------------------------------- */
  
  /* sp footer */


@media screen and (max-width: 768px) {
  /* Reservation Bar */
  .reservation-bar {
    position: fixed;
    bottom: 0;
    z-index: 10;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    -webkit-box-align: center;
    /* background: linear-gradient(0deg, rgba(252, 249, 239, 0.5) 0%, rgba(252, 249, 239, 0.4) 30%, rgba(252, 249, 239, 0.2) 45%, rgba(252, 249, 239, 0) 100%); */
  }

  .reservation-bar__item--phone {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    box-shadow: 3px 4px 8px 0 rgba(0, 0, 0, 0.06);
  }

  .reservation-bar__item--phone .reservation-bar__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 55px;
    overflow: hidden;
    background-color: var(--primary-300);
    font-size: 1.8rem;
    font-weight: 600;
  }

  .reservation-bar__item--phone .reservation-bar__text {
    /* Add styles if needed */
    /* color: #fff; */
            color: var(--accent-900);
    font-size: 1.8rem;
    /* font-weight: 600; */
  }

  .reservation-bar__item--phone .reservation-bar__icon {
    width: 2.8rem;
    margin-right: 0.6rem;
    padding: 5px;
    border-radius: 50vh;
    /* background-color: var(--primary-600); */
    border: solid 1px #fff;
  }

  .reservation-bar__item--web {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    font-size: 18px;
    background-color: var(--primary-500);
    box-shadow: 3px 4px 8px 0 rgba(0, 0, 0, 0.06);
  }

  .reservation-bar__item--web .reservation-bar__link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
            font-weight: 500;
  }

  .reservation-bar__item--web .reservation-bar__icon {
    width: 2.8rem;
    margin-right: 0.6rem;
    padding: 4px;
    border-radius: 50vh;
    background-color: var(--primary-500);
    border: solid 1px #fff;
  }
}
/* ---------------------------------------------

     SP版下部

--------------------------------------------- */














/* ------------------------------------------------------------------------------------------

     サブページ_ttl

------------------------------------------------------------------------------------------ */

.subpage_ttl{
  margin: 0 auto;
  margin-top: 130px;
  /* padding-top: 110px; */
  /* background: url(../images/bg/bg_wave.svg); */
  /* background: url(../images/bg/bg_curve_02.png); */
  background-size: cover;
  background-color: var(--primary-200);
  width: 100%;
      width: 94%;
    border: solid 4px var(--primary-400);
    border-radius: 2rem;
    overflow: hidden;
}

@media (max-width: 1024px) {
  .subpage_ttl{
  margin-top: 70px;
  padding-top: 10px;
  /* background: url(../images/bg/bg_curve_02.png); */
  /* background: url(../images/bg/wave_sp.svg); */
  /* background-size: cover; */
}
}

.subpage_ttl .inner{
/* max-width: 1600px;*/

}



.subpagetitle__w{
    width: 100%;
    /* background: url(../images/waiting-room.jpg) right top; */
    background-size: cover;
    background-position: center center;
    height: 320px;
    border-radius: 10px;
    position: relative;
    margin: 0 auto;
    /* box-shadow: 0px 3.5px 15px rgba(101, 141, 204, 0.5); */
}

@media (max-width: 768px) {
.subpagetitle__w{
background-size: cover;
position: relative;
  height: 16rem;
      border-radius: 5px;
}
}

.m_institution{
gap: 1rem;
    display: grid;
      grid-auto-columns: max-content;
}


.pagename_ttl {
    display: inline-block;
    text-align: center;
    line-height: 1;
    font-weight: 700;
    position: absolute;
    z-index: 2;
	top: 46%;
/*    justify-self: anchor-center;*/
    /* right: calc(100% - 348px); */
    /* transform: translateX(180%);*/
    line-height: 0.8;
    top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
  }

.subpagetitle__w:after {
    position: absolute;
    top: 10%;
    /* left: 0; */
    right: 0;
    margin: auto;
    width: 340px;
    aspect-ratio: 1 / 0.8;
    background: url(../images/logo/icon_flower_light.svg);
    content: "";
    background-size: cover;
}
@media (max-width: 768px) {
  .subpagetitle__w:after {
        position: absolute;
        top: 8%;
        /* left: 0; */
        right: 0;
        margin: auto;
        width: 160px;
        background: url(../images/logo/icon_flower_light.svg);
        content: "";
        background-size: cover;
}
}

  .pagename_ttl .ttl_01{
    font-size: 4.4rem;
    font-weight: 500;
  }

@media (max-width: 768px) {
    .pagename_ttl .ttl_01{
      font-size: 2.8rem;
}
}


.pagename_ttl .ttl_01 .jp {
    font-size: 4.4rem;
    font-weight: 500;
    letter-spacing: 0.3rem;
}
@media (max-width: 768px) {
  .pagename_ttl .ttl_01 .jp {
  font-size: 2.8rem;
  }
}

.pagename_ttl .ttl_01 .en {
  /* font-size: 2rem; */
}

@media (max-width: 768px) {
    .pagename_ttl .ttl_01  .en{
      font-size: 1.6rem;
}
}


/*
  .pagename_ttl .jp{
    font-size: 2.4rem;
    color: #00aab8;
    line-height: 1.5;
        font-size: 4.2rem;
    color: #fff;
    font-weight: 600;
    text-shadow: 4px 2px 5px rgba(0, 0, 0, 0.4);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
    font-family: YakuHanJP_Narrow, 'Zen Old Mincho', sans-serif;
    line-height: 1.5;
  }

  .pagename_ttl .en{
    color: #00aab8;
    font-size: 1.5rem;
        font-family: 'Zen Kaku Gothic New';
  }
*/

@media (max-width: 1024px) {
  .pagename_ttl {
    display: inline-block;
    line-height: 1;
    font-weight: 700;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
            width: 100%;
  }
}




/* チェックリスト見た目 */
.subpage_check-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-radius: 1rem;
  line-height: 2.4;
  padding: 0.6rem 1.6rem 2rem;
  gap: 0.8rem 0;
 /* background-color: var(--primary-50); */
}

 .bg_bl{
  background: #f7f7f7;
    background-color: #effcfc;
}

 .bg_wh{
  background: #fff;
}


@media (max-width: 768px) {
  .subpage_check-list {
    padding: 0rem 1.2rem 1rem;
  }
}
  
.subpage_check-list li {
    padding-left: 2.6rem;
    text-indent: -2.6rem;
  width: 47%;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #ededed;
}
@media (max-width: 768px) {
  .subpage_check-list li {
  width: 100%;
}
}

.subpage_check-list li::before {
        content: "";
        background: url(../images/icons/ic_checkbox.svg);
        width: 1.6rem;
        height: 1.6rem;
        display: inline-block;
        /* vertical-align: middle; */
        margin: 0 10px 0 0;
        background-size: cover;
    }

/* 一列表示バージョン */
.subpage_check-list.single-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.subpage_check-list.single-column li {
  width: 100%;
    padding-left: 2.6rem;
    text-indent: -2.8rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #ededed;
}


/* 方法1: - 10番目の項目（BCG）をターゲット */
.subpage_check-list li.no-checkbox::before {
    display: none;
}

.subpage_check-list li.no-checkbox {
    padding-left: 0;
    text-indent: 0;
}





.bg_color{
  padding-bottom: 100px;
  padding-bottom: 160px;
  padding-top: 12rem;
  display: grid;
  gap: 12rem;
          grid-template-columns: minmax(0, 1fr);
 /*       background-color: #effcfc;
  background-color: #d6f7f7; */
}

@media (max-width: 768px) {
.bg_color{
  padding-bottom: 40px;
    padding-bottom: 100px;
padding-top: 6rem;
    display: grid;
    gap: 8rem;
        grid-template-columns: minmax(0, 1fr);
}
}

.bg_color_2 {
    padding-bottom: 120px;
    padding-top: 10rem;
    display: grid;
    gap: 5rem;
    background-color: var(--primary-50);
    border-bottom-right-radius: 2rem;
    border-top-left-radius: 2rem;
}
@media (max-width: 768px) {
  .bg_color_2 {
        padding-bottom: 60px;
        padding-top: 4rem;
        display: grid;
    gap: 4rem;
  }
}
/* ------------------------------------------------------------------------------------------

     サブページ_ttl

------------------------------------------------------------------------------------------ */










/* ------------------------------------------------------------------------------------------

     パンくずリスト_bread

------------------------------------------------------------------------------------------ */

/*  -SITEMAP-----------------------  */
/*breadcrumb*/
.breadc{
  background-color: var(--primary-100);
}

  .bc__w {
    width: 100%;
    padding: 16px 0 16px;
    font-size: 1.4rem;
  text-align: left;
  }
  .bc__w ol {
    padding: 0;
    color: #493d31 !important;
    margin: 0 auto;
    align-items: center;
    display: flex;
    gap: 0 16px;
  }
  .bc__w ol li {
    list-style: none;
    display: flex;
    align-items: center;
  }
  .bc__w ol li a:link, .bc__w ol li a:visited {
    color: #606060 !important;
    display: flex;
    align-items: center;
  }
  .bc__w ol li a:hover, .bc__w ol li a:active {
    color: var(--primary-600) !important;
    opacity: 0.7;
  }
  .bc__w ol li:last-of-type a {
    color: #606060 !important;
        opacity: 1;
  }
/*  .bc__w ol li:last-of-type a:hover, .bc__w ol li:last-of-type a:active {
    opacity: .7;
  } */

.btn_home a:first-child::before {
    display: inline-block;
    width: 1.2em;
    height: 1.1em;
    background-position: center;
    margin-right: 6px;
    background-image: url("../images/home_3_fill.svg");
    background-repeat: no-repeat;
    content: '';
  background-size: cover;
}

.bc__w li:not(:last-child)::after {
    display: inline-block;
    transform: rotate(45deg);
    width: .3em;
    height: .3em;
    margin-left: 10px;
    border-top: 1px solid #404040;
    border-right: 1px solid #404040;
    content: '';
}


@media (max-width: 768px) {
  /*breadcrumb*/
  .bc__w {
    width: 100%;
    padding: 2vw 0 2vw;
    font-size: 1.1rem;
 }
  .bc__w ol {
    padding: 0;
    color: #493d31 !important;
  }
  .bc__w ol li {
    list-style: none;
   /* display: inline; */
  }
  .bc__w ol li a:link, .bc__w ol li a:visited {
    color: #606060  !important;
  }

  .bc__w ol li:last-of-type a {
    color: #606060 !important;
  }
  /*breadcrumb*/
}
/* ------------------------------------------------------------------------------------------

     パンくずリスト_bread

------------------------------------------------------------------------------------------ */












/* ------------------------------------------------------------------------------------------

     サブページ

------------------------------------------------------------------------------------------ */



/*
.subpage__w{
width: 100%;
  padding-bottom: 100px;
}

@media (max-width: 1024px) {
.subpage__w{
width: 100%;
    padding-bottom:80px;
}
}
*/

@media (max-width: 768px) {
.subpage__w{
   /*   margin-inline-end: 25px; */
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
  border-radius: 1rem;
}
}

/*
.subpage__w .inner {
  border-radius: 10px;
  padding: 44px 60px 80px;
    padding: 0 60px;
  background-color: #fffefd; 
    max-width: 1100px;
}

@media (max-width: 1024px) {
  .subpage__w .inner {
   background-color: #fffefd;
    border-radius: 4rem;
    padding: 80px 60px 100px;
    box-shadow: rgba(113, 135, 164, .12) 0px 0px 5px 2px;
    max-width: 1300px;
    max-width: 70em;
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
.subpage__w .inner{
  max-width: 100%;
      font-size: 1.5rem;
padding: 0;
        border-radius: 1rem;
        width: calc(100% - 50px);
}
}
*/

.subpage__w p{
  line-height: 2;
}


.contents_wrap{display: grid;gap: 8rem 0;
/* WCAG 2.0 実装方法集から＿＿1行が平均80字(日本語なら40字)以下に */max-width: 70em;width: 100%;margin: 0 auto;}
@media (max-width: 768px) {
.contents_wrap{
gap: 3.2rem 0;
  gap: 4rem 0;
}
}

.sub-contents__wrap{
  display: grid;
  gap: 5rem;
}

@media (max-width: 768px) {
.sub-contents__wrap{
  gap:3.2rem;
}
}









/* ---------------------------------------------

     doctor

--------------------------------------------- */
.doctor-profile {
  display: grid;
  gap: 4.4rem 0;
  padding: 4rem;
  border-radius: 1.6rem;
  background-color: var(--primary-50);
}

@media (max-width: 768px) {
  .doctor-profile {
    padding: 2.8rem 2rem;
    border-radius: 1rem;
    gap: 3.2rem 0;
  }
}


  .doctor-profile__contents {
    display: contents;
  }


.doctor-profile__intro {
  width: 100%;
  margin: 0 auto;
  display: flex;
  /* justify-content: space-between; */
  /* align-items: flex-start; */
  align-items: end;
  gap: 6rem;
  text-align: left;
  /* flex-direction: row-reverse; */
  position: relative;
}




@media (max-width: 768px) {
  .doctor-profile__intro {
    flex-wrap: wrap;
    /* flex-direction: column-reverse; */
    gap: 2.4rem;
  }
}


.doctor-profile__section-title h2 {
  font-size: 2rem;
  line-height: 1.65;
  letter-spacing: 0.2rem;
  font-weight: 500;
  padding-bottom: 1rem;
}
@media (max-width: 768px) {
  .doctor-profile__section-title h2 {
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    padding-bottom: 0.6rem;
  }
}


.doctor_txt {
  align-items: flex-start;
  width: 58%;
  text-align: justify;
}

@media (max-width: 768px) {
  .doctor_txt {
    width: 100%;
  }
}


.doctor-profile__image-area {
  align-self: center;
  justify-content: center;
  align-self: flex-start;
  display: grid;
  /* margin: 0 auto; */
  width: 47%;
      border-radius: 1rem;
    overflow: hidden;
}

#doctor_img_top {
  width: auto;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .doctor-profile__image-area {
    margin: 0 auto;
    width: 100%;
    display: block;
  }
}


.doctor-profile__name-section {
  display: grid;
  flex-wrap: wrap;
  gap: 1rem;
  /* padding-bottom: 1.4rem; */
}

.doctor-profile__position {
    /* color: #7a7a7a; */
    letter-spacing: 0.2rem;
    font-weight: 500;
}

.doctor-profile__name {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.2;
      padding-bottom: 0.6rem;
}


.doctor-profile__name .doctor-profile__name-break {
  display: none;
}

@media (max-width: 856px) {
  .doctor-profile__name .doctor-profile__name-break {
    display: block;
  }
}


@media (max-width: 750px) {
  .doctor-profile__name .doctor-profile__name-break {
    display: none;
  }
}


.doctor-profile__name-en {
  color: var(--primary-500);
  font-size: 1.4rem;
  padding-left: 1rem;
}


@media (max-width: 856px) {
  .doctor-profile__name-en {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .doctor-profile__name-en {
    /*	  padding-left: 0;*/
    margin-left: 1rem;
  }
}

@media (max-width: 768px) {
  .doctor-profile__name-section {
    display: grid;
    flex-wrap: wrap;
    width: 100%;
    justify-items: left;
  }
  
  .doctor-profile__position {
    font-size: 1.5rem;
    line-height: 1.2;
    /* letter-spacing: .4rem; */
    text-align: center;
  }
  
  .doctor-profile__name {
    width: 100%;
    font-size: 2.4rem;
  }
}


.doctor-profile__specialty{
  /* border-top: solid 2px #a3d5f0; */
    /* border-bottom: solid 3px #a3d5f0; */
    font-size: 1.6rem;
    /* padding: 0 0rem 1rem; */
    /* background-color: #fff; */
    /* background-color: #a3d5f0; */
    font-weight: 500;
    text-align: center;
    background-color: #a3d5f0;
    border-radius: 50vh;
    padding: 0.2rem 1rem;
}

.doctor-profile__details {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  gap: 2rem 6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  /* grid-template-columns: 1fr 1fr; */
}
.doctor-profile__section {
  width: 100%;
  align-items: flex-start;
  border-radius: 1rem;
}
.doctor-profile__list {
  text-align: left;
  gap: 0.8rem;
  display: grid;
}
.doctor-profile__list-item {
  border-bottom: solid 1px #ededed;
}
/* 未使用クラス（移動済み） */
.doctor_txt {
  align-items: flex-start;
  width: 58%;
  text-align: justify;
}
@media (max-width: 768px) {
  .doctor_txt {
    width: 100%;
  }
}
#doctor_img_top {
  width: auto;
  margin-bottom: 3rem;
}


/* ---------------------------------------------

     doctor

--------------------------------------------- */

















/* ---------------------------------------------

     アクセス　access

--------------------------------------------- */



.tb_03 {
    font-size: 1.6rem;
  width: 100%;
}

.tb_03 tbody{
    margin: 0 auto;
}

/*sp*/
@media all and (max-width:768px) {
.tb_03 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
}

.tb_03 tr{
    border-bottom: 1px solid #ddd;
}

.tb_03 th{
  width: 20%;
  text-align: left;
      align-content: center;
}

.tb_03 th span{
    border-left: solid 4px var(--primary-400);
    padding-left: 0.8rem;
}

.tb_03 td{
    line-height: 1.5;
  padding: 2rem 0;
}

/*sp*/
@media all and (max-width:768px) {
  .tb_03 th{
  width: 38%;
}

.tb_03 td {
    /* line-height: 1.4; */
    font-size: 14px;
    text-align: justify;
}
}



.tb_04 {
    font-size: 1.4rem;
  width: 100%;
}

.tb_04 tbody{
    margin: 0 auto;
}

/*sp*/
@media all and (max-width:768px) {
.tb_04 {
  font-size: 1.3rem;

}
}

.tb_04 tr{
    border-bottom: 1px solid #f6d5da;
}

.tb_04 th{
  width: 20%;
  text-align: left;
  min-width: 72px;
}

.tb_04 th span{
    border-left: solid 4px #00aab8;
    padding-left: 0.6rem;
}

.tb_04 td{
    line-height: 1.5;
  padding: 1rem 0;
}

/*sp*/
@media all and (max-width:768px) {
  .tb_04 th{
  width: 28%;
}

.tb_04 td {
    line-height: 1.4;
    font-size: 13px;
    text-align: justify;
}
}





.bg-bas{
  background-color: #fafafa;
}

.txt-pri{
color: #971a54;
  color: #00aab8;
}

.txt-sec{
  color:#00aab8;
}






/* PC */
@media screen and (min-width:769px) {
  .access_sub_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    margin: 0 0 5px 0;
  }
  .access_sub_title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 30%;
    margin: 0;
    padding: 24px 12px;
    font-size: 1.6rem;
    line-height: 1.2;
  }
  .access_sub_title_s {
    width: 100%;
    margin: 0 0 5px 0;
    font-size: 1.6rem;
    font-weight: 700;
  }
  .access_sub_txt {
    width: 66%;
    padding: 24px 0;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
  }
  .map-img {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
  }
  .txt_ttl_w #fever-outpatient-department {
    scroll-margin-top: -200px;
  }
}

/* sp */
@media screen and (max-width:768px) {
  .access_sub_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    margin: 0 0 1vw 0;
  }
  .access_sub_title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 10rem;
    padding: 5vw 2vw;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.5;
    letter-spacing: .025rem;
  }
  .access_sub_txt {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: calc(100% - 12rem);
    padding: 5vw 0;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: .025rem;
  }
  .map-img {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }
}

.t_access {
  padding-top: 12rem;
  padding-bottom: 10rem;
}
/*sp*/
@media all and (max-width:768px) {
  .t_access {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }
}

.t_access__w {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  text-align: left;
  padding-bottom: 12rem;
  /*  padding-top: 6rem; */
}
/*sp*/
@media all and (max-width:768px) {
  .t_access__w {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 2rem;
  }
}

.t_access_box1 {
  display: grid;
  flex-wrap: wrap;
  gap: 4rem;
  width: 50%;
}
/*sp*/
@media all and (max-width:768px) {
  .t_access_box1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 0 2rem 0;
    gap: 2rem;
  }
}

.t_access_box1 .tb_02 tbody {
  display: grid;
  gap: 3rem;
}
/*sp*/
@media all and (max-width:768px) {
  .t_access_box1 .tb_02 tbody {
    gap: 1.6rem;
  }
}

.t_access_box1 .tb_02 td {
  padding-bottom: 0rem;
}

.t_access_box2 {
  display: flex;
  align-self: center;
  width: 42%;
  width: 560px;
}
.t_access_box2 iframe {
  width: 100%;
  height: 550px;
  border-radius: 15px;
}
/*sp*/
@media all and (max-width:768px) {
  .t_access_box2 {
    width: 100%;
    margin: 0 0 8vw 0;
    text-align: center;
  }
  .t_access_box2 iframe {
    height: 40vh;
  }
}

/*  ----------------------  */
.gmap {
  padding-bottom: 8rem;
}
/*sp*/
@media all and (max-width:768px) {
  .gmap {
    padding-bottom: 2rem;
  }
}
.gmap .btn_01 {
  justify-self: end;
  margin-top: 2rem;
}

/*  ----------------------  */
.access__w {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  text-align: left;
}
/*sp*/
@media (max-width: 768px) {
  .access__w {
    width: 100%;
    margin: 0 auto;
    /* gap:3.2rem; */
  }
}

.address {
  display: grid;
  flex-wrap: wrap;
  gap: 4rem;
  width: 48.5%;
  /*    max-width: 560px; */
}
/*sp*/
@media (max-width: 768px) {
  .address {
    width: 100%;
    gap: 2rem;
    margin-bottom: 1.2rem;
  }
}

.map {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-self: flex-end;
  width: 48.5%;
  /*    max-width: 560px; */
}
.map iframe {
  width: 100%;
  height: 420px;
  border-radius: 1rem;
  box-shadow: 1px 2px 2px 0 rgba(188, 225, 250, 0.2);
}
/*sp*/
@media (max-width: 768px) {
  .map {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    text-align: center;
    gap: 2rem;
  }
  .map iframe {
    height: 240px;
  }
}







/* ---------------------------------------------

     医療DX推進体制の整備について

 ---------------------------------------------*/

	.medical-care-dx {
		line-height: 1.6;
		/* padding: 2.4rem 3.2rem; */
		border-radius: 10px;
		font-size: 1.5rem;
		text-align: justify;
		/* border: solid 2px var(--primary-200); */
	}
	.medical-care-dx_ttl {
		padding: 0 0 1rem;
		line-height: 1;
		color: var(--primary-600);
		font-size: 1.6rem;
		font-weight: 700;
    		letter-spacing: .1rem;
	}


@media screen and ( max-width:750px ) {
	.medical-care-dx {
		/* padding: 20px; */
		border-radius: 10px;
		font-size: 1.3rem;
	}
	.medical-care-dx_ttl {
    padding: 0 0 12px;
        line-height: 1;
        font-size: 1.6rem;
	}
}
/* ---------------------------------------------

     医療DX推進体制の整備について

 ---------------------------------------------*/













/* ---------------------------------------------

     first 初診の方

--------------------------------------------- */

/*   table   --*/
.tb_first {
  width: 100%;
  border-spacing: 0;
}

.tb_first tbody{
    display: grid;
  gap:2rem;
}

.tb_first tr {
  display: flex;
  gap:3rem;
}




.first_list{
    display: grid;
    gap: 1rem;
}

.first_item{
    display: flex;
}

.first_ttl {
border: solid 1px #7edee2;
    /* background-color: #f9f9f9; */
    /* background-color: #7edee2; */
    text-align: center;
    border-radius: 50vh;
    font-family: 'Zen Kaku Gothic New';
    padding: 0.6rem 1rem 1rem;
    line-height: 0.9 !important;
    min-width: 80px;
    min-height: 80px;
    align-content: center;
}

.first_ttl .en {
  letter-spacing: 0.01em;
  font-size: 1rem;
}

.first_ttl .num {
  letter-spacing: 0.2rem;
color: #7edee2;
    font-size: 4rem;
    font-weight: 900;
}


.dotline:after {
  content: '';
  background: #00aab8;
  position: absolute;
  width: 1px;
  bottom: 0;
  left: 60px;
  top: 2.4rem;
  height: 2px;
  width: 10px;
}


.dotline{
    position: relative;
}

/*
.dotline:before {
  content: '';
  position: absolute;
  width: 1px;
  background: #9DBEE1;
  top: 50px;
  left: 50%;
  height: calc(100% - 40px);
}
*/



.first_txt{
    /* margin-left: 1rem; */
    align-self: center;
    line-height: normal;
}



/* ---------------------------------------------

     first よくある質問

--------------------------------------------- */

.faq {
    
}

.faq__list {
    
}

.faq__item {
    background-color: var(--primary-50);
    padding: 24px 28px 28px;
}
@media screen and (max-width: 768px) {
    .faq__item {
        background-color: #f9fbee;
        padding: 16px 16px 20px;
    }
}

.faq__item--margin-pc40 {
    margin-bottom: 40px;
}

.faq__item--margin-pc20 {
    margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
    .faq__item--margin-sp20 {
        margin-bottom: 20px;
    }
    
    .faq__item--margin-sp10 {
        margin-bottom: 10px;
    }
    
    .faq__item--margin-sp16 {
        margin-bottom: 16px;
    }
}

.faq__header {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1.2rem;
}
@media screen and (max-width: 768px) {
    .faq__header {
        gap: 1rem;
    }
}

.faq__number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-500);
}
@media screen and (max-width: 768px) {
    .faq__number {
        font-size: 2rem;
    }
}

.faq__question {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
}
@media screen and (max-width: 768px) {
    .faq__question {
        font-size: 16px;
        font-weight: 700;
        line-height: 1.5;
    }
}

.faq__answer {
    padding-left: 48px;
    margin-top: 8px;
}
@media screen and (max-width: 768px) {
    .faq__answer {
        padding-left: 0px;
        margin-top: 1rem;
        font-size: 14px;
        line-height: 1.7;
    }
}
/* ---------------------------------------------

     first よくある質問

--------------------------------------------- */

















/* ---------------------------------------------

     card 

--------------------------------------------- */

/* PC */
.card_b {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
      gap: 7.2rem 2.4rem;
  text-align: left;
  padding: 0 ;
}
.card_b .text-area {
	margin-bottom: 1.8rem;
}

/* sp */
@media screen and (max-width:768px) {
.card_b {
  display: grid;
  grid-template-columns: repeat(1, minmax(200px, 1fr));
  gap: 28px 40px;
  text-align: left;
  padding: 0 ;
}
}

.card_b .card_img-area {
  aspect-ratio: 3/2;
  margin-bottom: 20px;
}

.card_b .card_img-area img {
  background-color: #e6e6e6;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-fit: contain;
  border-radius: 1rem;

}

.card_b .card_ttl {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0px;
  line-height: 2.1;
}

.card_b .card_txt {
  font-size: 1.5rem;
  line-height: 1.8;
}


@media (max-width: 768px) {
.card_b .card_ttl {
      line-height: 1.5;
}

.card_b .card_txt {
    font-size: 1.4rem;
        line-height: 150%;
}

}




/* PC */
.card_c {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 40px 30px;
  text-align: left;
}
.card_c .text-area {
	margin-bottom: 1.8rem;
}

/* sp */
@media screen and (max-width:768px) {
.card_c {
  display: grid;
  grid-template-columns: repeat(1, minmax(200px, 1fr));
  gap: 40px 40px;
  text-align: left;
  padding: 0 12px;
}
}

.card_c .card_img-area {
  aspect-ratio: 3/2;
  margin-bottom: 16px;
}

.card_c .card_img-area img {
  background-color: #e6e6e6;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-fit: contain;
  border-radius: 1rem;
  border: solid 1px var(--primary-300);
}

.card_c .card_ttl {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0px;
  line-height: 2.1;
}

.card_c .card_txt {
  font-size: 1.5rem;
        line-height: 1.8;
}


@media (max-width: 768px) {
.card_c .card_ttl {
      line-height: 1.5;
}

.card_c .card_txt {
    font-size: 1.4rem;
        line-height: 150%;
}

.card_c .text-area {
	margin-bottom: 0;
}
}










/* ---------------------------------------------

     Information 診療案内

--------------------------------------------- */


/* ---------------------------------------------
     ページ内リンク
--------------------------------------------- */
.section-nav {
  padding: 3.2rem 0 4rem;
}
@media (max-width: 768px) {
  .section-nav {
    padding: 1.4rem 0 1.6rem;
  }
}


.section-nav__contents{
  padding: 20px 28px 28px;
  background-color: var(--accent-100);
  border-radius: 1rem;
  display: grid;
  gap: 1.6rem;
}
@media (max-width: 768px) {
  .section-nav__contents{
 padding: 1.8rem 1.8rem 2.2rem;
}
}


.section-nav__title{
    font-weight: 500;
  position: relative;
}
.section-nav__title::before{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1rem;
    margin: auto;
    background-color: var(--accent-500);
    content: "";
    z-index: 0;
}

.section-nav__title span{
position: relative;
    background-color: var(--accent-100);
    padding-right: 1rem;
}


.section-nav__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .section-nav__list {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.6rem;
  }
}

.section-nav__item {
  width: 100%;
  border-radius: 1rem;
}

.section-nav__item:hover {
  transition-duration: 0.3s, 2s;
}

/* リンク全体 */
.section-nav__link {
  display: block;
  width: 100%;
  background-color: #fff;
  border-radius: 1rem;
  /* border-radius: 13rem; */
  text-align: center;
  font-weight: 600;
  font-size: 1.8rem;
  box-shadow: 0px 0px 6px rgba(129, 129, 129, 0.2);
  position: relative;
  padding: 14px 18px;
}

.section-nav__link:hover {
  background-color: var(--primary-400);
  /* border: solid 2px #add97d; */
  box-shadow: none;
  transition-duration: 0.3s, 2s;
}

@media (max-width: 768px) {
  .section-nav__link {
    font-size: 16px;
    padding: 1.6rem 2rem;
    text-align: left;
    border-radius: 1rem;
    box-shadow: 0px 0px 2px rgba(129, 129, 129, 0.3);
  }
}

/* ▼ 矢印付き装飾 */
.section-nav__link--arrow::before {
  content: '';
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: -1px;
  right: 13px;
  bottom: 0;
  margin: auto;
}

.section-nav__link--arrow::after {
  content: '';
  width: 8px;
  height: 8px;
  border-top: solid 2px #401600;
  border-right: solid 2px #401600;
  transform: rotate(135deg);
  position: absolute;
  top: 43%;
  right: 28px;
  margin: auto;
}

.section-nav__link--arrow:hover::after {
  top: 2.6rem;
  transition-duration: 0.3s, 2s;
/*  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  */
}



/* 内科 */
.section-nav__link--internal{
  border: 2px solid #a3d5f0;
}
.section-nav__link--internal:hover{
background-color: #a3d5f0;
}

/* 小児科 */
.section-nav__link--Pediatrics{
  border: solid 2px var(--accent-300);
}
.section-nav__link--Pediatrics:hover{
  background-color: var(--accent-300);
}

/* 心療内科 */
.section-nav__link--psychosomatic{
  border: 2px solid #ffc4dc;
}
.section-nav__link--psychosomatic:hover{
    background-color: #ffc4dc;
}




/* ---------------------------------------------
     ページ内リンク
--------------------------------------------- */



/* ---------------------------------------------

     Information 診療案内

--------------------------------------------- */





.arrow_down h2:first-letter{
  color: #c13d60;

}

.arrow_down h2{
  font-size: 18px;
    letter-spacing: 0.1em;
    font-weight: 900;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, YakuHanJP_Narrow, 'Zen Kaku';
}
@media (max-width: 768px) {
.arrow_down h2{
  font-size: 16px;
  }
}



.arrow_down {
  position: relative;
  display: inline-block;
}
.arrow_down:before {
  content: '';
  width: 30px;
  height: 30px;
  /* border: solid 1px #b3edee; */
  /* background: #fff; */
  border-radius: 50%;
  position: absolute;
  top: -1px;
  right: 13px;
  bottom: 0;
  margin: auto;
}

.arrow_down:after {
  content: '';
  border: 0;
  width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px #00aab8;
    border-right: solid 2px #00aab8;
  border-top: solid 2px #7edee2;
  border-right: solid 2px #7edee2;
      border-top: solid 2px #42c7ce;
    border-right: solid 2px #42c7ce;
  transform: rotate(135deg);
  position: absolute;
  top: 40%;
  right: 10px;
  /* bottom: 0; */
  margin: auto;

}


.arrow_down:hover:after {
  top: 3rem;
  transition-duration: 0.3s, 2s;
      border-top: solid 2px #00aab8;
    border-right: solid 2px #00aab8;
}

.fixed_side_btn a:hover, .fixed_side_btn a:active {
    transform: translateY(+5px);
    transition-duration: 0.3s, 2s;
}





/*    -----20241024_clinic_mask----------    */

.ttl_2bro{
  display: flex;
  gap:2rem;
}

.ttl_2bro .clinic_box2{
width: 10%;
}

._invis{
  display: grid !important;
}

.__invis{
  display: none !important;
}


@media (max-width: 1100px) {

.ttl_2bro .clinic_box2{
width: 100%;
}

._invis{
    display: none !important;
}

.__invis{
  display: grid !important;
  justify-content: center;
}
}



.bc_ttlpic{
    position: absolute;
    right: 0%;
    bottom: -2%;
    width: 35%;
    min-width: 360px;
    opacity: 0.6;
}

@media (max-width: 1100px) {
.bc_ttlpic{
position: absolute;
right: -25px;
        bottom: -10%;
        width: 32%;
        min-width: 160px;
        opacity: 0.7;
}
}




.gmap iframe{
  width: 100%;
  height: 400px;
      border-radius: 1rem;
}

@media (max-width: 768px) {
.gmap iframe{
  width: 100%;
  height: 200px;
}
}



.contents_wrap iframe{
    width: 100%;
    height: 500px;
}

@media (max-width: 768px) {
.contents_wrap iframe{
  width: 100%;
  height: 200px;
}
}
























/*------------------------------------------------

料金表

--------------------------------------*/

/*pc*/
@media all and (min-width:751px) {

.gray_back{
  width: 100%;
  padding: 1.6rem 2rem;
  line-height: 2.4;
  background: #f9fbee;
}

.m_menu_wrap{
	width: 100%;
	display: flex;
	justify-content: space-between;
  border-bottom: #fff solid 2px;
}

.menu_name {
	width: 50%;
	padding-right: 4%;
	letter-spacing: 0;
}

.menu_price {
	flex: 1;
  text-align: end;
}
/*
.menu_name::before{
  content: "";
  background: url("../images/ic_checkbox.svg");
  width: 1.8rem;
  height: 1.8rem;
  display: inline-block;
  vertical-align: sub;
  margin: 0 .7rem 0 0;
}
*/
  
}



/*sp*/
@media all and (max-width:750px) {
.gray_back{
  width: 100%;
  padding: 2rem;
  line-height: 1.6;
  font-size: 1.4rem;
  background: #f9fbee;
}

.m_menu_wrap{
	width: 100%;
	display: flex;
	justify-content: space-between;
          padding-top: 0.8rem;
  border-bottom: #fff solid 2px;
}

.menu_name {
	width: 75%;
	padding-right: 4%;
	letter-spacing: 0;
  text-indent: -1.8rem;
  padding-left: 1.8rem; 
}

.menu_price {
	flex: 1;
  text-align: end;
}

  /*
.menu_name::before{
  content: "";
  background: url("../images/ic_checkbox.svg");
  width: 1.8rem;
  height: 1.8rem;
  display: inline-block;
  vertical-align: sub;
  margin: 0 .7rem 0 0;
}
*/
  
}




.link_arrow {
    position: relative;
  /* padding-right: 2.8rem; */
    border-bottom: solid 1px #40aff0;
}
.index_link{
      color: #d75c77;
    line-height: 2.2;
    font-size: 1.6rem;
}
/*sp*/
@media all and (max-width:750px) {
  .index_link{
    font-size: 1.5rem;
}
}
/*
.link_arrow::after {
    content: '';
    position: absolute;
    display: block;
    top: 30%;
    transform: translateY(-25%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-bottom: 2px solid #c13d60;
    border-right: 2px solid #c13d60;
  right: 6px;
}
*/
/*------------------------------------------------

料金表

--------------------------------------*/






















/* ---------------------------------------------

     治療

--------------------------------------------- */


.treat_conts{
display: flex;
      gap: 1.6rem 4rem;
   /*  padding-bottom: 2.4rem; */
    display: grid;
    grid-template-columns: 1fr 44%;
  grid-template-columns: 30rem 1fr;
}

.img-area{
aspect-ratio: 3 / 2;
min-width:340px;
width: 340px;
  padding-top: 0.6rem;
}

.bg_wht .point .txt_ttl_w h4 {
	background-color: #EEFCFC;
}

.inspection_list {
 list-style: none;
}
.inspection_list li{
  display: flex; /* 点とリストを横並びに */
/*  align-items: center;*/
}
.inspection_list li::before{
 content: "⚫︎"; /* 記号(黒丸)を挿入 */
 color: var(--primary-400); /* 好きな色にする */
 font-size: 0.6em; /* 点の大きさ */
 margin-right: 1em; /* 点とテキストの距離 */
 margin-top: 0.6rem;
}
.inspection_list li span{
  font-weight: bold;
  color: #4b505a;
  display: contents;
}

.narrow_gap {
	gap: 4rem 0;
}

/*sp*/
@media all and (max-width:1024px) {
  .treat_conts{
  /* flex-direction: column-reverse; */
    align-items: center;
display: flex;
    flex-wrap: wrap;
    justify-content: center;
   /* padding-bottom: 2rem; */
}
.img-area{
  width:80%;
min-width:80%;
}
}

.treat_conts .img-area{
aspect-ratio: 3 / 2;
    align-self: center;
    width: 100%;
    padding-top: 0;
    min-width: 100%;
}
/*sp*/
@media all and (max-width:768px) {
  .treat_conts .img-area{
    
  }
}


.treat_conts .img-area img{
border-radius: 1rem;
}
/*sp*/
@media all and (max-width:1024px) {
  .treat_conts .img-area img{
    background-color: #e6e6e6;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-fit: contain;
    border-radius: 1rem;
  }
}
/* ---------------------------------------------

     治療

--------------------------------------------- */










/* ---------------------------------------------

  特徴＿feature   

--------------------------------------------- */

.feature {
background-size: cover;
padding-bottom: 16rem;
padding-top: 8rem;
  overflow: hidden;
}

@media (max-width: 768px) {
.feature{
  padding-bottom:7rem;
      padding-top: 4rem;
}
}


.feature .ttl_01{
  padding-bottom: 10rem;
}
@media (max-width: 769px) {
  .feature .ttl_01{
  padding-bottom: 1rem;
}
}


.feature__wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8rem;
}
@media (max-width: 768px) {
  .feature__wrap {
    gap: 2.8rem;
    grid-template-columns: repeat(1, minmax(100px, 1fr));
  }
}



.feature__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px 7.2rem;
  position: relative;
 /* overflow: hidden; */
}
@media (max-width: 768px) {
  .feature__grid {
    gap: 2rem;
    border-radius: 1.6rem;
  }
}


.feature__grid--reverse {
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .feature__grid--reverse {
    flex-direction: inherit;
  }
}


.feature__box-img {
  width: 46%;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .feature__box-img {
    width: 100%;
  }
}


.feature__box-img img {
  aspect-ratio: 3 / 2;
  border-radius: 1rem;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.feature__box-txt {
    display: grid;
  gap: 24px;
    border-radius: 1.6rem;
    width: 40%;
}


@media (max-width: 768px) {
  .feature__box-txt {
    width: 100%;
    display: grid;
    gap: 12px;
    border-radius: 1.6rem;
    background: none;
  }
}


.feature__number-wrap {
  display: grid;
    align-items: center;
    /* gap: 0.5rem; */
    grid-template-columns: 10rem 1fr;
}
@media (max-width: 768px) {
  .feature__number-wrap {
    display: grid;
    align-items: center;
    gap: 0.5rem;
    grid-template-columns: 4.8rem 1fr;
  }
}


.feature__text-area {
    display: grid;
    gap: 24px;
}
@media (max-width: 768px) {
  .feature__text-area {
    gap: 6px;
  }
}


.feature__card-ttl {
    font-size: 2.8rem;
    line-height: 1.4;
    /* text-align: justify; */
    display: flex;
    align-items: center;
    font-weight: 800;
}
@media (max-width: 768px) {
  .feature__card-ttl {
    font-size: 1.8rem;
  }
}


.feature__card-txt {
  line-height: 2.4em;
  letter-spacing: 0.05em;
 /* color: #656565; */
}
@media (max-width: 768px) {
  .feature__card-txt {
    line-height: 1.8;
    font-size: 1.4rem;
  }
}


.feature__number {
font-size: 4rem;
position: relative;
line-height: 1;
font-weight: 800;
color: var(--primary-500);
text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0 1px 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}
@media (max-width: 1024px) {
.feature__number {
    font-size: 5rem;
  }
}
@media (max-width: 768px) {
  .feature__number {
    font-size: 2.8rem;
  }
}





.plaid::before {
  content: " ";
  position: absolute;
  background-color: #ffffff;
  background-image: linear-gradient(90deg, #f9f9f980 2px, transparent 2px), linear-gradient(#f9f9f980 2px, transparent 2px);
  background-position: 10px 10px;
  background-size: 17px 17px;
  z-index: -1;
  width: 100%;
  height: 2200px;
 /* top: -24%; */
}
@media (max-width: 768px) {
  .plaid::before {
    content: " ";
    position: absolute;
    width: 100%;
    height: 110%;
    top: -10%;
  }
}


.grad{
  position: relative;
  background: rgb(255,255,255);
background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(242,251,253,1) 4%, rgba(242,251,253,1) 24%, rgba(255,255,255,0) 36%);
}






        /* 背景装飾要素 */
 /* 背景装飾の追加 */
 .feature__grid::before {
   content: '';
   position: absolute;
 background-color: var(--primary-50);
   z-index: -1;
 }

 /* 1番目と3番目：左から */
 .feature__grid:nth-child(1)::before, .feature__grid:nth-child(3)::before {
      right: -100vw;
   left: 52%;
    top: 12%;
    bottom: -8%;
 }

 /* 2番目：右から */
 .feature__grid:nth-child(2)::before {
   left: -100vw;
   right: 52%;
   top: 12%;
   bottom: -8%;
 }


 @media (max-width: 768px) {
   .feature__grid::before {
     
   }
   .feature__grid:nth-child(1)::before, .feature__grid:nth-child(3)::before {
     right: -50vw;
     left: 20%;
     top: 5%;
     bottom: 34%;
     border-bottom-left-radius: 5rem;
   }
   .feature__grid:nth-child(2)::before {
          left: -50vw;
     right: 12%;
     top: 5%;
     bottom: 28%;
     border-bottom-right-radius: 5rem;
   }
 }




/* 未使用のCSSクラス */
.feature__wrap--3cl {
  display: grid;
  align-items: flex-start;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
/*
        .box_txt {
          width: 47.5%;
          gap: 24px;
          display: grid;
            position: relative;
              gap: 6px;
        border-radius: 1.6rem;
            background-color: #f2fbfd;
            padding: 2rem;
        }
        */
.feature__column--reverse {
  flex-direction: inherit;
}
@media (max-width: 768px) {
  .feature__column--reverse {
    flex-direction: column-reverse;
  }
}
@media (max-width: 768px) {


}

/* ---------------------------------------------

  特徴＿feature   

--------------------------------------------- */














/* ---------------------------------------------

  キャラ揺らす   

--------------------------------------------- */

.greeting__top{
  position: relative;
}

.greeting__top::before {
  position: absolute;
  content: "";
  z-index: 1;
  top: 2rem;
  left: 0;
  right: 0;
  margin: auto;
  width: 20rem;
  aspect-ratio: 1 / 0.96;
  background: url(../images/logo/chara.png);
  background-size: cover;
  
  /* アニメーション設定 */
  transform-origin: bottom center;
  animation: swingCharacter 3s ease-in-out infinite;
}

@media (max-width: 1024px) {
  .greeting__top::before {
    position: absolute;
    content: "";
    z-index: 1;
    top: 4rem;
    left: 0;
    right: 0;
    margin: auto;
    width: 13rem;
    
    /* モバイルでも同じアニメーション */
    transform-origin: bottom center;
    animation: swingCharacter 3s ease-in-out infinite;
  }
}

/* 扇状に揺らすキーフレーム（滑らかな動き） */
@keyframes swingCharacter {
  0% {
    transform: rotate(-8deg);
  }
  50% {
    transform: rotate(8deg);
  }
  100% {
    transform: rotate(-8deg);
  }
}

/* より自然な揺らぎのバリエーション（お好みで使用） */
@keyframes swingCharacterNatural {
  0% {
    transform: rotate(-3deg);
  }
  20% {
    transform: rotate(6deg);
  }
  40% {
    transform: rotate(-4deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-2deg);
  }
  100% {
    transform: rotate(-3deg);
  }
}

/* ホバー時により大きく揺らす（オプション） */
.greeting__top:hover::before {
  animation: swingCharacterHover 1.5s ease-in-out infinite;
}

@keyframes swingCharacterHover {
  0% {
    transform: rotate(-12deg);
  }
  50% {
    transform: rotate(12deg);
  }
  100% {
    transform: rotate(-12deg);
  }
}
/* ---------------------------------------------

  キャラ揺らす   

--------------------------------------------- */














/* ---------------------------------------------

  挨拶＿greeting   

--------------------------------------------- */


.greeting {padding: 4rem 0px 14rem 0px;position: relative;background-size: cover;}

@media (max-width: 768px) {
.greeting{
        padding: 4rem 0 8rem 0px;
}
}

/*
.greeting::before{
position: absolute;
    content: "";
    background: url("../images/logo/icon_flower.png") no-repeat;
width: 90px;
    height: 60px;
    left: 8em;
    top: 8rem;
    background-size: cover;
    z-index: 1;
    transform: rotate(-9deg);
} 

@media (max-width: 768px) {
  .greeting::before{
    
  }
}


.greeting::after{
position: absolute;
    content: "";
    background: url("../images/logo/icon_flower.png") no-repeat;
width: 90px;
    height: 60px;
    right: 8em;
    top: 8rem;
    background-size: cover;
    z-index: 1;
    transform: rotate(24deg);
}

*/

.headline{
  position: relative;
}

/*
.greeting-flex_box {
	display: flex;
	flex-wrap: wrap;
}
.greeting-col {}
#col-a {
	order: 1;
	width: 66%;
}
#col-c {
	order: 2;
	width: 28%;
	margin-left: 6%;
}
#col-b {
	order: 3;
	width: 100%;
}
*/

.top_greeting_ttl{
    margin-bottom: 5rem;
    display: grid;
    justify-content: center;
    text-align: center;
}

@media (max-width: 1024px) {
.top_greeting_ttl{
    margin-bottom: 4rem;
}
}

@media (max-width: 768px) {
.top_greeting_ttl{
  margin-bottom: 0;
  justify-content: center;
  margin-bottom: 2.4rem;
  }
} 

.top_greeting_ttl h2{
      display: grid;
  gap:1.2rem;
}
@media (max-width: 768px) {
  .top_greeting_ttl h2{
gap: 12px;
  }
}






.greeting 
.ttl_01 .jp {
    font-size: 3rem;
}
@media (max-width: 768px) {
  .greeting 
.ttl_01 .jp {
    font-size: 2.4rem;
}
}

/*sp*/
@media all and (max-width:768px) {
.greeting .backttl{
    position: absolute;
    z-index: -1;
font-size: 5rem;
        left: 0;
        right: 0;
        margin: 0 auto;
        bottom: 54px;
  font-weight: 700;
}
}


/*sp*/
@media all and (max-width:768px) {
.greeting .headline{
          font-size: 2rem;
        padding-bottom: 1rem;
}
}
.greeting .inner{
  max-width: 70em;
}




@media (max-width: 768px) {
 .greeting .inner {
        width: calc(100% - 64px);
    }
 #col-a {
	    order: 1;
	    width: 100%;
    }
 #col-b {
	    order: 2;
	    width: 100%;
    }
 #col-c {
	    order: 3;
	    width: 100%;
	    margin: 0 auto;
	    display: flex;
   	    flex-direction: column;
    }
  #doctor_img_top {
		width: 19rem;
		margin-bottom: 0;
	}
  #col-c .name_grid {
	    margin: 0 auto;
	    margin-top: 1.5rem;
	}	
}

.greeting .headline{
      text-align: left;
      padding-bottom: 2rem;
}

.greeting .txt{
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    line-height: 2.2;
    text-align: center;
}

/*sp*/
@media (max-width: 768px) {
.greeting .txt{
        justify-content: space-between;
        line-height: 2;
        font-size: 1.4rem;
        text-align: left;
  text-align: justify;
}
 #col-a .scroll-fade-row {
		padding-bottom: 0 !important;
}
}


.greeting .txt span{
  color: #00aab8;
}
/* ---------------------------------------------

  挨拶＿greeting   

--------------------------------------------- */







/* ---------------------------------------------

  名前＿   

--------------------------------------------- */

.doctor{
    padding-bottom: 12rem;
}

/*sp*/
@media (max-width: 768px) {
.doctor{
  padding-bottom: 3rem;
}
}

@media (max-width: 768px) {
 .doctor .inner {
        width: calc(100% - 64px);
    }
}


.name_grid{
 display: flex;
  flex-wrap: nowrap;
  gap: 6rem;
    justify-content: center;
    text-align: center;
}

/*sp*/
@media (max-width: 768px) {
.name_grid{
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 2.8rem;
        padding-bottom: 5rem;
        text-align: left;
}
}




.doctor_img img{
  width: 360px;
border-radius: 1rem;
}
@media (max-width: 768px) {
.doctor_img img{
max-width: 100%;
    width: 100%;
    }
}




.content__w{
background: var(--primary-50);
}
/*sp*/
@media (max-width: 768px) {
.content__w{

}
}
/* ---------------------------------------------

  名前＿   

--------------------------------------------- */







/* ---------------------------------------------

  経歴＿career   

--------------------------------------------- */

.doctor_career{

}



.doctor_career .inner {
    margin: 0 auto;
      display: grid;
    gap: 4rem;
}

/*sp*/
@media (max-width: 768px) {
.doctor_career .inner {
  gap:3.2rem;
  gap:0;
  background-color: #fff;
    border-radius: 16px;
  }
}


.career_wrap {
    background-color: #fff;
    border-radius: 16px;
    padding: 40px 50px 60px;
  padding: 20px 32px 40px;
    box-shadow: 1px 2px 2px 0 rgba(101, 141, 204, 0.2);
}

/*sp*/
@media (max-width: 768px) {
  .career_wrap {
    padding: 16px 20px 26px;
    box-shadow: none;
}
}


.doctor_name{
  color: #454458;
  letter-spacing: 0.1rem;
      align-content: flex-end;
}

@media (max-width: 768px) {
 .doctor_name {
    padding: 0;
    }
}

.name_jp{
  font-size: 2.2rem;
  width: 100%;
  font-weight: 500;
  line-height: 1;
  margin-top: 1rem;
}
/*sp*/
@media (max-width: 768px) {
.name_jp{
  font-size: 2rem;
  width: 100%;
  font-weight: 500;
}
}


.name_en{
  font-size: 1.5rem;
  color: var(--primary-500);
          padding-left: 1.6rem;
}
/*sp*/
@media (max-width: 768px) {
.name_en{
  padding-left: 1.6rem;
}
}


/*    --------------------    */
.doctor_career dl{
    font-size: 1.5rem;
      display: grid;
    gap: 1rem;
      font-weight: 400;
      color: #656565;
}

/*sp*/
@media (max-width: 768px) {
  .doctor_career dl{
  font-size: 1.4rem;
}
}

.prof{
  display: flex;
    color: #656565;
}

.date{
  width: 80px;
  min-width: 80px;
color: #00aab8;
}

.feature .grid .prof{
  font-size: 1.4rem;
}

.feature .grid .dot{
    width: 20px;
    min-width: 20px;
}

/*sp*/
@media (max-width: 768px) {
  .date{
width: 64px;
        min-width: 64px;
}
}

.dot {
    width: 28px;
    min-width: 28px;
    color: #00aab8;
}
/*sp*/
@media (max-width: 768px) {
  .dot{
  width: 20px;
  min-width: 20px;
}
}


.career_grid {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  gap: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/*sp*/
@media (max-width: 768px) {
  .career_grid {
  gap: 3.2rem;
      gap: 0;
}
}

.career_box {
  width: 100%;
  align-items: flex-start;
  border-radius: 16px;
  height: 100%;
}


.career_list {
  text-align: left;
  gap: 0.6rem;
  display: grid;
    font-size: 1.5rem;
      font-weight: 400;
}

/*sp*/
@media (max-width: 768px) {
  .career_list {
  font-size: 1.4rem;
}
}

.career_list li {
    border-bottom: solid 1px #ededed;
}

.career_grid .prof {
    border-bottom: solid 1px #ededed;
}

/* ---------------------------------------------

  経歴＿career   

--------------------------------------------- */











.access_map_illust{
  justify-content: center;
}



.various_img{
  width: 80%;
  max-width: 520px;
  margin: 0 auto;
}


/* ---------------------------------------------

  内覧会  

--------------------------------------------- */
.nairankai {
  background: rgba(239, 252, 252, 0.8);
      border: solid 1px #7edee2;
  padding: 1.6rem 2rem;
  border-radius: 1rem;
  text-align: center;
  font-weight: 500;
    background: #effcfc;
    border: solid 2px #7edee2;
}

.nairankai .head {
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.2em;
}

.nairankai span{
      font-size: 1.8rem;
}

/*sp*/
@media (max-width: 1024px) {
.nairankai {
  padding: 1.6rem 2rem;
}

.nairankai .head {
  font-size: 1.8rem;
}

.nairankai span{
      font-size: 1.6rem;
}

}

/*sp*/
@media (max-width: 768px) {
  .nairankai {
         padding: 1rem 1.2rem;
        line-height: 1.5;
        padding-bottom: 1.8rem;
    }
}

/*sp*/
@media (max-width: 750px) {
.nairankai p{
      font-size: 1.3rem;
}
}

/* ---------------------------------------------

  内覧会  

--------------------------------------------- */





