@charset "utf-8";
/*共通CSS*/

/*---contents parts---*/
:root {
  --black: #64564F;
  --red: #E8464C;
  --primary: #F99296;
  --primary_sub: #B3D1A0;
  --primary_bg01: #FEF5F1;
  --notes: #9C9592;
  --line: #E5DEDD;
  --green: #64A762;
}
body {
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: .75px;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-style: normal;
  color: var(--black);
  overflow: hidden;
  position: relative;
}
.page_borderbox {
  background: var(--primary);
  position: fixed;
  z-index: 1000;
}
.page_borderbox.l {
  height: 100%;
  left: 0;
  top: 0;
  width: 5px;
}
.page_borderbox.r {
  height: 100%;
  right: 0;
  top: 0;
  width: 5px;
}
.page_borderbox.t {
  height: 5px;
  left: 0;
  top: 0;
  width: 100%;
}
.page_borderbox.b {
  bottom: 0;
  height: 5px;
  left: 0;
  width: 100%;
}
.mincho {
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  font-style: normal;
}
main {
  position: relative;
  z-index: 1;
}
.contents {
  min-height: 300px;
  padding-top: 80px;
  padding-bottom: 100px;
}
section:not(:last-of-type) {
  margin-bottom: 80px;
}
.con {
  display: block;
  width: 90%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.wrap {
  width: 98%;
  margin-left: auto;
  margin-right: auto;
}
.flex_all {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.flex_rev {
  flex-direction: row-reverse;
}
.col_set {
  align-items: flex-start;
}
.col_50 > * {
  flex: 0 0 48%;
}
.col_30 > * {
  flex: 0 0 32%;
}
.col_set > .text_con {
  flex: 0 0 65%;
}
.col_set > .img_con {
  flex: 0 0 30%;
}
.main_title_con {
  position: relative;
  height: 200px;
}
.main_title_con .main_title {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  font-size: 36px;
  text-align: center;
  line-height: normal;
}
.title01 {
  font-size: 30px;
  line-height: normal;
  padding-bottom: .5em;
  margin-bottom: 45px;
  border-bottom: 1px solid;
}
.title02 {
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  background-color: var(--primary_sub);
  padding: 3px 30px 4px;
  margin-top: 50px;
  margin-bottom: 1em;
}
.title03 {
	font-size: 18px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: .5em;
    padding-bottom: 5px;
    border-bottom: 2px dotted var(--primary_sub);
}
.tx_memo {
  color: var(--notes);
  font-size: .8em;
  line-height: normal;
}
.arrow {
  position: relative;
  display: inline-block;
}
.arrow::before,
.arrow::after
{
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all .5s;
}
.arrow::before {
  right: 55%;
  width: 7px;
  height: 7px;
  border: 1px solid var(--primary); */
  border-width: 2px 2px 0 0;
  border-width: 1px 1px 0 0;
  transform: translateY(-50%) rotate(45deg);
}
.arrow::after {
  right: 0;
  width: 25px;
  height: 25px;
  border: 1.5px solid var(--primary);
  border-radius: 50px;
}
.link {
  display: inline-block;
  padding: 0 2px;
  text-decoration: underline;
  color: var(--primary);
}
.link:hover {
  color: var(--primary);
}
.link01 {
  width: 100%;
  padding: .8em 1.5em;
  border-radius: 50px;
  font-size: 1.1em;
  text-align: center;
  line-height: 1.2;
  color: #fff;
  background-color: var(--primary);
}
.link02 {
	color: var(--primary);
	border: 1px solid;);
	padding: .5em 3em;
	border-radius: 50px;
	background-color: #fff;
}
.link01::after,
.link02::after {
  content: '';
  width: .5em;
  height: .5em;
  position: absolute;
  top: 50%;
  right: 1.5em;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg)translateY(-75%);
}
.link01:hover {
  opacity: .5;
}
.link02:hover {
  color: var(--primary_sub);
}
.link01.tel::after,
.link01.access::after {
  width: 1.5em;
  height: 1.5em;
  right: 1em;
  border-top: none;
  border-right: none;
  transform: translateY(-50%);
}
.link01.tel::after {
  background: url(../img/common/ic_tel_w.svg) no-repeat center;
  background-size: contain;
}
.link01.access::after {
  background: url(../img/common/ic_access.svg) no-repeat center;
  background-size: contain;
}
.ul01 > li {
  position: relative;
  padding: 0px 0px 0px 1.3em;
  list-style: none;
}
.ul01 > li::before {
  content: "";
  position: absolute;
  top: .5em;
  left: 0px;
  width: .8em;
  height: .8em;
  background-color: var(--primary_sub);
  border-radius: 100%;
}
.ul02 > li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 1.8em;
  font-size: 20px;
}
.ul02 > li::before {
  content: "";
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  left: 0;
  top: 0.2em;
  background: url(../img/common/dc_momiji.svg) no-repeat center;
  background-size: contain;
}
.ul_notice,
.text_notice {
  position: relative;
  margin-left: 1.5em;
  color: var(--notes);
  font-size: 14px;
}
.ul_notice > li {
  position: relative;
}
.ul_notice > li:not(:last-of-type) {
  margin-bottom: .25em;
}
.ul_notice > li::before,
.text_notice::before {
  content: "※";
  position: absolute;
  width: 1.5em;
  height: 1.5em;
  left: -1.5em;
  text-align: center;
}
.ol01 {
  counter-reset: number;
  padding: 0;
}
.ol01 li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 28px;
}
.ol01 li::before {
  display: flex;
  counter-increment: number;
  content: counter(number);
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 14px;
  font-family: 'Jost', sans-serif;
  color: var(--brown);
  border: 1px solid;
  border-radius: 50px;
  position: absolute;
  top: 4px;
  left: 0;
}
span.ol01_number {
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 1;
  text-align: center;
  margin: 2px;
  padding: 1px 2px 2px 1px;
  font-size: 14px;
  font-family: 'Jost', sans-serif;
  border: 1px solid;
  border-radius: 50px;
}
.dl01 > dt {
  float: left;
  clear: left;
  min-width: 4em;
  padding: 0 5px;
  background-color: var(--primary);
  color: #fff;
  text-align: center;
}
.dl01 > dd {
  margin-bottom: .5em;
  margin-left: 4.5em;
}
.dl01 > dd:not(:last-of-type) {
  margin-bottom: 1em;
}
.dl02 > dt {
  float: left;
  clear: left;
  min-width: 6em;
}
.dl02 > dd {
  margin-bottom: .5em;
  margin-left: 6.5em;
}
.dl02 > dd:not(:last-of-type) {
  margin-bottom: .5em;
}
.table_schedule {
  width: 100%;
}
.table_schedule tr {
  border-bottom: 1px solid var(--line);
}
.table_schedule th,
.table_schedule td {
  text-align: center;
  vertical-align: middle;
  line-height: 1.3;
  padding: 1em 1px;
}
.table_schedule th.th_doctor {
  width: 20%;
  min-width: 80px;
}
.table_schedule thead {
  background-color: var(--primary_bg01);
}
/*色、背景*/
.white {
  color: #fff;
}
.black {
  color: var(--black);
}
.red {
  color: var(--red);
}
.green {
  color: var(--green);
}
.primary {
  color: var(--primary);
}
.primary_sub {
  color: var(--primary_sub);
}
.notes {
  color: var(--notes);
}
.bgcw {
  background-color: #fff;
}
.bgcb {
  background-color: var(--black);
}
.bgcp {
  background-color: var(--primary);
}
.bgcp_sub {
  background-color: var(--primary_sub);
}
.bgcp_bg01 {
  background-color: var(--primary_bg01);
}
.bgcp_bg02 {
  background: rgba(249,146,150,0.1);
  background: linear-gradient(90deg, rgba(249,226,176,0.2) 0%, rgba(249,146,150,0.1) 100%);
}

@media (min-width: 1025px) {
  .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media (max-width: 1025px) {
  .contents {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .title01 {
    margin-bottom: 20px;
    font-size: 22px;
  }
  .title02 {
    margin-top: 40px;
    padding: 3px 20px 4px;
  }

}
@media screen and (max-width: 480px) {
body {
	font-size: 15px;
line-height: 1.7;
letter-spacing: .6px;
}
  section:not(:last-of-type) {
    margin-bottom: 50px;
}
.main_title_con {
    height: 130px;
}
  .main_title_con .main_title {
    font-size: 25px;
  }
.title03 {
    margin-top: 20px;
  }
  .table_schedule thead th:fast-of-type {
    width:25%;
  }
  .table_schedule thead th:not(:fast-of-type) {
    width: calc( 75% / 6 );
  }
  .table_schedule th,
  .table_schedule td {
    font-size: 14px;
  }
.table_schedule th .fs {
	line-height: 1.2;
    margin-top: 8px;
	}
}

/*---contents parts end---*/

/*---nav menu---*/
.header .header_con {
  width: 95%;
  padding-top: 50px;
  padding-bottom: 30px;
  max-width: 1200px;
}
.header_nav .ul_menu li {
  font-size: 20px;
  color: var(--primary);
}
.header_nav a {
  display: block;
}
.footer {
  border-top: 1px dotted var(--primary);
}
.footer .footer_con {
  padding-top: 1em;
  padding-bottom: 1em;
}

@media (min-width: 1025px) {
  .header .header_con .flex_all {
    flex-wrap: nowrap;
  }
  .header .header_con .flex_all h1.logo {
    width: 300px;
  }
  .header .header_con .flex_all .header_nav {
    width: calc( 100% - 300px );
  }
  .header .header_nav .ul_menu {
    justify-content: flex-end;
  }
  .header .header_nav .ul_menu li:not(:last-of-type) {
    margin-right: 5%;
  }
  .header .header_nav .ul_menu li .arrow {
    display: none;
  }
  a.side_pickup {
    position: fixed;
    right: 0;
	top: 250px;
    transform: translateY(-50%);
    width: 90px;
    height: 90px;
    color: #fff;
    padding: 10px;
    text-align: center;
    background-color: var(--primary);
    border-radius: 10px 0 0 10px;
    font-size: .8em;
    font-weight: 500;
    z-index: 800;
  }
  a.side_pickup .ic {
    display: inline-flex;
    align-items: center;
    width: 50px;
    height: 40px;
    line-height: 50px;
  }
  .side_pickup.access .ic {
    background: url(../img/common/ic_access.svg) no-repeat center;
    background-size: contain;
  }
}
@media (max-width: 1024px) {
  .scroll_prevent {
    position: fixed;
    width: 100%;
    overflow: hidden;
    background: #fff;
  }
  section,/*ヘッター差分*/
  .sec_hospital #price {
    /* padding-top: 150px; */
    /* margin-top: -150px; */
  }
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 135px;
    z-index: 100;
    background-color: #fff;
  }
  .header.active::after {
    content: '';
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100vh;
    background-color: rgba( 0,0,0,.3);
  }
  main {
    padding-top: 80px;
  }
  .header .header_con {
    width: 100%;
    position: relative;
    padding: 1em;
    height: 80px;
    background-color: #fff;
    z-index: 10;
  }
  .header .header_con > .flex_all {
    margin: auto;
  }
  .header .header_con > .flex_all h1.logo {
    width: 230px;
    line-height: 1.2;
    font-size: 20px;
  }
  .header_nav > *,
  .mainimg_con .news_box {
    max-width: 650px;
    margin-left:  auto;
    margin-right: auto;
  }
  .header .header_con .flex_all .header_nav {
    width: calc( 100% - 200px );
  }
  .header .header_con .flex_all .header_nav li {
    font-size: 18px;
  }

  .header .pick_menu {
    top: 0;
    padding: 15px 0 15px;
    border-radius: 0 0 0 10px;
  }
  .header .pick_menu li a {
    display: inline-block;
    width: 100%;
    background-color: var(--primary);
    color: #fff;
    text-align: center;
    border-radius: 5px;
    line-height: 35px;
  }
  .header .menu_link {
    display: block;
    position: relative;
    height: 50px;
    width: 50px;
    z-index: 100;
  }
  .header .menu_link span {
    display: inline-block;
    width: 35px;
    height: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
    background: var(--black);
    transition: all .4s;
  }
  .header .menu_link span:nth-of-type(1) {
    top: 5px;
  }
  .header .menu_link span:nth-of-type(2) {
    top: 15px;
  }
  .header .menu_link span:nth-of-type(3) {
    top: 25px;
  }
  .header .menu_link::after {
    content:"menu";
    width: 35px;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    font-size: 11px;
    /* text-transform: uppercase; */
    transition: all .3s;
  }
  .header.active .menu_link span:nth-of-type(1) {
    top: 15px;
    transform: translateX(-50%)rotate(-45deg);
    width: 60%;
  }
  .header.active .menu_link span:nth-of-type(2) {
    opacity: 0;
  }
  .header.active .menu_link span:nth-of-type(3) {
    top: 15px;
    transform: translateX(-50%)rotate(45deg);
    width: 60%;
  }
  .header.active .menu_link::after {
    content: "close";
  }
  .header #g_nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    margin-top: 0;
    padding: 50px 30px;
    width: 100%;
    z-index: -10;
    opacity: 0;
    transition: all 0.5s;
    visibility: hidden;
    background-color: var(--primary_bg01);
    /* transition: all .4s; */
  }
  .header.active #g_nav {
    display: block;
    top: 79px;
    right: 0;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    z-index: 1;
    /* transition: all .4s; */
  }
  .header_nav .ul_menu li {
    padding-top: .5em;
    padding-bottom: .5em;
    padding-left: .5em;
    border-bottom: 1px solid;
  }
  .header_nav .ul_menu li .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 20px;
  }
}
@media screen and (max-width: 480px) {
}
/*---nav menu end---*/