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

/* CSS変数代入 */
:root {
	--bg_color: #FEFEFE;
	--ft_color: #D9F2FF;
}

*{
	font-family: 'Zen Kaku Gothic New', sans-serif;
	margin:0;
	padding:0;
	color:#1a1a1c;
}
body {
	background: var(--bg_color);
}
ul {
	list-style: none;
}
a {
	text-decoration: none;
}
p {
	margin: 4px 0;
	line-height:1.7;
	letter-spacing: 0.04em;
}
img {
	width: auto;
}
article {
	margin: 100px 0;
}
nav {
	height: 60px;
}
h2,
h3{
	font-family: 'Zen Kaku Gothic New', sans-serif;
}
.sp_view {
	display:none!important;
}
.pc_view {
	display:block!important;
}
.pc_view_inline {
	display:inline!important;
}
.tb_view {
	display:none;
}
.inner_cntr {
	width: 99%;
	max-width: var(--pc_width);
	margin: 0 auto; 
}
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}
.title_h2 {
	text-align: center;
	font-weight: 700;
	position: relative;
}
.top-h2 {
	text-shadow: 0px 0px 7px #000000;
	font-size: 200%;
}
.wrap_button {
	width: 100%;
}
.wrap_button a {
	background: var(--col_bg);
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 40%;
    padding: 10px 25px;
    color:var(--col_emphasis1);
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.wrap_button a::before {
	content: '';
	position: absolute;
	top: -5px;
	left: -5px;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	border: 2px solid var(--col_emphasis1);
	transition: 0.2s;
}
.wrap_button a:hover::before {
	top: 0;
	left: 0;
}
.wrap_button a:hover {
	text-decoration: none;
	background-color: var(--col_bg);
}
.emphasis {
	font-size: 150%;
	color: var(--col_emphasis1);
	font-weight: 700;
	vertical-align: baseline;
}

.top-logo {
	width: 35%;
}
.mv {
	position: relative;
    z-index: 1;
    overflow: hidden;
}
.wrap-top {
	max-width: 100%;
	margin: 0 auto;
}

.wrap_top_nav {
	position: fixed;
    top: 8px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: calc(100% - 20px);
    max-width: 1280px;
    z-index: 8888;
	background-color: rgba(255,255,255,.9);
	border-radius: 20px;
	/* box-shadow: 0 0 3px rgba(0,0,0,.1); */
	box-shadow: 0 0 10px var(--col_emphasis1);
}
.top-nav {
	padding-top: 5px;
}
.nav-list_item {
	position: relative;
}
.nav-list_item::before {
	position: absolute;
	content: "";
    left: -20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    border-left: solid 3px var(--col_emphasis1);
}
.nav-list_item:last-child::after {
	position: absolute;
	content: "";
    right: -20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    border-left: solid 3px var(--col_emphasis1);
}
.bg-slide ul {
	position: relative;
}
.bg-slide li {
	position: absolute;
	z-index: 50;
    display: block;
}
.top_logo img {
	width: 66px;
}
.top_logo p {
	font-size: 150%;
}
.top_icon img {
	width: 40px;
	vertical-align: bottom;
}
.top_icon {
	font-weight: 700;
	color: var(--col_i_blue);
}
.top_icon a {
	font-size: 200%;
}
.headline_main {
	display: inline-block;
	position: relative;
	color:var(--col_emphasis1);
}
/*.headline_main::before,
.headline_main::after {
	position: absolute;
    content: "";
    top: 50%;
    width: 55px;
    height: 10px;
    background: url("../img/decoration.svg") center/contain no-repeat;
}*/
.headline_main::before {
	right: calc(100% + 20px);
}
.headline_main::after {
	left: calc(100% + 20px);
}

.wrap_latest_info {
	overflow-y: scroll;
    border-top: 5px solid var(--col_emphasis1);
	border-bottom: 5px solid var(--col_emphasis1);
    height: 400px;
    padding: .5em;
	background: #fff;
}
.l_info {
	border-bottom: 1px solid #ccc;
    padding: 12px 0;
    margin-bottom: 0;
    margin-top: 0;
}
.l_info_h2 {
	margin: 0 auto;
	font-weight: 700;
	text-align: center;
}
.l_info ul {
	list-style: circle;
}
.latest_info {
	width: 70%;
}
.info_bnr {
	margin-top: 53px;
}

.access_p {
	font-weight: 700;
	font-size: 110%;
}
.top_open_info {
	margin: 10px 0;
}
.top_open_info p {
	margin: 0;
    line-height: 1.4;
    font-size: 95%;
}


/*-------------------reservation------------------------*/
.reservation_top_img {
	width: 100%;
    border-radius: 10px;
	box-shadow: 0px 0px 0px 5px var(--col_emphasis1), 0px 0px 0px 10px  var(--col_emphasis3);
}
.wrap_reservation h3 {
	position: relative;
}
.wrap_reservation a {
	color: var(--col_i_blue);
	font-size: 300%;
	font-weight: 700;
}
.wrap_reservation img {
	width: 15%;
}
.wrap_reservation p {
	font-size: 110%;
}
.wrap_reservation .wrap_button a {
	 background: #EFFFCF;
}
.bring {
	background: #fff;
	font-size: 120%;
	padding: 10px 80px;
}
.bring li {
	list-style: url("../img/list-decoration.png");
}
.notes h3 {
	border-bottom: solid 5px var(--col_emphasis2);
}
.notes p {
	font-size: 110%;
}

/*---------------------access---------------------------*/
.access_img {
	width: calc(50% - 10px);
}
.access_img img {
	border-radius: 10px;
	box-shadow: 0px 0px 0px 5px var(--col_emphasis1), 0px 0px 0px 10px  var(--col_emphasis3);
}
.access_address {
	width: calc(50% - 10px);
}
.transportation_facilities {
	background: #fff;
	border-radius: 10px;
	padding: 10px 100px;
}
.map_area,
.access_content,
.entrance_area {
	margin-top: 100px;
}
.item_01 {
	padding-left: 2em;
}
.item_02 {
	position: relative;
  	list-style-type: none;
  	padding: 0.5em 0.5em 0.5em 0.5em;
  	margin-bottom: 5px;
  	line-height: 1.5;
  	vertical-align: middle;
  	color: #333;
  	border-radius: 15px;
}
.item_02::before {
	display:inline-block; 
  	vertical-align: middle;
  	content:'';
  	width: .8em;
  	height: .8em;
  	background: var(--col_emphasis1);
  	border-radius: 50%;
  	margin-right: 8px;
	margin-bottom: 5px;
}
.item_03 {
	position: relative;
  	list-style-type: none;
  	padding: 0.5em 0.5em 0.5em 0.5em;
  	margin-bottom: 5px;
  	line-height: 1.5;
  	vertical-align: middle;
  	color: #333;
  	border-radius: 15px;
}
.item_03::before {
	display:inline-block; 
  	vertical-align: middle;
  	content:'';
  	width: .5em;
  	height: .5em;
  	border: 2px solid var(--col_emphasis2);
  	border-radius: 50%;
  	margin-right: 8px;
	margin-bottom: 5px;
}

/*----------------------footer--------------------------*/
footer {
	position: relative;
	padding: 243px 0 0;
}
.footer {
	background: var(--col_bg);
	padding:80px 0px 0px;
}
.consultation-list {
	border: solid 2px var(--col_emphasis2);
    border-radius: 6px;
    overflow: hidden;
}
.footer_top_line {
	max-width: var(--pc_width_lan);
	margin: 0 auto;
}
.footer_left,
.footer_right {
	width: calc(100% / 2);
}
.footer_left p {
	text-align: right;
}
.footer_right p {
	font-size: 120%;
}
.ft_bottom {
	text-align: center;
    font-size: 70%;
    background-color: var(--col_basic);
    color: var(--col_bg);
    margin: 0;
    padding: 10px 0;
}
.sub {
	padding-top: 200px;
}
.subpage_h2 {
	text-align: center;
	margin-bottom: 100px;
}
.subpage_h2_img {
    display: block;
    width: 132px;
    margin: 0 auto;
}
.wrap_staff_intoroduce {
    margin: 150px 0 10px;
    display: flex;
    flex-wrap: wrap;
	justify-content: space-evenly;
}
.doctor {
    /*display: flex;
    align-items: center;
    justify-content: center; */
	text-align: center;
}
/* .doctor:first-of-type {
	width: 100%;
}*/
.doctor_img {
	width: 150px;
	border-radius: 4px;
}
.job{
	padding: 0px 20px;
}
.name {
	
}
.staff_img {
	width: 150px;
	border-radius: 4px;
}
.staff {
	width: 25%;
	text-align: center;
}
.staff_top_img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0px 0px 0px 5px var(--col_emphasis1), 0px 0px 0px 10px var(--col_bg);
}
.wrap_staff_top_images {
	margin-top: 60px;
}
.staff_top_imgs {
	border-radius: 10px;
	box-shadow: 0px 0px 0px 5px var(--col_emphasis1), 0px 0px 0px 10px var(--col_bg);
}
.staff_top_imgs:nth-of-type(3) {
	margin-right:0;
}
.hmenu_bg {
	display:none;
}
.wrap_hmenu_top_img {
	/* display:none; */
}
.top_nav .uk-navbar-nav li.nav-list_item.sp_only {
	display:none;
}
.wrap_updates {
	width: 100%;
    margin: 20px auto;
    padding: 20px 100px;
    box-sizing: border-box;
    /* background-color: var(--col_bg); */
}
.wrap_aboutus_contants.reha .uk-card-body {
	background-color: var(--col_bg);
}
#about_us .uk-card-title {
	border-bottom: solid 2px var(--col_emphasis1);
}
.top_tel_link {
	vertical-align: baseline;
}
.nav_list_link_img {
	display: none;
}
.wrap_ft_bn {
	margin: 50px 0 0;
	background-color: var(--col_emphasis1);
	padding: 50px;
}
.wrap_ft_bn_link {
	text-align: center;
	display: block;
}
.wrap_ft_bn_link_top {
	color: var(--col_bg);
    display: block;
    width: 100%;
}
.ft_bn_link_ul {
	margin: 5px 0;
    width: 50%;
    box-sizing: border-box;
}
.ft_bn_link_li {
	line-height: 1.2;
}
.ft_bn_link_li.heading {
	font-size: 80%;
	color: var(--col_emphasis1) !important;
}
.ft_bn_link_li_link {
    color: var(--col_bg) !important;
	padding-left: 12px;
    font-size: 80%;
    position: relative;
}
.ft_bn_link_li_link::after {
	content:"-";
	position:absolute;
	top:0;
	left:0;
}
.ft_bn_link_span {
    font-size: 70%;
	color: var(--col_basic);
}
.wrap_ft_external_link {
	display:flex;
	flex-wrap: wrap;
	width: 98%;
	max-width: var(--pc_width_lan);
	margin: 5px auto;
}
.wrap_about_target_list {
    display: flex;
    margin: 0px;
    padding: 20px;
    border: 1px solid var(--col_emphasis3);
    border-radius: 4px;
	flex-wrap: wrap;
}
.wrap_about_target_list h4{
    width: 100%;
    margin-bottom: 4px;
    color: var(--col_emphasis3);
}
.wrap_about_target_list ul {
	width: 50%;
	margin-top:0!important;
}
.rsv_caution {
	text-align: left;
	padding: 0 20px;
}
.li_custom_disc {
	position: relative;
}
.li_custom_disc::before {
	position: absolute;
    content: "";
    width: 18px;
    height: 18px;
    background-color: var(--col_bg);
	top: 7px;
    left: -2px;
    border-radius: 50%;
}
.li_custom_disc::after {
	position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    border: 3px solid var(--col_emphasis1);
    top: 8px;
    left: 0;
    border-radius: 50%;
}
