@charset "UTF-8";

 /* ==========================================================
       CSS Variables
    ========================================================== */ 
:root {
   --color-primary: #C04F15;
   --color-primary-h: #a8410f;
   --color-secondary: #caa886;
   --color-secondary-l: #dfc9b0;
   --color-bg: #f3ece2;
   --color-bg-soft: #FBE3D6;
   --color-bg-light: #fdf8f4;
   --color-bg-white :#fffdfb;
   --color-border: #e5d5c3;
   --color-border-l: #f0e4d8;
   --color-text: #3a2c22;
   --color-text-mid: #6b5344;
   --color-text-light: #9a7e6a;
   --color-white: #ffffff;
   --font-round: 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
   --font-sans: 'Noto Sans JP', sans-serif;
   --font-en: 'Montserrat', sans-serif;
 }










/* ここからフェードインアニメーション */
.scroll-fade-row {
  opacity: 0;
}

.scroll-fade-row.is-visible {
  opacity: 1;
}

.scroll-fade-row > * {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 800ms, transform 800ms;
}

.scroll-fade-row.is-visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 50ms; }
.scroll-fade-row.is-visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 150ms; }
.scroll-fade-row.is-visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 250ms; }
.scroll-fade-row.is-visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 350ms; }


/* ---------------------------------------------

  共通パーツ   

--------------------------------------------- */


.inner {
    width: calc(100% - 120px);
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 1100px) {
  .inner {
    max-width: 90%;
    width: calc(100% - 120px);
    }
  #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: var(--color-primary-h);
  border-bottom: 2px dotted var(--color-primary);
}

.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 - 140px);
    width: 100%;
  /*  border-radius: 10px 10px; */
  margin-bottom: 1.6rem;
}

/*sp*/
@media all and (max-width:768px) {
  .swiper {
    border-radius: 15px;
    width: 100%;
    /* margin-bottom: 10px; */
    /* border: solid 4px #9DBEE1; */
    background-size: cover;
    /* height: calc(100vh - 130px); */
    max-height: 580px;
  }
}


.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;
}
@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: 130px;
}
/*
.swiper_back::before{
 position: absolute;
 top: 50px;
 right: 0px;
 display: block;
 width: calc(350px + 6vw);
 height: calc(840px + 10vw);
 border-radius: 50vh;
 margin: 0;
 padding: 0;
 content: '';
 border-radius: 50vh 0 0 50vh;
 background-color: #d6f7f7;
 z-index: -1;
}
@media all and (max-width:768px) {
.swiper_back::before{
    width: calc(280px + 6vw);
    height: calc(580px + 7vw);
  }
}
*/

  /*sp*/
@media all and (max-width:1024px) {
  .swiper_back {
        background-size: cover;
        margin-top:7rem;
        padding-bottom: 2rem;
        padding-bottom: 0rem;
  }
}

/* ---------------------------------------------

   swiper   

--------------------------------------------- */





/* ==========================================================
       Firstview
    ========================================================== */
.mv {
  position: relative;
  overflow: hidden;
  padding-top: 14rem; /* header height */
  padding-bottom: 10rem;
   background-color: var(--color-bg); 
}
.mv__wrap {
  /* display: flex; */
  /* align-items: stretch; */
  /* min-height: calc(100vh - 18rem); */
  /* position: relative; */
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2%;
  padding-top: 0rem;
  padding-left: 34rem;
  gap: 1.3rem 7%;
  background-color: var(--color-bg);
}
/* Left text panel */
.mv__left {
  position: absolute;
  left: 0;
  top: 0;
  width: 38rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 5rem 3rem 6rem 5rem;
  z-index: 10;
  background: linear-gradient(to right, rgba(243, 236, 226, 1) 60%, rgba(243, 236, 226, 0) 100%);
}
@media (max-width: 1024px) {
  .mv__left {
    width: 100%;
    position: relative;
    padding: 4rem 3rem 3rem;
    background: none;
  }
}
.mv__catch {
  margin-bottom: 3.2rem;
}
.mv__catch-sub {
  font-size: 1.6rem;
  color: var(--color-text-mid);
  font-weight: 500;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}
.mv__catch-main {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.7;
  color: var(--color-text);
}
@media (max-width: 768px) {
  .mv__catch-main {
    font-size: 2rem;
  }
  .mv__catch-sub {
    font-size: 1.4rem;
  }
}
.mv__catch-main .highlight {
  color: var(--color-primary);
}
.mv__open-badge {
  display: inline-flex;
  flex-direction: column;
  gap: .8rem;
  background-color: var(--color-primary);
  color: #fff;
  padding: 1.6rem 2.4rem;
  border-radius: 1.2rem;
  margin-bottom: 2rem;
}
.mv__open-date {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: .06em;
}
.mv__open-label {
  font-size: 1.3rem;
  opacity: .9;
  font-weight: 500;
}
.mv__nairankai {
  background-color: var(--color-bg-soft);
  border: 2px solid var(--color-secondary-l);
  border-radius: 1rem;
  padding: 1.6rem 2rem;
  font-size: 1.4rem;
  line-height: 1.9;
}
.mv__nairankai strong {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
  margin-bottom: .4rem;
}
/* Right image area */
.mv__img {
  width: 100%;
  height: calc(100vh - 8rem);
  min-height: 500px;
  margin-left: 28rem;
  border-radius: 4rem 0 0 4rem;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1024px) {
  .mv__img {
    margin-left: 0;
    border-radius: 1.6rem;
    height: 50vh;
    min-height: 340px;
  }
}
/* Swiper inside mv */
.mv__swiper {
  width: 100%;
  height: 100%;
}
.mv__swiper .swiper-slide {
  overflow: hidden;
}
.mv__swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* scroll indicator */
.mv__scroll {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-en);
  font-size: 1rem;
  letter-spacing: .2em;
  color: var(--color-text-light);
  z-index: 20;
}
.mv__scroll-line {
  width: 1px;
  height: 5rem;
  background: linear-gradient(to bottom, var(--color-secondary), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
@media (max-width: 768px) {
  .mv__scroll {
    display: none;
  }
}
/* Mobile FV layout */
@media (max-width: 1024px) {
  .mv__wrap {
    flex-direction: column;
    gap: 4rem;
    padding: 0 1.2rem;
  }
  .mv__left {
    width: 100%;
    position: relative;
    background: var(--color-bg);
    padding: 3rem 2rem;
  }
}

/*--------------------------------------------- */
/*　左右分割タイプ　*/

.mv_bg {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .mv_bg {
    position: relative;
    overflow: hidden;
    /* background: linear-gradient(350deg, transparent 0%, transparent 60%, #e3f3fc 50%, #e3f3fc 100%);*/
  }
}



.mv_wrap {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2%;
  padding-top: 13rem;
  padding-left: 34rem;
  gap: 1.3rem 7%;
}
@media screen and (max-width: 1024px) {
  .mv_wrap {
    flex-direction: column;
    margin-top: 8rem;
    margin-bottom: 8rem;
    padding: 0 1.2rem;
  }
}

.mv_catch {}

.mv_img {
  position: relative;
  width: 100%;
  height: calc(100vh - 18rem);
  margin-left: auto;
  object-fit: cover;
  object-position: top;
  border-radius: 4rem;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .mv_img {
    width: 100%;
    height: calc(100vh - 16rem);
    min-height: 400px;
    max-height: 540px;
    margin-left: auto;
    border-radius: 1rem;
    /* margin-bottom: 40rem; */
  }
}


.mv_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.mv_leftContents {
  position: absolute;
  bottom: 6%;
  left: 6rem;
  z-index: 2;
  align-items: center;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .mv_leftContents {
    position: absolute;
    bottom: auto;
    top: 1.4rem;
    left: auto;
    right: 2.5rem;
    /* width: 80%; */
    /* top: calc(100vh - 58rem); */
    height: fit-content;
  }
}



.mv_title{
  width: auto;
  max-width: 100%;
  height: auto;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 768px) {
  .mv_title{
    font-size: 1.6rem;
    font-weight: 500;
    writing-mode: vertical-rl;
    /* display: grid; */
    /* gap: 0; */
  }
}

.mv_title span{
  display: inline-block;
  padding: 0 2.4rem;
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
  border-radius: 0.2rem;
  background-color: hsla(0, 0%, 100%, .95);
}
@media screen and (max-width: 768px) {
.mv_title span{padding: 1.1rem 0.6rem;border-radius: 0.4rem;}
}


.mv_title__line--1{
  margin-bottom: 2.8rem;
}
@media screen and (max-width: 768px) {
.mv_title__line--1{
  margin-bottom: 0rem;
  margin-left: 1rem;
}
}

.mv_title_sub {
  font-size: 24px;
  font-weight: 700;
}

.mv_title_main {
  position: relative;
  z-index: 1;
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .mv_title_main {
    font-size: 40px
  }
}


.mv_banner {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  max-width: 550px;
  margin-top: 4rem;
  grid-gap: 1em;
}


/* ============================================================
   院内見学会カード — MV 上に浮かせる
============================================================ */
.nairankai-card {
  position: absolute;
  /* top: 0rem; */
  right: 4rem;
  z-index: 4;
  /* width: 36rem; */
  background-color: #fff;
  background-image:
    linear-gradient(rgba(160, 120, 80, .14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160, 120, 80, .14) 1px, transparent 1px);
  background-size: 14px 14px;
  border-radius: 2rem;
  padding: 2.8rem 3.2rem 3.2rem;
  text-align: center;
  box-shadow: 0 6px 28px rgba(100, 60, 20, .14);
  width: fit-content;
}
@media (max-width: 1280px) {
  .nairankai-card {width: 32rem;padding: 2.4rem 2rem 2rem;}
}
@media (max-width: 1024px) {
  .nairankai-card {
    width: 90%;
    max-width: 620px;
    margin: 0 auto;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(100, 60, 20, .10);
    left: auto;
    right: auto;
    top: auto;
    bottom: 0rem;
    /* place-self: center; */
    justify-self: center;
    position: relative;
    margin-top: 4rem;
  }
  .mv {overflow: hidden;padding-top: 8rem;padding-bottom: 5rem;}
}




.nairankai-card.is-visible {
  display: block;
}
@media (max-width: 1024px) {
  .nairankai-card.is-visible {
    display: none;
  }
}

.nairankai-card.is-visible-sp {
  display: none;
}
@media (max-width: 1024px) {
  .nairankai-card.is-visible-sp {
    display: block;
  }
}





/* タブレット以下用ラッパー */
.nairankai-sp-wrap {
  display: none;
  background-color: #fff;
  background-image:
    linear-gradient(rgba(160, 120, 80, .14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(160, 120, 80, .14) 1px, transparent 1px);
  background-size: 14px 14px;
  padding: 5rem 0;
}
@media (max-width: 1024px) { .nairankai-sp-wrap { display: block; } }
@media (min-width: 1025px) { .nairankai-sp-wrap { display: none !important; } }
@media (max-width: 1024px) { .mv .nairankai-card {/* display: none; */} }

/* ヘッダーボックス */
.nairankai-card__head {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-round);
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: .1em;
  padding: 0.6rem 3rem;
  border-radius: .5rem;
  margin-bottom: 2.4rem;
  width: 100%;
  text-align: center;
}
@media (max-width: 1024px) {
  .nairankai-card__head {font-size: 1.8rem;padding: 0.5rem 4rem;margin-bottom: 2.4rem;width: 100%;}
}

/* 日付エリア */
.nairankai-card__date-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1.6rem;
  margin-bottom: 2.6rem;
  flex-wrap: wrap;
}


@media (max-width: 768px) {
.nairankai-card__date-row {
	gap: 0.1rem;
	margin-bottom: 0.4rem;
}
}

.nairankai-card__dates {
  display: flex;
  align-items: baseline;
  gap: .2rem;
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--color-text);
}
.nairankai-card__dates .weight{
	font-weight: 400;
    font-size: 0.9em;
    margin-bottom: 0.1em;
}
.nairankai-card__month-slash {font-size: 6rem;line-height: 1;}
.nairankai-card__day-pair {
  display: inline-flex;
  align-items: baseline;
  gap: .1rem;
}
.nairankai-card__day-num {
  font-size: 7rem;
  line-height: 1;
  letter-spacing: -.04em;
}
@media (max-width: 1024px) { .nairankai-card__day-num {font-size: 6rem;} }

.nairankai-card__day-label {
  font-size: 1.5rem;
  font-weight: 400;
  /* align-self: flex-start; */
  /* margin-bottom: 0.4rem; */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-round);
  border-radius: 50vh;
  width: 2.6rem;
  height: 2.6rem;
  flex-shrink: 0;
  padding-left: 2px;
  margin-bottom: 0.1rem;
}
@media (max-width: 1024px) { .nairankai-card__day-label {font-size: 1.8rem;padding-left: 0.1rem;padding-bottom: 0.1rem;} }

.nairankai-card__dot-sep {
  font-size: 3rem;
  /* color: var(--color-text-light); */
  font-weight: 700;
  line-height: 1;
  margin: 0 0.2rem 0 0.6rem;
}
.nairankai-card__time {
  font-family: var(--font-round);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: .04em;
  white-space: nowrap;
}
@media (max-width: 1024px) { .nairankai-card__time {font-size: 2.2rem;} }

/* スケジュール */
.nairankai-card__schedule {text-align: left;margin-bottom: 1rem;}
.nairankai-card__schedule-ttl {
  font-family: var(--font-round);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  /* text-align: center; */
  letter-spacing: .04em;
  padding-bottom: 1rem;
}
@media (max-width: 1024px) { .nairankai-card__schedule-ttl {font-size: 1.6rem;padding-bottom: 1.2rem;} }

.nairankai-card__schedule-item {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  /* padding: 1rem 0; */
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
  border-bottom: 1.5px solid var(--color-secondary);
  font-family: var(
  --font-round);
  /* font-size: 1.4rem; */
}
@media (max-width: 1024px) { .nairankai-card__schedule-item {font-size: 1.4rem;gap: 1rem;} }

.nairankai-card__schedule-time {
  /* color: var(--color-text-mid); */
  white-space: nowrap;
  min-width: 5rem;
}
.nairankai-card__schedule-content { color: var(--color-text); }

/* プレゼント文 */
.nairankai-card__gift {
  font-family: var(--font-round);
  font-size: 1.4rem;
  /* color: var(--color-primary); */
  text-align: left;
  line-height: 1.8;
  margin-top: 1.4rem;
}
.nairankai-card__gift span{
  background: linear-gradient(transparent 50%, rgba(184, 92, 40, .25) 50%);
  background: linear-gradient(transparent 50%, var(--color-bg-soft)61%);
}

@media (max-width: 1024px) { .nairankai-card__gift {font-size: 1.4rem;margin-top: 0.8rem;} }











 /* ==========================================================
       News
========================================================== */

.news {
  padding-bottom: 14rem;
  padding-top: 14rem;
  background-color: var(--color-bg-light);
}

/*sp*/
@media all and (max-width:768px) {
  .news {
            padding-top: 5rem;
            padding-bottom: 7rem;
  }
}


.news .inner {
  width: 90%;
  max-width: 100%;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .news .inner {
    max-width: 90%;
    width: calc(100% - 50px);
    }
}

@media (max-width: 768px) {
  .news .inner {
    width: calc(100% - 50px);
    }
}



.news__grid {
  width: 100%;
  margin: 0 auto 0;
  display: grid;
  gap: 5rem;
  grid-template-columns: 26rem 1fr;
}

/*sp*/
@media all and (max-width:768px) {
  .news__grid {
    display: flex;
    gap: 2.8rem;
    flex-wrap: wrap;
  }
}




.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;
}




.news__iframe-wrap .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; */
}

.news__iframe-wrap {
 /* background-color: #fffefd; */
 display: flex;
 flex-wrap: wrap;
 justify-content: space-between;
 text-align: left;
 border-top: 2px solid var(--color-border);
 border-bottom: 2px solid var(--color-border);
}
 
.news__iframe-wrap iframe {
  width: 100%;
  height: 480px;
}

/*sp*/
@media all and (max-width:768px) {
  .news__iframe-wrap {
    width: 100%;
  }

  .news__iframe-wrap iframe {
    width: 100%;
  height: 200px;
    height: 260px;
  }
}

.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;
  }
}



/* ==========================================================
       Information / 診療案内
 ========================================================== */
.info {
  padding: 18rem 0 15rem;
  background-color: var(--color-bg);
  position: relative;
}
@media (max-width: 768px) {
  .info {
    padding: 6rem 0 6rem;
  }
}
.info__head {
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  .info__head {
    margin-bottom: 2.8rem;
  }
}
.info__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(34rem, 1fr));
  gap: 3rem 3rem;
  padding-bottom: 10rem;
}
@media (max-width: 768px) {
  .info__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding-bottom: 4rem;
  }
}
.info-card {
  background-color: #fff;
  border-radius: 1.6rem;
  padding: 2.8rem 2rem 2.8rem 2.4rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  border: 2px solid transparent;
  position: relative;
  transition: border-color .25s, box-shadow .25s, transform .2s;
  box-shadow: 2px 2px 10px rgba(202, 168, 134, .2);
}
.info-card::after {
  content: '';
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  margin-right: 2rem;
  border-top: 2px solid var(--color-secondary);
  border-right: 2px solid var(--color-secondary);
  transition: right .25s, border-color .25s;
}
.info-card:hover {
  border-color: var(--color-secondary);
  box-shadow: none;
  transform: translateY(-2px);
}
.info-card:hover::after {
  right: 1.6rem;
  border-color: var(--color-primary);
}
.info-card__icon {
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 1.2rem;
  background-color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-card__icon svg {
  width: 4rem;
  height: 4rem;
  color: var(--color-primary);
}
.info-card__name {
  font-size: 1.8rem;
  font-weight: 600;
  font-family: var(--font-round);
}
@media (max-width: 768px) {
  .info-card {
    flex-direction: column;
    text-align: center;
    padding: 1.8rem 1.2rem;
    gap: 1rem;
    align-items: center;
    justify-content: center;
  }


 .info-card::after {
    display: none;
  }
  .info-card__name {
    font-size: 1.7rem;
    padding-right: 0;
    font-weight: 700;
  }
  .info-card__icon {
    width: 4.8rem;
    height: 4.8rem;
  }
}
.info__btn-wrap {
  margin-top: 4rem;
  display: flex;
  justify-content: flex-end;
}

	.info-card:hover .info-card__name{
		color:var(--color-primary);
	}


/* ==========================================================
       Features / 当院の特徴
    ========================================================== */
.features {
  padding: 16rem 0 21rem;
  position: relative;
  background: #fff;
}
@media (max-width: 768px) {
  .features {
    padding: 6rem 0;
  }
}
/* Plaid BG */
.features::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(202, 168, 134, .08) 1px, transparent 1px), linear-gradient(rgba(202, 168, 134, .08) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  pointer-events: none;
}
.features__inner {
  position: relative;
  z-index: 1;
}
.features__head {
  text-align: center;
  margin-bottom: 10rem;
}
@media (max-width: 768px) {
  .features__head {
    margin-bottom: 4rem;
  }
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 4rem;
}
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem 3rem;
  }
}
@media (max-width: 768px) {
  .features__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.feature-card__img {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 2rem 1rem 2rem 1rem;
  overflow: hidden;
  margin-bottom: 2.2rem;
  background-color: var(--color-bg);
}
.feature-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.feature-card:hover .feature-card__img img {
  transform: scale(1.04);
}
@media (max-width: 768px) {
  .feature-card__img {
    border-radius: 1.4rem .8rem 1.4rem .8rem;
    margin-bottom: 1.6rem;
  }
}
.feature-card__header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 1.2rem;
  text-align: left;
}
.feature-card__num {
  font-family: var(--font-en);
  font-size: 4.8rem;
  font-weight: 600;
  color: var(--color-secondary);
  line-height: 1;
  letter-spacing: -.02em;
}
@media (max-width: 768px) {
  .feature-card__num {
    font-size: 3.2rem;
  }
}
.feature-card__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.45;
  font-family: var(--font-round);
}
@media (max-width: 768px) {
  .feature-card__title {
    font-size: 1.8rem;
  }
}
.feature-card__text {
  font-size: 1.45rem;
  color: var(--color-text-mid);
  line-height: 2;
  text-align: left;
}


 /* ==========================================================
       Greeting
========================================================== */
.greeting {
  padding: 12rem 0 10rem;
  background-color: var(--color-bg);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .greeting {
    padding: 6rem 0;
  }
}
.greeting::after {
  content: '';
  position: absolute;
  top: -8rem;
  right: -8rem;
  width: 50rem;
  height: 50rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 227, 214, .6) 0%, transparent 70%);
  pointer-events: none;
}
.greeting__inner {
  position: relative;
  z-index: 1;
}
.greeting__layout {
  display: flex;
  gap: 6rem;
  align-items: flex-start;
  align-items: end;
}
@media (max-width: 1024px) {
  .greeting__layout {
    flex-direction: column;
    gap: 3rem;
  }
}
.greeting__text-col {
  flex: 1;
}
.greeting__img-col {
  width: 32rem;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .greeting__img-col {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.greeting__head {
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .greeting__head {
    margin-bottom: 2.4rem;
  }
}
.greeting__body {
  font-size: 1.6rem;
  line-height: 2.2;
  color: var(--color-text);
  /* margin-bottom: 3.2rem; */
  text-align: justify;
}
@media (max-width: 768px) {
  .greeting__body {
    font-size: 1.5rem;
    line-height: 2;
  }
}
.greeting__text--jp{
	
}
.greeting__text--en{text-justify: none;border-top: solid 1px var(--color-secondary);padding-top: 1.2rem;margin-top: 1.6rem;}

.greeting__doctor-img {
  width: 100%;
  border-radius: 2rem;
  overflow: hidden;
  margin-bottom: 2rem;
  background-color: var(--color-bg-soft);
  aspect-ratio: 4/5;
}

@media (max-width: 768px) {
.greeting__doctor-img {
    width: 80%;
}
}

.greeting__doctor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
}
.greeting__doctor-img .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-size: 1.4rem;
  text-align: center;
  padding: 0.5rem;
  /* border-radius: 2rem; */
}
.greeting__name {
  text-align: center;
}
.greeting__name-post {
  font-size: 1.4rem;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: .1em;
  margin-bottom: .4rem;
}
.greeting__name-jp {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: .06em;
}
.greeting__name-en {
  font-size: 1.3rem;
  color: var(--color-text-light);
  font-family: var(--font-en);
  letter-spacing: .08em;
  margin-top: .2rem;
}
 


/* ==========================================================
       Access
========================================================== */
.access {
  padding: 18rem 0 18rem;
  background: #fff;
}
@media (max-width: 768px) {
  .access {
    padding: 7rem 0;
  }
}
.access__layout {
  display: flex;
  gap: 5rem;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .access__layout {
    flex-direction: column;
    gap: 4rem;
  }
}
.access__info {
  width: 50%;
}
@media (max-width: 1024px) {
  .access__info {
    width: 100%;
  }
}
.access__table {
  width: 100%;
}
.access__table tr {
  display: grid;
  grid-template-columns: 10rem 1fr;
  /* border-bottom: 1px solid var(--color-border); */
  padding-bottom: 1.8rem;
}
.access__table th {
    text-align: left;
}

.access__table .access__heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text);
  border-left: 3px solid var(--color-text-mid);
  text-align: left;
  padding-left: .8rem;
  font-family: var(--font-round);
}
@media (max-width: 768px) {
.access__table .access__heading {
    font-size: 1.5rem;
    /* margin-bottom: 7px; */
}
}

.access__table td {
  line-height: 1.6;
  color: var(--color-text-mid);
  padding-left: 1.2rem;
}
@media (max-width: 768px) {
.access__table td {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--color-text-mid);
  padding-left: 1rem;
}
}

@media (max-width: 768px) {
  .access__table tr {
    grid-template-columns: 1fr;
    padding-bottom: 1.4rem;
  }
  .access__table th {
    /* margin-bottom: .4rem; */
    /* font-size: 1.5rem; */
    margin-bottom: 3px;
  }
}

.access__tel{
  color:var(--color-primary);font-weight:700;font-size:1.8rem;
}






.access__map {
  width: 50%;
}
@media (max-width: 1024px) {
  .access__map {
    width: 100%;
  }
}
.access__map iframe {
  width: 100%;
  height: 47rem;
  border-radius: 1.6rem;
  border: none;
  display: block;
}
@media (max-width: 768px) {
  .access__map iframe {
    height: 25rem;
  }
}
 






 /* ==========================================================
       Timetable
========================================================== */
.timetable {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.6rem;
}
.timetable th, .timetable td {
  text-align: center;
  padding: 1rem .4rem;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}
.timetable th:first-child, .timetable td:first-child {
  text-align: left;
  padding-left: 0;
  font-size: 1.6rem;
  width: auto;
  white-space: nowrap;
}

.sp-contact-bar__time .timetable th, .timetable td:first-child {
  font-size: 1.4rem;
  padding: 0.8rem 0;
}

.timetable .maru {
  color: var(--color-primary);
  font-size: 1.6rem;
}
.timetable .hoshi {
  color: var(--color-secondary);
  font-size: 1.6rem;
}
.timetable__note {
  font-size: 1.5rem;
  color: var(--color-text-mid);
  line-height: 1.8;
  margin-top: 1.4rem;
}
.timetable__note .holiday {
  color: var(--color-primary);
  font-weight: 700;
}


/* ==========================================================
       Medical DX
    ========================================================== */
.medical-dx {
  background-color: var(--color-bg-light);
  padding: 3rem;
  border-radius: 1.2rem;
  font-size: 1.4rem;
  line-height: 1.9;
  color: var(--color-text-mid);
  width: min(80rem, 100%);
  margin: 0 auto 6rem;
}
.medical-dx__title {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .medical-dx {
    padding: 2rem;
    font-size: 1.3rem;
  }
}










    /* ==========================================================
       Footer
    ========================================================== */
    .footer {
      background-color: var(--color-bg);
      border-top: 4px solid var(--color-secondary);
      padding: 8rem 0 4rem;
    }
    @media (max-width: 768px) { .footer { padding: 5rem 0 8rem; } }
 
    .footer__layout {
      display: flex;
      gap: 4rem;
      align-items: flex-start;
      align-items: flex-end;
      justify-content: space-between;
    }
    @media (max-width: 1024px) { .footer__layout {flex-direction: column;gap: 4rem;} }
 
    .footer__logo-col {width: 44%;display: grid;gap: 2rem;}
    @media (max-width: 1024px) { .footer__logo-col { width: 100%; } }
 
    .footer__logo {
      display: flex;
      align-items: center;
      gap: 1.4rem;
      margin-bottom: 1rem;
    }
    .footer__logo-mark {
      width: 5rem;
      height: 5rem;
      background-color: var(--color-secondary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .footer__logo-mark svg { width: 3rem; height: 3rem; }
    .footer__logo-name { font-size: 1.8rem; font-weight: 700; letter-spacing: .04em; }
 
    .footer__info {/* font-size: 1.5rem; */line-height: 2;color: var(--color-text-mid);}
    .footer__info a { color: var(--color-primary); }
    .footer__info a:hover { opacity: .75; }
 
    .footer__sitemap {/* margin-top: 2.4rem; */}
    .footer__sitemap ul {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem 2rem;
    }
    @media (max-width: 480px) { .footer__sitemap ul { grid-template-columns: repeat(2, 1fr); } }
    .footer__sitemap li a {
      /* font-size: 1.5rem; */
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid var(--color-border);
      padding: 1rem 0;
      color: var(--color-text-mid);
    }
    .footer__sitemap li a::after {
      content: '';
      display: inline-block;
      width: 6px;
      height: 6px;
      border-top: 1.5px solid var(--color-secondary);
      border-right: 1.5px solid var(--color-secondary);
      transform: rotate(45deg);
      flex-shrink: 0;
      margin-right: 1rem;
    }
    .footer__sitemap li a:hover {color: var(--color-primary);border-color: var(--color-secondary);}
 
    .footer__time-col {width: 50%;}
    @media (max-width: 1024px) { .footer__time-col { width: 100%; } }
 
    .footer__time-box {
      background: #fff;
      border-radius: 1.4rem;
      border: 1px solid var(--color-border);
      padding: 2.4rem;
    }
 
    .copyright {
      /* margin-top: 6rem; */
      /* border-top: 1px solid var(--color-border); */
      padding-top: 2.4rem;
      font-size: 1.3rem;
      color: var(--color-text-light);
      /* text-align: center; */
    }
    @media (max-width: 768px) { .copyright { padding-bottom: 6rem; } }
 
    /* ==========================================================
       SP Footer Nav
    ========================================================== */
    .sp-footer-nav {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      z-index: 150;
      background: #fff;
      /* border-top: 1px solid var(--color-border); */
      padding: .3rem .4rem;
      gap: .4rem;
    }
    @media (max-width: 768px) { .sp-footer-nav { display: flex; } }
 
    .sp-footer-nav__reserve {
      flex: 1;
      /* background-color: var(--color-primary); */
      border-radius: .4rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .6rem;
      color: #fff;
      font-size: 1.6rem;
      font-weight: 700;
      height: 4.8rem;
    }
    .sp-footer-nav__time {
      /* width: 14rem; */
      /* background-color: var(--color-secondary); */
      /* border-radius: .4rem; */
      /* display: flex; */
      /* align-items: center; */
      /* justify-content: center; */
      /* gap: .4rem; */
      /* color: #fff; */
      /* font-size: 1.3rem; */
      /* font-weight: 700; */
      /* height: 4.8rem; */
      /* cursor: pointer; */
    }
 
    /* ==========================================================
       Page top
    ========================================================== */
    .page-top {
      position: fixed;
      bottom: 3rem;
      right: 3rem;
      width: 5rem;
      height: 5rem;
      background-color: var(--color-secondary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 80;
      transition: background-color .2s, transform .2s;
    }
    .page-top:hover { background-color: var(--color-primary); transform: translateY(-3px); }
    .page-top::after {
      content: '';
      width: 10px;
      height: 10px;
      border-top: 2.5px solid #fff;
      border-right: 2.5px solid #fff;
      transform: translateY(20%) rotate(-45deg);
    }
    @media (max-width: 768px) { .page-top { bottom: 6rem; right: 1.6rem; width: 4.2rem; height: 4.2rem; } }
 
    /* Gradient wave divider */
    .wave-divider { display: block; width: 100%; line-height: 0; }
    .wave-divider--bg svg path { fill: var(--color-bg); }
    .wave-divider--white svg path { fill: #fff; }
 
    /* Margin helpers */
    .mb-pc40 { margin-bottom: 4rem; }
    @media (max-width: 768px) { .mb-pc40 { margin-bottom: 2rem; } }
 
    /* Section BG alternating */
    .bg-white { background-color: #fff; }
    .bg-cream  { background-color: var(--color-bg); }
    .bg-peach  { background-color: var(--color-bg-soft); }
    .bg-light  { background-color: var(--color-bg-light); }




/* ---------------------------------------------

   キャッチコピー   

--------------------------------------------- */

.catch_contents {
  position: absolute;
  /* left: 4%;
   width: 100%; */
  z-index: 10;
  /* 24-1008 
  top: 420px;
  top: calc(100vh - 600px);
      bottom: calc(100vh - 600px);*/
  top:40%;
  width: inherit;
}


@media all and (max-width:1024px) {
  .catch_contents {
    position: absolute;
    left: 3%;
     top: 280px; 
   /* bottom: calc(100vh - 360px);*/
    top: 30%;
    width: 90%;
    z-index: 10;
  }
}

@media all and (max-width:375px) {
  .catch_contents {
    position: absolute;
    left: 3%;
    top: 160px;
    bottom: 0;
    width: 94%;
    z-index: 10;
  }
}

@media all and (max-width:350px) {
  .catch_contents {
        top: 15%;
  }
}

.catch_main_wrap{
  justify-self: center;
}

.catch_main_txt {
  color: #fff;
  font-size: 2.2rem;
  text-shadow: 1px 1px 10px rgba(113, 135, 164, 1);
}


.catch_main_txt span {
  font-size: 6.4rem;
}


@media all and (max-width:1024px) {
  .catch_main_txt{
  font-size: 1.6rem;
  }
    .catch_main_txt span {
        font-size: 3.6rem;
        line-height: normal;
    }
  }

@media all and (max-width:375px) {
  .catch_main_txt{
  font-size: 1.6rem;
  }
    .catch_main_txt span {
        font-size: 3rem;
        line-height: normal;
    }
  }


.catch_subcontents {
  position: absolute;
  top: 3rem;
  right: 3rem;
  display: grid;
  display: flex;
  /* grid-template-columns: auto 1fr; */
  width: 80%;
  z-index: 4;
  gap: 8rem;
  /* padding-left: 46rem; */
  /* justify-content: space-between; */
  /* grid-template-columns: repeat(auto-fit, minmax(52rem, 1fr)); */
}
@media all and (max-width:1024px) {
.catch_subcontents {
    left: 3rem;
  }
}
@media all and (max-width:768px) {
.catch_subcontents {
    /* position: relative; */
    padding: 0 1rem;
    width: 100%;
    z-index: 6;
    top: auto;
    bottom: 16rem;
    display: grid;
    grid-template-columns: auto;
    right: auto;
    left: 3rem;
}
  }
.catch-sub {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-shadow: 1px 1px 0 #FFF, -1px 0 1px #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0 -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
  position: absolute;
  gap: 0.3rem;
  /* margin-top: 6rem; */
}

.catch-sub__txt {
  color: var(--color-primary);
  font-weight: 900;
  line-height: 1;
}

.catch-sub__txt--year {
  font-size: 7rem;
  font-family: var(--font-en);
  letter-spacing: .05em;
  margin-bottom: 0.4rem;
}
@media (max-width: 1024px) {
  .catch-sub__txt--year {font-size: 1.8rem;}
}

.catch-sub__txt--date {
  font-size: 13.4rem;
  font-family: var(--font-en);
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  align-items: flex-end;
}
@media (max-width: 1024px) {
  .catch-sub__txt--date {font-size: 6.3rem;padding-left: 0.4rem;}
}

.catch-sub__txt--date .weight{
  font-weight: 400;
  font-size: 0.8em;
  margin-bottom: 0.1em;
}

.catch-sub__txt--open {
  font-size: 16rem;
  font-family: var(--font-en);
  letter-spacing: -.01em;
  margin-left: -0.5rem;
}
@media (max-width: 1024px) {
  .catch-sub__txt--open {font-size: 7.2rem;}
}

.catch-sub__day-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-round);
  font-size: 2.5rem;
  font-weight: 700;
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  flex-shrink: 0;
  margin-bottom: 1.6rem;
  padding-right: 0.3rem;
  padding-bottom: 0.2rem;
  text-shadow: initial;
  margin-left: -0.6rem;
  box-shadow: 0 0 0 1px #fff;
}
@media (max-width: 1024px) {
  .catch-sub__day-badge {width: 3.4rem;height: 3.4rem;font-size: 1.6rem;padding-right: 2px;padding-bottom: 2px;margin-bottom: 0.6rem;margin-left: -0.6rem;}
}

/* ---------------------------------------------

   キャッチコピー   

--------------------------------------------- */











/* ---------------------------------------------

    site map    

--------------------------------------------- */
.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(--color-secondary-l);
  /* 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(--color-secondary);
}

.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(--color-secondary);
  height: 40px;
  width: 40px;
  position: fixed;
  right: 12px;
  bottom: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  display: none;
}

.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   

--------------------------------------------- */









/* ---------------------------------------------

   copyright   

--------------------------------------------- */

.copyright {
    font-size: 1.2rem;
}

/*sp*/
@media all and (max-width:1024px) {

.copyright {
    padding: 1.2rem 0 6rem;
  }
}

/* ---------------------------------------------

   copyright   

--------------------------------------------- */












/* ---------------------------------------------

  btn   

--------------------------------------------- */



.btn_01 {
  width: 20rem;
}

.subpage__w .btn_01 {
  width: 22rem;
  margin-top: 2rem;
  border-radius: 50vh;
}

.btn_01 a {
  letter-spacing: unset;
  color: #fff;
  background-color: var(--color-primary);
  /* border: solid 2px #00aab8; */
  border-radius: 50vh;
  align-self: center;
  display: flex;
  /* padding: 1rem; */
  justify-content: center;
  gap: 0.4rem;
  justify-content: space-between;
  padding: 1rem 2.2rem;
}

.btn_01 a:hover {
    background-color: var(--color-primary-h);
}

.btn_01 a:hover .arrow_right{/* filter: brightness(1) invert(0); */}

.btn_for_doctor {
	margin: 0 1.2rem;
	justify-self: flex-end;
	margin-top: 4rem;
}

.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 all and (max-width:768px) {
  .btn_01 {

  }

.btn_01 a {
  align-self: center;
  display: flex;
  /* padding: 1rem; */
  justify-content: center;
  gap: 0.4rem;
  justify-content: space-between;
  padding: 1rem 2rem;
}
	
 .btn_for_doctor {
	width: 17.5rem;
	margin: 0;
	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; */
}


.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{
  
  }
}








/* ---------------------------------------------

  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   

--------------------------------------------- */

.section-title {
  display: inline-block;
}

/* 中央揃え */
.section-title--center {
  text-align: center;
}

/* 英語タイトル */
.section-title__en {
  display: block;
  line-height: 1;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 7.2rem;
  padding-bottom: 4px;
  font-family: "Montserrat", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, YakuHanJP_Narrow, 'Zen Kaku Gothic New', sans-serif;
}

/* 日本語タイトル */
.section-title__jp {
  display: block;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  font-family: var(--font-round);
}

/* Aboutセクション用（小さめ） */
.section-title--about .section-title__en {
  font-size: 3.2rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
}

/* SP対応 */
@media all and (max-width: 768px) {
  .section-title__en {
    font-size: 4rem;
    font-weight: 500;
  }
  
  .section-title__jp {
    font-size: 1.6rem;
  }
  
  .section-title--about .section-title__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.2rem;
  position: relative;
  /* padding: 1.5rem; */
  /* text-align: center; */
  font-weight: 500;
  /* padding: 0.8rem 1.5rem 1rem; */
}

.head_subttl h2:before {
    position: absolute;
    content: '';
    bottom: 0;
    border-radius: 3px;
    /* background: var(--color-primary); */
    left: 0;
    /* transform: translateX(-50%); */
    width: 180px;
    height: 3px;
}



@media (max-width: 768px) {
  .head_subttl h2 {
    font-size: 2.4rem;
    letter-spacing: 0.1rem;
    font-weight: 600;
  }
}

.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;
}





.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.4rem;
  position: relative;
  padding: 0rem 2rem 1rem 0;
  border-bottom: 3px solid #ededed;
  line-height: 1.8;
  padding-bottom: 8px;
  margin-bottom: 20px;
  font-weight: 500;
}

.txt_ttl h2:before {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 24%;
  height: 4px;
  content: '';
  background: var(--color-secondary);
  /* background-color: #00aab8;
  background-color: #00C6CF; */
}


@media (max-width: 768px) {
  .txt_ttl h2 {
    font-size: 2rem;
    letter-spacing: .1rem;
    padding-bottom: 8px;
    margin-bottom: 16px;
  }
}


.txt_ttl_b h2 {
  font-size: 2rem;
  position: relative;
  font-weight: 500;
  padding: 0.6rem 0;
  line-height: 1.8;
  padding-bottom: 8px;
  /* padding-top: 8px; */
  /* margin-bottom: 20px; */
  /* background-color: var(--color-bg-light); */
  padding-left: 1.6rem;
  color: var(--color-primary-h);
  border-radius: 0.2rem;
}

.txt_ttl_b h2:before {
  position: absolute;
  bottom: 16%;
  left: 0px;
  width: 4px;
  height: 60%;
  content: '';
  border-radius: 2rem;
  background: var(--color-primary);
  /* background-color: #00aab8;
  background-color: #00C6CF; */
}


@media (max-width: 768px) {
  .txt_ttl_b h2 {
    font-size: 2rem;
    font-size: 1.8rem;
    letter-spacing: .2rem;
    padding-bottom: 2px;
    /* margin-bottom: 16px; */
    padding-left: 1.6rem;
    padding-top: 2px;
  }
}



.txt_ttl_w h2 {
  font-size: 2rem;
  position: relative;
  padding: 0rem 2rem 1rem 0;
  line-height: 1.8;
  padding-bottom: 12px;
  padding-top: 12px;
  /* margin-bottom: 28px; */
  /* background-color: #fff; */
  padding-left: 1.6rem;
  border-radius: 1rem;
}

.txt_ttl_w h2:before {
  position: absolute;
  bottom: 10px;
  left: 0px;
  width: 4px;
  height: 60%;
  content: '';
  border-radius: 2rem;
  background: var(--color-primary);
  /* background-color: #00aab8;
  background-color: #00C6CF; */
}


@media (max-width: 768px) {
  .txt_ttl_w h2 {
    font-size: 2rem;
    font-size: 1.8rem;
    letter-spacing: .2rem;
    padding-bottom: 8px;
        margin-bottom: 16px;
        padding-left: 3.6rem;
        padding-top: 8px;
  }
	.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;
  }
}



.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   

--------------------------------------------- */






























/* ---------------------------------------------

   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;
  }
}
















/*   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;
      padding-bottom: 2rem;
}

.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: 3px solid var(--color-primary);
    color: var(--color-primary);
    padding-left: 0.9rem;
}

.tb_02 td{
    /* padding-bottom: 2rem; */
    padding-left: 1.2rem;
    line-height: 1.8;
    font-size: 15px;
    color: var(--color-text-mid);
}

/*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.5;
    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: 15px;
}

.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: #effcfc;
    padding: 4rem 6rem 8rem;
    border-radius: 1rem;
}
/*sp*/
@media all and (max-width:768px) {
  .gaiyou{
        padding: 3rem 2rem 4rem;
  }
}
  

.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: inline-block;
 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;
  }






























.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: 96%;
  width: 90%;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      background-color: #8be2e5;
      background-color: #b3edee;
         border-radius: 7rem;
}


@media (max-width: 768px) {
.information{
width: 100%;
          background-color: transparent;
          margin-bottom: 1rem;
}
}



.information .inner{
 /*   width: calc(100% - 50px);
    max-width: 1300px;  */
    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 {
padding: 10rem 0 12rem;
      padding: 9rem 0 8rem;
  position: relative;
}

@media (max-width: 1024px) {
.top_info_w{
  padding: 3rem 4rem 4rem;
  border-radius: 2rem;
}
}

@media (max-width: 768px) {
  .top_info_w {
    padding: 0rem 0 4rem;
    border-radius: 2rem;
  }
}




.top_info_ttl{
  display: flex;
      margin-bottom: 72px;
    display: grid;
    /* justify-content: space-between; */
}

@media (max-width: 1024px) {
.top_info_ttl{
  display: flex;
  flex-wrap: wrap;
    margin-bottom: 40px;
}
}

@media (max-width: 768px) {
.top_info_ttl{
  margin-bottom: 0;
  justify-content: center;
        margin-bottom:5rem;
  }
} 

/*
.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(290px, 1fr));
    gap: 2rem 2.4rem;
    padding-bottom: 2rem;
  position: relative;
  width: 100%;
}

@media (max-width: 768px) {
.info_list {
  gap: 12px;
      grid-template-columns: repeat(2, 1fr);
  padding-bottom: 2rem;
          width: 92%;
        margin: 0 auto;
}
}




.top_info::after {
    content: "";
    position: absolute;
    top: 140px;
    left: 0;
    right: 0;
    margin: auto;
    height: 200px;
    width: 86%;
    z-index: -1;
    background-color: #e9f6f6;
  background-color: #f9f9f9;
  background-color: #8be2e5;
  background-color: #b3edee;
  border-radius: 25vh;
}

@media (max-width: 768px) {
.top_info::after {
    content: "";
    position: absolute;
top: 100px;
        left: 0;
        right: 0;
        margin: auto;
        height: 88%;
        width: 100%;
        z-index: -1;
        border-radius: 3vh;
  }
  }



.info_item{
    width: 100%;
  display: grid;
}

.info_link {
 /*   background-color: #f0fdf9;*/
  background-color: #fff;
    border: solid 2px #E6E6E6;
    border: solid 2px transparent;
    width: 100%;
    padding: 1.4rem 2rem;
      padding-right: 5rem;
  border-radius: 1.5rem;
  display: grid;
  gap: 0 2rem;
  justify-content: center;
  position: relative;
  /* gap: 3rem; */
  align-content: center;
  align-items: center;
  grid-template-columns: 6rem 1fr;

}




@media (min-width: 1025px) {
  .info_link {
font-size: 1.6rem;
        display: grid;
        grid-template-rows: 58px auto;

  }
}

@media (max-width: 768px) {
.info_link {
grid-template-rows: 7rem 1fr;
        grid-template-columns: none;
        text-align: center;
        border-radius: 1.5rem;
        padding: 1.6rem 0rem 2rem;
      gap:0.4rem;
          font-size: 1.5rem;
        font-weight: 600;
        color: #656565;
}
}
/* 横矢印
.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;
    top: 40%;
    /* bottom: 11%;*/
  right: 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 {
        -webkit-box-shadow: 0px 0px 20px rgba(129,129,129,0.15);
transition-duration: 0.3s, 2s;
    box-shadow: 0px 0px 20px rgba(129, 129, 129, 0.15);
    border-color: transparent;
      box-shadow: 0px 0px 20px rgba(129, 129, 129, 0.2);
    background-color: #fff;
    border: solid 2px transparent;
      border: solid 2px #42c7ce;
}

.info_link:hover:after {
  right: 2.4rem;
}




.info_icon {
  position: relative;
width: 60px
}

@media (max-width: 768px) {
.info_icon {
width: 65px;
justify-self: center;
}
}


.info_link::before {
 /* content: ""; */
  position: absolute;
  background-color: #effcfc;
  border-radius: 50vh;
  width: 6rem;
  height: 6rem;
}








/* ---------------------------------------------

   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;
  }
}
















/* ---------------------------------------------

     

--------------------------------------------- */





/* ---------------------------------------------

     SP版下部

--------------------------------------------- */

/* ---------------------------------
sp下部バー
 --------------------------------- */

/* SP */
@media screen and (max-width:768px) {

  
  
  
  /* sp footer */

.sp-contact-bar{width: 100%;display: flex !important;justify-content: space-between;position: fixed;bottom: 0px;z-index: 10;height: 6rem;padding: 2px 12px;padding: 2px 2px;background-color: #fff;z-index: 201;}

.sp-contact-bar__reserve {
  width: calc(100% - 16rem);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: var(--color-primary);
  border-radius: 0.4rem;
  /* box-shadow: 0px 10px 8px rgba(0, 0, 0, 0.06); */
  /* border: solid 2px #9DBEE1; 
background-color:#d5f7ff; */
  /* border-radius: 1rem;  
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;*/
}

.sp-contact-bar__reserve a {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 45px;
}

.sp-contact-bar__reserve a span{

}
  


.sp-contact-bar__tel {
  width: calc(100% - 16rem);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: var(--color-primary);
  border-radius: 0.4rem;
}

.sp-contact-bar__tel a {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.5;
  display: grid;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  align-content: center;
  gap: 0.2rem;
}

.sp-contact-bar__tel a span{display: flex;align-items: center;line-height: 1.4;}
  
.sp-contact-bar__tel a span::before {
  content: "";
  background: url(../images/ic_tel.svg) no-repeat;
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  vertical-align: middle;
  margin-right: .4rem;
  margin-bottom: -0.3rem;
  background-size: cover;
  filter: brightness(0) invert(1);
}
.sp-contact-bar__label {
  font-size: 1.2rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  letter-spacing: 0.1rem;
  margin: 0 0 0 0;
  line-height: 1;
  /* margin-bottom: -0.5rem; */
  padding-top: 0.5rem;
}


.sp-contact-bar__time {
  background-color: var(--color-text-light);
  width: 15.7rem;
  width: 100%;
  display: grid;
  align-items: center;
  justify-content: center;
  border-radius: 0.4rem;
  /*
  box-shadow: 3px 4px 8px 0px rgba(0, 0, 0, 0.06);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;*/
}

.sp-contact-bar__time .timetable{
	font-size: 1.4rem;
}
  
.sp-contact-bar__time a {
  color: #00aab8;
  display: grid;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 1.2rem;
  letter-spacing: 0.05rem;
  height: 45px;
}


  .sp-contact-bar__reserve img{
          width: 2.6rem;
        margin-right: 0.6rem;
  }

  .sp-contact-bar__time img{
    width: 2.4rem;
    margin: 0 auto;
  }



}















/* ------------------------------------------------------------------------------------------

     サブページ_ttl

------------------------------------------------------------------------------------------ */


.subpage_ttl{
  margin: 0 auto;
  padding-top: 140px;
  background-size: cover;
  background-color: var(--color-bg);
  /* width: 100%; */
  margin: 1rem 1rem;
  border-radius: 1rem;
}

@media (max-width: 1024px) {
  .subpage_ttl{
  margin-top: 80px;
  padding-top: 0px;
}
}

.subpage_ttl .inner{/* max-width: 1600px; *//* background-color: var(--color-secondary-l); */}



.subpagetitle__w{
    width: 100%;
    /* background: url(../images/waiting-room.jpg) right top; */
    background-size: cover;
    background-position: center center;
    height: 360px;
    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: 22rem;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: 1;
    top: 22%;
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    /* transform: translate(-50%); */
  }

.subpagetitle__w:after {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    margin: auto;
    height: 30px;
    width: 30px;
    background: url("../images/icons/sun.svg");
    content: "";
    background-size: cover;
}
@media (max-width: 768px) {
  .subpagetitle__w:after {
    position: absolute;
        top: 16%;
        left: 0;
        right: 0;
        margin: auto;
        height: 20px;
        width: 20px;
    background: url("../images/icons/sun.svg");
    content: "";
    background-size: cover;
}
}


  .pagename_ttl .ttl_01{
    font-size: 4.4rem;
    font-weight: 600;
  }

@media (max-width: 768px) {
    .pagename_ttl .ttl_01{
      font-size: 2.8rem;
}
}


.pagename_ttl .ttl_01 .jp {
    font-size: 4.4rem;
    font-weight: 700;
    letter-spacing: 0.3rem;
}
@media (max-width: 768px) {
  .pagename_ttl .ttl_01 .jp {
  font-size: 2.8rem;
  }
}

.pagename_ttl .ttl_01 .en {
  color: var(--color-primary);
  font-size: 2rem;
  font-family: "Montserrat", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, YakuHanJP_Narrow, 'Zen Kaku Gothic New', sans-serif;
}

@media (max-width: 768px) {
    .pagename_ttl .ttl_01  .en{
      font-size: 1.5rem;
}
}


/*
  .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: 0%;
    left: 50%;
    /* transform: translateY(-50%); */
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
  }
}



/* チェックリスト見た目 */
.subpage_check-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-radius: 1rem;
  line-height: 2.4;
  padding: 3rem 3rem 4rem;
  gap: 1.2rem 0;
}

 .bg_bl{
  background: #f7f7f7;
    background-color: #effcfc;
}

 .bg_wh{
  background: #fff;
}


@media (max-width: 768px) {
  .subpage_check-list {
    padding: 2rem 2.4rem 2.8rem;
  }
}
  
.subpage_check-list li {
  padding-left: 3.2rem;
  text-indent: -3.2rem;
  width: 47%;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-secondary-l);
}
@media (max-width: 768px) {
  .subpage_check-list li {
  width: 100%;
}
}

.subpage_check-list li::before {
        content: "";
        background: url(../images/ic_checkbox.svg);
            width: 2.4rem;
    height: 2.4rem;
        display: inline-block;
        vertical-align: sub;
        margin: 0 10px 0 0;
  background-size: cover;
    }






.bg_color{
  padding-bottom: 100px;
  padding-bottom: 160px;
  padding-top: 12rem;
  display: grid;
  gap: 8rem;
 /*       background-color: #effcfc;
  background-color: #d6f7f7; */
}

@media (max-width: 768px) {
.bg_color{
  padding-bottom: 40px;
    padding-bottom: 100px;
padding-top: 6rem;
    display: grid;
    gap: 6rem;

}
}

.bg_color_2 {
    padding-bottom: 120px;
    padding-top: 10rem;
    display: grid;
    gap: 5rem;
    background-color: var(--color-bg);
    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;
  }
}







/* ------------------------------------------------------------------------------------------

     パンくずリスト_bread

------------------------------------------------------------------------------------------ */




/*  -SITEMAP-----------------------  */
/*breadcrumb*/
.breadc{
  /* background-color: var(--color-secondary); */
}

  .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(--color-primary)!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: 4px;
    background-image: url("../images/home_3_fill.svg");
    background-repeat: no-repeat;
    content: '';
  background-size: cover;
  margin-bottom: 2px;
}

.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*/
}













/* ------------------------------------------------------------------------------------------

     サブページ

------------------------------------------------------------------------------------------ */



/*
.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;
  font-weight: 400;
}


.contents_wrap{display: grid;gap: 4rem 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;
}
}



/* ---------------------------------------------

     doctor

--------------------------------------------- */



.doctor_contents_w{
display: grid;
gap: 10rem 0;
}

@media (max-width: 768px) {
.doctor_contents_w{
gap: 4rem 0;
}
}

@media (min-width: 768px) {
.d_contents{
  display: contents;
}
}

.doctor_greeting_wrap {
        width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
gap:6rem;
  text-align: left;
  /* flex-direction: row-reverse; */
  position: relative;
    }
/*
.doctor_greeting_wrap::after {
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    margin: auto;
    height: 600px;
    width: 690px;
    background: url(../images/silhouette.svg);
    content: "";
    z-index: -1;
    background-size: cover;
}
*/

@media (max-width: 768px) {
.doctor_greeting_wrap {
   flex-wrap: wrap;
          flex-direction: column-reverse;
}
}


.doctor_ttl {
  color: var(--color-primary);
  font-size: 2.8rem;
  line-height: 1.65;
  /* text-align: center; */
  letter-spacing: 0.2rem;
  font-weight: 500;
  padding-bottom: 1rem;
}
@media (max-width: 768px) {
  .doctor_ttl {
    font-size: 1.8rem;
    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_img{
  align-self: center;
  justify-content: center;
  align-self: flex-start;
    display: grid;
 /* margin: 0 auto; */
width: 36%;
}
#doctor_img_top {
  width: auto;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
.doctor_img {
    margin: 0 auto;
    width: 100%;
          display: block;
    }

}


.doctor3{
    display: grid;
    flex-wrap: wrap;
  /*  justify-content: center; */
    padding-top: 2rem;
    padding-bottom: 1.5rem;
padding-top: 3.6rem;
    padding-bottom: 4rem;
}

.doctor4 {
  color: var(--color-primary);
  font-size: 1.8rem;
  line-height: 1.2;
  letter-spacing: 0.2rem;
  padding-bottom: 1rem;
  font-weight: 500;
}

.doctorname_jp{
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1.2;
}


.doctorname_jp .br_middle {
	display: none;
}
@media (max-width: 856px) {
	.doctorname_jp .br_middle {
		display: block;
	}
}
@media (max-width: 750px) {
	.doctorname_jp .br_middle {
		display: none;
	}
}

.doctorname_en {
  color: #c13d60;
  color: #707070;
  font-size: 1.4rem;
  padding-left: 1rem;
  /* text-align: center; */
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 856px) {
   .doctorname_en {
	  padding-left: 0;
   }
}
@media (max-width: 768px) {
   .doctorname_en {
/*	  padding-left: 0;*/
	  margin-left: 1rem;
   }
}

@media (max-width: 768px) {
.doctor3{
display: flex;
flex-wrap: wrap;
        width: 100%;
          padding-top: 2.4rem;
        padding-bottom: 4rem;
}

.doctor4{
font-size: 1.6rem;
line-height: 1.2;
margin: 0 0 .5vw 0;
letter-spacing: .4rem;
text-align: center;
}

.doctorname_jp{
width: 100%;
          font-size: 2.4rem;
}
}







.doctor_car_wrap {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  gap: 0rem 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.doctor_car_box {
  width: 100%;
  align-items: flex-start;
  border-radius: 1rem;
}

.doc_list {
  text-align: left;
  gap: 0.8rem;
  display: grid;
}

.doc_list li{
    border-bottom: solid 1px #ededed;
}



















/* ---------------------------------------------

     アクセス　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;
}

.tb_03 th span{
    border-left: solid 4px #7edee2;
    padding-left: 0.6rem;
}

.tb_03 td{
    line-height: 1.5;
  padding: 2rem 0;
}

/*sp*/
@media all and (max-width:768px) {
  .tb_03 th{
  width: 40%;
}

.tb_03 td {
    line-height: 1.4;
    font-size: 13px;
    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{
width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: stretch;
        margin: 0 0 5px 0;
}

.access_sub_title{
width: 30%;
        font-size: 1.6rem;
        line-height: 1.2;
        padding: 24px 12px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
}

.access_sub_title_s {
        width: 100%;
        font-size: 1.6rem;
        font-weight: 700;
        margin: 0 0 5px 0;
    }

.access_sub_txt{
        width: 66%;
        line-height: 1.5;
        font-weight: 500;
        font-size: 1.6rem;
        padding: 24px 0;
}

  .map-img{
    margin-top: 4rem;
    display: flex;
    justify-content: center;
  }

  .txt_ttl_w #fever-outpatient-department {
	scroll-margin-top: -200px;
  }

}


/* sp */
@media screen and (max-width:768px) {
.access_sub_wrap {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: stretch;
        margin: 0 0 1vw 0;
    }

.access_sub_title{
width: 10rem;
        text-align: center;
        font-size: 1.2rem;
        letter-spacing: .025rem;
        line-height: 1.5;
        padding: 5vw 2vw;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
}

.access_sub_txt {
        width: calc(100% - 12rem);
        line-height: 1.5;
        font-weight: 500;
        font-size: 1.2rem;
        letter-spacing: .025rem;
        padding: 5vw 0;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
}

    .map-img {
        margin-top: 2rem;
        display: flex;
        justify-content: center;
  }


}








.address{
    width: 48.5%;
/*    max-width: 560px; */
display: flex;
display: grid;
flex-wrap: wrap;
    gap: 4rem;
}

/*sp*/
@media (max-width: 768px) {
.address{
width: 100%;
          gap: 2rem;
          margin-bottom: 1.2rem;
}
}



.map{
    width: 48.5%;
/*    max-width: 560px; */
display: flex;
flex-wrap: wrap;
  justify-content: flex-end;
  align-self: flex-end;
}

.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{
width: 100%;
text-align: center;
          gap: 2rem;
  justify-content: flex-start;

}

.map iframe{
        height: 240px;
}
}





/* ---------------------------------------------

     医療DX推進体制の整備について

 ---------------------------------------------*/

@media screen and ( min-width:768px ) {
	.medical-care-dx {
		letter-spacing: .1rem;
		line-height: 1.6;
		padding: 3rem;
		border-radius: 10px;
		margin: 0 auto 8rem;
		font-size: 1.4rem;
		text-align: justify;
		background: #ebf3f3;
		width: 800px;
	}
	.medical-care-dx_ttl {
		padding: 0 0 1rem;
		line-height: 1;
		color: #00aab8;
		font-size: 1.6rem;
	}
}

@media screen and ( max-width:750px ) {
	.medical-care-dx {
		width: 90%;
		margin: 0 auto 50px;
		padding: 30px;
		border-radius: 10px;
		background: #ebf3f3;
		font-size: 1.6rem;
	}
	.medical-care-dx_ttl {
		padding: 0 0 15px;
		line-height: 1;
		color: #00aab8;
		font-size: 1.8rem;
	}
}



/* ---------------------------------------------

     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;
}












/* ---------------------------------------------

     card 

--------------------------------------------- */

/* PC */
.card_b {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 40px 40px;
  text-align: left;
  gap: 60px;
  padding: 0 20px;
}
.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: 20px 40px;
  text-align: left;
  padding: 0 12px;
}
}

.card_b .card_img-area {
  aspect-ratio: 3/2;
  margin-bottom: 16px;
}

.card_b .card_img-area img {
  background-color: #e6e6e6;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-fit: contain;
  border-radius: 1rem;
  border-radius: 1.6rem;
}

.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: 1.6rem;
}

.card_c .card_ttl {
  font-size: 18px;
  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 診療案内

--------------------------------------------- */

.subpage-anchor-nav {
  padding: 3.2rem 0 6rem;
}

@media (max-width: 768px) {
  .subpage-anchor-nav {
    padding: 2rem 0 1.6rem;
  }
}

.subpage-anchor-nav .subpage-nav__list {
  gap: 28px 3.2rem;
  align-items: baseline;
  justify-content: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(30rem, 100%), 1fr));
}

@media (max-width: 768px) {
  .subpage-anchor-nav .subpage-nav__list {
    gap: 12px 12px;
  }
}

.subpage-anchor-nav .subpage-nav__item {
  border-radius: 1rem;
}

@media (max-width: 768px) {
  .subpage-anchor-nav .subpage-nav__item {
    width: 100%;
    border-radius: 1rem;
  }
}

.subpage-anchor-nav .subpage-nav__item:hover {
  transition-duration: 0.3s, 2s;
}

.subpage-anchor-nav .subpage-nav__item a {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  padding: 2rem 4rem 2rem 2.8rem;
  width: 100%;
  border: 2px solid var(--color-bg-soft);
  color: var(--color-text);
  /* text-align: center; */
  font-weight: 500;
  border-radius: 50vh;
}

@media (max-width: 768px) {
  .subpage-anchor-nav .subpage-nav__item a {
    font-size: 15px;
    padding: 1.4rem 2.2rem 1.4rem 2.3rem;
    width: 100%;
    text-align: left;
  }
}

.subpage-anchor-nav .subpage-nav__item a:hover {
  transition-duration: 0.3s, 2s;
  box-shadow: 0px 10px 10px rgba(129, 129, 129, 0.06);
  background-color: var(--color-primary);
  color: #fff;
  border: 2px solid var(
  --color-primary);
}

.subpage-anchor-nav .arrow_down {
  position: relative;
  display: inline-block;
}

.subpage-anchor-nav .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) {
  .subpage-anchor-nav .arrow_down h2 {
    font-size: 16px;
  }
}

.subpage-anchor-nav .arrow_down h2:first-letter {
  color: #c13d60;
}

.subpage-anchor-nav .arrow_down::before {
  content: '';
  width: 30px;
  height: 30px;
  border-radius: 50%;
  /* position: absolute; */
  top: -1px;
  right: 20px;
  bottom: 0;
  margin: auto;
}

.subpage-anchor-nav .arrow_down::after {
  content: '';
  width: 20px;
  height: 20px;
  border: none;
  background-image: url(../images/arrow_right_line.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: rotate(90deg); /* 下向きにしたい場合 */
  position: absolute;
  top: 40%;
  right: 22px;
  margin-top: -5px;
}

.subpage-anchor-nav .arrow_down:hover::after {
  top: 43%;
  margin-top: -2px; /* ホバー時に少し下げる演出 */
  transition-duration: 0.3s, 2s;
  /* SVGの色変更はfilterで対応 */
  filter: brightness(0) invert(1); /* 白色に変える */
}

.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: 400px;
      border-radius: 1rem;
      height: 460px;
    border-radius: 2rem;
    border: solid 4px #b3edee;
}

@media (max-width: 768px) {
.contents_wrap iframe{
  width: 100%;
  height: 200px;
}
}


.h_btn {
  color: #fff;
    background-color: #0b76be;
    /* border: 2px solid #f58daf; */
    font-size: 16px;
  border-radius: 1rem;
  padding: 1.2rem 3rem;
  gap: 6px;
  display: flex;
  /* margin: 0 auto; */
  justify-content: center;
}








/* ---------------------------------------------

   footer   

--------------------------------------------- */

.footer {
  border-top: 5px solid var(--color-secondary);
  width: 100%;
  padding-top: 12rem;
  position: relative;
  padding-bottom: 6rem;
  padding-bottom: 11rem;
  background-color: #f9f9f9;
}
/*sp*/
@media all and (max-width:768px) {
  .footer {
    width: 100%;
    padding-top: 6rem;
    padding-bottom: 1rem;
  }
}


.footer .inner {
  width: calc(100% - 50px);
  /* max-width: 1200px; */
  margin: 0 auto;
}

@media (max-width: 1400px) {
  .footer .inner {
    max-width: 90%;
    width: calc(100% - 50px);
  }
}

@media (max-width: 768px) {
  .footer .inner {
    width: calc(100% - 0px);
        padding-bottom: 0rem;
  }
}


.footer_box {
  display: flex;
  justify-content: space-between;
gap:2rem;
  align-items: flex-start;
  text-align: left;
  /*  align-items: flex-end; */
}

/*sp*/
@media all and (max-width:768px) {
  .footer_box {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
}


















/*------------------------------------------------
料金表
--------------------------------------*/

/*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%;
}

.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(--color-primary); /* 好きな色にする */
 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:750px) {
  .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;
}

.treat_conts .img-area img{
border-radius: 1rem;
}




/* ---------------------------------------------

  特徴＿feature   

--------------------------------------------- */

.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;
  /*  background-color: #ecf4f8;
        width: 1300px;
        height: 1600px;
        right: -30%;
        top: -20%; */
  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%);
}


.box_img{
    width: 100%;
}
@media (max-width: 768px) {
.box_img{
        width: 100%;
        /*  padding: 0 8px; */
}
}


.box_img img{
      aspect-ratio: 3 / 2;
  border-radius: 16px;
      border-radius: 50px 15px 50px 15px;
  border-radius: 10px 50px 10px 50px;
  margin-bottom: 2.4rem;
}
@media (max-width: 768px) {
  .box_img img{
  margin-bottom: 2rem;
}
}
/*
.box_txt {
  width: 47.5%;
  gap: 24px;
  display: grid;
    position: relative;
      gap: 6px;
border-radius: 1.6rem;
    background-color: #f2fbfd;
    padding: 2rem;
}
*/

.box_ttl{
display: grid;
    align-items: center;
    /* gap: 0.5rem; */
    grid-template-columns: 8rem 1fr;
}
@media (max-width: 768px) {
.box_ttl{
display: grid;
    align-items: center;
gap: 0.5rem;
        grid-template-columns: 4.8rem 1fr;

}
}


.box_txt {
  width: 100%;
  gap: 24px;
  display: grid;
  /* position: relative; */
  gap: 16px;
  border-radius: 1.6rem;
  /* background-color: #f2fbfd; */
  /* padding: 2rem; */
  align-self: flex-start;
}

@media (max-width: 768px) {
  .box_txt {
    width: 100%;
    display: grid;
    gap: 10px;
    border-radius: 1.6rem;
    background: none;
  }
}

.text-area{
 /* display: grid;
  gap:8px; */
  
}
@media (max-width: 768px) {
.text-area{
  gap:6px;
}

}

.card_ttl {
font-size: 2rem;
    line-height: 1.4;
 /* text-align: justify; */
  display: flex;
  align-items: center;
  font-weight: 500;
    margin-bottom:0;
}
@media (max-width: 768px) {
.card_ttl {
  font-size: 1.8rem;

}

}

.card_txt {
  line-height: 1.6;
    line-height: 2em;
    letter-spacing: .05em;
  color: #656565;
}
@media (max-width: 768px) {
.card_txt {
    line-height: 1.8em;
  font-size: 1.4rem;
}

}



.row_reverse{
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
.row_reverse{
  flex-direction: inherit;
}
}


.column_reverse{
  flex-direction: inherit;
}

@media (max-width: 768px) {
.column_reverse{
  flex-direction: column-reverse;

}
}




@media (max-width: 768px) {


}













/* ---------------------------------------------

  挨拶＿greeting   

--------------------------------------------- */


.headline{
  position: relative;
}

.greeting .section-title{
  padding-bottom: 6rem;
  line-height: 2;
  line-height:2.6;
}
@media (max-width: 768px) {
.greeting .section-title{
  padding-bottom: 1.6em;
}
}

.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%;
}



/*sp*/
@media all and (max-width:768px) {
  .greeting .ttl_01{
  padding-bottom: 2rem;
}
}

.greeting .en{
    padding-bottom: 2rem;
}


/*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; */
}

.greeting{
        padding: 16rem 0px 20rem 0px;
        position: relative;
        background-size: cover;
        /*  background: linear-gradient(  165deg,  transparent 0%,  transparent 60%,  #e9f6f6 60%,  #e9f6f6 100%);
  background: linear-gradient(  165deg,  transparent 0%,  transparent 60%,  #d6f7f7 60%,  #d6f7f7 100%);
*/
}

@media (max-width: 768px) {
.greeting{
        padding: 7rem 0 8rem;
}
}


@media (max-width: 768px) {
 .greeting .inner {
        /* width: calc(100% - 60px); */
    }
 #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;
/*        justify-content: center;*/
        line-height: 2.2;
        font-size: 1.7rem;
    max-width: 70em;
  padding-bottom: 0;
}

/*sp*/
@media (max-width: 768px) {
.greeting .txt{
        justify-content: space-between;
        line-height: 2;
        font-size: 1.4rem;
        text-align: left;
  text-align: justify;
          padding-bottom: 2.8rem;
}
 #col-a .scroll-fade-row {
		padding-bottom: 0 !important;
}
}


.greeting .txt span{
  color: #00aab8;
}








/* ---------------------------------------------

  名前＿   

--------------------------------------------- */


.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: flex-end; */
}

/*sp*/
@media (max-width: 768px) {
.name_grid{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 2.8rem;
}
}




.doctor_img img{
  width: 360px;
border-radius: 1rem;
}
@media (max-width: 768px) {
.doctor_img img{
max-width: 100%;
    width: 100%;
    }
}




.content__w{
background-color: #f1f8fe;
      background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgba(239,252,252,1) 88%, rgba(255,255,255,1) 88%);
   background:linear-gradient(0deg, rgba(239,252,252,1) 88%, rgba(255,255,255,0) 88%);
}
/*sp*/
@media (max-width: 768px) {
.content__w{
background-color: #f1f8fe;
      background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(241, 248, 254, 1) 0%, rgba(241, 248, 254, 1) 95%, rgba(255, 255, 255, 1) 95%);
    background: linear-gradient(0deg, rgba(239,252,252,1) 95%, rgba(255,255,255,0) 95%);
}
}




/* ---------------------------------------------

  経歴＿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;
    padding: 0 12px;
}

@media (max-width: 768px) {
 .doctor_name {
    padding: 0;
    }
}

.name_jp{
  font-size: 3.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: #00aab8;
/*  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: var(--color-primary);
}



/*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;
}



.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;
}
}








/* ==========================================================

subpage

============================================================= */
/* ================================================
   背景色
================================================ */
.bg-color-1 {
  background-color: var(--color-bg-white);
}

.bg-color-2 {
  background-color: var(--color-white);
}


/* ================================================
   診療科セクション
   大見出し間の間隔は padding-block で管理
   （背景色が全幅に広がるため grid gap ではなく
     各セクションの上下 padding で 80px を確保）
================================================ */
.subpage-section {
  padding-block: 80px;
}
@media (max-width: 768px) {
  .subpage-section {
    padding-block: 48px;
  }
}

.subpage-section__inner {
  max-width: 1100px;
  width: 90%;
  margin-inline: auto;
}


/* ================================================
   セクションヘッダー
   アイコン・タイトル・導入文をまとめたブロック
================================================ */
.subpage-section__header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .subpage-section__header {
    gap: 16px;
    margin-bottom: 32px;
  }
}

.subpage-section__icon-area {
  display: flex;
  align-items: center;
}

.subpage-section__icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .subpage-section__icon {
    width: 44px;
    height: 44px;
  }
}

.subpage-section__intro {
  line-height: 1.8;
}


/* ================================================
   コンテンツラップ
   セクション内コンテンツ間を gap: 48px で管理
================================================ */
.contents-wrap {
  display: grid;
  gap: 4.6rem;
}
@media (max-width: 768px) {
  .contents-wrap {
    gap: 32px;
  }
}


/* ================================================
   コンテンツブロック（見出しなし汎用）
   リスト＋テキストなど複数要素をまとめる
================================================ */
.contents-block {
  display: grid;
  gap: 16px;
}
@media (max-width: 768px) {
  .contents-block {
    gap: 12px;
  }
}

.contents-group {
  display: grid;
  gap: 32px;
}
@media (max-width: 768px) {
  .contents-group {
    gap: 32px;
  }
}



/* ================================================
   見出し＋本文のペア
================================================ */
.detail-block {
  display: grid;
  gap: 12px;
}
@media (max-width: 768px) {
  .detail-block {
    gap: 10px;
  }
}

.detail-block p {
  line-height: 1.8;
  font-weight: 400;
}


/* ================================================
   疾患ナビ（アンカーリンク一覧）
================================================ */
.anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.anchor-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border: 1px solid currentColor;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.9em;
  transition: opacity 0.2s;
}
.anchor-nav__link:hover {
  opacity: 0.7;
}

/* 下矢印アイコン */
.anchor-nav__link::after {
  content: "↓";
  font-size: 0.8em;
}


/* ================================================
   チェックリスト（主な症状）
================================================ */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
}
@media (max-width: 768px) {
  .check-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  line-height: 1.5;
}

.check-list li::before {
  content: "✓";
  flex-shrink: 0;
  font-weight: bold;
}


/* ================================================
   検診リスト
================================================ */
.inspection-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px;
}

.inspection-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  line-height: 1.6;
}

.inspection-list li::before {
  content: "●";
  font-size: 0.5em;
  flex-shrink: 0;
  color: var(--color-primary);
}


/* ==========================================================

subpage

============================================================= */




























