@charset "utf-8";
/* CSS Document */

@font-face {
  font-family: 'Cambria';
  src: url('../font/Cambria-Bold.woff') format('woff');
}

*,
::before,
::after{
  box-sizing: border-box;
  /* ↓↓debug code↓↓ */
  /* outline: 1px solid red; */
}
body {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color:#333333;
  font-size:16px;
  font-weight:400;
  line-height:1.75;
  letter-spacing:0.05em;
  text-align:justify;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
}
/*tel*/
[href^="tel"]:hover {
  cursor: default;
}
body,
#mainvisual .inner,
header,
footer{
  min-width:1280px;
}
@media print{
html {
  -webkit-print-color-adjust: exact;
}
body {
  zoom: 80%;
}
.fixed {
  position: inherit !important;
}
}

/* 画像のにじみ（大きい画像を小さく表示した時等）対策 */
.visibility{
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
}

/*============================================================================

  header

============================================================================*/
header {
	position: relative;
  width:100%;
	background: url("../images/header_bg.png") no-repeat center bottom 6px;
}
header::before {
	position: absolute;
	width: 100%;
	height: 8px;
	background: url("../images/line01.png") repeat-x;
	content: ""
}
header .inner {
	width: 1280px;
	margin: auto;
	padding-bottom: 12px;
}
.header_top {
	display: flex;
	justify-content: space-between;
	padding-top: 18px;
}
.h1-tit {
	width: 31%;
	padding-top: 4px;
	color: #888888;
	font-size: 11px;
	font-family: noto-sans-cjk-jp, sans-serif;
	font-weight: 400;
	letter-spacing: 0.025em;
	line-height: 1.3;
	font-feature-settings : "palt";
}
.header_info {
	display: flex;
	align-items: center;
}
.header_access {
	padding: 11px 12px;
	border-radius: 5px;
	background: #e29da5;
	color: #ffffff;
	font-family: noto-sans-cjk-jp, sans-serif;
	font-weight: 400;
	font-size: 13px;
	letter-spacing: 0.05em;
	line-height: 1;
}
.header_access i {
	padding: 0 4px;
	transform: rotate(-90deg);
}
.tel {
	position: relative;
	margin-right: 12px;
	color: #4fa8ca;
	font-size: 21px;
	font-family: m-plus-2p, sans-serif;
	font-weight: 700;
	letter-spacing: 0.13em;
	line-height: 1;
}
.tel::before {
	display: inline-block;
	margin-right: 10px;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f87b";
	font-size: 28px;
	transform: rotate(-90deg);
	color: #83b6ca;
}
.header_ad {
	position: relative;
	margin-right: 16px;
	padding: 10px 15px;
	background: #e2eff5;
	border-radius: 5px;
	color: #555555;
	font-size: 14px;
	font-family: noto-sans-cjk-jp, sans-serif;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.04em;
}
.header_ad::before {
	display: inline-block;
	margin-right: 7px;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f3c5";
	font-size: 12px;
	color: #6fa6bb;
}
.header_bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header_logo {
	width: 389px;
	height: 62px;
}
.header_logo a {
	display: block;
}

.reservation_fix {
	position: fixed;
	right: 0;
	top: 220px;
	z-index: 9;
}
.reservation_fix a {
	display: grid;
	place-items:center;
	width: 60px;
	height: 200px;
	border-bottom-left-radius: 15px;
	border-top-left-radius: 15px;
	background-image: linear-gradient(90deg, rgba(89, 173, 241, 0.16), rgba(207, 253, 157, 1));
}
/*============================================================================

  nav

============================================================================*/

.nav_wrap{
	width: 55.6%;
	padding-top: 10px;
  z-index: 10;
}
.tgl_menu_list{
  margin: 0 auto;
}
.tgl_menu_list ul{
  display: flex;
  align-items: center;
	justify-content: space-between;
}
.tgl_menu_list ul li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
	padding-bottom: 16px;
	text-align: center;
	line-height: 1;
}

.nav_en {
	display: block;
	padding-bottom: 10px;
	color: #008000;
	font-size: 11px;
	font-family: quicksand, sans-serif;
	font-weight: 400;
	letter-spacing: 0.025em;
}
.nav_ja {
	font-size: 17px;
	font-family: dnp-shuei-mgothic-std, sans-serif;
	font-weight: 400;
	letter-spacing: 0.025em;
}
/* ホバーエフェクト */
.tgl_menu_list ul li a:hover{
  color: #1F2774;
}

/* ホバー時に出る下線 */
.tgl_menu_list ul li a::after,
.tgl_menu_list ul li p::after{
  content: "";
  position: absolute;
  right: 0;
  left: 0;
	bottom: -13px;
	width: 33px;
	height: 17px;
  margin: auto;
  background: url("../images/nav_hover.png") no-repeat center top;
  transition: 0.2s ease-in-out;
	opacity: 0;
}
.tgl_menu_list ul li a:hover::after,
.tgl_menu_list ul li.active a::after,
.tgl_menu_list ul li p:hover::after,
.tgl_menu_list ul li.active p::after{
	opacity: 1;
	background-position: center bottom;
}

.tgl_menu_list ul li.active p::after{
	bottom: -2px;
}

/* ------- スライドメニュー シングル------- */
.tgl_menu_list ul li.nav_single_menu{
  position: relative;
}
.tgl_menu_list ul li.nav_single_menu div{
  position: absolute;
  z-index: 1;
  top: 95%;
  left: -30%;
  width: 240px;
	padding: 12px 0;
  opacity: 0;
	background: rgba(231,170,177,0.90);
  visibility: hidden;
  transition: 0.2s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
	border-radius: 16px;
}
.tgl_menu_list ul li.nav_single_menu:hover div{
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.tgl_menu_list ul li.nav_single_menu div a{
  position: relative;
  display: block;
  text-align: left;
  line-height: 1.75;
  padding: 0 16px 6px;
	color: #fff;
}
.tgl_menu_list ul li.nav_single_menu div a:first-child {
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
}
.tgl_menu_list ul li.nav_single_menu div a:last-child {
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 16px;
}
.tgl_menu_list ul li.nav_single_menu div a::before,
.tgl_menu_list ul li.nav_single_menu div a::after{
  display: none;
}
.tgl_menu_list ul li.nav_single_menu div a:last-child{
  border-bottom: none;
}
.tgl_menu_list ul li.nav_single_menu div a i.nav_arrow{
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  display: flex;
  align-items: center;
  transition: 0.2s ease-in-out;
}
/* ホバーエフェクト */
.tgl_menu_list ul li.nav_single_menu div a:hover{
  opacity: 0.5;
}
.tgl_menu_list ul li.nav_single_menu div a:hover i.nav_arrow{
  right: 7px;
}

/* ------- スライドメニュー メガ------- */
.tgl_menu_list ul li.nav_mega_menu .mega_menu_wrap{
  position: absolute;
  z-index: 1;
  top: 95%;
  left: -30%;
  width: 370px;
	padding: 16px 0 16px 12px;
  opacity: 0;
	background: rgba(231,170,177,0.90);
  visibility: hidden;
  transition: 0.2s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
	border-radius: 20px;
}
.tgl_menu_list ul li.nav_mega_menu .mega_menu_wrap li {
	padding-bottom: 0px;
	line-height: 1.2;
}
.tgl_menu_list ul li.nav_mega_menu .mega_menu_wrap li:last-child a {
	padding-bottom: 0;
}
.tgl_menu_list ul li.nav_mega_menu:hover .mega_menu_wrap{
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.tgl_menu_list .mega_menu_inner{
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.tgl_menu_list .menu_list{
  width: 100%;
  margin-left: 3%;
}
.tgl_menu_list .menu_list:first-child{
  margin-left: 0;
}
.tgl_menu_list ul li.nav_mega_menu .menu_list p::before,
.tgl_menu_list ul li.nav_mega_menu .menu_list p::after{
  display: none;
}
.tgl_menu_list .menu_list p{
  text-align: left;
  padding: 12px 0;
  font-weight: bold;
  border-bottom: 2px solid;
}
.tgl_menu_list .menu_list ul{
  display: block;
}
.tgl_menu_list .menu_list ul li{
  display: block;
}
.tgl_menu_list .menu_list ul li a{
  position: relative;
  display: block;
  text-align: left;
  padding: 0 12px 12px 12px;
  transition: 0.2s ease-in-out;
	color: #fff;
}
.tgl_menu_list .menu_list ul li a:hover{
  opacity: 0.5;
}
.tgl_menu_list .menu_list ul li a::before{
  position: static;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  border: none;
  margin-right: 10px;
}
.tgl_menu_list .menu_list ul li:last-child a::before{
  display: inline;
}
.tgl_menu_list ul li.nav_mega_menu div a::after{
  display: none;
}


/* 追従時の設定 */
.nav_wrap.fixed{
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
	width: 100%;
  margin: auto;
	padding: 28px 0 8px;
	background: rgba(255,255,255,0.9);
  box-shadow: 0 0 4px 0 rgb(0 0 0 / 10%);
}
.nav_wrap.fixed::before {
	position: absolute;
	top: 0;
	width: 100%;
	height: 8px;
	background: url("../images/line01.png") repeat-x;
	content: "";
}
.nav_wrap.fixed .nav_en{
	display: none;
}
.nav_wrap.fixed .innerNav {
	width: 860px;
	margin: auto;
}
.nav_wrap.fixed .tgl_menu_list ul li a::after,
.nav_wrap.fixed .tgl_menu_list ul li p::after {
	bottom: -9px;
}

.nav_wrap.fixed .tgl_menu_list ul li a::after {
	bottom: -9px;
}
.nav_wrap.fixed .tgl_menu_list ul li p::after {
	bottom: -2px;
}

/*============================================================================

  #mainvisual

============================================================================*/

/* 下層ページのメインビジュアルの高さ、背景画像（トップページの高さはtop.css参照） */
#mainvisual{
  display:block;
  position:relative;
  height: 280px;
  background-image:url(../images/mainvisual_slide1.jpg);
  background-color:#f0f0f0;
  background-position:center;
  background-repeat:no-repeat;
}
#mainvisual::before {
	position: absolute;
	top: 0;
	width: 100%;
	height: 5px;
	background-image: linear-gradient(90deg, rgba(89, 173, 241, 0.16), rgba(207, 253, 157, 1));
	content: "";
	z-index: 1;
}
#mainvisual::after {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 7px;
	background: url("../images/wave01.png") repeat-x;
	content: "";
}
#mainvisual .inner{
  position:relative;
	display: flex;
	align-items: center;
	justify-content: center;
  height: inherit;
  margin: 0 auto;
	padding-top: 40px;
  background-repeat:no-repeat;
}
#mainvisual p.headline{
  position:relative;
}
#mainvisual p.headline::before {
	position: absolute;
	top: -60px;
	right: 0;
	left: 0;
	width: 77px;
	height: 65px;
	margin: auto;
	background: url("../images/mainvisual_catch_panda.png") no-repeat;
	content: "";
}
/* キャッチフレーズ */
.mainvisual_catch{
  position:absolute;
	right: 0;
	left: 0;
	top: 259px;
	width: fit-content;
	width: -moz-fit-content;
  margin: auto;
}
.mainvisual_catch::before {
	position: absolute;
	top: -58px;
	right: 0;
	left: 0;
	width: 77px;
	height: 65px;
	margin: auto;
	background: url("../images/mainvisual_catch_panda.png") no-repeat;
	content: "";
}
.mainvisual_open{
  position:absolute;
  left: calc(50% - 640px);
	bottom: 127px;
}
.mainvisual_schedule {
	position: absolute;
	right: 5.3%;
	top: 474px;
	width: 520px;
	padding: 24px 0 20px;
	border-radius: 20px;
	background: #ffffff;
}
.mainvisual_schedule::after {
	position: absolute;
	left: 37px;
	top: -37px;
	width: 107px;
	height: 83px;
	background: url("../images/mainvisual_schedule_deco.png") no-repeat center / contain;
	content: "";
}
.mainvisual_schedule::before {
	position: absolute;
	top: 5px;
	left: 5px;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	background-image: linear-gradient(90deg, rgba(89, 173, 241, 0.16), rgba(207, 253, 157, 1));
	content: "";
	z-index: -1;
	pointer-events: none;
}
.mainvisual_schedule .schedule {
	width: 91%;
	margin: auto;
}
.schedule .tb01 {
	margin-bottom: 10px;
}
.mainvisual_schedule .tb01 tr:first-child {
	border-top: none;
}
.mainvisual_schedule .tb01 td,
.mainvisual_schedule .tb01 th{
	padding: 16px 0;
}
.mainvisual_schedule .tb01 tr:first-child th,
.mainvisual_schedule .tb01 tr:first-child td{
	padding-top: 0;
}
.mainvisual_schedule .schedule_note {
	font-size: 15px;
}
/* 下層ページの見出し */
.mainvisual_headline {
  display: table-cell;
  padding-bottom:2px;
  letter-spacing: 0.15em;
  vertical-align: middle;
  text-align: center;
  text-shadow: 0 0 17px rgba(150,120,88,0.8),0 0 17px rgba(150,120,88,0.8);
}
.mainvisual_headline p.headline{
  font-weight:bold;
  font-size: 27px;
  color: #fff;
	font-family: "A1明朝";
}
/* 背景変更用 */
#mainvisual.bg01{
  background-image:url(../404.html);
  background-position: center 0%;
  background-size: cover;
}
#mainvisual.bg02{
  background-image:url(../404.html) ;
  background-position: center 0%;
  background-size: cover;

}
#mainvisual.bg03{
  background-image:url(../404.html) ;
  background-position: center 0%;
  background-size: cover;
}
#mainvisual.bg04{
  background-image:url(../404.html) ;
  background-position: center 0%;
  background-size: auto;
}
#mainvisual.bg05{
  background-image:url(../404.html);
  background-position: center 0%;
  background-size: cover;
}
/*==================================================================

  #contents

==================================================================*/
main{
  display:block;
}

#contents{
  position:relative;
  margin:0 auto;
}
#contents_left{
  float:left;
  width:840px;
}
#contents_right{
  float:right;
  width:280px;
  font-size:15px;
  line-height:1.6;
  position: sticky;
  top: 140px;
  padding: 0;
  margin: 70px 0 0;
}
.right_medical p{
  text-align:center;
}
.right_medical p a{
  display:block;
  padding:15px 0;
  background-color:#fff;
  color:#000;
  font-weight:bold;
  font-size:19px;
  transition:0.1s ease-in-out;
  border-radius: 20px 20px 0 0;
}
.right_medical p a span{
  display: block;
  font-size: 14px;
}
.right_medical p a:hover{
  background-color:#e0d6ce;
  color:#1F2774;
}
.right_medical{
  padding: 10px;
  background: #1F2774;
  border-radius: 27px;
  position: relative;
}
.right_medical ul{
  background-color: #fff;
  border-radius: 15px;
}
.right_medical li:nth-child(odd) {
  background-color: #f1ebe2;
}
.right_medical li:nth-child(even) {
  background-color: #f9f4ee;
}
.right_medical li a{
  display: block;
  padding: 10px;
  text-align: center;
}
.right_medical li a:hover{
  background-color: #fff;
}
.right_medical li:last-child a:hover{
  border-radius: 0 0 20px 20px;
}
.right_medical li:last-child{
  margin-bottom:0;
  border-radius: 0 0 20px 20px;
}
.right_medical img{
  width:100%;
}
.right_medical li:nth-child(odd) {
  background-color: #f1ebe2;
}
/*============================================================================

  $footer

============================================================================*/
footer {
  position:relative;
  width:100%;
	padding-top: 78px;
}
footer::before {
	position: absolute;
	top: -64px;
	left: 0;
	width: 378px;
	height: 103px;
	background: url("../images/deco04.png") no-repeat center;
	content: "";
	z-index: 1;
}
footer::after {
	position: absolute;
	top: -74px;
	right: 0;
	width: 373px;
	height: 114px;
	background: url("../images/deco05.png") no-repeat;
	content: "";
}
.footer_info {
	position: relative;
	display: grid;
	grid-template-columns: 620px 590px;
	grid-column-gap: 70px;
	justify-content: center;
	padding-bottom: 62px;
}
.footer_info::after,.footer_info::before {
	position: absolute;
	bottom: 0;
	height: 5px;
	width: 100%;
	background-image: linear-gradient(90deg, rgba(89, 173, 241, 0.16), rgba(207, 253, 157, 1));
	content: "";
}
.footer_info::before {
	bottom: auto;
	top: -80px;
	background-image: linear-gradient(90deg, #faf0f2 0%, #e2eff5 100%);
}
/* フッターの医院概要 */
.footer_logo {
	width: 430px;
	height: 67px;
	margin: 0 auto 22px;
}
.footer_ad {
	margin-bottom: 24px;
	text-align: center;
	font-family: noto-sans-cjk-jp, sans-serif;
	font-weight: 400;
	line-height: 2.18;
	letter-spacing: 0.1em;
}
.tel-box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-bottom: 24px;
	padding: 12px 0;
	background: #f7f7f7;
}
.tel-box_text {
	margin-right: 18px;
	font-family: noto-sans-cjk-jp, sans-serif;
	font-weight: 400;
	font-size: 14px;
}
.tel-box_tel {
	font-size: 24px;
	margin-right: 6px;
}
.footer_right {
	display: grid;
	grid-column-gap: 10px;
	grid-row-gap: 13px;
	grid-template-columns: 290px 290px;
	grid-template-rows: 180px 300px;
}
.footer_map {
	position: relative;
	grid-column: 1 / 3;
}
.footer_map iframe {
	width: 100%;
	height: 100%;
}
.footer_map .footer_map_btn {
	position: absolute;
	right: 20px;
	bottom: 18px;
}
.footer_map .footer_map_btn a {
	padding: 12px 50px 6px 0;
}
.footer_bottom {
	padding: 48px 0 30px;
	background: url("../images/footer_bottom_bg_dmy.jpg") no-repeat center / cover;
	color: #000000;
}
.footer_sitemap {
	display: grid;
	grid-template-columns: 50px 28.75% auto;
	grid-column-gap: 42px;
	width: 1280px;
	margin: 0 auto 26px;
	font-weight: 400;
	font-family: noto-sans-cjk-jp, sans-serif;
}
.footer_clinic-img {
    width: 290px;
}
.footer_clinic-img img{
    width: 100%;
}
.sitemap_tit {
	display: grid;
	place-items:center;
	width: 100%;
	height: 100px;
	margin-right: 42px;
	border: 1px solid #000000;
	font-size: 14px;
	letter-spacing: 0.1em;
	line-height: 1;
	-webkit-writing-mode: vertical-rl;
	-moz-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	-ms-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
}
.sitemap_list {
	display: flex;
	flex-wrap: wrap;
	padding-top: 10px;
	border-right: 1px solid #fff;
}
.sitemap_list_item {
	display: flex;
	margin-right: 14px;
	margin-bottom: 16px;
	font-size: 14px;
	line-height: 1;
}
.sitemap_list_item:first-child {
	width: 100%;
}
.sitemap_list_detail {
	display: flex;
}
.sitemap_list_detail_item {
	position: relative;
}
.sitemap_list_detail_item::before {
	display: inline-block;
	margin-right: 2px;
	margin-left: -2px;
	content: "＞";
}

.sitemap_item_tit {
	margin-bottom: 5px;
	padding-top: 4px;
	font-size: 14px;
}
.sitemap_list2 {
	display: flex;
	flex-wrap: wrap;
}
.sitemap_list2_item {
	position: relative;
	margin-right: 8px;
	margin-bottom: 8px;
	font-size: 14px;
}
.sitemap_list2_item::before {
	display: inline-block;
	margin-right: 0px;
	margin-left: 0px;
	content: ">";
}
.sitemap_list2_item_last {
	width: 50%;
}
.sitemap_list_item a:hover,
.sitemap_list2_item a:hover{
	text-decoration: underline;
}
/* ページトップ */
.pagetop{
  position: absolute;
	right: 92px;
	bottom: 49px;
  text-align:center;
  cursor:pointer;
	transition:0.5s ease-in-out;
}
.pagetop::before {
	position: relative;
	display: block;
	left: 30px;
	width: 77px;
	height: 59px;
	margin-bottom: 11px;
	background: url("../images/page-top_text.png") no-repeat center;
	content: "";
}
.pagetop::after {
	position: absolute;
	top: 63%;
  transform: translateY(-50%);
	transform-origin: center top;
	right: -9px;
	width: 15px;
	height: 29px;
	background: url("../images/page-top_deco.png") no-repeat center;
	content: "";
	transition:0.2s ease-in-out;
}
.pagetop:hover{
  transform: translateY(-6px);
}
.pagetop:hover::after {
	transform: translateY(-50%) rotateY(180deg);
}
/* コピーライト */
.copy{
  padding-right: calc(50% - 640px);
  text-align: right;
	line-height:1;
}
.copy small{
  font-size: 11px;
	font-weight: 400;
	font-family: noto-sans-cjk-jp, sans-serif;
	letter-spacing: 0.1em;
}
/*==================================================================

  タイトル

==================================================================*/

/*中央寄せ　背景画像あり*/
.tit-wrap {
	position: relative;
	margin-bottom: 24px;
}
.tit01 {
  position: absolute;
	top: 60%;
	transform: translateY(-50%);
	right: 0;
	left: 0;
	display: flex;
	align-items: center;
  font-size: 32px;
	font-family: "A1明朝";
	letter-spacing: 0.15em;
	line-height: 1;
}
.tit01::before {
	position: relative;
	display: block;
	width: 48px;
	height: 2px;
	margin-right: 20px;
	background-color: #757575;
	content: "";
}
.tit-wrap_en-tit {
	width: auto;
	width: auto;
	padding-left: 26px;
	background-image:linear-gradient( 90deg, rgba(89, 173, 241, 0.16), rgba(207, 253, 157, 1)));
	-webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
	color: rgba(51, 51, 51, 0.7);
	font-size: 120px;
	font-weight: 400;
	font-family: allura, sans-serif;
	line-height: 1.1;
	opacity: 0.7;
}

.tit-vertical .tit01 {
	top: 0;
	transform: translateY(0);
	margin: 0 auto 0;
	-webkit-writing-mode: vertical-rl;
	-moz-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	-ms-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
}
.tit-vertical .tit01::before {
	width: 2px;
	height: 97px;
	margin-right: 0;
	margin-bottom: 22px;
}
.tit-vertical .tit-wrap_en-tit {
	padding: 24px 0;
	-webkit-writing-mode: vertical-rl;
	-moz-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	-ms-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
}

/* 左寄せ　背景画像あり */
.tit02 {
  position: relative;
	display: flex;
	align-items: center;
  z-index: 0;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  font-size: 24px;
	font-family: "A1明朝";
  line-height: 1.4;
}
.tit02::before{
	position: relative;
	display: block;
	width: 32px;
	height: 32px;
	margin-right: 20px;
	border-radius: 50%;
	background-color: rgba(199, 152, 172, 0.4);
	background: rgb(241 198 203);
  content: "";
}
.tit02::after {
	position: absolute;
	top: 5px;
	left: 4px;
	width: 24px;
	height: 24px;
	border: 1px solid #fff;
	border-radius: 50%;
	content: "";
}

/*左寄せ*/
.tit03 {
  position: relative;
	width: fit-content;
	width: -moz-fit-content;
  margin-bottom: 24px;
	padding-top: 20px;
	font-size: 22px;
  letter-spacing: 0.1em;
  font-family: dnp-shuei-mgothic-std, sans-serif;
}
.tit03::after {
	position: relative;
	display: block;
	width: 100%;
	height: 2px;
	margin-top: 6px;
	background-image: linear-gradient(90deg, rgba(89, 173, 241, 0.16), rgba(207, 253, 157, 1));
	content: "";
}

.tit02 + .tit03 {
	padding-top: 0;
}
/*左寄せ*/
.tit04 {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 16px;
	padding-top: 16px;
  font-size: 20px;
	letter-spacing: 0.1em;
	font-family: dnp-shuei-mgothic-std, sans-serif;
}
.tit04::before {
	position: relative;
	flex: none;
	display: block;
	width: 12px;
	height: 12px;
	margin-right: 12px;
	border-radius: 50%;
	background: #b7d2dd;
	content: "";
}
.tit03 + .tit04 {
	padding-top: 0;
}
/*中央寄せ　電球*/
.tit05 {
  position: relative;
  padding: 1rem;
  text-align: center;
  border-top: 1px solid #000;
  border-bottom: 3px solid #000;
  background: #fff;
  margin-bottom: 40px;
}
.tit05:before,
.tit05:after {
  position: absolute;
  content: '';
}
.tit05:before {
  top: -40px;
  left: calc(50% - 40px);
  width: 80px;
  height: 80px;
  border: 1px solid #000;
  border-radius: 50%;
  background: #fff;
}
.tit05:after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
.tit05 i {
  font-size: 30px;
  font-size: 1.7rem;
  line-height: 60px;
  position: absolute;
  z-index: 1;
  top: -40px;
  left: calc(50% - 40px);
  width: 80px;
  height: 60px;
  text-align: center;
}
.tit05 span:before {
  top: -100px;
  left: calc(50% - 27px);
  width: 55px;
  height: 32px;
  background: url(../404.html) top center no-repeat;
  position: absolute;
  content: '';
}
.tit05 span:last-child {
  font-size: 30px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
/* 青い背景+水玉（左右）+文字左寄せ */
.tit06 {
  position: relative;
  margin-bottom: 27px;
  letter-spacing: 0.15em;
  line-height: 1.4;
  color: #00568c;
  font-size: 19px;
  font-weight: bold;
  text-align: left;
  padding: 15px 15px 13px;
  background: #c6e3f1;
}
.tit06::before {
  position: absolute;
  top: -15px;
  left: -8px;
  width: 80px;
  height: 22px;
  background: url(../404.html) no-repeat;
  content: "";
  z-index: 1;
}
.tit06::after {
  position: absolute;
  bottom: -13px;
  right: 0;
  width: 80px;
  height: 22px;
  background: url(../404.html) no-repeat;
  content: "";
  z-index: 1;
}
/* 緑背景+左寄せ+右側に画像 */
.tit07 {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  display: block;
  line-height: 1.5;
  margin: 0 0 25px;
  padding: 13px 80px 13px 15px;
  background-color: #daeccc;
  color: #48a565;
  border-radius: 5px;
}
.tit07::before {
  position: absolute;
  width: 73px;
  height: 82px;
  top: -15px;
  right: 3px;
  margin: auto;
  background: url(../404.html);
  background-size: cover;
  z-index: 1;
  content: "";
}
/* 左寄せ+左右に三角 */
.tit08 {
  position: relative;
  margin-bottom: 20px;
  letter-spacing: 0.15em;
  line-height: 1.4;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  border: 1px #000 solid;
  padding: 0.5em 0.7em;
}
.tit08::before {
  position: absolute;
  width: 55px;
  height: 45px;
  top: -5px;
  left: -5px;
  margin: auto;
  -webkit-clip-path: polygon(0 0, 0 45%, 100% 0);
  clip-path: polygon(0 0, 0 45%, 100% 0);
  background-color: #fffe00;
  z-index: -1;
  content: "";
}
.tit08::after {
  position: absolute;
  width: 55px;
  height: 45px;
  bottom: -5px;
  right: -5px;
  margin: auto;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 45%);
  clip-path: polygon(0 100%, 100% 100%, 100% 45%);
  background-color: #fffe00;
  z-index: -1;
  content: "";
}
/* 左寄せ+斜線 */
.tit09 {
  position: relative;
  margin-bottom: 20px;
  letter-spacing: 0.15em;
  line-height: 1.4;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  background: repeating-linear-gradient(45deg, #fff9e6, #fff9e6 5px, #fbf0d0 5px, #fbf0d0 10px);
  box-shadow: 0px 0px 0px 5px #fbf0d0;
  border: dashed 2px white;
  padding: 0.5em 0.7em 0.4em;
}
.tit09:after {
  position: absolute;
  content: '';
  left: -7px;
  top: -7px;
  border-width: 0 0 15px 15px;
  border-style: solid;
  border-color: #fff #fff #f3dfa4;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}
/* 左側に画像+左寄せ */
.tit10 {
  position: relative;
  margin-bottom: 30px;
  padding: 14px 14px 14px 45px;
  letter-spacing: 0.15em;
  line-height: 1.4;
  color: #1F2774;
  font-size: 22px;
  font-weight: 600;
  text-align: left;
}
.tit10::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  display: block;
  width: 0.5em;
  height: 0.5em;
  background: #ffa3a3;
  box-shadow: 0 0.6em 0 #93e099, 0.6em 0 0 #8adaf9, 0.6em 0.6em 0 #efc378;
  content: "";
}
/* 左側に画像+左寄せ */
.tit11 {
  position: relative;
  margin-bottom: 30px;
  padding: 0 0 0 20px;
  letter-spacing: 0.15em;
  line-height: 1.4;
  color: #1F2774;
  font-size: 22px;
  font-weight: 600;
  text-align: left;
  border-left: 5px solid #82c79a;
}
.tit11::before {
  position: absolute;
  left: -5px;
  bottom: 0;
  content: '';
  width: 5px;
  height: 50%;
  background-color: #39588e;
}
/* 左側に電球+左寄せ */
.tit12 {
  position: relative;
  background: #f4f4f4;
  padding: 7px 5px 7px 70px;
  font-size: 20px;
  color: #474747;
  border-radius: 25px 15px 15px 25px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 2;
}
.tit12:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0eb";
  display: inline-block;
  position: absolute;
  padding: 0em;
  color: #fff;
  background: #ff6363;
  font-weight: normal;
  width: 55px;
  text-align: center;
  height: 55px;
  line-height: 55px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.29);
}
/* 左寄せ+右側に背景画像 */
.tit13 {
  display: block;
  margin-bottom: 20px;
  padding: 2px 0 0;
  line-height: 2.6;
  border-top: 3px solid #333;
  border-bottom: 1px dashed #333;
  font-size: 20px;
  font-weight: 600;
  background: url(../404.html) right center no-repeat;
}
/* 左側に●+左寄せ */
.tit14 {
  position: relative;
  margin-bottom: 70px;
  letter-spacing: 0.15em;
  line-height: 1.4;
  color: #0d6fb8;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  padding-left: 1.5em;
}
.tit14:before {
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  position: absolute;
  font-size: 1em;
  left: 0;
  color: #e69cbd;
}
/* 中央寄せ+上に画像+タイトル+下にサブタイトル */
.tit15 {
  position: relative;
  margin-bottom: 30px;
  padding: 70px 0 15px;
  letter-spacing: 0.15em;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
  color: #583a21;
  font-size: 30px;
}
.tit15::before {
  position: absolute;
  width: 53px;
  height: 59px;
  top: 0;
  bottom: auto;
  right: 0;
  left: 0;
  margin: auto;
  background-image: url(../404.html);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  content: "";
}
.tit15 span {
  display: block;
  position: relative;
  letter-spacing: 2.5px;
  font-weight: 500;
  font-style: normal;
  color: #583a21;
  font-size: 17px;
}
/* 左寄せ+左側に●+丸い背景 */
.tit16 {
  color: #505050;
  padding: 0.5em;
  display: inline-block;
  line-height: 1.3;
  background: #dbebf8;
  vertical-align: middle;
  border-radius: 25px 3px 3px 25px;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
}
.tit16:before {
  content: '●';
  color: #fff;
  margin-right: 8px;
}
/* 左寄せ+下線 */
.tit17 {
  border-bottom: solid 3px #87ceeb;
  position: relative;
  font-size: 22px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 15px;
}
.tit17:before {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #ffc778;
  bottom: -3px;
  width: 15%;
}
/* 上下線 */
.tit18{
  padding: 15px 30px;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
}
/* 吹き出し+背景色あり */
.tit19 {
  position: relative;
  padding: 15px 30px;
  color: #fff;
  border-radius: 10px;
  background: #1f2774;
}

.tit19:after {
  position: absolute;
  bottom: -9px;
  left: 15px;
  width: 0;
  height: 0;
  content: '';
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #1f2774 transparent transparent transparent;
}
/* 下線のみの吹き出し */
.tit20 {
  position: relative;
  padding: 15px 30px;
  border-bottom: 3px solid #1f2774;
  font-size: 24px;
}

.tit20:before {
  position: absolute;
  bottom: -14px;
  left: 1em;
  width: 0;
  height: 0;
  content: '';
  border-width: 14px 12px 0 12px;
  border-style: solid;
  border-color: #1f2774 transparent transparent transparent;
}

.tit20:after {
  position: absolute;
  bottom: -10px;
  left: 1em;
  width: 0;
  height: 0;
  content: '';
  border-width: 14px 12px 0 12px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
/* ナンバー+タイトル */
.tit21 {
  position: relative;
  overflow: hidden;
  padding: 20px 30px  20px 130px;
  border-top: 3px solid #000;
  font-size: 24px;
}
.tit21:before {
  position: absolute;
  top: -150%;
  left: -100px;
  width: 200px;
  height: 300%;
  content: '';
  transform: rotate(25deg);
  background: #000;
}
.tit21 span {
  font-size: 36px;
  position: absolute;
  z-index: 1;
  top: 8px;
  left: 0;
  display: block;
  padding-top: 3px;
  padding-left: 16px;
  color: #fff;
}
/* 下に小さな下線 */
.tit_box01{
  position: relative;
  margin-bottom: 30px;
}
.tit_box01 h2 {
  font-size: 30px;
  position: relative;
  text-align: center;
}

.tit_box01 p {
  font-size: 18px;
  text-align: center;
}

.tit_box01:before {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
  width: 60px;
  height: 5px;
  content: '';
  border-radius: 3px;
  background: #fa4141;
}
/*==================================================================

  .list
  共通CSSなので使っていないものも消さずに残してください

==================================================================*/


/*院長略歴*/
.list01 {
  padding: 0;
  border-width: 0 1px 1px;
}
.list01 dt {
  margin: 0;
  padding: 14px 3px 0px;
}
.list01 dd {
  margin: -38px 0 0;
  padding: 12px 4px 10px 100px;
  border-bottom: 1px dotted #ACACAC;
}
/*院長略歴　年月無し*/
.list02 {
  margin: 0 0 15px;
  border-width: 0 1px 1px;
}
.list02 li {
	position: relative;
  padding: 8px 0;
  border-bottom: 1px dotted #ddd;
}
.list02 li::before {
	content: "・";
}
.list02 li a:hover {
	text-decoration: underline;
}
/*まる*/
.list03 li{
  position:relative;
  margin-bottom:10px;
  padding-left:18px;
}
.list03 li:last-child{
  margin-bottom:0;
}
.list03 li:before{
  display: block;
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  background-image: linear-gradient(90deg, rgba(89, 173, 241, 0.16), rgba(207, 253, 157, 1));
  border-radius: 100%;
  content: '';
}
.list03 li i{
  margin-right:8px;
}
/*さんかく*/
.list04 li{
  position: relative;
  margin-bottom:15px;
  padding-left:22px;
  color:#223a70;
}
.list04 li:before{
  position:absolute;
  top:0.5em;
  left:7px;
  width: 0;
  height: 0;
  border:5px solid transparent;
  border-left: 5px solid #4A577F;
  content:"";
}
/*やじるし*/
.list05 li{
  position:relative;
  margin-bottom: 10px;
  padding-left:15px;
}
.list05 li:before{
  position:absolute;
  left:0;
  top:0.3em;
  height:5px;
  width:5px;
  transform:rotate(45deg);
  background-color: transparent;
  border-top:1px solid #333;
  border-right:1px solid #333;
  content:"";
}
/* まる & 背景 */
.list06{
  padding:35px 15px 25px 45px;
  background-color:#f7f7f7;
}
.list06:after {
  display: block;
  clear: both;
  content: "";
}
.list06 li{
  position:relative;
  float:left;
  margin-bottom:15px;
  padding-left:0.9em;
  padding-right:5%;

}
.list06 li:before{
  display: block;
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 3px;
  height: 3px;
  background-color: #DAC58B;
  border: 1px solid #DAC58B;
  border-radius: 100%;
}
/*まる & 枠 */
.list07{
  padding: 4%;
	background: rgba(247,242,232,0.6);
	border-radius: 20px;
}
.list07 li{
  padding-left:1.2em;
  margin-bottom:10px;
  position:relative;
}
.list07 li:last-child{
  margin-bottom:0;
}
.list07 li:before{
  display: block;
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #c98a4c;
  border-radius: 100%;
}
/*チェック*/
.list08{
  margin-bottom:30px;
  padding:35px 10px 20px 45px;
  background: rgba(247,242,232,0.6);
	border-radius: 20px;
}
.list08:after{
  display: block;
  clear: both;
  content: "";
}
.list08 li{
  position:relative;
  float:left;
  margin-right: 5%;
  margin-bottom:20px;
	padding-bottom: 4px;
  border-bottom: 1px dotted #cdcdcd;
}
.list08 li:before{
	position: relative;
	top: 3px;
	flex: none;
	display: inline-block;
	width: 22px;
	height: 18px;
	margin-right: 12px;
	background: url("../images/cheack04.svg") no-repeat center;
	content: "";
}
.list08-box{
  position: relative;
  margin-bottom: 20px;
  letter-spacing: 0.15em;
  padding: 30px;
  background: #b8bfff;
}
.list08-box .list08 {
  margin-bottom: 0;
  padding: 35px 25px 20px 50px;
  background-color: #fff;
}
.list08-box .list08 li {
  width: auto;
}
.list08-box::before {
  position: absolute;
  width: 65px;
  height: 50px;
  top: -5px;
  left: -5px;
  margin: auto;
  -webkit-clip-path: polygon(0 0, 0 85%, 100% 0);
  clip-path: polygon(0 0, 0 85%, 100% 0);
  background-color: #1f2774;
  z-index: 0;
  content: "";
}
.list08-box::after {
  position: absolute;
  width: 65px;
  height: 50px;
  bottom: -5px;
  right: -5px;
  margin: auto;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 15%);
  clip-path: polygon(0 100%, 100% 100%, 100% 15%);
  background-color: #1f2774;
  z-index: 0;
  content: "";
}
/*数字＋背景色*/
.list09 {
padding: 25px;
  background: #f5f5ff;
  counter-reset: section;
}
.list09 li {
  display: flex;
  align-items: baseline;
  position: relative;
  margin-bottom: 10px;
  padding-left: 5px;
  padding-bottom: 8px;
  border-bottom: #1f2774 1px dashed;
}

.list09 li::before{
  counter-increment: section;
  content: counter(section);
  padding-right: 8px;
  font-size: 106%;
  font-weight: 700;
  color: #1F2774;
}
/*●の数字＋背景色*/
.list10 {
	padding: 4%;
  background: #f3f9fb;
	border-radius: 20px;
  counter-reset: section;
}
.list10 li {
  display: flex;
  align-items: baseline;
  position: relative;
  margin-bottom: 10px;
  padding-left: 5px;
  padding-bottom: 8px;
  border-bottom: #b7d2dd 1px dashed;
}

.list10 li::before{
  display: inline;
  counter-increment: section;
  content: counter(section,decimal-leading-zero);
	font-family: Cambria;
	font-weight: 700;
  font-size: 20px;
  font-weight: 700;
	line-height: 1;
  color: #fff;
  background-color: #83b6ca;
  border-radius: 6px;
  padding: 11px 10px;
  margin-right: 16px;
}
/*数字の右側に）＋背景色*/
.list11 {
padding: 25px;
  background: #f5f5ff;
  counter-reset: section;
}
.list11 li {
  position: relative;
  display: flex;
  align-items: baseline;
  margin-bottom: 10px;
  padding-left: 5px;
  padding-bottom: 8px;
  border-bottom: #1f2774 1px dashed;
}

.list11 li::before{
  display: inline;
  counter-increment: section;
  content: counter(section) " )";
  font-size: 106%;
  font-weight: 700;
  color: #1F2774;
  flex-basis: 35px;
  flex-shrink: 0;
}

/*米印のリスト*/
.list12 li{
  position: relative;
  display: flex;
  align-items: baseline;
  margin-bottom: 5px;
  color: #888;
  font-size: 95%;
}
.list12 li::before{
  content: "※";
  display: inline;
  flex-basis: 1.25em;
  flex-shrink: 0;
}

/*==================================================================

  .btn
  共通CSSなので使っていないものも消さずに残してください

==================================================================*/
/*ボタン*/
.btn01 {
  position: relative;
	width: fit-content;
	width: -moz-fit-fit-content;
	background-image: linear-gradient(90deg, rgba(89, 173, 241, 0.16), rgba(207, 253, 157, 1));
	background: rgba(255,9,234,0.18);
	background: linear-gradient(90deg, rgba(89, 173, 241, 0.16), rgba(207, 253, 157, 1));
	border-radius: 80px;
	overflow: hidden;
	line-height: 1;
	transition: all 0.3s ease-out;
}
.btn01 a {
  display: inline-flex;
	align-items: center;
  position: relative;
	padding: 16px 50px 16px 0;
  color: #ffffff;
	z-index: 1;
}
.btn01 a::before {
	position: relative;
	display: block;
	width: 53px;
	height: 6px;
	margin-right: 22px;
	background: url("../images/btn_arrow.svg") no-repeat center;
	content: "";
	transition: all 0.3s ease-out;
}
.btn01::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to left,  #f2b1b9 20%, #bae2f2 100%);
	opacity: 0;
	content: "";
	transition: all 0.3s ease-out;
}
.btn01_en a {
	font-family: allura, sans-serif;
	font-weight: 400;
	font-size: 22px;
	letter-spacing: 0;
	line-height: 1;
}
.btn01:hover::after{
	opacity: 1;
	transition: all 0.3s ease-out;
}
.btn01:hover a::before {
	transform: translateX(calc(100% + 160px));
	transition: all 0.3s ease-out;
}
/* btn02 */
.btn02 a {
  text-decoration: none;
  display: inline-block;
  color: #fff;
  border-radius: 4px;
  background: #a5cd95;
  box-shadow: 0px 5px 0 #74aa5f;
  padding: 16px;
  transition: 0.2s all ease 0s;
}
.btn02 a:hover {
  transform: translate3d(0, 3px, 0);
  box-shadow: 0px 1px 0 #74aa5f;
}
.btn02 a i {
  margin-right: 7px;
}
/* btn03 */
.btn03 a {
  position: relative;
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid #00408f;
  background: #00408f;
  color: #fff;
  font-weight: bold;
  transition: ease-in-out 0.2s;
  border-radius: 25px;
  overflow: hidden;
}
.btn03 a::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: '';
  background: #fff;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.btn03 a span {
  z-index: 2;
  position: relative;
}
.btn03 a i {
  margin-right: 7px;
}
.btn03 a:hover{
  color:#00408f;
}
.btn03 a:hover::before {
  transform-origin: left top;
  color:#00408f;
  transform: scale(1, 1);
}
/*btn04*/
.btn04 a{
  position: relative;
  display:inline-block;
  padding:8px 20px;
  color:#fff;
  background: #00408f;
  font-weight:bold;
  transition:ease-in-out 0.2s ;
}
.btn04 a i{
  margin-right:7px;
}
.btn04 a:hover{
  color:#fff;
}
.btn04 a span{
  z-index: 2;
  position: relative;
}
.btn04 a::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: '';
  background: #6baaea;
  transform-origin: center center;
  transform: scale(0, 1);
  transition: transform .3s;
}
.btn04 a:hover::before {
  transform: scale(1, 1);
}
/*btn05*/
.btn05 a{
width: 130px;
  display:inline-block;
  position: relative;
  padding: 9px 0 7px;
font-family: serif;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
transition:ease-in-out 0.2s ;
}
.btn05 a:before{
  content:"";
  width:100%;
  height:100%;
  position:absolute;
  z-index:2;
  top: 0;
  left:0;
  transition:0.5s;
  background: -webkit-linear-gradient(0deg, #0068b7 0%, #208ee1 100%);
  background: -moz-linear-gradient(0deg, #0068b7 0%, #208ee1 100%);
  background: -o-linear-gradient(0deg, #0068b7 0%, #208ee1 100%);
  background: linear-gradient(90deg, #0068b7 0%, #208ee1 100%);
}
.btn05 a:after{
  background: -webkit-linear-gradient(0deg, #59b4f9 0%, #94d0fd 100%);
  background: -moz-linear-gradient(0deg, #59b4f9 0%, #94d0fd 100%);
  background: -o-linear-gradient(0deg, #59b4f9 0%, #94d0fd 100%);
  background: linear-gradient(90deg, #59b4f9 0%, #94d0fd 100%);
  content:"";
  width:100%;
  height:100%;
  position:absolute;
  z-index:1;
  top: 0;
  left:0;
}
.btn05 a:hover:before{
  opacity:0;
}

.btn05 p {
  z-index: 5;
  position: relative;
  text-align: center;
  margin: 0 !important;
  padding: 0 !important;
}
.btn05 p img{
  position: absolute;
  right: 15px;
  top: 9px;
}

.btn05 a:hover img {
  opacity: 1;
  transform: translateX(0.3em);
  transition: ease-in-out 0.4s;
}
/*btn06*/
.btn06 {
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  cursor: pointer;
  user-select: none;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
.btn06 a i {
  margin-right: 7px;
}
.btn06 a {
  border: 2px solid #000;
  border-radius: 0;
  background: #fff;
  box-shadow: 4px 4px 0 #000;
  padding: 10px;
}

.btn06 a:hover {
  box-shadow: -4px -4px 0 #000;
  transition: all 0.3s;
}
/*btn07*/
.btn07 a {
  position: relative;
  display: block;
  padding: 0.8em;
  text-align: center;
  border: 1px solid #9C27B0;
  text-decoration: none;
  outline: none;
  transition: all .4s;
  font-weight: 600;
}
.btn07 a i {
  margin-right: 7px;
}

.btn07 a::before,
.btn07 a::after {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  z-index: 2;
  content: '';
  transition: all .4s;
}
.btn07 a::before {
  border-top: 1px solid #FF5722;
  border-bottom: 1px solid #FF5722;
  transform: scale(0, 1);
}
.btn07 a::after {
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: scale(1, 0);
}
.btn07 a:hover {
  color: #FF5722;
}
.btn07 a:hover::after,
.btn07 a:hover::before {
  transform: scale(1);
}
.btn01_arrow{
  position:relative;
  left:0px;
  margin-right:14px;
  transition:0.2s ease-in, 0.22s ease-out;
}
.btn01_arrow img{
  opacity:1 !important;
}
.btn01_arrow,
.btn01_arrow img{
  width: 18px;
  height: 13px;
}
.btn01 a:hover .btn01_arrow{
  left:4px;
}
/*==================================================================

  $画像寄せ
  共通CSSなので使っていないものも消さずに残してください

==================================================================*/
/* 画像を右寄せ　※画像サイズはhtmlで調整 */
.img_fr{
  display:block;
  position:relative;
  float:right;
  margin-left:30px;
  margin-bottom:0 !important;
  text-align:center;
  max-width: 300px;
}
.img_fr img{
  margin-bottom:8px;
  width: 100%;
  height: auto;
}
/* 画像に対して説明文がある場合は、dlで囲い、dtに画像を、ddにテキストを使う */
.img_fr dd{
  padding-left:20px;
  line-height:1.3;
  font-size:15px;
  font-weight:bold;
  color: #1F2774;
  text-align:left;
}
/*==================================================================

  $アンカーリンンク
  共通CSSなので使っていないものも消さずに残してください

==================================================================*/

/* 共通CSS */
[class^="ank0"]{
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
[class^="ank0"] li{
  margin: 0 1% 10px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: relative;
}
[class^="ank0"] li a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding:10px 10px 20px;
  border:1px solid #00408f;
  font-weight:bold;
  font-size:13px;
  color:#00408f;
  text-align:center;
  vertical-align:middle;
  transition:0.1s ease-in-out;
}
[class^="ank0"] li a:hover{
  background-color:#00408f;
  color:#fff;
}
[class^="ank0"] li i{
  display:block;
  position:absolute;
  left:0;
  right:0;
  bottom:4px;
  margin:auto;
}

/* 2個並び */
.ank02 li{
  width: 48%;
}

/* 3個並び */
.ank03 li{
  width: 30%;
}

/* 4個並び */
.ank04 li{
  width: 23%;
}

.ank-link {
	display: flex;
	flex-wrap: wrap;
	width: 1080px;
	margin: 0 auto 60px;
}
.ank-link_item {
	margin-right: 16px;
	margin-bottom: 16px;
}
.ank-link_item a {
	position: relative;
	display: block;
	padding: 6px 16px;
	border-radius: 8px;
	background: linear-gradient(90deg, rgba(89, 173, 241, 0.16), rgba(207, 253, 157, 1));
	color: #fff;
	text-shadow: 0 0 17px rgba(191,162,170,0.6), 0 0 17px rgba(147,172,185,0.6);
	transition:ease-in-out 0.2s;
}
.ank-link_item a::after {
	position: relative;
	display: inline-block;
	margin-left: 12px;
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	content: "\f107";
	transition:ease-in-out 0.2s;
}
.ank-link_item:hover {
	opacity: 0.6;
}
.ank-link_item a:hover::after {
	transform: translateY(4px);
}

.ank-link02 {
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto 20px;
}
.ank-link02_item {
	margin-right: 16px;
	margin-bottom: 16px;
}
.ank-link02_item a {
	position: relative;
	display: block;
	padding-bottom: 6px;
	border-bottom: 2px solid #f1c6cb;
	transition:ease-in-out 0.2s;
}
.ank-link02_item a::after {
	position: relative;
	display: inline-block;
	margin-left: 12px;
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	content: "\f107";
	color: #e29da5;
	transition:ease-in-out 0.2s;
}
.ank-link02_item:hover {
	opacity: 0.6;
}
.ank-link02_item a:hover::after {
	transform: translateY(4px);
}

/*==================================================================

  .layout
  共通CSSなので使っていないものも消さずに残してください

==================================================================*/

/* --------------layout共通タイトル-------------- */
.layout_tit{
  font-size: 20px;
  font-family: "A1明朝";
}
.text .layout_tit {
	margin-bottom: 8px;
}
.layout_tit span,.layout_tit em{
  margin-right: 10px;
  color: #4fa7ca;
  font-family: m-plus-2p, sans-serif;
	font-weight: 700;
  font-size: 30px;
  font-weight: normal;
}
/* layout小タイトル */
.layout_tit_02{
  color: #1F2774;
  font-size: 18px;
  font-weight: bold;
}
/* 1つ並びのレイアウト。画像は無し、左にタイトル、右に文章 */
.layout01 {
  position: relative;
  margin: 0 0 15px;
}
.layout01:before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  border-top: 1px solid #ededed;
  content: "";
}
.layout01 dl {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: 5px 0;
}
.layout01 dl:after {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  border-top: 1px solid #f0f0f0;
  content: "";
}
.layout01 dt {
	display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 30%;
  background: #e2eff5;
  letter-spacing: 0.1em;
  font-family: "A1明朝";
  font-size: 120%;
  text-align: center;
  line-height: 1.5;
}
.layout01 dt em {
  display: block;
  width: 100%;
  line-height: 1;
  font-family: "Times New Roman", Times, serif;
  font-size: 150%;
  font-weight: normal;
  color: #C3AF97;
}
.layout01 dt span{
  font-size: 75%;
}

.layout01 dd {
  width: 70%;
  padding: 2% 3%;
}
.layout01 dd p:last-child {
	margin-bottom: 0;
}
/* 2つ並びのレイアウト。最初(dt)にタイトル、画像がその下(dd)、画像の下に文章 */
.layout02 {
  margin: 0 0 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.layout02::after {
  display: block;
  clear: both;
  content: "";
}
.layout02 .layout02_box {
  width: 49%;
  margin: 0 2% 0 0;
  margin-bottom: 25px;
  padding: 4%;
  background-color: #f7f7f7;
}
.layout02 .layout02_box:nth-child(even) {
  margin-right: 0;
}
.layout02 .layout02_box .layout02_text {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  color: #1F2774;
}
.layout02 .layout02_text img{
  width: 100%;
  height: auto;
}
/* 1つ並びのレイアウト。画像が左、右にタイトル、タイトル下に文章 */
.layout03 {
  margin: 0 0 15px;
}
.layout03 .layout03_box {
  display: flex;
  margin-bottom: 20px;
  background-image: linear-gradient(221deg, #f4d2d6 0%, #d2eaf3 100%);
  padding: 2%;
	border-radius: 16px;
}
.layout03 .layout03_title {
  width: 24%;
  padding: 2%;
  background-color: #fff;
	border-radius: 8px;
  text-align: center;
  display: flex;
  align-items: center;
  line-height: 1.5;
}
.layout03 .layout03_title img {
  width: 100%;
  height: auto;
}
.layout03 .layout03_text {
  width: 76%;
  padding: 1% 3%;
}

/*色違い*/
.layout03_bg02 .layout03_box{
	background: #e2eff5;
}

/* 1つ並びのレイアウト。画像が左、右にタイトル、タイトル下に文章、タイトルと文章のエリア(dd)は背景色が別の色 */
.layout04 {
  margin: 0 0 15px;
}
.layout04 .layout04_box {
  display: flex;
	align-items: center;
	justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 2%;
	border-bottom: 2px dashed #f1c6cb;
}
.layout04 .layout04_box:first-child {
	padding-top: 2%;
	border-top: 2px dashed #f1c6cb;
}
.layout04 .layout04_title {
  width: 27%;
  display: flex;
  align-items: center;
}
.layout04 .layout04_title img {
  width: 100%;
	height: auto;
}
.layout04 .layout04_text {
  width: 70%;
  background-color: #fff;
}
/* 1つ並びで3列に区切られたレイアウト。画像が左、画像の下にタイトル、右に文章 */
.layout05 {
  margin: 0 0 15px;
}
.layout05 .layout05_box {
  display: flex;
  margin-bottom: 20px;
  background-color: #f7f7f7;
  padding: 2%;
}
.layout05 .layout05_title {
  padding: 2%;
  width: 25%;
  background-color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}
.layout05 .layout05_title img {
  width: 100%;
  padding-bottom: 10px;
  height: auto;
  display: block;
}
.layout05 .layout05_text1 {
  padding: 1% 3%;
  vertical-align: top;
}
.layout05 .layout05_text1:nth-child(2) {
  width: 40%;
}
.layout05 .layout05_text1:nth-child(3) {
  width: 40%;
  border-left: 1px solid #e2e2e2;
}
.layout05 .layout05_title h4{
  font-size: 18px;
  font-weight: bold;
}
.layout05 .layout05_text1 h5 {
  font-weight: bold;
  margin: 0 0 5px;
}
.layout05 .layout05_text1 h4 em,
.layout05 .layout05_text1 h5 em {
  margin-right: 10px;
  color: #BDA087;
  font-family: "Times New Roman", Times, serif;
  font-size: 30px;
  font-weight: normal;
}
.layout05_text1 ul {
  margin-bottom: 15px;
}
.layout05 ul.list03 li{
  margin: 0;
}
/* 1つ並びで3列に区切られたレイアウト。左がタイトル、真ん中と右に文章 */
.layout06 {
  margin: 0 0 15px;
}
.layout06 .layout06_box {
  display: flex;
  padding-bottom: 5px;
  position: relative;
}
.layout06 .layout06_box:before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  border-top: 1px solid #ededed;
  content: "";
}
.layout06 .layout06_box:last-child:after {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  border-top: 1px solid #f0f0f0;
  content: "";
}
.layout06 .layout06_title {
  width: 30%;
  padding: 0 3%;
  background-color: #f7f7f7;
  vertical-align: middle;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  font-size: 120%;
}
.layout06 .layout06_title h4{
  letter-spacing: 0.1em;
  color: #1F2774;
  font-weight: bold;
  text-align: center;
}
.layout06 .layout06_box:last-of-type {
  padding: 0;
}
/* 数字 */
.layout06 .layout06_title em {
  display: block;
  width: 100%;
  line-height: 1;
  margin: 0 8px;
  font-family: "Times New Roman", Times, serif;
  font-size: 170%;
  font-weight: normal;
  color: #C3AF97;
}
.layout06 .layout06_text1 {
  padding: 2% 3%;
  vertical-align: top;
}
.layout06 .layout06_text1:nth-child(2) {
  width: 35%;
}
.layout06 .layout06_text1:nth-child(3) {
  width: 35%;
  border-left: 1px solid #e2e2e2;
}
.layout06 .layout06_text1 h5 {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 5px;
}
/* 3つ並びのレイアウト。 */
.layout07 {
  margin: 0 0 15px;
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
}
.layout07::after {
  display: block;
  clear: both;
  content: "";
}
.layout07 .layout07_box {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 2%;
  padding: 3%;
  border-radius: 10px;
  background-color: #f7f7f7;
}
.layout07 .layout07_box:nth-child(3n) {
  margin-right: 0;
}
.layout07 .layout07_box .layout07_title {
  margin-bottom: 7px;
  padding-bottom: 7px;
  border-bottom: 1px dashed #ddd;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
}
.layout07 .layout07_box .layout07_title em {
  margin-right: 8px;
  font-size: 24px;
  font-family: 'Quicksand', sans-serif;
}
.layout07 .layout07_box .layout07_text {
  line-height: 1.5;
}
/* 3つ並びのレイアウト。矢印付き */
.layout08 {
  margin: 0 0 15px;
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
}
.layout08 .layout08_box {
  position: relative;
  width: 100%;
  margin-bottom: 25px;
  padding: 3%;
  border-radius: 10px;
  background-color: #f7f7f7;
}
.layout08 .layout08_box:last-child {
  margin-right: 0;
}
.layout08 .layout08_box::before {
  position: absolute;
  right: 0px;
  left: 0;
  height: 7px;
  width: 7px;
  transform: rotate(135deg);
  background-color: transparent;
  border-top: 2px solid #1F2774;
  border-right: 2px solid #1F2774;
  content: "";
  bottom: -16px;
  margin: auto;
}
.layout08 .layout08_box:last-child::before {
  display: none;
}
.layout08 .layout08_box .layout08_title {
  margin-bottom: 7px;
  padding-bottom: 7px;
  border-bottom: 1px dashed #ddd;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
}
.layout08 .layout08_box .layout08_title em {
  margin-right: 8px;
  font-size: 24px;
  font-family: 'Quicksand', sans-serif;
}
.layout08 .layout08_box .layout08_text {
  line-height: 1.5;
}
/* layout10 */
.layout10{
  position: relative;
	border: 2px solid #f3f9fb;
}
.layout10 .flow_box{
  position: relative;
  display: flex;
  padding: 32px;
  background: #fff;
}
.layout10 .flow_box::before{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 60px;
  margin: auto;
  width: 4px;
  height: calc(100% - 4px);
  border-right: #83b6ca dotted 4px;
  box-sizing: border-box;
  content: "";
}
.layout10 .flow_box:first-child::before{
  top: 32px;
  bottom: auto;
  height: calc(100% - 34px);
}
.layout10 .flow_box:last-child::before{
  top: 2px;
  bottom: auto;
  height: 86px;
}
.layout10 .flow_box:nth-child(odd){
  background: #f3f9fb;
}
.layout10 .flow_box .number{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  margin-bottom: 0;
  margin-right: 4%;
  background: #83b6ca;
  border-radius: 8px;
  line-height: 1;
  color: #fff;
  font-size: 28px;
	font-family: m-plus-2p, 2807sans-serif;
	font-weight: 700;
}
.layout10 .flow_box .layout10_box{
  width: 90%;
}

.layout10 .flow_box .layout10_text .title{
  background: #1f2774;
  margin-top: 24px;
  padding: 12px 18px;
  border-radius: 6px;
  color: #fff;
  line-height: 1;
  font-size: 18px;
  letter-spacing: 0.12em;
}
.layout10 .flow_box .layout10_text .title span{
  position: relative;
}
.layout10 .flow_box .layout10_text .title span::after{
  display: inline-block;
  content: "|";
  margin: 0 12px;
}
.layout10 .flow_box .layout10_text .title2{
  padding-bottom: 2px;
  padding-top: 16px;
  margin-bottom: 10px;
  font-size: 18px;
  border-bottom: 1px dashed rgba(35,24,21,0.4);
}
.layout10 .flow_box .layout10_text .list03{
  margin-top:8px;
}
.layout10 .flow_box .layout10_text .list03 li{
  margin-bottom: 0;
}
.layout10 .flow_box .layout10_text .list03 li::before{
  background-color: #1f2774;
  border: 1px solid #1f2774;
}

.layout10 .flow_box .layout10_text .list_column{
  display: flex;
  flex-wrap: wrap;
}
.layout10 .flow_box .layout10_text .list_column li{
  margin-right: 5%;
}

/* layout11 */
.layout11{
  position: relative;
}
.layout11_box{
  padding: 8px;
  background: #f7f7f7;
}
[class^="layout11_image"] img{
  width: 100%;
  height: auto;
}
[class^="layout11_text"]{
  margin-top: 8px;
}
[class^="layout11_text"] dl{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
[class^="layout11_text"] dl dt{
  background: #1F2774;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 12px;
  border: 1px solid #1F2774;
  width: 20%;
  margin-bottom: 2px;
}
[class^="layout11_text"] dl dd{
  padding: 12px;
  background: #fff;
  border: 1px solid #1F2774;
  width: 80%;
  margin-bottom: 2px;
}
[class^="layout11_text"] .desc{
  background: #fff;
  border: 1px solid #1F2774;
  padding: 16px;
}
[class^="layout11_text"] .desc p{
  margin-bottom: 0;
}
/* layout11 ver.1 */
.layout11_text01 dl dt{
  margin-left: 0;
}
/* layout11 ver.2 */
.layout11_image02{
  display: flex;
  justify-content: space-between;
}
.layout11_image02 span{
  position: relative;
  display: block;
  width: 47%;
}
.layout11_image02 span:last-child::before{
  position: absolute;
  top: 0;
  bottom: 0;
  left: -32px;
  margin: auto;
  display: flex;
  align-items: center;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 24px;
  color: #1F2774;
  line-height: 1;
}
.layout11_text02 dl{
  width: 100%;
}
.layout11_text02 dl dt{
  margin-left: 2px;
  margin-bottom: 2px;
  width: 15%;
}
.layout11_text02 dl dt:nth-of-type(odd){
  margin-left: 0;
}
.layout11_text02 dl dd{
  width: calc(35% - 1px);
}
.layout11_text02 .desc{
  width: 100%;
}

.layout12 {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-column-gap: 24px;
}
.layout12_tit {
	padding: 5%;
	background-image: linear-gradient(90deg, rgba(89, 173, 241, 0.16), rgba(207, 253, 157, 1));
	font-size: 18px;
	font-family: "A1明朝";
	line-height: 1;
	text-align: center;
	font-feature-settings: "palt";
}
.layout12_img_dmy {
	width: 344px;
/*	height: 220px;*/
}
.layout12_img_dmy img{
    width: 100%;
}
/*注意書き*/
.caution {
  background:#f4f5fb;
  display: block;
  position: relative;
  padding: 25px;
  border-radius: 15px;
}
.caution span {
  width: 55px;
  height: 55px;
  background: #1F2774;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -15px;
  left: -5px;
  border-radius: 50%;
  font-size: 25px;
  font-weight: 600;
  color: #fff;
  z-index: 2;
}
.caution span::before {
  position: absolute;
  width: 15px;
  height: 20px;
  bottom: -3px;
  right: -3px;
  margin: auto;
  -webkit-clip-path: polygon(100% 85%, 40% 0, 0 53%);
  clip-path: polygon(100% 85%, 40% 0, 0 53%);
  background-color: #1F2774;
  z-index: 1;
  content: "";
}
.caution p:nth-of-type(1) {
  font-size: 18px;
  margin: 0 0 15px;
  padding: 0 0 0 40px;
  font-weight: 600;
  color: #1F2774;
}
/*==================================================================

  $table
  共通CSSなので使っていないものも消さずに残してください

==================================================================*/
/* 診療時間（クリニック紹介、アクセス共通） */

.schedule table{
  width:100%;
}
.schedule p{
  margin-left:22px;
  margin-bottom:2px;
}
.schedule p strong{
  color:#1F2774;
}
.schedule p:last-child{
  margin-bottom:0;
}
.schedule_note {
	display: flex;
	justify-content: center;
	font-size: 17px;
	color: #444;
}
.schedule_note li:first-child {
	position: relative;
}
.schedule_note li:first-child::after {
	position: relative;
	display: inline-block;
	margin: 0 18px;
	content: "｜";
	color: #444;
}
/*フッターの診療時間*/
.tb01{
  margin-bottom:16px;
  border-spacing: 0;
  border-collapse: collapse;
  white-space:nowrap;
}
.tb01 tr {
	border-bottom:1px solid #dfdfdf;
}
.tb01 tr:first-child {
	 border-top:1px solid #dfdfdf;
}
.tb01 td,.tb01 th{
	padding: 21px 0 22px;
  vertical-align: middle;
	line-height:1;
}
.tb01 th{
  width: 30%;
  white-space:nowrap;
  text-align:center;
}
.tb01_color01 {
	color: #e7aab1;
}
.tb01_color02 {
	color: #84c2df;
}
.tb01_color03 {
	color: #e27c50;
}
/**/
.tb02 {
  width: 100%;
  border-spacing: 0;
  margin-bottom: 12px;
}
.tb02 th {
  font-weight: bold;
  width: 20%;
  border-bottom: 1px dashed #c6e0e9;
  padding: 8px 0;
	vertical-align: text-top;
}
.tb02 td {
  text-align: center;
  border-bottom: 1px dashed #c6e0e9;
  padding: 8px 0;
}
/*本文中のテーブル*/
.tb03 {
  width: 100%;
  border-spacing: 1px;
  border-collapse: collapse;
  border: solid 1px #00408f;
}
.tb03 td,
.tb03 th {
  padding: 8px 20px;
  border: 1px solid #00408f;
}
.tb03 th {
  font-weight: bold;
  text-align: left;
  background-color: #FAFAFA;
}
.tb03 th span {
  font-size: 13px;
}
.tb03 td {
  background-color: #ffffff;
  text-align: center;
}


/*==================================================================

  $box
  共通CSSなので使っていないものも消さずに残してください

==================================================================*/
.box1{
  width: 1280px;
}
.box2{
	position: relative;
	width: 1080px;
	margin: auto;
	padding-bottom: 120px;
}
.text {
  position:relative;
  margin-bottom:60px;
}
.text:last-child {
	margin-bottom: 0;
}
.text p {
  margin-bottom:1em;
}
.tit_text{
  padding: 30px 0;
  margin-bottom: 20px;
}

.text-box {
	padding: 3% 0;
	border-top: 2px dashed #e7aab1;
	border-bottom: 2px dashed #e7aab1;
}
.text-box p:last-child {
	margin-bottom: 0;
}
.text-box_tit {
	font-size: 20px;
	font-family: dnp-shuei-mgothic-std, sans-serif;
	line-height: 1;
}
.bg_box1 {
	position: relative;
	margin-bottom: 80px;
}
.bg_box1 .box2 {
	padding-bottom: 60px;
}
.bg_box1::before {
	position: absolute;
	right: 0;
	top: 0;
	width: calc((50% - 640px) + 232px);
	height: 347px;
	border-bottom-left-radius: 20px;
	border-top-left-radius: 20px;
	background: #e2eff5;
	content: "";
}
.bg_box1::after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: calc((50% - 640px) + 298px);
	height: 360px;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	background: rgba(245, 223, 227, 0.47);
	content: "";
	z-index: -1;
}

.bg_box2 {
	position: relative;
}
.bg_box2::after {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 40%;
	background: rgba(247,242,232,0.6);
	content: "";
}
.bg_box2 .box2 {
	position: relative;
	z-index: 1;
}

/*==================================================================

  .top-topics

==================================================================*/
.top-topics {
	position: relative;
	margin-top: -100px;
	padding: 54px 0 54px;
}
.top-topics::before {
	position: absolute;
	top: 0;
	right: 0;
	width: calc(50% + 640px);
	height: 100%;
	border-top-left-radius: 80px;
	background: #ffffff;
	content: "";
	pointer-events: none;
}
.top-topics::after {
	position: absolute;
	bottom: 53px;
	width: 100%;
	height: 75px;
	background: url("../images/deco01.png") no-repeat center;
	content: "";
	pointer-events: none;
}
.top-topics .box1 {
	position: relative;
	display: flex;
	margin: auto;
	z-index: 1;
}
.top-topics_left {
	width: 29%;
	flex: none;
	text-align: center;
}
.top-topics_tit-wrap {
	margin-bottom: 28px;
	padding-top: 5px;
}
.top-topics_en-tit {
	margin-bottom: 20px;
	color: #a9a9a9;
	font-size: 60px;
	font-family: allura, sans-serif;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1;
}
.top-topics_tit {
	color: #323233;
	font-family: "A1明朝";
	letter-spacing: 0.01em;
	line-height: 1;
}
.top-topics_btn {
	margin: auto;
}
.top-topics_right {
	width: 910px;
	background: rgba(255,255,255,0.8);
}
.top_news_frame .news_list li {
	display: flex;
	padding: 15px 0;
	border-bottom: 1px solid #eee;
}
.top_news_frame .news_list time,.news_text_list dd p span {
	position: relative;
	margin-right: 24px;
	color: #8b8b8b;
	letter-spacing: 0.05em;
}
.top_news_frame .news_list time::before,.news_text_list dd p span::before {
	display: inline-block;
	margin-right: 12px;
	font-family: "Font Awesome 5 Free";
	font-weight: 500;
	content: "\f017";
}
.top_news_frame .news_list .cate,.news_text_list em {
	margin-right: 22px;
	padding: 7px 15px;
	border-radius: 5px;
	color: #ffffff;
	font-size: 15px;
	line-height: 1;
}
.top_news_frame .news_list li a {
	display: block;
	width: 65.8%;
	overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
	font-size: 16px;
}
.top_news_frame .news_list li a:hover {
	text-decoration: underline;
}
.top_news_frame .news_list li:first-child {
	border-top: 1px solid #eee;
}


/*==================================================================

  .news （下層）

==================================================================*/
.news_text p {
  margin-bottom:10px;
}
.news_text_list dd p:first-child {
	margin-bottom:26px;
}
/* タイトル */
.news_text p strong{
  margin-left:20px;
  font-size:17.5px;
  font-family:  "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic",sans-serif;
  color:#1F2774;
}

/* css.phpに居た記述 */

.news_text_list dt{
  margin-bottom:10px;
  font-weight:bold;
  font-size: 17px;
}
.news_text_list dt em,.news_text_list dt span{
  font-weight:normal;
  font-size: 14px;
}
.news_text_list dd{
  margin-bottom:30px;
  padding-bottom:16px;
  border-bottom:1px solid #ccc;
}




/*==================================================================

  $access （下層）

==================================================================*/
.access_guide{
  margin-bottom:20px;
  font-weight:bold;
}
.news_text_list dd p span {
	padding-top: 4px;
}
/* 2カラム */
.access_wrap{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.access_wrap p{
  width: 100%;
	margin-bottom: 16px;
}
.access_wrap p i{
  margin-right: 12px;
	color: #4fa7ca;
}
/* 子要素はクラス名の頭に「access」をつけると下記CSSが適用 */
.access_wrap [class^="access"]{
  margin-bottom: 0;
  width: 48%;
}
.access_wrap [class^="access"] img{
  width: 100%;
  height: auto;
}
.access_iframe iframe {
	width: 100%;
	height: 400px;
}
.illust_map_dmy {
	width: 100%;
	height: 84%;
}
.access_map{
  margin-bottom:40px;
}
.access_map dt{
  margin-bottom:10px;
}
.access_map dt i{
  margin-right:7px;
}
.access_map dd{
  text-align: center;
}
.access_map .btn01{
  margin: auto;
}
.access_info{
  border: 4px solid rgb(237, 237, 237);
  padding: 25px 30px 5px;
}
.access_info dt i{
  margin-right:7px;
}
.access_train,.access_bus,.access_car,.access_bike{
  margin-bottom:25px;
}
.access_train dt,.access_bus dt,.access_car dt,.access_bike dt{
  padding-left: 0;
  margin-bottom:5px;
  font-size:17px;
  font-weight:bold;
}
.access_train dd,.access_bus dd,.access_car dd,.access_bike dd{
  font-size:14px;
}

.access_wrap .access_clinic-img_box {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-column-gap: 40px;
	width: 100%;
	margin-top: 40px;
}
.access_wrap .access_clinic-img {
	width: 100%;
}
/* ルート */
.access_list {
  display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-column-gap: 24px;
	grid-row-gap: 24px;
  counter-reset: section;
}
.access_list dl {
  width: 100%;
}
.access_list dt {
  width: 100%;
  height: auto;
	margin-bottom: 16px;
}
.access_list dt img{

}
.access_list dl dd {
	display: flex;
	align-items: center;
  width: 100%;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.access_list dl dd::before {
	display: block;
	flex: none;
  counter-increment: section;
  content: counter(section);
  font-size: 18px;
  margin-right: 16px;
	margin-bottom: auto;
  padding: 7px 10px;
  line-height: 1;
  background: #b7d2dd;
	color: #fff;
	font-family: m-plus-2p, sans-serif;
	font-weight: 700;
  border-radius: 3px;
}
.access_list dt.access_list_dmy {
	width: 345px;
}
/*==================================================================

  .top_concept

==================================================================*/
.top-concept_top {
	position: relative;
	padding: 40px 0 48px;
	background: url("../images/top-concept_dmy.jpg") no-repeat center / cover;
}
.top-concept_top::before {
	position: absolute;
	right: 0;
	top: -121px;
	width: 212px;
	height: 281px;
	background: url("../images/concept_deco01.png") no-repeat center;
	content: "";
}
.top-concept_top_inner {
	max-width: 1370px;
	margin: auto;
	padding-bottom: 96px;
	border-bottom-left-radius: 100px;
	border-top-right-radius: 100px;
	background: rgba(255, 255, 255, 0.9);
}
.top-concept_top-box {
	display: grid;
	grid-template-columns: 9.6% auto 23.4%;
	width: 1280px;
	margin: auto;
}
.top-concept_tit .tit-wrap_en-tit{
	margin-top: -20px;
}
.top-concept_tit .tit01 {
	top: -40px;
	left: 37px;
}
.top-concept_text {
	width: fit-content;
	width: -moz-fit-content;
	margin-left: auto;
	padding-top: 87px;
	padding-bottom: 12px;
	text-align: center;
	font-family: "A1明朝";
	color: #111111;
	letter-spacing: 0.025em;
	line-height: 2.875;
}
.top-concept_text_tit {
	margin-bottom: 14px;
	line-height: 1;
	font-size: 21px;
}
.top-concept_illust {
	display: flex;
	justify-content: center;
	margin-top: auto;
    position: relative
}
.top-concept_bottom {
	position: relative;
}
.top-concept_bottom::before {
	position: absolute;
	left: 0;
	top: -100px;
	width: 254px;
	height: 310px;
	background: url("../images/concept_deco02.png") no-repeat center;
	content: "";
}
.top-concept_bottom::after {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 53.4%;
	background: #f7f2e8;
	content: "";
}
.top-concept_list {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3,380px);
	grid-column-gap: 72px;
	justify-content: center;
	margin-top: -35px;
	padding-bottom: 46px;
	z-index: 1;
}
.top-concept_list_item {
	position: relative;
	counter-increment: section;
}
.top-concept_list_item::before {
	display: block;
	margin-bottom: 22px;
	color: #fce8e5;
	font-size: 83px;
	font-weight: 700;
	font-family: Cambria;
	line-height: 1;
	text-align: center;
	content: counter(section,decimal-leading-zero);
}
.top-concept_list_tit {
	margin-bottom: 20px;
	text-align: center;
	color: #111111;
	font-size: 21px;
	font-family: "A1明朝";
	letter-spacing: 0.025em;
	line-height: 1.9;
}
.top-concept_list_icon {
	position: relative;
	width: 100px;
	height: 100px;
	margin: -52px auto 18px;
	border: 5px solid #fbe0dd;
	border-radius: 50%;
	background-color: #ffffff;
}
.top-concept_list_icon::before {
	position: absolute;
	right: -34px;
	top: -34px;
	width: 78px;
	height: 54px;
	background: url("../images/concept01_sb.png") no-repeat center;
	content: "";
}
.top-concept_point_item {
	position: relative;
	display: flex;
	margin-bottom: 10px;
	padding: 10px 12px 10px 10px;
	border-radius: 5px;
	background-color: #ffffff;
	border: 1px solid #e9e9e9;
	color: #111111;
	font-size: 15px;
	line-height: 1;
	letter-spacing: 0.025em;
}
.top-concept_point_item:last-child {
	margin-bottom: 0;
}
.top-concept_point_item::before {
	position: relative;
	flex: none;
	display: block;
	width: 22px;
	height: 18px;
	margin-right: 12px;
	background: url("../images/cheack01.svg") no-repeat center;
	content: "";
}

/*top-concept_list02*/
.top-concept_list02::before {
	color: #d9ecec;
}
.top-concept_list02 .top-concept_list_icon {
	border: 5px solid #d9ecec;
}
.top-concept_list02 .top-concept_list_icon::before {
	background: url("../images/concept02_sb.png") no-repeat center;
}
.top-concept_list02 .top-concept_point_item,
.top-concept_list03 .top-concept_point_item{
	padding-top: 9px;
	padding-bottom: 9px;
	line-height: 2;
}
.top-concept_list02 .top-concept_point_item::before {
	margin-top: 4px;
	background: url("../images/cheack02.svg") no-repeat center;
}

/*top-concept_list03*/
.top-concept_list03::before {
	color: #f8e6cd;
}
.top-concept_list03 .top-concept_list_icon {
	border: 5px solid #f8e6cd;
}
.top-concept_list03 .top-concept_list_icon::before {
	background: url("../images/concept03_sb.png") no-repeat center;
}
.top-concept_list03 .top-concept_point_item::before {
	margin-top: 4px;
	background: url("../images/cheack03.svg") no-repeat center;
}
/*==================================================================

  .top-medical

==================================================================*/
.top-medical {
	position: relative;
	padding-bottom: 80px;
	background: url("../images/top_mecial_bg_dmy.jpg") no-repeat center / cover;
}
.top-medical::before {
	position: absolute;
	top: -242px;
	left: 40px;
	width: 236px;
	height: 283px;
	background: url("../images/deco02.png") no-repeat center / cover;
	content: "";
}
.top-medical::after {
	position: absolute;
	top: -217px;
	right: 31px;
	width: 236px;
	height: 250px;
	background: url("../images/deco03.png") no-repeat center / cover;
	content: "";
}
.top-medical .box1 {
	display: flex;
	justify-content: space-between;
	margin: auto;
}
.top-medical_tit {
	margin-left: 7px;
}
.top-medical_tit .tit-wrap_en-tit {
	margin-top: 20px;
}
.top-medical_tit .tit01 {
	left: 23px;
}
.top-medical_list {
	display: grid;
	grid-template-columns: repeat(4,250px);
	grid-template-rows: repeat(1,280px);
	grid-column-gap: 30px; 
	grid-row-gap: 20px;
	padding-top: 120px;
}
.top-medical_item a{
	display: block;
	height: 100%;
	padding: 23px 18px 0;
	border-radius: 5px;
	background-image: linear-gradient(90deg, rgba(89, 173, 241, 0.44), rgba(207, 253, 157, 0.66));
	transition: all 0.3s ease-out;
}
.top-medical_item a:hover {
	transform: scale(1.05,1.05);
	transition: all 0.3s ease-out;
}
.top-medical_item_icon {
	position: relative;
	width: 80px;
	height: 80px;
	margin: 0 auto 18px;
	border-radius: 50%;
	background-color: rgba(199, 152, 172, 0.4);
}
.top-medical_item_icon::before {
	position: absolute;
	top: 5px;
	right: 0;
	left: 0;
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	margin: auto;
	border: 1px solid #fff;
	border-radius: 50%;
	content: "";
}
.top-medical_item_tit {
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid #fff;
	font-size: 20px;
	font-family: "A1明朝";
	line-height: 1;
	text-align: center;
	font-feature-settings : "palt";
}
.top-medical_item_tit_small {
	font-size: 16px;
	letter-spacing: 0;
}
.top-medical_symptoms_item {
	position: relative;
	display: flex;
	margin-bottom: 12px;
	color: #333333;
	font-size: 14px;
	line-height: 1.3;
	font-feature-settings : "palt";
}
.top-medical_symptoms_item::before {
	display: block;
	flex-shrink: 0;
	margin-right: 4px;
	content: "・";
}

.top-medical_item05 .top-medical_item_tit{
	letter-spacing: 0;
}
/*==================================================================

  .top_doctor

==================================================================*/
.top-greeting {
	position: relative;
	padding-bottom: 38px;
}
.top-greeting_border {
	position: absolute;
	top: 0;
	width: 100%;
	height: 5px;
	background-image: linear-gradient(90deg, rgba(89, 173, 241, 0.16), rgba(207, 253, 157, 1));
}
.top-greeting::before {
	position: absolute;
	right: 0;
	top: 0;
	width: calc((50% - 640px) + 232px);
	height: 347px;
	border-bottom-left-radius: 20px;
	background: #e2eff5;
	content: "";
}
.top-greeting::after {
	position: absolute;
	left: 0;
	bottom: -82px;
	width: calc((50% - 640px) + 298px);
	height: 360px;
	border-top-right-radius: 20px;
	background: rgba(245, 223, 227, 0.47);
	content: "";
	z-index: -1;
}
.top-greeting .box1 {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: auto;
	z-index: 1;
}
.top-greeting_tit .tit-wrap_en-tit{
	padding-left: 8px;
	padding-right: 8px;
}
.top-greeting_tit .tit01 {
	left: 24px;
}
.top-greeting_text {
	width: 48.7%;
	margin-right: 1%;
	padding-top: 110px;
	letter-spacing: 0;
	line-height: 2.5;
	text-align: left;
}
.top-greeting_text p:not(:last-child) {
	margin-bottom:20px;
}
.top-greeting_doctor {
	padding-top: 120px;
}
.top-greeting_doctor-img {
	margin-bottom: 35px;
}
.top-greeting_doctor-img img {
	border-radius: 20px;
}
.top-greeting_about {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}
.top-greeting_clinic-name {
	width: 289px;
	height: 45px;
}
.top-greeting_doctor-name {
	position: relative;
	color: #685f53;
	font-size: 18px;
	font-family: dnp-shuei-mgothic-std, sans-serif;
	font-weight: 600;
	letter-spacing: 0;
}
.top-greeting_doctor-name_ruby {
	position: absolute;
	right: 2px;
	top: -14px;
	font-size: 11px;
}
.top-greeting_btn {
	margin-left: auto;
}
.top-greeting_banner {
	width: 100%;
	margin-top: 24px;
	text-align: center;
}
.top-greeting_banne a {
	transition:ease-in-out 0.2s;
}
.top-greeting_banner a:hover {
	opacity: 0.6;
}
/*==================================================================

  $doctor （下層）

==================================================================*/
.doctor {
	padding-bottom: 120px;
}
.doctor .box1 {
	margin-bottom: 60px;
}
.doctor .top-greeting_border {
	display: none;
}
.doctor .top-greeting_text p:not(:last-child){
	margin-bottom: 12px;
}
.doctor::before {
	border-top-left-radius: 20px;
}
.doctor .doctor_carr {
	width: 1080px;
	margin: auto;
}
.doctor_carr{
  display: grid;
	grid-template-columns: calc(64% - 40px) 36%;
	grid-column-gap: 40px;
}
.doctor_carr_tit {
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid #c6e0e9;
	font-size: 22px;
	font-family: "A1明朝";
	line-height: 1;
	font-feature-settings: "palt";
}
.doctor_carr_sec1{
  padding: 34px;
  background: #f3f9fb;
	border-radius: 10px;
}
.doctor_carr .tb02 td{
  text-align: left;
}
.doctor_carr_sec1 table{
  width:100%;
}
.list01 li {
	margin-bottom: 6px;
}
.list01 li::before {
	content: "・";
}
.pc_ver{
    margin-top: 100px;
}
/*==================================================================

  $clinic

==================================================================*/
[class^="clinic_slide_wrap"]:not(.clinic_slide_wrap_flex){
  max-width: 92%;
  margin: auto;
}

/*院内スライド 共通*/
.clinic_slide_wrap_flex .slide-item{
  position: relative;
}
.clinic_slide_wrap_flex .slide-item img{
  width: 100%;
  height: auto;
}
.clinic_slide_wrap_flex .slide_text{
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #e7aab1;
  padding: 10px 16px;
	border-radius: 6px;
  font-weight: bold;
	color: #fff;
	line-height: 1;
}
.clinic_slide_wrap_flex .slick-dots{
  display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-column-gap: 16px;
	grid-row-gap: 16px;
}
.clinic_slide_wrap_flex .slick-dots li{
  position: relative;
  transition: .3s;
  cursor: pointer;
}
.clinic_slide_wrap_flex .slick-dots li:hover{
  opacity: 0.8;
}
.clinic_slide_wrap_flex .slick-dots li::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  transition: .3s opacity linear;
}
.clinic_slide_wrap_flex .slick-dots li.slick-active::before{
  opacity: 0;
}
.clinic_slide_wrap_flex .slick-dots li img{
  width: 100%;
  height: auto;
}
/*院内スライド サムネイル下*/

.clinic_slide_wrap{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.clinic_slide_wrap :focus{
  outline: none;
}
.clinic_slide_wrap #slider{
  margin:0 auto 15px;
  width: 100%;
}
.clinic_slide_wrap .clinic_slide_wrap_flex .slick-dots{
  justify-content: space-between;
  width: 100%;
}
.clinic_slide_wrap .clinic_slide_wrap_flex .slick-dots li{
  margin-bottom: 10px;
  width: 15%;
}
.clinic_slide_wrap .caption{
  width: 100%;
  position: absolute;
  left: 0;
}
.clinic_slide_wrap .thumbnail-text-item{
  margin: 0 0 15px;
}
/*院内スライド サムネイル横*/
.clinic_slide_wrap2 .clinic_slide_wrap_flex .slick-slider{
  display: grid;
	grid-template-columns: calc(80% - 40px) 20%;
	grid-column-gap: 40px;
}

.clinic_slide_wrap2 .clinic_slide_wrap_flex .slick-list{
  width: 100%;
}
.clinic_slide_wrap2 .clinic_slide_wrap_flex .slick-dots{
  width: 100%;
	margin-bottom: auto;
}
.clinic_slide_wrap2 .clinic_slide_wrap_flex .slick-dots li{
  width: 100%;
	margin-bottom: auto;
}

/* 医院概要 */
.clinic_sec1{
  max-width: 80%;
  margin: auto;
  position:relative;
}
.clinic_sec1 ul{
  margin-bottom:15px;
}
.clinic_sec1 > ul li{
  padding: 8px 0;
  border-bottom:1px solid #E5E6EF;
}
.clinic_sec1 > ul li:first-child{
  padding:0 0 8px 0 ;
}
.clinic_sec1 > ul li:last-child{
  border:none;
}
.clinic_sec1 dl:after {
  display: block;
  clear: both;
  content: "";
}
.clinic_sec1 dt{
  float:left;
  width:25%;
  padding-left:2px;
  font-weight:bold;
  color: #1F2774;
}
.clinic_sec1 dd{
  float:left;
  width:75%;
}
.clinic_sec1 dd a,
.clinic_sec1 dd a:hover{
  color: inherit;
}
.clinic_sec1 .schedule{
  margin: 0 0 0 auto;
  width: 75%;
}
.clinic_sec1 .schedule .tb01{
  border: 1px solid #e4e4e4;
  width:100%;
}
.clinic_sec1 .schedule .tb01 th,
.clinic_sec1 .schedule .tb01 td{
  border-bottom: 1px solid #e4e4e4;
}
.clinic_sec1 .schedule .tb01 tr:first-child th,
.clinic_sec1 .schedule .tb01 tr:first-child td{
  background-color:#f2f7fa;
  color:#1F2774;
  font-weight:bold;
}

/*==================================================================

  $facilities

==================================================================*/
/* 共通CSS */
[class^="facilities_equip"]{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
[class^="facilities_equip"] dl{
  background-color:#f7f7f7;
  text-align:justify;
  margin-bottom:35px;
}
[class^="facilities_equip"] dt img{
  width:100%;
  height: auto;
}
[class^="facilities_equip"] dd{
  padding: 10px 15px 18px;
  line-height: 1.35;
}
[class^="facilities_equip"] dd .title{
  text-align:center;
  font-size:17px;
  font-weight:bold;
}
[class^="facilities_equip"] dd p{
  margin-top:7px;
}


/* 機器紹介1 */
.facilities_equip dl{
  width:42.3%;
  min-height:280px;
  margin-left:3.4%;
  padding:3%;
  border-top:4px solid #9397BE;
}
.facilities_equip dl:nth-child(odd){
  margin-left:0;
}

/* 機器紹介名前 */
.facilities_equip dt{
  margin-bottom:14px;
  padding-bottom:10px;
  line-height: 1.7;
  font-size:17px;
  font-weight:bold;
  text-align:left;
}
.facilities_equip dt span{
  display:block;
  font-size:15px;
}
.facilities_equip dd{
  padding: 0;
  line-height: inherit;
}
.facilities_equip dd p{
  margin-top: 0;
}
.facilities_equip_img{
  margin:0 0 20px;
}
.facilities_equip_img img{
  width:100%;
  height: auto;
}
/* 機器紹介2 */
.facilities_equip2 dl{
  width:31%;
  margin-right:3.5%;
}
.facilities_equip2 dl:nth-child(3n){
  margin-right:0;
}

/* 機器紹介3 */
.facilities_equip3 dl{
  width:47.5%;
  margin-right:5%;
}
.facilities_equip3 dl:nth-child(even){
  margin-right:0;
}

/*==================================================================

  $qa

==================================================================*/
.qa1 dl{
  margin-bottom:25px;
  padding-bottom:25px;
  border-bottom:1px dotted #c1c1c1;
}
.qa1 dl dt{
  position:relative;
  margin-bottom: 15px;
  padding-left:40px;
  font-weight:bold;
}
.qa1 dl dt:before{
  position: absolute;
  top:-5px;
  left:0;
  margin-right:7px;
  line-height: 1;
  font-family:"Times New Roman", Times, serif;
  font-weight:normal;
  font-size:28px;
  color:#1F2774;
  content:"Q.";
}
.qa1 dl dd{
  position:relative;
  padding-left:40px;
}
.qa1 dl dd:before{
  position: absolute;
  top:-5px;
  left:0;
  margin-right:7px;
  line-height: 1;
  font-family:"Times New Roman", Times, serif;
  font-weight:normal;
  font-size:28px;
  color:#C0AB9A;
  content:"A.";
}
.js-toggle.qa1 dt::after{
  color: #1F2774;
  position: absolute;
  display: flex;
  align-items: center;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 20px;
}
.js-toggle.qa1 dt.is-open::after{
  content: "\f068";
}
.js-toggle.qa1 dd{
  display: none;
}

/*==================================================================

  $contact

==================================================================*/
.contact th,
.contact td{
  text-align: left;
  padding: 20px;
}
.contact th .required{
  display: inline-block;
  color: #fff;
  background: #f33;
  line-height: 1;
  padding: 3px;
  margin-left: 5px;
}
.contact input{
  max-width: 400px;
  width: 100%;
  font-size: 100%;
  padding: 8px 5px;
}
.contact input[type="date"]{
  width: auto;
  padding: 6px 5px 5px;
}
.contact select{
  padding: 9px 5px!important;
}
.contact textarea{
  max-width: 400px;
  width: 100%;
}
.submit_btn{
  margin-top: 40px;
  text-align: center;
}
.submit_btn input{
  cursor: pointer;
  border: none;
  padding: 15px 20px;
  transition: 0.2s ease-in-out;
  max-width: 150px;
  width: 100%;
  font-size: 100%;
  margin: 0 10px 10px;
}
.submit_btn input:hover{
  opacity: 0.8;
}
.submit_btn input[type="reset"]{
  color: #fff;
  background: #888;
}
.submit_btn input[type="submit"]{
  color: #fff;
  background: #a5cd95;
}

/*============================================================================

  schedule（MPCLOUD）

============================================================================*/
#mpcloud_schedule {
  width: 220px;
  position: fixed;
  bottom: 15px;
  right: 22px;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 100;
  font-size: 14px;
  letter-spacing: 0.08em;
}
#mpcloud_schedule section{
  border-radius: 15px;
  box-shadow: 0 8px 22px 8px rgba(0, 0, 0, 0.1);
}
.shcedule_title {
  font-size: 16px;
  font-weight: 600;
  border-bottom: 2px solid #aaa;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 10px 0;
  text-align: center;
}
.shcedule_title i {
  position: relative;
  top: -2px;
  right: -25px;
  font-style: normal;
  font-size: 12px;
  cursor: pointer;
}
.schedule_time {
  margin: 8px 0 0 0;
}
.schedule_time dt {
  font-weight: bold;
}
.shcedule_box dt {
  background: #eee;
  text-align: center;
}
.shcedule_box dd {
  height: auto;
  vertical-align: top;
}
.shcedule_box dd i {
  display: inline-block;
  width: 17px;
  height: 17px;
  /*background: url("../images/schedule.svg") no-repeat center left;*/
  background-size: 17px 17px;
  padding: 2px 0 2px 22px;
  margin-left: 15px;
  vertical-align: inherit;
}
.shcedule_today {
  padding: 10px 16px;
}
.schedule_comment {
  border-top: 1px solid #d6d6d6;
  padding: 8px 12px;
  font-size: 14px;
}
/*==================================================================

  .breadcrumb（ぱんくず）

==================================================================*/
.breadcrumbs {
  position: relative;
  width: 1080px;
  margin: 0 auto 40px;
	padding-top: 40px;
  font-size: 14px;
}
.breadcrumbs:last-child {
  margin: 0 auto;
}
.breadcrumbs i {
  /*margin-left: 35px;*/
  margin-right: 5px;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs li {
  float: left;
  margin-right: 10px;
}
.breadcrumbs li:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  content: "\f054";
  padding-left: 10px;
}
.breadcrumbs li:last-child:after {
  content: "";
}
.breadcrumbs li:last-child a{
  color:#d04634 !important;
}

/*==================================================================

  .404_p

==================================================================*/
.none_page_p{
  text-align: center;
  font-size: 26px;
  padding-top: 100px;
}
.none_page_btn {
	margin: auto;
}
/*==================================================================

  .loop_slide

==================================================================*/
.loop_slide_wrap{
}
.loop_slide_wrap .slick-slider div{
 transition: none;
}
.loop_slide_wrap .slick-list{
  overflow: hidden!important;
}
.loop_slide_wrap .slick-initialized .slick-slide{
  height: auto;
	margin-right: 20px;
}
.loop_slide_wrap .slick-initialized .slick-slide img{
  width: 400px;
  height: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
	border-radius: 20px;
}
.loop_slide_wrap .slick-initialized .slick-slide:focus{
  outline: none;
}

/*==================================================================

  CSSアニメーション

==================================================================*/
/* フェードイン */
.fadeIn{
  opacity: 0;
  visibility: visible;
}
.is-visible.fadeIn{
  animation: fadeIn 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
}
@keyframes fadeIn {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

/* フェードイン（下→上） */
.fadeInUp{
  opacity: 0;
  visibility: visible;
}
.is-visible.fadeInUp{
  animation: fadeInUp 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
}
@keyframes fadeInUp {
  0%{
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  80%{
    opacity: 1;
  }
  100%{
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* フェードイン（右→左） */
.fadeInRight{
  opacity: 0;
  visibility: visible;
}
.is-visible.fadeInRight{
  animation: fadeInRight 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
}
@keyframes fadeInRight {
  0%{
    opacity: 0;
    transform: translate3d(100%, 0, 0);;
  }
  80%{
    opacity: 1;
  }
  100%{
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* フェードイン（左→右） */
.fadeInLeft{
  opacity: 0;
  visibility: visible;
}
.is-visible.fadeInLeft{
  animation: fadeInLeft 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
}
@keyframes fadeInLeft {
  0%{
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  80%{
    opacity: 1;
  }
  100%{
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* フリップ（右回転） */
.flipRight{
  opacity: 0;
  visibility: visible;
}
.is-visible.flipRight{
  animation: flipRight 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
  transform: rotateY(-180deg);
}
@keyframes flipRight {
  0%{
    opacity: 0;
    transform: rotateY(-180deg);
  }
  100%{
    opacity: 1;
    transform: rotateY(0deg);
  }
}

/* フリップ（左回転） */
.flipLeft{
  opacity: 0;
  visibility: visible;
  transform: rotateY(180deg);
}
.is-visible.flipLeft{
  animation: flipLeft 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) forwards;
}
@keyframes flipLeft {
  0%{
    opacity: 0;
    transform: rotateY(180deg);
  }
  100%{
    opacity: 1;
    transform: rotateY(0deg);
  }
}

/* 恒常的に動くアニメーション */

/* ゆっくり回転（右回転） */
.rotateRight{
  animation: rotateRight 20s linear infinite;
}
@keyframes rotateRight {
  0%{
    transform: rotate(0deg);
  }
  100%{
    opacity: 1;
    transform: rotate(360deg);
  }
}

/* ゆっくり回転（左回転） */
.rotateLeft{
  animation: rotateLeft 20s linear infinite;
}
@keyframes rotateLeft {
  0%{
    transform: rotate(0deg);
  }
  100%{
    opacity: 1;
    transform: rotate(-360deg);
  }
}

/* 浮遊（基準点から上） */
.floatingUp{
  animation: floatingUp 10s ease-in-out infinite;
}
@keyframes floatingUp {
  0%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(-30px);
  }
  100%{
    transform: translateY(0);
  }
}

/* 浮遊（基準点から下） */
.floatingDown{
  animation: floatingDown 10s ease-in-out infinite;
}
@keyframes floatingDown {
  0%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(30px);
  }
  100%{
    transform: translateY(0);
  }
}

/* 生き物が跳ねる（鳥、リスなど） */
.jumping{
  position: relative;
  animation: jumping 1s ease-in-out infinite;
}
@keyframes jumping{
	0%{
		top: 0;
	}
	10%{
		top: -5px;
	}
	20%{
		top: 0px;
	}
	30%{
		top: -5px;
	}
	40%{
		top: 0px;
	}
	100%{
		top: 0px;
	}
}
.trauma_img{
    max-width: 400px;
}











/*common*/
.pc_inline{display:inline!important}.sp_inline{display:none!important}.sp_inline_ip{display:none!important}.pc_table{display:none!important}.sp_table{display:none!important}
address,body,dd,dl,dt,form,h1,h2,h3,h4,h5,h6,option,p,pre,select{margin:0;padding:0;-webkit-text-size-adjust:100%}img{vertical-align:middle;}iframe{vertical-align:middle;}li,ul{list-style:none;margin:0;padding:0}a img{border:none}.w010par{width:10%}.w020par{width:20%}.w025par{width:25%}.w050par{width:50%}.w075par{width:75%}.w100par{width:100%}.w010{width:10px}.w020{width:20px}.w030{width:30px}.w040{width:40px}.w050{width:50px}.w060{width:60px}.w070{width:70px}.w080{width:80px}.w090{width:90px}.w100{width:100px}.w110{width:110px}.w120{width:120px}.w130{width:130px}.w140{width:140px}.w150{width:150px}.w160{width:160px}.w170{width:170px}.w180{width:180px}.w190{width:190px}.w200{width:200px}.w210{width:210px}.w220{width:220px}.w230{width:230px}.w240{width:240px}.w250{width:250px}.w255{width:255px}.w260{width:260px}.w270{width:270px}.w280{width:280px}.w290{width:290px}.w300{width:300px}.w305{width:305px}.w310{width:310px}.w320{width:320px}.w330{width:330px}.w340{width:340px}.w350{width:350px}.w360{width:360px}.w365{width:365px}.w370{width:370px}.w380{width:380px}.w390{width:390px}.w400{width:400px}.w410{width:400px}.w415{width:415px}.w420{width:420px}.w430{width:430px}.w435{width:435px}.w440{width:440px}.w450{width:450px}.w460{width:460px}.w470{width:470px}.w480{width:480px}.w490{width:490px}.w500{width:500px}.w510{width:510px}.w520{width:520px}.w530{width:530px}.w540{width:540px}.w550{width:550px}.w560{width:560px}.w570{width:570px}.w580{width:580px}.w590{width:590px}.w600{width:600px}.w610{width:610px}.w620{width:620px}.w630{width:630px}.w640{width:640px}.w650{width:650px}.w660{width:660px}.w670{width:670px}.w680{width:680px}.w690{width:690px}.w700{width:700px}.w710{width:710px}.w720{width:720px}.w730{width:730px}.w740{width:740px}.w750{width:750px}.w760{width:760px}.w765{width:765px}.w960{width:960px}.w980{width:980px}.h030{height:30px}.h180{height:180px}.h190{height:190px}.h200{height:200px}.h240{height:240px}.h250{height:250px}.h280{height:280px}.h300{height:300px}.h350{height:350px}.mt00{margin-top:0!important}.mt01{margin-top:1px}.mt02{margin-top:2px}.mt03{margin-top:3px}.mt04{margin-top:4px}.mt05{margin-top:5px}.mt06{margin-top:6px}.mt07{margin-top:7px}.mt08{margin-top:8px}.mt09{margin-top:9px}.mt10{margin-top:10px}.mt15{margin-top:15px}.mt20{margin-top:20px}.mt25{margin-top:25px}.mt30{margin-top:30px}.mt35{margin-top:35px}.mt40{margin-top:40px}.mt45{margin-top:45px}.mt50{margin-top:50px}.mt60{margin-top:60px}.mt70{margin-top:70px}.mt80{margin-top:80px}.mt90{margin-top:90px}.mt100{margin-top:100px}.mt110{margin-top:110px}.mt120{margin-top:120px}.mr00{margin-right:0!important}.mr01{margin-right:1px}.mr02{margin-right:2px}.mr03{margin-right:3px}.mr04{margin-right:4px}.mr05{margin-right:5px}.mr06{margin-right:6px}.mr07{margin-right:7px}.mr08{margin-right:8px}.mr09{margin-right:9px}.mr10{margin-right:10px}.mr15{margin-right:15px}.mr20{margin-right:20px}.mr25{margin-right:25px}.mr30{margin-right:30px}.mr35{margin-right:35px}.mr40{margin-right:40px}.mr45{margin-right:45px}.mr50{margin-right:50px}.mr60{margin-right:60px}.mr70{margin-right:70px}.mr80{margin-right:80px}.mr90{margin-right:90px}.mr100{margin-right:100px}.mb00{margin-bottom:0!important}.mb01{margin-bottom:1px}.mb02{margin-bottom:2px}.mb03{margin-bottom:3px}.mb04{margin-bottom:4px}.mb05{margin-bottom:5px}.mb06{margin-bottom:6px}.mb07{margin-bottom:7px}.mb08{margin-bottom:8px}.mb09{margin-bottom:9px}.mb10{margin-bottom:10px}.mb15{margin-bottom:15px}.mb20{margin-bottom:20px}.mb25{margin-bottom:25px}.mb30{margin-bottom:30px}.mb35{margin-bottom:35px}.mb40{margin-bottom:40px}.mb45{margin-bottom:45px}.mb50{margin-bottom:50px}.mb60{margin-bottom:60px}.mb70{margin-bottom:70px}.mb80{margin-bottom:80px}.mb90{margin-bottom:90px}.mb100{margin-bottom:100px}.ml00{margin-left:0!important}.ml01{margin-left:1px}.ml02{margin-left:2px}.ml03{margin-left:3px}.ml04{margin-left:4px}.ml05{margin-left:5px}.ml06{margin-left:6px}.ml07{margin-left:7px}.ml08{margin-left:8px}.ml09{margin-left:9px}.ml10{margin-left:10px}.ml12{margin-left:12px}.ml15{margin-left:15px}.ml20{margin-left:20px}.ml25{margin-left:25px}.ml30{margin-left:30px}.ml35{margin-left:35px}.ml40{margin-left:40px}.ml45{margin-left:45px}.ml50{margin-left:50px}.ml60{margin-left:60px}.ml70{margin-left:70px}.ml80{margin-left:80px}.ml90{margin-left:90px}.ml100{margin-left:100px}.ml140{margin-left:140px}.ml160{margin-left:160px}.ma10{margin:10px}.ma15{margin:15px}.ma_auto{margin-left:auto;margin-right:auto}.pt00{padding-top:0!important}.pt01{padding-top:1px}.pt02{padding-top:2px}.pt03{padding-top:3px}.pt04{padding-top:4px}.pt05{padding-top:5px}.pt06{padding-top:6px}.pt07{padding-top:7px}.pt08{padding-top:8px}.pt09{padding-top:9px}.pt10{padding-top:10px}.pt15{padding-top:15px}.pt20{padding-top:20px}.pt25{padding-top:25px}.pt30{padding-top:30px}.pt35{padding-top:35px}.pt40{padding-top:40px}.pt45{padding-top:45px}.pt50{padding-top:50px}.pt60{padding-top:60px}.pt70{padding-top:70px}.pt80{padding-top:80px}.pt90{padding-top:90px}.pt100{padding-top:100px}.pt120{padding-top:120px}.pr00{padding-right:0!important}.pr01{padding-right:1px}.pr02{padding-right:2px}.pr03{padding-right:3px}.pr04{padding-right:4px}.pr05{padding-right:5px}.pr06{padding-right:6px}.pr07{padding-right:7px}.pr08{padding-right:8px}.pr09{padding-right:9px}.pr10{padding-right:10px}.pr15{padding-right:15px}.pr20{padding-right:20px}.pr25{padding-right:25px}.pr30{padding-right:30px}.pr35{padding-right:35px}.pr40{padding-right:40px!important}.pr45{padding-right:45px}.pr50{padding-right:50px}.pr60{padding-right:60px}.pr70{padding-right:70px}.pr80{padding-right:80px}.pr90{padding-right:90px}.pr100{padding-right:100px}.pb00{padding-bottom:0!important}.pb01{padding-bottom:1px}.pb02{padding-bottom:2px}.pb03{padding-bottom:3px}.pb04{padding-bottom:4px}.pb05{padding-bottom:5px}.pb06{padding-bottom:6px}.pb07{padding-bottom:7px}.pb08{padding-bottom:8px}.pb09{padding-bottom:9px}.pb10{padding-bottom:10px}.pb15{padding-bottom:15px}.pb20{padding-bottom:20px}.pb25{padding-bottom:25px}.pb30{padding-bottom:30px}.pb35{padding-bottom:35px}.pb40{padding-bottom:40px}.pb45{padding-bottom:45px}.pb50{padding-bottom:50px}.pb60{padding-bottom:60px}.pb70{padding-bottom:70px}.pb80{padding-bottom:80px}.pb90{padding-bottom:90px}.pb100{padding-bottom:100px}.pl00{padding-left:0!important}.pl01{padding-left:1px}.pl02{padding-left:2px}.pl03{padding-left:3px}.pl04{padding-left:4px}.pl05{padding-left:5px}.pl06{padding-left:6px}.pl07{padding-left:7px}.pl08{padding-left:8px}.pl09{padding-left:9px}.pl10{padding-left:10px}.pl15{padding-left:15px}.pl20{padding-left:20px}.pl25{padding-left:25px}.pl30{padding-left:30px}.pl35{padding-left:35px}.pl40{padding-left:40px}.pl45{padding-left:45px}.pl50{padding-left:50px}.pl60{padding-left:60px}.pl70{padding-left:70px}.pl80{padding-left:80px}.pl90{padding-left:90px}.pl100{padding-left:100px}.pa01{padding:1px}.pa02{padding:2px}.pa03{padding:3px}.pa04{padding:4px}.pa05{padding:5px}.pa10{padding:10px}.pa15{padding:15px}.fr{float:right}.fl{float:left}.fr10{float:right;margin-left:10px}.fr15{float:right;margin-left:15px}.fr30{float:right;margin-left:15px}.fl10{float:left;margin-right:10px}.fl15{float:left;margin-right:15px}.fl30{float:left;margin-right:30px}.txt10{font-size:10px}.txt11{font-size:11px}.txt12{font-size:12px}.txt13{font-size:13px}.txt14{font-size:14px}.txt15{font-size:15px}.txt16{font-size:16px}.txt17{font-size:17px}.txt18{font-size:18px}.txt19{font-size:19px}.txt20{font-size:20px}.txt21{font-size:21px}.txt22{font-size:22px}.txt23{font-size:23px}.txt24{font-size:24px}.txt25{font-size:25px}.txt26{font-size:26px}.txt27{font-size:27px}.txt28{font-size:28px}.txt29{font-size:29px}.txt30{font-size:30px}.txt31{font-size:31px}.txt32{font-size:32px}.txt33{font-size:33px}.txt34{font-size:34px}.txt35{font-size:35px}.txt36{font-size:36px}.txt37{font-size:37px}.txt38{font-size:38px}.txt39{font-size:39px}.txt40{font-size:40px}.bold{font-weight:700}.left{text-align:left!important}.center{text-align:center!important}.right{text-align:right}.clear{clear:both}.v_top{vertical-align:top}.v_mid{vertical-align:middle}.v_btm{vertical-align:bottom}.color_red{color:#f33}.color_pink{color:#ed8c96}.color_blue{color:#00408f}.color_green{color:#479f9d}.color_ore{color:#ff8327}.color_yellow{color:#ffeb8b}.color_beige{color:#dac58b}.color_brown{color:#9b8052}.color_navy{color:#1f2774}.color_black{color:#3e3a39}.ls_0{letter-spacing:0}.ls_1{letter-spacing:1px}.indent{margin-left:1em!important;text-indent:-1em}.line_h_2{line-height:2!important}.clearfix:after{display:block;clear:both;content:""}.sp{display:none!important}


@media (min-width: 1024px) and (max-width: 1600px){
	.footer_info {
		padding-bottom: 140px;
	}
	.pagetop {
		bottom: 12px;
	}
}