@charset "utf-8";

/*
 * style.css
 *
 *  version --- 1.0
 *  updated --- 2017/11/30
 */

/* !HTML5 elements
---------------------------------------------------------- */
header, 
footer, 
nav, 
section, 
aside, 
article {
    display: block;
}

/* !Reseting
---------------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

fieldset {
  border: none;
}

ul,
ol,
li {
	list-style: none;
}

img {
	max-width: 100%;
    height: auto;
	vertical-align: top;
}

table {
	border-collapse: collapse;
}

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}

select::-ms-expand {
	display: none;
}

input[type=radio]::-ms-check,
input[type=checkbox]::-ms-check{
	display: none;
}

select,
input[type=radio],
input[type=checkbox],
input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=number],
input[type=reset],
input[type=button],
input[type=submit],
textarea {
	appearance: none;
	border-radius: 0;
	font-family: YakuHanJP, "Noto Sans JP", serif;
}

input[type=text]::-ms-clear,
input[type=tel]::-ms-clear,
input[type=number]::-ms-clear{
	display: none;
}

input[type=reset],
input[type=button],
input[type=submit]  {
	font-family: YakuHanJP, "Noto Sans JP", serif;
	cursor: pointer;
}

*,
*:before,
*::after {
	box-sizing: border-box;
}
/* !Clearfix
---------------------------------------------------------- */
.clearfix {
    display: block;
    min-height: 1%;
}

.clearfix:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}

* html .clearfix {
    height: 1%;
}

/* !Layout
---------------------------------------------------------- */
html {
    overflow-y: scroll;
    font-size: 62.5%;
}

body {
    font-family: YakuHanJP, "Noto Sans JP", serif;
    font-size: 1.6rem;
    -webkit-text-size-adjust: none;
    line-height: 1.5;
    font-weight: normal;
    color: #131D4A;
    -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/*** タブレット 768x ~ 1300px***/
@media screen and (min-width: 768px) and (max-width: 1200px) {
    html {
        font-size: 0.83333vw;
    }
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
    html {
        font-size: 62.5%;
    }
}


/* !Base Fonts -------------------------------------------------------------- */
a {
    color: inherit;
    text-decoration: none;
}

/*** hover ***/
@media screen and (min-width: 960px) {
    a {
        transition: all 0.5s;
    } 
	
    .op {
        transition: opacity 0.5s ease-out;
    }

    .op:hover {
        opacity: .7;
    }

    a[href^="tel:"] {
        cursor: default;
        pointer-events:none;
    }
}

.is-hide {
    display: none;
}

@media screen and (min-width: 768px) {
    .is-sp {
        display: none;
    }
}

@media only screen and (max-width : 767px){
	.is-pc {
		display: none;
	}
}



/* !wrapper
---------------------------------------------------------- */
#wrapper {
	position: relative;
	padding-top: 10rem;
}

/* !header
---------------------------------------------------------- */
#header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 99;
	padding: 0 4rem;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background: #fff;
}

.header-logo {
	display: flex;
	align-items: center;
	height: 10rem;
}
.header-logo img {
	width: 26.4rem;
}

.btn-menu {
	display: none;
}
 
#g-navi ul {
	display: flex;
	justify-content: flex-end;
}
#g-navi li {
	display: flex;
	align-items: center;
	margin-left: 4rem;
	height: 5rem;
	/* height: 10rem; */
}
#g-navi li a {
	display: block;
	position: relative;
	padding: 0.6rem 0;
	font-size: 1.5rem;
}
#g-navi li a:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	transition-duration: 0.3s;
	width: 0;
	border-top: 1px solid;
}

#g-navi .download{
	align-items: center;
	margin-bottom: 2rem;
}

#g-navi .download li {
	height: auto;
}

#g-navi .download a {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 2rem;
	padding: 0.5rem 4rem 0.5rem 2rem;
	height: 3.4rem;
	background: url(../img/common/icon_download.svg)no-repeat right 1.6rem center #fff;
	border: 1px solid #2E4989;
	border-radius: 5rem;
	color: #2E4989;
	font-size: 1.4rem;
}

#g-navi .download a:hover {
	background-color: #2E4989;
	background-image: url(../img/common/icon_download_wh.svg);
	color: #fff;
}

/*** hover ***/
@media screen and (min-width: 960px) {
	#g-navi li a:hover:after {
		width: 100%;
	}
}


/* !footer
---------------------------------------------------------- */
#footer {
	overflow: hidden;
}

.footer-swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
.footer-swiper .swiper-slide {
	width: 45rem;
	height: 35.8rem;
}
.footer-swiper .swiper-slide img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.footer-inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 5rem 0 3rem;
}

.foot-logo {
	margin-bottom: 2rem;
}
.foot-logo img {
	width: 26.4rem;
}
#footer .address {
	line-height: 1.4375;
}

.foot-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 4rem;
	width: 32rem;
}
.foot-links a {
	text-decoration: underline;
	line-height: 1.2;
	font-size: 1.4rem;
}

#footer .contacts {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 1.8rem;
}
#footer .contacts li {
	display: flex;
	align-items: center;
	padding: 1.8rem 0;
	border-style: solid;
	border-width: 1px 0;
	border-color: #ddd;
	letter-spacing: 0.06em;
	color: #2E4989;
}
#footer .contacts .item {
	width: 100%;
}
#footer .contacts .th {
	margin-bottom: 0.5rem;
	font-size: 1.8rem;
}

#footer .contacts .td.small {
    font-size: 1.2rem;
}

#copyright {
	padding: 3.2rem 0;
	text-align: center;
	color: #888;
	font-size: 1rem;
}

.footer-group {
	padding: 5rem 0;
	background: #000;
	color: #fff;
}
.footer-group-body {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.footer-group .title {
	font-size: 1.2rem;
}
.footer-group .logo {
    max-width: 25rem;
    width: 100%;
    margin-top: 0.8rem;
}
.footer-group .links a {
    display: grid;
    place-items: center;
    max-width: 42rem;
    height: 4.4rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: .12em;
    transition: background 0.3s ease-out;
}
.footer-group .links a span {
    position: relative;
    padding-right: 11.5rem;
}
.footer-group .links a span:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    width: 10rem;
    height: 1.4rem;
    background: #fff;
    clip-path: polygon(0 95%, 98% 95%, 84% 0, 85% 0, 100% 100%, 0 100%);
    transition: transform 0.3s ease-out;
}


/*** hover ***/
@media screen and (min-width: 960px) {
	.foot-logo a:hover {
		opacity: 0.7;
	}
	
	.foot-links a:hover {
		text-decoration: none;
	}
	
	.footer-group .links:hover span:before {
		transform: translate(2rem, -50%);
	}
}


/* !common
---------------------------------------------------------- */
.font-serif {
	font-family: YakuHanJP, "Noto Serif JP", serif;
}
.font-alegreya {
	text-transform: uppercase;
	font-family: YakuHanJP, "Alegreya", serif;
}

.mt30 {
	margin-top: 3rem;
}

#main-visual {
	position: relative;
	margin: 0 4rem 4rem;
}
.main-swiper {
	overflow: hidden;
	border-radius: 1.5rem;
}
.main-swiper img {
	object-fit: cover;
	width: 100%;
	height: calc(100dvh - 14rem);
}
#main-visual .head {
	position: absolute;
	left: 5rem;
	bottom: 7rem;
	z-index: 9; 
	color: #fff;
	font-size: 5rem;
	font-weight: 700;
}

#teaser {
	position: relative;
	padding: 0 4rem 8rem;
}
#teaser .bg {
	overflow: hidden;
	border-radius: 0.8rem;
}

#teaser .bg img {
	width: 100%;
}

#teaser .box {
	position: absolute;
	left: 4rem;
	bottom: 8rem;
	padding: 6rem 4rem;
	width: 50%;
	max-width: 49rem;
	background: #fff;
	border-top-right-radius: 0.8rem;
}
#teaser .box:before,
#teaser .box:after {
	content: "";
	position: absolute;
	width: 0.8rem;
	height: 0.8rem;
	background: url(../img/common/icon_bor_radius.png)no-repeat center;
	background-size: 100%;
}
#teaser .box:before {
	left: 0;
	bottom: 100%;
}
#teaser .box:after {
	left: 100%;
	bottom: 0;
}
#teaser .head-large .eng {
	font-size: 6.5rem;
}
#teaser .head-large .jap {
	font-size: 2rem;
}

#breadcrumb {
	display: flex;
	position: absolute;
	left: 4rem;
	bottom: 0;
}
#breadcrumb li {
	font-size: 1.1rem;
}
#breadcrumb li + li {
	position: relative;
	padding-left: 4.2rem;
}
#breadcrumb li + li:before {
	content: "";
	display: block;
	position: absolute;
	left: 2.1rem;
	top: 50%;
	transform: translateX(-50%);
	width: 1rem;
	border-top: 1px solid;
}
#breadcrumb li a {
	color: #ccc;
}

.inner,
.inner-large {
	margin: 0 auto;
/*	padding: 0 5rem;*/
	max-width: 106rem;
}
.inner-large {
	max-width: 120rem;
}

.head-large {
	color: #2E4989;
	font-weight: 400;
}
.head-large .eng {
	display: block;
	line-height: 1;
	font-size: 7rem;
}
.head-large .jap {
	display: block;
}
.head-large span + span {
	margin-top: 0.8rem;
}

.head-medium {
	margin-bottom: 4rem;
	line-height: 1.2;
	color: #2E4989;
	font-size: 2.8rem;
	font-weight: 700;
}

.head-small {
	margin-bottom: 3rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid;
	line-height: 1.2;
	color: #2E4989;
	font-size: 2.4rem;
	font-weight: 400;
}

.common-txt {
	line-height: 2;
}

.service-module {
	padding: 8rem 0 4rem;
	background: url(../img/common/bg_service.png) no-repeat center;
	background-size: cover;
	color: #fff;
}
.service-module .head {
	margin-bottom: 4.6rem;
	text-align: center;
	line-height: 1.424;
	font-size: 3.3rem;
	font-weight: 700;
}
.service-module .symptoms {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem 1.2rem;
}
.service-module .symptoms li {
	padding: 0.7rem 2rem 0.8rem;
	border: 1px solid;
	border-radius: 4rem;
}

.btn-link {
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	overflow: hidden;
	position: relative;
	z-index: 2;
	padding: 1rem 7.6rem 1rem 3rem;
	min-height: 5.6rem;
	background: #2E4989;
	border: 1px solid #2E4989;
	border-radius: 5rem;
	letter-spacing: 0.1em;
	color: #fff;
	font-size: 1.8rem;
}
.btn-link:after {
	content: "";
	position: absolute;
	right: 3rem;
	top: 50%;
	transform: translateY(-50%);
	transition-duration: 0.5s;
	width: 0.8rem;
	height: 0.8rem;
	background: #fff;
	border-radius: 50%;
}
.btn-link span {
	position: relative;
	z-index: 2;
}
.btn-link.st2 {
	background: #fff;
	border-color: #fff;
	color: #2E4989;
}
.btn-link.st2:after {
	background: #2E4989;
}
.btn-link.st3 {
	background: #fff;
	color: #2E4989;
}
.btn-link.st3:after {
	width: 2.4rem;
	height: 2.4rem;
	background: url(../img/common/icon_link.svg) no-repeat center;
}
.end-btn {
	margin-top: 4rem;
	text-align: center;
	font-weight: 600;
}

.bg-lightgray {
	background: #F5F5F5;
}

/*** タブレット 768x ~ 1300px***/
@media screen and (min-width: 768px) and (max-width: 1200px) {
    .inner,
	.inner-large {
		padding: 0 5rem;
	}
}


/*** hover ***/
@media screen and (min-width: 960px) {
	
	#breadcrumb li a:hover {
		text-decoration: underline;
		color: #131D4A;
	}
	
	.btn-link:hover {
		background: #fff;
		color: #2E4989;
	}
	.btn-link:hover:after {
		background: #2E4989;
	}
	.btn-link.st2:hover {
		background: #2E4989;
		border-color: #2E4989;
		color: #fff;
	}
	.btn-link.st2:hover:after {
		background: #fff;
	}
	.btn-link.st3:hover {
		background: #2E4989;
		color: #fff;
	}
	.btn-link.st3:hover:after {
		background: url(../img/common/icon_link_wh.svg);
	}
	
}


/* !page
---------------------------------------------------------- */
.news-wrap {
	padding: 8rem 0 12rem;
}
.news-wrap .content {
	display: flex;
	justify-content: space-between;
}
.news-wrap .side {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 40%;
}
.news-wrap .main {
	width: calc(50% + 14.5rem);
}

.news-list li {
	padding: 2rem 0;
	border-bottom: 1px solid #DDDDDD;
}
.news-list li a {
	display: inline-flex;
	justify-content: space-between;
	padding: 1rem 0.6rem;
	position: relative;
	max-width: 100%;
}
.news-list li a:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	transition-duration: 0.5s;
	width: 0;
	border-bottom: 1px solid;
}
.news-list li .dt {
	padding-top: 0.5rem;
	width: 12rem;
	line-height: 1;
	font-size: 1.4rem;
}
.news-list li .dd {
	max-width: calc(100% - 12rem);
	overflow:hidden;
	text-overflow:ellipsis;  
	white-space:nowrap;
}

.information-wrap {
	padding: 12rem 0 6rem;
	background: url(../img/top/bg_information.jpg) no-repeat center;
	background-size: cover;
}
.information-wrap .title {
	display: flex;
	justify-content: space-between;
	/* align-items: flex-end; */
	align-items: center;
	margin-bottom: 13.7rem;
	color: #fff;
} 
.information-wrap .title .download {
	width: 24rem;
	text-align: center;
}
.information-wrap .title .head-large {
	margin-bottom: 4rem;
	color: #fff;
}
.information-wrap .title .btn {
	margin-top: 6rem;
} 
.information-wrap .download .tit {
	display: inline-block;
	margin-bottom: 1.6rem;
	padding: 1rem;
	border: 1px solid;
	font-size: 1.5rem;
}
.information-wrap .download .tit2 {
	margin-bottom: 1.2rem;
	font-size: 1.8rem;
	font-weight: bold;
}
.information-wrap .download .btns a {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.6rem;
	padding: 0.5rem 4rem;
	height: 3.4rem;
	background: url(../img/common/icon_download.svg)no-repeat right 1.6rem center #fff;
	border-radius: 5rem;
	color: #2E4989;
	font-size: 1.4rem;
}
.information-wrap .service-link {
	display: flex;
	justify-content: space-between;
}
.information-wrap .service-link .item {
	overflow: hidden;
	width: calc(50% - 0.8rem);
	background: #fff;
	border-radius: 1rem;
}
.information-wrap .service-link .info {
	padding: 3.6rem 2rem;
	text-align: center;
}
.information-wrap .service-link .head-large .eng {
	letter-spacing: 0.2em;
	font-size: 1.3rem;
}
.information-wrap .service-link .head-large .jap {
	letter-spacing: 0.15em;
	font-size: 3rem;
}
.information-wrap .service-link .sub {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 1rem;
	color: #2E4989;
	font-size: 1.4rem;
}
.information-wrap .service-link .btn {
	margin-top: 2rem;
}

.access-wrap {
	overflow: hidden;
	padding: 0 0 8rem;
	background: #F5F5F5;
}
.access-wrap .map-display {
	display: flex;
	justify-content: space-between;
	position: relative;
}
.access-wrap .map-display .info {
	padding: 19rem 2rem 19rem 0;
	width: 50%;
}
.access-wrap .map-display .map {
	position: absolute;
	left: 50%;
	top: 0;
	width: calc(50vw);
	height: 100%;
}
.access-wrap .map-display .map iframe {
	width: 100%;
	height: 100%;
}
.access-wrap .map-display .route {
	margin-bottom: 1.6rem;
	font-size: 1.8rem;
	font-weight: 700;
}
.access-wrap .map-display .address {
	line-height: 2.14;
	font-size: 1.4rem;
}
.access-wrap .head-large {
    margin-bottom: 5rem;
}
.access-wrap .about-parking {
	margin-top: 6rem;
}
.access-wrap .about-parking .display {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	align-items: center;
	padding: 3rem 4rem;
	margin-bottom: 2.8rem;
	background: #fff;
	border-radius: 1.6rem;
}
.access-wrap .about-parking .img {
	width: 50%;
}
.access-wrap .about-parking .info {
	width: calc(50% - 2rem);
	line-height: 1.875;
}
.access-wrap .about-parking .head {
	margin-bottom: 1.6rem;
	letter-spacing: 0.1em;
	line-height 1.2;
	color: #2E4989;
	font-size: 2.8rem;
	font-weight: 700;
}
.privacy-policy {
	margin-top: 7rem;
	color: #2E4989;
}
.privacy-policy .head {
	margin-bottom: 1rem;
	font-size: 1.8rem;
	font-weight: 400;
}
.privacy-policy .scroll-bar {
	padding: 2rem 1rem 2rem 3rem;
	height: 34rem;
	background: #fff;
	border: 1px solid #CCCCCC;
	border-radius: 0.4rem;
	line-height: 1.846;
	font-size: 1.3rem;
}
.privacy-policy p {
	margin-bottom: 2rem;
}
.scroll-bar .mCSB_inside > .mCSB_container {
    margin-right: 2.5rem;
}
.scroll-bar .mCSB_scrollTools {
	opacity: 1;
	width: 0.6rem;
}
.scroll-bar .mCSB_scrollTools .mCSB_draggerRail {
    width: 100%;
	background: transparent;
}
.scroll-bar .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.scroll-bar .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    width: 100%;
	background: #D9D9D9;
}
.scroll-bar .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.scroll-bar .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar {
	background: #999;
}

/* to patients */
.message-wrap .to-patients {
	padding: 5rem 0;
}
.to-patients.top {
	padding-top: 0;
}
.message-display {
	display: flex;
	justify-content: space-between;
}
.message-display.row-reverse {
	flex-direction: row-reverse;
}
.message-display .info {
	width: calc(60% + 0.4rem);
	line-height: 1.625;
}
.message-display .txt p + p {
	margin-top: 2rem;
}
.message-display .img {
	overflow: hidden;
	width: calc(35% - 1.4rem);
	border-radius: 1.2rem;
}
.message-display .info .part + .part {
	margin-top: 4rem;
}
.message-display .sub {
	margin-bottom: 0.5rem;
	font-weight: 700;
}
.message-display .position {
	margin-top: 5.2rem;
	font-size: 1.4rem;
}
.message-display .position .name {
	display: block;
	margin-top: 1rem;
	color: #2E4989;
	font-size: 2.4rem;
}
.message-wrap .to-patients.top {
	padding-top: 0;
}
.message-wrap .to-patients.top .message-display .info {
	/* padding-top: 4rem; */
}

.to-patients .movie {
	position: relative;
	padding-top: 56.25%;
	margin-top: 5rem;
	width: 100%;
} 
.to-patients .movie video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.to-patients .patient-care {
	margin-top: 3rem;
	padding: 3rem 4rem;
	background: #EDF2FD;
	border-radius: 1rem;
	line-height: 1.625;
}
.to-patients .patient-care .head-medium {
	margin-bottom: 2rem;
	line-height: 1.423;
	font-size: 2.6rem;
}

.to-patients .sub-txt {
	margin-bottom: 4rem;
	line-height: 2;
}

.to-patients .features,
.to-patients .achievements,
.to-patients .doctors-doctors,
.to-patients .equipment-display {
	margin-top: 5rem;
}
.to-patients .features li {
	padding: 1.4rem 0 1.4rem 2rem;
	line-height: 1.625;
}
.to-patients .features li .tit {
	font-weight: 700;
}
.to-patients .features li .tit:before {
	content: "●";
	margin-right: 0.5rem;
	color: #2E4989;
}

.to-patients .achievements ul {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}
.to-patients .achievements li {
	padding: 3.2rem 2rem;
	width: calc(100%/3 - 2rem/3);
	background: #2E4989;
	border-radius: 0.8rem;
	line-height: 1;
	text-align: center;
	color: #fff;
}
.to-patients .achievements li .tit {
	margin-bottom: 1rem;
	font-weight: 700;
	font-size: 2rem;
}
.to-patients .achievements li .tit span {
	display: inline-block;
	margin-bottom: 0.3rem;
	padding: 0.6rem 0.8rem;
	background: #fff;
	border-radius: 0.4rem;
	color: #2E4989;
}
.to-patients .achievements li .tit .small {
	font-size: 1.5rem;
}
.to-patients .achievements li .year {
	font-size: 1.7rem;
}
.to-patients .achievements li .cases {
	font-size: 6.5rem;
	font-weight: 700;
}
.to-patients .achievements li .cases:after {
	content: "件";
	font-size: 3rem;
}

.to-patients .treatment-flow {
	margin-top: 7.7rem;
}
.to-patients .treatment-flow ul {
	position: relative;
}
.to-patients .treatment-flow li {
	display: flex;
	position: relative;
	background: #EDF2FD;
	border-radius: 0.8rem;
}
.to-patients .treatment-flow li + li {
	margin-top: 5.4rem;
}
.to-patients .treatment-flow li + li:before {
	content: "";
	position: absolute;
	left: 50%;
	top: -3.7rem;
	transform: translateX(-50%);
	width: 3.2rem;
	height: 2rem;
	background: url(../img/common/icon_down.svg)no-repeat center;
	background-size: 100%; 
}
.to-patients .treatment-flow li .info {
	padding: 3rem;
	width: calc(100% - 24rem);
}
.to-patients .treatment-flow li .head {
	position: relative;
	margin-bottom: 1.4rem;
	padding: 0.8rem 0 0.8rem 6rem;
	color: #2E4989;
	font-size: 2rem;
	font-weight: 700;
}
.to-patients .treatment-flow li .head .step {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 0;
	top: 0;
	width: 4.5rem;
	height: 4.5rem;
	border: 2px dotted;
	border-radius: 50%;
	font-weight: 400; 
}
.to-patients .treatment-flow li .txt {
	line-height: 1.6875;
}
.to-patients .treatment-flow li .note {
	margin-top: 1rem;
	color: #2E4989;
	font-size: 1.4rem;
}
.to-patients .treatment-flow li .note .bor {
	display: inline-block;
	padding: 0.2rem 1rem;
	border: 1px solid;
}
.to-patients .treatment-flow li .img {
	width: 24rem;
	border-radius: 0 0.8rem 0.8rem 0;
	overflow: hidden;
}
.to-patients .treatment-flow li .img img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.to-patients .treatment-flow .treatments {
	display: flex;
	gap: 0 2rem;
	margin-top: 2rem;
	line-height: 1.375;
}
.to-patients .treatment-flow .treatments .col {
	width: calc(50% - 1rem);
}
.to-patients .treatment-flow .treatments .item + .item {
	margin-top: 0.5rem;
}
.to-patients .treatment-flow .treatments .th {
	margin-bottom: 0.3rem;
	font-weight: 700;
}

.to-patients .doctors-doctors ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}
.to-patients .doctors-doctors li {
	padding: 3rem;
	background: #EDF2FD;
	border-radius: 0.8rem;
}
.to-patients .doctors-doctors .name {
	display: flex;
	align-items: center;
	color: #2E4989;
}
.to-patients .doctors-doctors .name .jap {
	margin-right: 3rem;
	font-size: 2rem;
	font-weight: 700;
}
.to-patients .doctors-doctors .name .eng {
	letter-spacing: 0.1em;
	font-size: 1.4rem;
	font-weight: 400;
}
.to-patients .doctors-doctors .graduate {
	margin-top: 0.6rem;
	font-size: 1.2rem;
}

.certificate-display {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
	padding: 2rem 5rem 2rem 6rem;
	margin-bottom: 1rem;
	background: #2E4989;
	border-radius: 0.8rem;
	color: #fff;
}
.certificate-display .img {
	width: 50%;
	max-width: 34.7rem;
	text-align: center;
}
.certificate-display .img img {
	max-height: 37.3rem;
}
.certificate-display .info {
	width: 36.5rem;
	line-height: 1.625;
}
.certificate-display .head {
	margin-bottom: 3rem;
	font-size: 2.4rem;
	font-weight: 400;
}

.hospital-swiper {
	overflow: hidden;
}
.hospital-swiper .swiper-wrapper {
    -webkit-transition-timing-function: linear!important;
    transition-timing-function: linear!important;
}
.hospital-swiper .swiper-slide {
	width: 50rem;
}
.hospital-swiper .img {
	overflow: hidden;
	border-radius: 1rem;
}
.hospital-swiper .tit {
	margin-top: 0.2rem;
	text-align: right;
	font-size: 1.5rem;
}

.equipment-display {
	padding: 0 0 6rem;
}
.equipment-display .display {
	display: flex;
	justify-content: space-between;
	margin-bottom: 5rem;
}
.equipment-display .display .img {
	overflow: hidden;
	width: calc(50% - 3.5rem);
	border-radius: 0.8rem;
}
.equipment-display .display .info {
	width: 50%;
}
.equipment-head {
	margin-bottom: 1.5rem;
	color: #2E4989;
	font-weight: 700;
	font-size: 2rem;
}
.equipment-head .pre {
	display: inline-block;
	margin-right: 1rem;
	padding: 0.2rem 1.1rem;
	background: #2E4989;
	border-radius: 1.5rem;
	color: #fff;
	font-size: 1.6rem;
}
.equipment-display .manufacturer {
	overflow: hidden;
	border: 1px solid #ddd;
	border-radius: 0.8rem;
}
.equipment-display .manufacturer + .manufacturer {
	margin-top: 3rem;
}
.equipment-display .manufacturer table {
	width: 100%;
}
.equipment-display .manufacturer tr + tr {
	border-top: 1px solid #ddd;
}
.equipment-display .manufacturer th {
	padding: 2rem 3rem;
	width: 21rem;
	background: #EEF2FD;
	text-align: left;
	font-weight: 400;
}
.equipment-display .manufacturer td {
	padding: 2rem 3rem;
	background: #fff;
	border-left: 1px solid #ddd;
}
.equipment-display .manufacturer .welfare li {
	display: flex;
}
.equipment-display .manufacturer .welfare .th {
	width: 11rem;
}
.equipment-display .manufacturer .welfare .td {
	width: calc(100% - 11rem);
}

/* vascular_access.html */
.vascular-access-wrap .title {
	margin-bottom: 10rem;
}

.js-toggle-target {
	cursor: pointer;
}
.js-toggle-box {
	display: none;
}

.for-shunt-operation {
	padding: 8rem 0 10rem;
}
.for-shunt-operation .list li + li {
	margin-top: 2rem;
}
.for-shunt-operation .head {
	position: relative;
	padding: 1.6rem 10rem 1.6rem 4rem;
	background: url(../img/vascular_access/btn_open.svg)no-repeat right 2rem center #2E4989;
	background-size: auto 2.5rem;
	border-radius: 1rem;
	letter-spacing: 0.1em;
	color: #fff;
	font-size: 2.2rem;
	font-weight: 700;
}
.for-shunt-operation .head.is-active {
	background-image: url(../img/vascular_access/btn_close.svg);
	background-size: auto 2.5rem;
	border-radius: 1rem 1rem 0 0;
}
.for-shunt-operation .operation-box {
	padding: 3rem 5rem;
	background: #fff;
	border-radius: 0 0 1rem 1rem;
	line-height: 1.75;
}
.for-shunt-operation .operation-box .img,
.for-shunt-operation .operation-box p {
	margin-bottom: 2rem;
}
.for-shunt-operation .operation-box p + .img {
	margin-top: 2rem;
}
.for-shunt-operation .operation-box h4 {
	margin-bottom: 1.6rem;
	font-weight: 700;
}
.for-shunt-operation .operation-box .part + .part {
	margin-top: 3rem;
}

/* medical personnel */
.medical-personnel-wrap .head-medium {
	font-weight: 400;
}
.medical-personnel-wrap .message-display {
	margin-bottom: 8rem;
}

.recruitment-points {
	padding: 4rem 0;
}

.recruitment-points-ctrl {
	display: flex;
	align-items: flex-end;
	gap: 0 1px;
	margin-bottom: 1rem;
	height: 8.5rem;
}
.recruitment-points-ctrl li {
	width: 100%;
}
.recruitment-points-ctrl a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 6.3rem;
	background: #CBD2E1;
	text-align: center;
	color: #8B92B4;
	font-size: 1.8rem;
}
.recruitment-points-ctrl li:first-child a {
	border-top-left-radius: 0.4rem;
}
.recruitment-points-ctrl li:last-child a {
	border-top-right-radius: 0.4rem;
}
.recruitment-points-ctrl a.is-active {
	height: 8.5rem;
	background: #2E4989;
	border-radius: 0.4rem 0.4rem 0 0;
	color: #fff;
}

.medical-personnel-form {
	padding: 0 0 7rem;
}
.medical-personnel-part {
	padding: 7.5rem 0;
}
.medical-personnel-part + .medical-personnel-part {
	border-top: 1px solid #ccc;
}

.contact-form {
	font-size: 1.4rem;
}
.contact-form .must {
	display: inline-block;
	padding: 0.4rem 0.8rem 0.5rem;
	background: #2E4989;
	border-radius: 2px;
	line-height: 1;
	color: #fff;
	font-size: 1.1rem;
}
.contact-form .sub {
	margin-bottom: 3.2rem;
}
.contact-form .sub .must {
	margin-right: 1rem;
}
.contact-form form table {
	width: 100%;
}
.contact-form form th {
	vertical-align: top;
	position: relative;
	padding: 2rem 6rem 2rem 0;
	width: 28.5rem;
	text-align: left;
	font-weight: 400;
}
.contact-form form td {
	padding: 0.8rem 0;
	width: ;
}
.contact-form form th .must {
	position: absolute;
	top: 2.2rem;
	right: 2rem;
}
.contact-form input[type=text],
.contact-form input[type=tel],
.contact-form input[type=email] {
	padding: 0 2.4rem;
	height: 4.8rem;
	width: 100%;
	background: #fff;
	border-radius: 0.8rem;
	border: 0;
}
.contact-form textarea {
	resize: none;
	padding: 1rem 2.4rem;
	width: 100%;
	height: 20rem;
	background: #fff;
	border-radius: 0.8rem;
	border: 0;
}
.contact-form .privacy-policy {
	margin-top: 5rem;
}
.contact-form .privacy-policy .scroll-bar {
	padding: 2rem 1rem 2rem 2rem;
	background: #EDF2FD;
}
.contact-form .agree {
	margin-top: 4.8rem;
	text-align: center;
}
.contact-form .agree label {
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	color: #000;
	font-size: 1.5rem;
}
.contact-form .agree input {
	margin: 0 0.8rem 0 0;
	width: 1.8rem;
	height: 1.8rem;
	border-radius: 0.4rem;
	border: 1px solid #ccc;
}
.contact-form .agree input:checked {
	background: url(../img/common/icon_checkbox_checked.svg)no-repeat center;
	background-size: 100%;
	border: 0;
}

.btn-teams {
	margin-top: 4.8rem;
	text-align: center;
}
.btn-teams input {
	justify-content: center;
	padding: 0 2rem;
	margin: 0 1rem;
	height: 6.4rem;
	width: 45%;
	max-width: 35.7rem;
	border-radius: 5rem;
	letter-spacing: 0.04em;
	font-weight: 700;
}
.btn-teams #submit {
	padding-right: 4.4rem;
	background: url(../img/common/icon_link.svg) no-repeat right 2rem center #fff;
	border-color: #131D4A;
}
.btn-teams #edit {
	background: #ccc;
	border-color: #ccc;
}

/* news.html */
#news .news-wrap {
	padding-top: 0;
}
#news .news-list li .dd {
    overflow: visible;
    white-space: wrap;
}

.wp-pagenavi {
	display: flex;
	justify-content: center;
	gap: 0 0.8rem;
	margin-top: 8rem;
}
.wp-pagenavi .pages {
	display: flex;
	align-items: center;
	gap: 0 0.8rem;
}
.wp-pagenavi a,
.wp-pagenavi span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4.4rem;
	height: 4.4rem;
	border-radius: 0.4rem;
	text-align: center;
	font-size: 1.4rem;
	background: #F3F4EC;
}
.wp-pagenavi .pages a {
	background: #F3F4EC;
}
.wp-pagenavi span {
	background: #2E4989;
	color: #fff;
	font-weight: 700;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
	background: no-repeat center;
	background-size: 1.6rem;
	font-size: 0;
} 
.wp-pagenavi .previouspostslink {
	background-image: url(../img/common/icon_prev.svg);
}
.wp-pagenavi .nextpostslink {
	background-image: url(../img/common/icon_next.svg);
}

.pagenavi-prevnext {
	position: relative;
	margin-top: 8rem;
	padding-top: 3rem;
	border-top: 1px solid #ccc;
	text-align: center;
}
.pagenavi-prevnext a {
	text-decoration: underline;
	font-size: 1.3rem;
}
.pagenavi-prevnext .prev,
.pagenavi-prevnext .next {
	position: absolute;
	top: 3rem;
}
.pagenavi-prevnext .prev {
	left: 0;
}
.pagenavi-prevnext .next {
	right: 0;
}
.pagenavi-prevnext .go-list {
	display: inline-block;
	padding-left: 2rem;
	background: url(../img/common/icon_reset.svg)no-repeat left center;
	background-size: 1.3rem;
}

.detail-style {
	padding: 0 0 10rem;
}
.detail-style .title {
	padding-bottom: 4rem;
	margin-bottom: 5rem;
	border-bottom: 1px solid #2E4989;
	line-height: 1.357;
}
.detail-style .title .date {
	margin-bottom: 0.8rem;
	font-size: 1.4rem;
}
.detail-style .title h2 {
	font-size: 2.8rem;
	font-weight: 400;
}
.detail-style .detail {
	line-height: 1.75;
}
.detail-style .detail p {
	margin-bottom: 3rem;
}


/*** hover ***/
@media screen and (min-width: 960px) {
	
	.news-list li a:hover:after {
		width: 100%;
	}
	
	.information-wrap .download .btns a:hover {
		background-color: #2E4989;
		background-image: url(../img/common/icon_download_wh.svg);
		color: #fff;
	}
	
	.btn-teams #submit:hover {
		background: url(../img/common/icon_link_wh.svg) no-repeat right 2rem center #131D4A;
	}
	.btn-teams #edit:hover {
		opacity: 0.7;
		color: #fff;
	}
	
	.wp-pagenavi a:hover {
		background-color: #2E4989;
		color: #fff;
		font-weight: 700;
	}
	.wp-pagenavi .previouspostslink:hover {
		background-image: url(../img/common/icon_prev_wh.svg);
	}
	.wp-pagenavi .nextpostslink:hover {
		background-image: url(../img/common/icon_next_wh.svg);
	}
	
	.pagenavi-prevnext a:hover {
		text-decoration: none;
	}
}

.wpcf7-spinner{
	position: relative;
	margin-top: 1rem;
	display: none;
}

.contact-wrap{
	padding: 12rem 0 12rem;
	text-align: center;
}


.anchor-wrap {
	position: relative;
}

.anchor-wrap .anchor {
	position: absolute;
	z-index: -1;
	top: -10rem;
}

.underline {
	text-decoration: underline;
}

/* 以下202506 */
.select-wrapper {
    margin-bottom: 1em;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.document-select {
	/* padding: 1.4rem 4rem 1.4rem 2.5rem; */
	padding: 2.0rem 4rem 2.0rem 2.5rem;
    font-size: 1.4rem;
    color: #444;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    color: #2E4989;
    font-family: YakuHanJP, "Noto Serif JP", serif;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../img/common/dl_arrow.svg);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
	width: 100%;
}

.document-select:focus {
    outline: none;
    border-color: #8282AD;
    box-shadow: 0 0 0 0.2rem rgba(130, 130, 173, 0.25); 
}

.download-button {
    background-color: #F29100;
    border: 1px solid #915700 !important;
    box-shadow: 0px 4px 11px 0px rgba(63, 62, 61, 0.40);
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1.6rem;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    display: none;
    width: 100%;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
	font-family: YakuHanJP, "Noto Serif JP", serif;
	letter-spacing: 1.6px;
	transition: all 0.5s;
}

.download-button:hover {
    background-color: white;
	color: #F29100;
	border: 1px solid #F29100 !important;
}


/* 2025-10-27 */
.keireki {
	padding-top: 3rem;
}
.keireki span {
	display: block;
}