@charset "utf-8";

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
Body
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
body {
	position: relative;
	overflow: hidden;
	font-size: 100%;
	font-feature-settings: "palt";
	word-wrap: break-word;
	-webkit-overflow-scrolling: touch;
	-webkit-text-size-adjust: none;
}
a {
	color: #000;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	opacity: 1;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
}
.sp, .nobr {
	display: none!important;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
Header
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
header {
	position: fixed;
    width: 100%;
	height: 120px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
		align-items: center;
    z-index: 10000;
}
body.home header {
	background: rgba(0,0,0,0.7);
}
header .header_bg {
	position: absolute;
	width: 100%;
	height: 120px;
    top: -120px;
    left: 0;
	display: block;
    background: rgba(255,255,255,1);
    transition: all 0.2s ease;
    opacity: 1;
}
body.home header .header_bg {
	display: none;
}
header .header_bg.appear {
    width: 100%;
    height: 120px;
    top: 0!important;
    transition: all 0.4s ease;
    opacity: 1;
}
header a.headerLogo {
	position: absolute;
    width: 30%;
	min-width: 360px;
    max-height: 50px;
	aspect-ratio: 12/1;
	top: 25px;
    left: 20px;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
    z-index: 20000;
    background: url("../images/logo.png") no-repeat left center;
    background-size: contain;
	transition: all 200ms;
}
@media screen and (max-width: 1500px) { header a.headerLogo {width: 25%;} }

header a.btnReserve {
	position: absolute;
    width: 120px;
    height: 140px;
    top: 0;
	right: 20px;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
        flex-wrap: wrap;
	padding-top: 50px;
	font-size: 1.4em;
	line-height: 1.2em;
	text-align: center;
	color: #fff;
	background: #2c3f6e;
	box-sizing: border-box;
}
header a.btnReserve::before {
	position: absolute;
	content: '';
	width: 44px;
	aspect-ratio: 1/1;
	top: 20px;
	background: url("../images/icon_reserve.svg") no-repeat center center;
	background-size: contain;
	filter: invert(100%) sepia(0%) saturate(715%) hue-rotate(101deg) brightness(113%) contrast(108%);
}
header a.btnReserve:hover {
	background: #2e74e5;
	transition: all 200ms;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【ヘッダー】グローバルナビ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.openMenu {
	position: absolute;
    width: calc(100% - 180px);
    max-width: 900px;
    height: 120px;
    top: 0;
    right: 160px;
    display: flex;
		justify-content: space-between;
		align-content: flex-end;
		align-items: flex-end;
	transition: all 200ms;
}
@media screen and (max-width: 1280px) {
.openMenu {
	max-width: inherit;
}
}
.btn_nav {
	display: none;
}
.open_nav,
.close_nav {
	display: none;
}
.sp_nav_wrap {
	width: 100%;
	display: block;
}
.sp_nav {
	position: relative;
	width: 100%;
	height: 120px;
	display: block;
}
.sp_nav ul.sp_nav_menu {
	position: absolute;
	width: 100%;
	height: 50px;
	bottom: 0;
    display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		/*flex-wrap: wrap;*/
    box-sizing: border-box;
}
.sp_nav ul.sp_nav_menu li {
	position: relative;
    width: auto;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
}
.sp_nav ul.sp_nav_menu li a {
	width: 100%;
    height: 50px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
    font-size: clamp(1.4em, 1vw, 1.4em);
    line-height: 1em;
    cursor: pointer;
    box-sizing: border-box;
}
.sp_nav ul.sp_nav_menu li a.arrow::after {
	content: '';
    width: 12px;
    height: 12px;
    display: inline-block;
    margin-left: 5px;
	background: url("../images/arrow.svg") no-repeat center center;
    background-size: contain;
	transform: rotate(90deg);
	filter: invert(16%) sepia(18%) saturate(6498%) hue-rotate(204deg) brightness(95%) contrast(96%);
}
.sp_nav ul.sp_nav_menu li a:hover {
	color: #2e74e5;
	transition: all 200ms;
}
.sp_nav ul.sp_nav_menu > li:hover #medicalMenu,
.sp_nav ul.sp_nav_menu > li:hover #trialMenu {
	opacity: 1;
	transform: translate(0, 0);
    transition: all 200ms;
}
.sp_nav ul.sp_nav_menu > li:hover #medicalMenu {
	width: 240px;
    height: 200px;
}
.sp_nav ul.sp_nav_menu > li:hover #trialMenu {
	width: 260px;
    height: 450px;
}
.sp_nav ul.sp_nav_menu li ul.pulldown {
	position: absolute;
    width: auto;
	height: 0;
	top: 50px;
    left: -5%;
	display: block;
	overflow: hidden;
	z-index: 1000;
	box-sizing: border-box;
	opacity: 0;
    transform: translate(0, 0);
    transition: all 300ms;
}
.sp_nav ul.sp_nav_menu li ul.pulldown li {
	width: 100%;
	height: 50px;
	display: block;
	box-sizing: border-box;
}
.sp_nav ul.sp_nav_menu li ul.pulldown li+li {
	border-top: solid 1px rgba(255,255,255,0.5);
}
.sp_nav ul.sp_nav_menu li ul.pulldown li a {
	width: 100%;
	height: 50px;
	display: flex;
		justify-content: flex-start;
		align-content:  center;
		align-items: center;
	padding: 0 10px;
	font-size: 1.2em;
	font-weight: normal;
	line-height: 1em;
	text-align: left;
    color: #fff;
	background: #2c3f6e;
	box-sizing: border-box;
}
.sp_nav ul.sp_nav_menu li ul.pulldown li a span {
	position: relative;
}
.sp_nav ul.sp_nav_menu li ul.pulldown li a::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: block;
	transform: scaleX(0);
	transform-origin: right;
	transition: all 0.3s ease;
	transition-property: transform;
	background: #2e74e5;
}
.sp_nav ul.sp_nav_menu li ul.pulldown li a:hover span {
	color: #fff;
	opacity: 1;
}
.sp_nav ul.sp_nav_menu li ul.pulldown li a:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}
.sp_nav ul.sp_nav_menu li ul.pulldown li a.linkout::after {
	position: absolute;
	content: '';
	width: 15px;
    height: 15px;
	right: 10px;
	display: block;
    background: url("../images/icon_linkout.svg") no-repeat center center;
	background-size: contain;
	filter: invert(100%) sepia(1%) saturate(3%) hue-rotate(345deg) brightness(103%) contrast(102%);
}

/*メニュー上部*/
.sp_nav ul.sp_nav_menu_sub {
	position: absolute;
	width: 100%;
	height: 20px;
	top: 30px;
	right: -20px;
    display: flex;
		justify-content: flex-end;
		align-content: center;
		align-items: center;
		/*flex-wrap: wrap;*/
    box-sizing: border-box;
}
.sp_nav ul.sp_nav_menu_sub li {
	width: auto;
	display: block;
	padding: 0 20px;
}
.sp_nav ul.sp_nav_menu_sub li a {
	width: 100%;
    height: 20px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	font-size: 1.2em;
    line-height: 1em;
}
.sp_nav ul.sp_nav_menu_sub li a::before {
	content: '●';
	display: inline;
	color: #2c3f6e;
}
.sp_nav ul.sp_nav_menu_sub li a:hover {
	color: #2e74e5;
	transition: all 200ms;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
Common
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
main {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
}
.wrap {
    position: relative;
	width: 100%;
	display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	padding: 60px 0;
}
.block {
    position: relative;
    width: 90%;
    max-width: 1400px;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
    margin: 0 auto;
	box-sizing: border-box;
}
.reverse {
	flex-direction: row-reverse;
}
.bgc_Blue {
	background: #2c3f6e;
}
.bgc_lightBlue {
	background: #dfe8ed;
}
.bgc_lightBeige {
	background: #f5e4cf;
}
.bgc_lightGray {
	background: #f7f7f7;
}

/*【共通】ページタイトル*/
.pageTitle {
    position: relative;
    width: 100%;
	height: 360px;
	display: flex;
		justify-content: flex-end;
        align-content: flex-end;
		align-items: flex-end;
		flex-wrap: wrap;
	background: #fff;
    box-sizing: border-box;
	/*box-shadow: 0 5px 20px rgba(0,0,0,0.2);*/
}
.pageTitle figure {
    position: absolute;
    width: 62.5%;
	height: 100%;
	top: 0;
	right: 0;
	display: flex;
		justify-content: flex-start;
        align-content: center;
		align-items: center;
	z-index: 1000;
}
.pageTitle figure img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: 0 50%;
}
.pageTitle section {
	width: 100%;
	height: 160px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
        align-items: center;
		flex-wrap: wrap;
	padding: 20px 0 20px 160px;
	background: #2c3f6e;
	box-sizing: border-box;
}
.pageTitle section::before {
	position: absolute;
	content: '';
	width: 100px;
	aspect-ratio: 1/1;
	left: 30px;
	display: block;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	filter: invert(94%) sepia(17%) saturate(99%) hue-rotate(166deg) brightness(95%) contrast(96%);
}
#about .pageTitle section::before {
	background-image: url("../images/icon_about.svg");
}
#medical .pageTitle section::before {
	background-image: url("../images/icon_medical.svg");
}
#trial .pageTitle section::before {
	background-image: url("../images/icon_trial.svg");
}
#effort .pageTitle section::before {
	background-image: url("../images/icon_effort.svg");
}
#industrial .pageTitle section::before {
	background-image: url("../images/icon_industrial.svg");
}
#access .pageTitle section::before {
	background-image: url("../images/icon_access.svg");
}
#company .pageTitle section::before {
	background-image: url("../images/icon_company.svg");
}
#news .pageTitle section::before {
	background-image: url("../images/icon_news.svg");
}
#policy .pageTitle section::before {
	background-image: url("../images/icon_policy.svg");
}
#sitemap .pageTitle section::before {
	background-image: url("../images/icon_sitemap.svg");
}
.pageTitle section h2 {
    width: 100%;
	display: flex;
		justify-content: flex-start;
        align-content: center;
        align-items: center;
		flex-wrap: wrap;
    font-size: clamp(2.8em, 2vw, 3.6em);
	font-weight: 700;
	line-height: 1.2em;
	font-feature-settings: "palt";
	color: #fff;
}
.pageTitle section h2.mci::after {
	content: '保険外診療';
	width: 110px;
	height: 34px;
	display: inline-block;
	margin-left: 10px;
	font-size: 1.1rem;
	line-height: 34px;
	text-align: center;
	color: #000;
	background: #f5e4cf;
	box-sizing: border-box;
}
.pageTitle section h2 span {
    width: 100%;
	display: block;
    font-size: 0.7em;
	font-weight: normal;
	line-height: 1.6em;
}
.pageTitle section .en {
    width: 100%;
	display: block;
	margin-top: 10px;
	font-family: "ador-hairline", sans-serif;
    font-size: clamp(1.2em, 1.4vw, 1.8em);
	font-weight: 300;
	line-height: 1em;
	color: #dfe8ed;
}


/*【共通】パンくずリスト*/
ul.topicpath {
    width: 100%;
	height: 60px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
        align-items: center;
	padding: 0 20px;
	background: #dfe8ed;
	box-sizing: border-box;
}
ul.topicpath li {
    width: auto;
    height: 20px;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
    padding: 0 20px;
    font-size: 1.2em;
	line-height: 1em;
}
ul.topicpath li+li {
    border-left: solid 1px rgba(0,0,0,0.5);
}
ul.topicpath li a {
    color: #549bef;
}
ul.topicpath li a:hover {
    text-decoration: underline;
    transition: all 200ms;
}

/*【共通】中タイトル*/
.midTitle {
	position: absolute;
	width: auto;
	min-width: 360px;
	top: 0;
	left: 0;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	padding: 0;
	color: #2c3f6e;
	box-sizing: border-box;
}
.midTitle::before {
	position: absolute;
	content: '';
	width: 5px;
	height: 100%;
	top: 0;
	left: 80px;
	display: block;
	background: #2c3f6e;
}
.midTitle h3 {
	width: calc(100% - 100px);
	height: 100px;
	display: flex;
		justify-content: flex-start;
		align-content: flex-end;
		align-items: flex-end;
	padding: 0 0 10px 100px;
    font-size: clamp(1.8em,1.4vw,2.4em);
	font-weight: bold;
	line-height: 1.2em;
	border-bottom: solid 1px #2c3f6e;
	box-sizing: border-box;
}
.midTitle span {
	position: relative;
	width: auto;
	display: flex;
		justify-content: flex-end;
		align-content: center;
		align-items: center;
	margin-left: 100px;
	padding: 10px 0;
    font-family: "ador-hairline", sans-serif;
	font-size: clamp(1.2em,1vw,2em);
	font-weight: 400;
	line-height: 1em;
	letter-spacing: 0.05em;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	box-sizing: border-box;
}


/*【共通】ボタンデザイン*/
.btnBlock {
	width: 100%;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
}
a.btn {
	position: relative;
	width: 300px;
    height: 70px;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
        flex-wrap: wrap;
	padding: 0 30px 0 10px;
	font-size: clamp(1.4em, 1.2vw, 1.6em);
	line-height: 1.2em;
	transition: 0.3s;
	color: #fff;
	border: solid 1px rgba(255,255,255,0.5);
	border-radius: 3px;
	background-color: #2c3f6e;
	box-sizing: border-box;
	box-shadow: 3px 3px 0 rgba(0,0,0,0.2);
}
a.btn.icon {
	padding: 0 20px 0 40px;
}
a.btn img {
	position: absolute;
	width: 40px;
    aspect-ratio: 1/1;
	left: 20px;
	display: block;
	filter: invert(100%) sepia(0%) saturate(715%) hue-rotate(101deg) brightness(113%) contrast(108%);
}
a.btn::after {
	position: absolute;
	content: '';
	width: 16px;
	aspect-ratio: 1/1;
	right: 20px;
	background: url("../images/arrow.svg") no-repeat center center;
	background-size: contain;
	filter: invert(100%) sepia(0%) saturate(715%) hue-rotate(101deg) brightness(113%) contrast(108%);
}
a.btn.pdf {
	padding: 0 10px 0 40px;
}
a.btn.pdf::after {
	width: 26px;
	right: inherit;
	left: 20px;
	background: url("../images/icon_pdf.svg") no-repeat center center;
	background-size: contain;
	filter: invert(100%) sepia(0%) saturate(715%) hue-rotate(101deg) brightness(113%) contrast(108%);
}
a.btn.linkout::after {
	width: 17px;
	background: url("../images/icon_linkout.svg") no-repeat center center;
	background-size: contain;
	filter: invert(16%) sepia(18%) saturate(6498%) hue-rotate(204deg) brightness(95%) contrast(96%);
}
a.btn span {
	position: relative;
}
a.btn::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: block;
	transform: scaleX(0);
	transform-origin: right;
	transition: all 0.3s ease;
	transition-property: transform;
	background: #549bef;
	box-sizing: border-box;
}
a.btn:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}

/*透明ボタン*/
a.btnTrans {
	position: absolute;
    width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: block;
	z-index: 1000;
	background: #fff;
	opacity: 0;
	transition: all 200ms;
}
a.btnTrans:hover {
	transition: all 200ms;
	opacity: 0.5;
}

/*テキストリンク（矢印）*/
a.linkArrow,
a.linkBack,
a.linkPDF,
a.linkOut {
	position: relative;
	width: auto;
	min-height: 30px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
		align-items: center;
	margin: 10px 0;
	padding-right: 35px;
	font-size: 1.4em;
	line-height: 1em;
	box-sizing: border-box;
}
a.linkArrow.w,
a.linkPDF.w,
a.linkOut.w {
	color: #fff;
}
a.linkOut {
	padding-right: 25px;
}
a.linkBack {
	padding-left: 40px;
}
a.linkArrow:hover,
a.linkBack:hover,
a.linkPDF:hover,
a.linkOut:hover {
	text-decoration: underline;
	color: #06c;
}
a.linkArrow::before,
a.linkArrow::after,
a.linkBack::before,
a.linkBack::after {
	position: absolute;
	content: '';
    width: 30px;
	aspect-ratio: 1/1;
    display: block;
}
a.linkArrow::before,
a.linkArrow::after {
	right: 0;
}
a.linkBack::before,
a.linkBack::after {
	left: 0;
}
a.linkArrow::before,
a.linkBack::before {
	border-radius: 15px;
	background: #2c3f6e;
}
a.linkArrow.w::before,
a.linkBack.w::before {
	background: #fff;
}
a.linkArrow::after,
a.linkBack::after {
	background: url("../images/arrow.svg") no-repeat center center;
	background-size: 12px 12px;
	filter: invert(100%) sepia(0%) saturate(2%) hue-rotate(171deg) brightness(104%) contrast(101%);
}
a.linkArrow.w::after,
a.linkBack.w::after {
	filter: invert(23%) sepia(15%) saturate(2005%) hue-rotate(185deg) brightness(99%) contrast(96%);
}
a.linkBack::after {
	transform: scaleX(-1);
}
a.linkPDF::after {
	content: '';
    width: 26px;
	aspect-ratio: 1/1;
	display: inline-block;
	margin-left: 5px;
	background: url("../images/icon_pdf.svg") no-repeat center center;
	background-size: contain;
	filter: invert(23%) sepia(15%) saturate(2005%) hue-rotate(185deg) brightness(99%) contrast(96%);
}
a.linkOut::after {
	content: '';
    width: 16px;
	aspect-ratio: 1/1;
    display: inline-block;
	margin-left: 5px;
	background: url("../images/icon_linkout.svg") no-repeat center center;
	background-size: contain;
	filter: invert(23%) sepia(15%) saturate(2005%) hue-rotate(185deg) brightness(99%) contrast(96%);
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【共通】コピー／テキスト
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.commonText {
	position: relative;
    width: 90%;
	max-width: 1400px;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 0 auto;
}
.commonText.narrow {
	width: 80%;
}
.commonText .copy {
	width: 100%;
    display: block;
	margin: 15px 0;
	font-family: "source-han-serif-japanese", "游明朝", "Yu Mincho", serif;
	font-size: clamp(2em, 2.4vw, 3.2em);
	font-weight: 500;
	letter-spacing: 0.1em;
	font-feature-settings: "palt";
}
.commonText.half .copy {
	text-align: left;
}
.commonText .read {
	width: 100%;
    display: block;
	font-size: 2em;
    line-height: 1.6em;
    text-align: justify;
}
.commonText .text {
	width: 100%;
    display: block;
	margin: 15px 0;
	font-size: 1.6em;
    line-height: 1.8em;
    text-align: justify;
}
.commonText .note {
    width: calc(100% - 1em);
	display: block;
	margin: 20px 0 0 auto;
    font-size: 1.4em;
	line-height: 1.6em;
}
.commonText .note::before {
    content: '※';
	display: inline-block;
    text-indent: -1em;
}
figure.commonPhoto {
	width: 46%;
	display: block;
	box-sizing: border-box;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【共通】注釈
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
ul.note,
ol.note {
	width: 100%;
	display: flex;
		justify-content: flex-start;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
	margin: 5px 0;
}
ol.note {
	counter-reset: note;
}
ul.note li,
ol.note li {
    display: list-item;
	margin: 5px 0 5px auto;
    font-size: 1.2em;
	line-height: 1.4em;
}
ul.note li {
    width: calc(100% - 1em);
}
ol.note li {
    width: calc(100% - 2em);
	list-style: none;
    counter-increment: note;
}
ul.note li::before {
    content: '※';
	display: inline-block;
    text-indent: -1em;
}
ol.note li::before {
    content: "※" counter(note);
	display: inline-block;
	text-indent: -2em;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【共通】看護師イラスト
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.nurse::after {
    position: absolute;
	content: '';
	aspect-ratio: 30/37;
	display: block;
	background: url("../images/illust_nurse.svg") no-repeat center top;
	background-size: contain;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】共通
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home {
	padding: 0;
}
#home .homeTitle {
	position: absolute;
	width: auto;
	top: 0;
	left: 0;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	padding: 0 80px;
	color: #2c3f6e;
	box-sizing: border-box;
}
#home .homeTitle span {
	position: relative;
	width: 60px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	padding: 80px 20px 100px;
    font-family: "ador-hairline", sans-serif;
	font-size: clamp(2.4em,2.4vw,4em);
	font-weight: 400;
	line-height: 1em;
	letter-spacing: 0.05em;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	border-left: solid 5px #2c3f6e;
}
#home .homeTrial .homeTitle span {
	font-size: clamp(2em,2vw,3em);
}
#home .homeTitle span::before {
	position: absolute;
	content: '';
	width: 60px;
	aspect-ratio: 1/1;
	bottom: 10px;
	left: 20px;
	display: block;
	background-size: contain;
	filter: invert(23%) sepia(15%) saturate(2005%) hue-rotate(185deg) brightness(99%) contrast(96%);
}
#home .homeMedical .homeTitle span::before {
	background: url("../images/icon_medical.svg") no-repeat center center;
}
#home .homeAbout .homeTitle span::before {
	background: url("../images/icon_about.svg") no-repeat center center;
}
#home .homeTrial .homeTitle span::before {
	background: url("../images/icon_trial.svg") no-repeat center center;
}
#home .homeTitle h2 {
	position: absolute;
	width: auto;
	min-width: 400px;
	bottom: 80px;
	left: -80px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	padding: 0 0 15px 270px;
    font-size: clamp(1.6em,1.3vw,2em);
	font-weight: bold;
	line-height: 1.2em;
	border-bottom: solid 1px #2c3f6e;
	box-sizing: border-box;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】メインビジュアル
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .mainVisual {
	position: relative;
	width: 100%;
	height: 100vh;
	max-height: 1080px;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
	z-index: 1000;
	background: url("../images/top/main_bg.webp") no-repeat left top;
	background-size: auto 100%;
    box-sizing: border-box;
}
#home .mainVisual img.image {
	width: auto;
    height: 100vh;
	max-height: 1080px;
	display: block;
	object-fit: contain;
	object-position: 60% 50%;
}
#home .mainVisual img.copy {
	position: absolute;
	width: 420px;
	top: 20%;
	left: 5%;
	display: block;
	filter: drop-shadow(0 0 10px rgba(0,0,0,0.3));
}
#home .mainVisual .access {
	position: absolute;
	width: 30%;
	max-width: 480px;
	height: 14.814%;
	bottom: 22.2%;
	left: 5%;
    display: flex;
		justify-content: flex-start;
        align-content: center;
        align-items: center;
}
#home .mainVisual .access p {
	font-family: "source-han-serif-japanese", "游明朝", "Yu Mincho", serif;
	font-size: clamp(2em, 2vw, 3.2em);
	font-weight: 400;
	line-height: 1.4em;
	letter-spacing: 0.05em;
	font-feature-settings: "palt";
	color: #fff;
}
#home .mainVisual .access p b {
	font-size: 1.4em;
	font-weight: 700;
}


/*-- 【Home】お知らせ --*/
#home .mainVisual_news {
    position: absolute;
	width: 25%;
	top: 40%;
	left: 5%;
	display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
}
#home .mainVisual_news h2 {
	width: 100%;
	display: block;
	margin-bottom: 20px;
    font: 400 2.8em/1em "ador-hairline", sans-serif;
    color: #2c3f6e
}
#home .mainVisual_news dl {
	width: 100%;
	display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	padding: 15px 0;
    box-sizing: border-box;
}
#home .mainVisual_news dl dt {
	position: relative;
    width: 100%;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	margin-bottom: 10px;
	font-size: 1.4em;
	line-height: 1.6em;
}
#home .mainVisual_news dl dd {
	width: 100%;
	display: block;
	font-size: 1.6em;
	line-height: 1.6em;
}
#home .mainVisual_news dl dd a:hover {
	text-decoration: underline;
    color: #06c;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】診療内容
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .homeMedical {
	position: relative;
	width: 100%;
	min-height: 1200px;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	padding: 80px 0;
    background: url("../images/top/medical_bg.webp") no-repeat center center;
	background-size: cover;
	box-sizing: border-box;
}
#home .homeMedical .inner {
	width: calc(100% - 300px);
	margin-left: auto;
}

/*診療カレンダー*/
.calendar {
	width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
}
.calendar h3 {
	width: 100%;
    display: table;
	margin-bottom: 10px;
	font-size: 1.8em;
	line-height: 1em;
	color: #2c3f6e;
}
.calendar table {
	width: 100%;
    display: table;
	margin-bottom: 20px;
	font-size: 1.6em;
	line-height: 1em;
	border-top: solid 1px #2c3f6e;
	border-left: solid 1px #2c3f6e;
}
.calendar table thead {
	font-weight: bold;
	color: #fff;
	background: #2c3f6e;
}
.calendar table thead td {
	padding: 15px 5px !important;
}
.calendar table th,
.calendar table td {
	display: table-cell;
	text-align: center;
	border-bottom: solid 1px #2c3f6e;
	border-right: solid 1px #2c3f6e;
}
.calendar table tbody th,
.calendar table tbody td {
	width: 16.666%;
}
.calendar table tbody th {
	padding: 15px 5px !important;
	background: rgba(223,232,237,0.5) !important;
}
.calendar table tbody td {
	padding: 30px 5px !important;
	font-size: 1.2em;
	line-height: 1.6em;
	background: #fff;
}
.calendar p {
	font-size: 1.4em;
	line-height: 1.2em;
}
.tel_resv {
	position: relative;
    width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	padding: 40px 0;
}
.tel_resv.center {
	justify-content: center;
}
.tel_resv .tel_resv_title {
	position: relative;
    width: 100%;
    display: block;
	margin: 10px 0;
	font-size: 1.8em;
	line-height: 1em;
	text-align: center;
	color: #2c3f6e;
}
.tel_resv.center .tel {
	width: auto;
}
.tel_resv .tel {
	width: 56%;
    display: block;
	padding-left: 60px;
	box-sizing: border-box;
}
.tel_resv .tel a {
	position: relative;
    width: calc(100% + 60px);
    display: block;
	margin-left: -50px;
	font-family: "ador-hairline", sans-serif;
	font-size: clamp(3.6em, 3.6vw, 4.6em);
	line-height: 1.2em;
	color: #2c3f6e;
}
.tel_resv .tel a:before {
	content: '';
    width: 40px;
	aspect-ratio: 1/1;
    display: inline-block;
	margin-right: 5px;
	background: url("../images/mark_phone.svg") no-repeat center center;
	background-size: contain;
}
.tel_resv .tel p {
	padding-left: 5em;
	font-size: 1.4em;
	line-height: 1.4em;
	box-sizing: border-box;
}
.tel_resv .tel p::before {
	content: '【電話受付】';
	margin-left: -5em;
}
.tel_resv a.btn {
	width: 44%;
	height: 90px;
	padding: 0 0 0 2%;
	font-size: clamp(1.4em, 1.4vw, 2em);
	box-sizing: border-box;
}
a.btn.reserve img {
	position: absolute;
	width: 40px;
	aspect-ratio: 1/1;
	display: block;
	left: 20px;
	filter: invert(100%) sepia(0%) saturate(715%) hue-rotate(101deg) brightness(113%) contrast(108%);
}
#home .homeMedical dl {
	position: relative;
    width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	padding-top: 40px;
	border-top: solid 10px rgba(255,255,255,1);
}
#home .homeMedical dl dt {
	width: 100%;
    display: block;
	font-family: "source-han-serif-japanese", "游明朝", "Yu Mincho", serif;
	font-size: clamp(2em, 2.4vw, 3.2em);
	font-weight: 500;
	letter-spacing: 0.1em;
	font-feature-settings: "palt";
}
#home .homeMedical dl dd {
	width: 100%;
    display: block;
	margin: 15px 0;
	font-size: 1.6em;
    line-height: 1.8em;
    text-align: justify;
}

/*診療メニュー・治験メニュー*/
ul.medicalMenu,
ul.trialMenu {
	position: relative;
    width: 101%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 0 -0.5%;
}
#home .homeMedical ul.medicalMenu::after {
	content: '';
    width: 32%;
}
ul.medicalMenu li,
ul.trialMenu li {
	position: relative;
    width: 24%;
    display: block;
	margin: 8px 0.5%;
}
#home .homeMedical ul.medicalMenu li {
	position: relative;
    width: 32%;
    display: block;
	margin: 8px 0;
}
@media screen and (max-width: 1280px) {
#home .homeMedical ul.medicalMenu li {
	width: 49%;
}
}
ul.medicalMenu li a,
ul.trialMenu li a {
	position: relative;
	width: 100%;
    height: 80px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
		align-items: center;
        flex-wrap: wrap;
	padding: 0 20px;
	font-size: clamp(1.6em, 1vw, 2em);
	font-weight: 400;
	line-height: 1.2em;
	font-feature-settings: "palt";
	border: solid 1px rgba(255,255,255,0.5);
	border-radius: 3px;
	background: #fff;
	box-sizing: border-box;
	box-shadow: 3px 3px 0 rgba(0,0,0,0.2);
}
ul.medicalMenu li:nth-of-type(1) a,
ul.trialMenu li:nth-of-type(1) a {
	background: #2c3f6e;
}
ul.medicalMenu li:nth-of-type(1) a span,
ul.trialMenu li:nth-of-type(1) a span {
	color: #fff;
}
ul.medicalMenu li:nth-of-type(1) a img,
ul.trialMenu li:nth-of-type(1) a img {
	width: 40px;
	display: inline-block;
	margin-right: 20px;
	filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
ul.medicalMenu li a::after,
ul.trialMenu li a::after {
	position: absolute;
	content: '';
	width: 16px;
	aspect-ratio: 1/1;
	right: 20px;
	display: block;
	background: url("../images/arrow.svg") no-repeat right center;
	background-size: contain;
	box-sizing: border-box;
	filter: invert(16%) sepia(18%) saturate(6498%) hue-rotate(204deg) brightness(95%) contrast(96%);
}
ul.medicalMenu li:nth-of-type(1) a::after,
ul.trialMenu li:nth-of-type(1) a::after {
	filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
ul.medicalMenu li a:hover::after,
ul.trialMenu li a:hover::after {
	filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
ul.medicalMenu li a span,
ul.trialMenu li a span {
	position: relative;
	display: flex;
		justify-content: flex-start;
        align-content: center;
		align-items: center;
}
ul.medicalMenu li:nth-of-type(n + 4) a span::before {
	content: '保険外診療';
	width: auto;
	height: 30px;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
	margin-right: 10px;
	padding: 0 10px;
	font-size: 0.9em;
	color: #000;
	background: #f5e4cf;
}
ul.medicalMenu li a:hover span,
ul.trialMenu li a:hover span {
	color: #fff;
}
ul.medicalMenu li a::before,
ul.trialMenu li a::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: block;
	transform: scaleX(0);
	transform-origin: right;
	transition: all 0.3s ease;
	transition-property: transform;
	background: #549bef;
	box-sizing: border-box;
}
ul.medicalMenu li a:hover::before,
ul.trialMenu li a:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}
ul.medicalMenu li:nth-of-type(n + 4) a:hover span::before {
	background: #fff;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】お知らせ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .homeNews {
	position: relative;
    width: calc(100% - 300px);
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin-left: auto;
}
#home .homeNews .newsBlock {
	width: 100% !important;
}
#home .homeNews_title {
	width: 280px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	box-sizing: border-box;
}
#home .homeNews_title h2 {
	width: 100%;
	display: block;
	font-size: 2.8em;
	line-height: 1.4em;
	color: #fff;
}
#home .homeNews_title h2::after {
	content: 'Information';
	width: 100%;
	display: block;
	margin-top: 10px;
	font: 200 0.7em/1em "ador-hairline", sans-serif;
	color: rgba(255,255,255,0.5);
}
#home .homeNews a.linkArrow {
	position: absolute;
    bottom: 0;
	left: -12em;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】クリニックのご案内／治験・食品試験
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .homeAbout,
#home .homeTrial {
	position: relative;
	width: 100%;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	padding: 60px 0 80px;
    background: url("../images/top/about_bg.webp") no-repeat right top;
	background-size: 50%;
	box-sizing: border-box;
}
#home .homeTrial {
	background: url("../images/top/trial_bg.webp") no-repeat right center;
	background-size: cover;
}
#home .homeAbout dl,
#home .homeTrial dl {
	position: relative;
    width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 40px 0;
	text-align: center;
}
#home .homeAbout dl dt,
#home .homeTrial dl dt {
	width: 100%;
    display: block;
	margin-bottom: 20px;
	font-family: "source-han-serif-japanese", "游明朝", "Yu Mincho", serif;
	font-size: clamp(2em, 2.4vw, 3.2em);
	font-weight: 500;
	letter-spacing: 0.1em;
	font-feature-settings: "palt";
}
#home .homeAbout dl dd,
#home .homeTrial dl dd {
	width: 100%;
    display: block;
	margin: 15px 0;
	font-size: 1.6em;
    line-height: 1.8em;
}

/*スライド*/
.slideBlock {
	position: relative;
    width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 40px 0 120px;
}
.slideBlock ul.slider {
    position: relative;
    width: 120%;
    display: block;
	margin: 0 -10%;
}
.slideBlock ul.slider li {
	width: auto;
	display: block;
    margin: 0 10px;
}
.slideBlock ul.slider li img {
    width: 100%;
	aspect-ratio: 3/2;
	display: block;
    object-fit: cover;
	object-position: 50% 50%;
}

/* Arrows */
.slideBlock .slick-prev,
.slideBlock .slick-next {
    position: absolute;
    width: 36px;
    height: 36px;
    bottom: -80px;
    display: block;
    z-index: 1000;
    padding: 0;
	margin: 0;
    font-size: 0;
    border: none;
    outline: none;
    cursor: pointer;
	background-color: transparent;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.slideBlock .slick-prev {
    left: 10%;
}
[dir="rtl"] .slick-prev {
    right: auto;
}
.slideBlock .slick-next {
    right: 10%;
}
[dir="rtl"] .slick-next {
    left: auto;
}
.slideBlock .slick-prev::before,
.slideBlock .slick-next::before {
    content: '';
	width: 40px;
    height: 40px;
	display: block;
	border: solid 1px #2c3f6e;
	border-radius: 20px;
    background: url("../images/arrow.svg") no-repeat center center;
    background-size: 20px 20px;
	box-sizing: border-box;
	filter: invert(13%) sepia(41%) saturate(1518%) hue-rotate(192deg) brightness(97%) contrast(91%);
}
.slideBlock .slick-prev::before {
    transform: scaleX(-1);
}
.slideBlock .slick-prev:hover,
.slideBlock .slick-next:hover {
    transition: all 200ms;
    opacity: 0.7;
}
.slideBlock .slick-prev:hover:before,
.slideBlock .slick-prev:focus:before,
.slideBlock .slick-next:hover:before,
.slideBlock .slick-next:focus:before {
    opacity: 1;
}
.slideBlock .slick-prev.slick-disabled:before,
.slideBlock .slick-next.slick-disabled:before {
    opacity: 0.25;
}
.slideBlock .slick-prev:before,
.slideBlock .slick-next:before {
    outline: none;
    font-family: "slick";
    font-size: 0;
    line-height: 1;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Dots */
.slideBlock .slick-dots {
    position: absolute;
	width: 100%;
	bottom: -50px;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
}
.slideBlock .slick-dots li {
    display: inline-block;
}
.slideBlock .slick-dots li button {
    position: relative;
	width: 50px;
	height: 3px;
	display: inline-block;
	font-size: 0;
    cursor: pointer;
    border: none;
    outline: none;
	opacity: 1;
}
.slideBlock .slick-dots li button:hover,
.slideBlock .slick-dots li button:focus {
    opacity: 1;
}
.slideBlock .slick-dots li button:hover:before {
    background: #2c3f6e;
	opacity: 1;
}
.slideBlock .slick-dots li button:before {
    position: absolute;
	content: '';
	width: 50px;
    height: 3px;
	top: 0;
    left: 0;
	background: #2c3f6e;
	opacity: 0.1;
}
.slideBlock .slick-dots li.slick-active button:before {
    opacity: 1;
}



/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
クリニックのご案内
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#about .wrap {
    
}
#about .doctor,
#about .overview {
    width: 80%;
	margin: 80px auto 20px;
}
#about .doctor+.doctor {
    padding: 80px 0;
	border-top: solid 10px #fff
}
#about .doctor figure {
	position: relative;
    width: 35%;
    display: block;
}
#about .doctor figure img {
	box-shadow: 10px 10px 0 #fff;
}
#about .doctor .textBlock {
    width: 60%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
}
#about .doctor .textBlock h4 {
	width: 100%;
    display: block;
	margin: 10px 0;
	font-size: 3.6em;
	font-weight: bold;
    line-height: 1.2em;
	color: #2c3f6e;
}
#about .doctor .textBlock h4 span {
	display: inline-block;
	margin-left: 20px;
	font-size: 0.6em;
	font-weight: normal;
}
#about .doctor .textBlock p {
	width: 100%;
    display: block;
	margin: 10px 0;
	font-size: 1.6em;
    line-height: 1.8em;
    text-align: justify;
}
#about .doctor .textBlock .box {
    width: 48%;
	display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	align-self: stretch;
	margin-top: 20px;
	font-size: 1.4em;
    line-height: 1.2em;
}
#about .doctor .textBlock .box h5 {
	width: 100%;
    display: block;
	margin-bottom: 10px;
	padding: 10px 0;
	font-size: 1.1em;
	font-weight: bold;
    line-height: 1.2em;
    color: #2c3f6e;
	border-bottom: solid 4px #2c3f6e;
}
#about .doctor .textBlock .box dl,
#about .doctor .textBlock .box ul {
    width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
}
#about .doctor .textBlock .box dl dt {
    width: 4.5em;
	display: inline-block;
	margin: 10px 0;
}
#about .doctor .textBlock .box dl dd {
    width: calc(100% - 4.5em);
	display: inline-block;
	margin: 10px 0;
}
#about .doctor .textBlock .box ul li {
    position: relative;
	width: 100%;
	display: block;
	margin-top: 10px;
	padding-left: 1em;
	box-sizing: border-box;
}
#about .doctor .textBlock .box ul li::before {
    position: absolute;
	content: '●';
	left: 0;
	display: inline-block;
	font-size: 0.8em;
	line-height: 1.8em;
	color: #2c3f6e;
}
#about .overview table,
#company .overview table {
    width: 70%;
	min-width: 800px;
	display: table;
	margin: 0 auto;
}
#about .overview table tr,
#company .overview table tr {
    border-top: solid 1px #ccc;
}
#about .overview table th,
#about .overview table td,
#company .overview table th,
#company .overview table td {
	display: table-cell;
	padding: 30px 10px;
	font-size: 1.6em;
    line-height: 1.6em;
	text-align: left;
	border-top: solid 1px #ccc;
}
#about .overview table th,
#company .overview table th {
    width: 200px;
	vertical-align: top;
}
#company .overview table td a.linkOut {
	width: fit-content;
	margin: 0;
	font-size: 1em;
	color: #06c;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
診療のご案内
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.medicalMenu_title,
.trialMenu_title {
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
	margin-bottom: 20px;
	font-size: 2.8em;
	line-height: 1.4em;
	text-align: center;
	color: #fff;
}
.medicalMenu_title span,
.trialMenu_title span {
	width: 100%;
	display: block;
	margin-top: 5px;
	font: 200 0.6em/1em "ador-hairline", sans-serif;
}
#medical .calendar {
    width: 60% !important;
	margin: 80px auto 20px;
}
#medical .calendar table {
	font-size: 1em;
	line-height: 1em;
}
#medical .calendar table tbody th {
	padding: 15px 5px;
	background: rgba(255,255,255,0.5);
}
#medical .calendar .tel_resv {
	max-width: 900px;
	margin: 0 auto;
}

/*診療内容*/
#medical .index {
    padding: 120px 0;
	background: url("../images/medical/bg.webp") no-repeat center bottom;
	background-size: 100%;
}
#medical .index .note {
    width: 100%;
	display: block;
	font-size: 1.4em;
	line-height: 1.2em;
	text-align: right;
}
#medical .index .block {
    width: 80%;
}
#medical .index .box {
    width: 48%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	align-self: stretch;
	margin: 40px 0;
}
#medical .index .box img {
    width: 40%;
	display: inline-block;
	box-shadow: 10px 10px 0 #fff;
}
#medical .index .box .rBox {
    width: 54%;
	display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	align-self: stretch;
}
#medical .index .box .rBox h4 {
	position: relative;
	width: 100%;
    display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	padding: 30px 0 20px;
	font-size: clamp(1.4em, 1.4vw, 2em);
	font-weight: bold;
    line-height: 1.2em;
    color: #2c3f6e;
}
#medical .index .box .rBox h4::before {
	position: absolute;
	content: '';
	width: 60px;
	top: 0;
	left: 0;
    display: block;
	border-top: solid 2px #2c3f6e;
}
#medical .index .box:nth-of-type(n + 4) .rBox h4::after {
	content: '保険外診療';
	width: auto;
	height: 30px;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
	margin-left: 10px;
	padding: 0 10px;
	font-size: 0.7em;
	font-weight: normal;
	color: #000;
	background: #f5e4cf;
}
#medical .index .box .rBox p {
    width: 100%;
	display: block;
	margin-bottom: 20px;
	font-size: 1.5em;
	line-height: 1.6em;
	text-align: justify;
}
#medical .index .box .rBox a.btn {
    width: 240px;
	margin-left: auto;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
診療のご案内【共通】パーツ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#medical .commonText,
#medical .block {
	width: 80%;
	margin: 20px auto;
}
#medical figure {
	display: block;
}
#medical .textBox {
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
}
#medical .textBox .copy {
	width: 100%;
    display: block;
	margin: 0 0 20px;
	font-family: "source-han-serif-japanese", "游明朝", "Yu Mincho", serif;
	font-size: clamp(2em, 2.4vw, 3.2em);
	font-weight: 500;
	line-height: 1.4em;
	letter-spacing: 0.1em;
	font-feature-settings: "palt";
}
#medical .textBox p {
	width: 100%;
    display: block;
	margin: 10px 0;
	font-size: 1.6em;
    line-height: 1.8em;
}
#medical .textBox p.read {
	font-size: clamp(2em, 1.6vw, 2.2em);
    line-height: 1.6em;
}
#medical .textBox .minTitle {
	width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	margin: 10px 0;
	padding: 10px 0;
	font-size: 1.6em;
	font-weight: bold;
    line-height: 1.2em;
    color: #2c3f6e;
	border-bottom: solid 2px #2c3f6e;
}
#medical .textBox .minTitle span {
	font-size: 0.8em;
	font-weight: normal;
	color: #000;
}
#medical .textBox ul {
    width: 100%;
	display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 10px 0;
	box-sizing: border-box;
}
#medical .textBox ul li {
	position: relative;
	width: 100%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
	margin: 7px 0;
	padding-left: 1.2em;
	font-size: 1.5em;
    line-height: 1.2em;
	box-sizing: border-box;
}
#medical .textBox ul li::before {
	position: absolute;
	content: '●';
	top: 0;
	left: 0;
    display: block;
	color: #2c3f6e;
}

/*table*/
#medical table {
	width: 100%;
	display: table;
	margin: 10px auto;
	border-top: solid 1px #2c3f6e;
	border-left: solid 1px #2c3f6e;
	background: #fff;
}
#medical table th,
#medical table td {
	display: table-cell;
	padding: 20px;
	font-size: 1.6em;
    line-height: 1.2em;
	border-right: solid 1px #2c3f6e;
	border-bottom: solid 1px #2c3f6e;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
診療のご案内【01】一般診療／アレルギー相談
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/

/*一般診療*/
#medical .general figure {
    width: 40%;
}
#medical .general .textBox {
    width: 56%;
}
#medical .general .textBox ul li {
	width: 33.333%;
}

/*アレルギー相談*/
#medical .allergy .block.nurse::after {
    width: 16%;
	bottom: -20px;
	right: -5%;
}
#medical .allergy .textBox {
    width: 48%;
	display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
}
#medical .allergy .textBox table th {
	width: 120px;
	color: #fff;
	background: rgba(44,63,110,0.7);
}
#medical .allergy p.comment {
	width: 100%;
	display: block;
	margin: 40px 0;
    font-size: clamp(2.8em,2vw,3.2em);
	font-weight: bold;
	line-height: 1.2em;
	text-align: center;
}
#medical .allergy p.comment span {
	width: auto;
	display: inline-block;
}
#medical .allergy p.comment span::after {
	content: '';
	width: calc(100% + 40px);
	height: 20px;
	display: block;
	z-index: -1;
	margin: -0.5em -20px 0;
	background: #fcee21;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
診療のご案内【02】健康診断／インボディ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/

/*健康診断実施項目表*/
#medical .checkup table.half {
	width: 49%;
	margin: 10px 0;
}
#medical .checkup table td {
	padding: 10px;
	line-height: 1.6em;
}
#medical .checkup table td span {
	font-size: 1.2em;
}
#medical .checkup h4 {
	width: 100%;
    display: block;
	margin-bottom: 10px;
	font-size: 1.8em;
    line-height: 1.2em;
}
#medical .checkup h4::first-letter {
	color: #2c3f6e;
}
#medical .checkup .note {
	width: auto;
	display: block;
	font-size: 1.2em;
    line-height: 1.2em;
	margin-left: auto;
}

/*thead*/
#medical .checkup table thead td:nth-of-type(1) {
	width: 55%;
	text-align: right;
}
#medical .checkup table thead td:nth-of-type(n+2) {
	text-align: center;
}
#medical .checkup table thead tr:nth-of-type(2) {
	background: rgba(223,232,237,0.7);
}
#medical .checkup table thead tr:nth-of-type(n+3) {
	color: #fff;
	background: rgba(44,63,110,0.9);
}

/*tbody*/
#medical .checkup table tbody tr:nth-of-type(even) {
	background: rgba(223,232,237,0.3);
}
#medical .checkup table tbody td:nth-of-type(n+3) {
	text-align: center;
	color: #2c3f6e;
}
#medical .checkup table tbody td:nth-of-type(2) {
	width: 35%;
}
#medical .checkup table.half tbody td:nth-of-type(2) {
	width: 30%;
	text-align: right;
}

/*健康診断の申込みについて*/
#medical .application .commonText {
	width: 80%;
	margin: 40px auto;
}
#medical .application .commonText .text+.text {
	margin-top: 40px;
}
#medical .application .block {
	width: 80%;
}
#medical .application .check_sheet {
    width: 80%;
	display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	padding: 20px 40px;
	border: solid 10px rgba(44,63,110,0.5);
	background: #fff;
	box-sizing: border-box;
}
#medical .application .check_sheet.nurse::after {
    width: 20%;
	top: -140px;
	right: -5%;
}
#medical .application .check_sheet dl {
	width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
	padding: 20px 0;
	font-size: 1.6em;
    line-height: 1.6em;
	box-sizing: border-box;
}
#medical .application .check_sheet dl+dl {
	border-top: dashed 1px #2c3f6e;
}
#medical .application .check_sheet dl dt {
	width: 240px;
    display: inline-block;
}
#medical .application .check_sheet dl dd {
	width: calc(100% - 260px);
    display: inline-block;
}
#medical .application .notice {
	margin: 0 auto;
	padding: 0 40px;
}
#medical .application .notice ul {
	width: 100%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 0 auto;
	padding: 20px 0;
	border-bottom: solid 1px #2c3f6e;
	box-sizing: border-box;
}
#medical .application .notice ul h4 {
	width: 100%;
    display: block;
	margin-bottom: 10px;
	font-size: 1.6em;
    line-height: 1.6em;
	box-sizing: border-box;
}
#medical .application .notice ul li {
	width: calc(100% - 1em);
    display: block;
	margin: 5px 0 5px 1em;
	font-size: 1.4em;
    line-height: 1.6em;
	text-indent: -1em;
}
#medical .application .btnBlock {
	margin: 30px 0;
}
#medical .application .btnBlock p {
	width: 100%;
	display: block;
	margin: 20px 0;
	font-size: 1.6em;
    line-height: 1.6em;
	text-align: center;
}
#medical .application .btnBlock a.btn {
	width: 480px;
	height: 90px;
	padding: 0 0 0 2%;
	font-size: clamp(1.4em, 1.4vw, 2em);
	cursor: pointer;
	box-sizing: border-box;
}
#medical .application .btnBlock a.btn::after {
	display: none;
}
#medical .application .btnBlock a.btn.mail img {
	position: absolute;
	width: 30px;
	aspect-ratio: 1/1;
	display: block;
	left: 20px;
	filter: invert(100%) sepia(0%) saturate(715%) hue-rotate(101deg) brightness(113%) contrast(108%);
}
/*
#medical .application .check_sheet .btnBlock button {
	width: auto;
	height: 50px;
	padding: 0 20px;
	font-size: 1.4em;
    line-height: 1em;
	cursor: pointer;
}
*/
#medical .inbody {
	width: 70%;
	margin: 40px auto;
	align-content: center;
	align-items: center;
	align-self: stretch;
}
#medical .inbody figure {
	width: 25%;
}
#medical .inbody dl {
    width: 75%;
	display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
}
#medical .inbody dl dt {
	width: 100%;
    display: block;
	font-size: 2.8em;
	font-weight: bold;
    line-height: 1.2em;
    color: #2c3f6e;
}
#medical .inbody dl dt span {
	font-size: 0.8em;
}
#medical .inbody dl dd {
	width: 100%;
    display: block;
	margin-top: 20px;
	font-size: 1.6em;
    line-height: 1.8em;
	text-align: justify;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
診療のご案内【03】医療美容
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#medical .placenta figure,
#medical .maintenance figure {
	width: 40%;
}
#medical .placenta .textBox,
#medical .maintenance .textBox {
    width: 56%;
}
#medical .placenta table {
	width: 80%;
	table-layout: fixed;/*セルの均等割り*/
}
#medical .placenta table th {
	background: rgba(223,232,237,0.3);
}
#medical .placenta table td {
	text-align: center;
}
#medical .placenta dl {
    width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	padding: 20px 0;
	font-size: 1.4em;
    line-height: 1.6em;
}
#medical .placenta dl+dl {
    border-top: solid 1px #ccc;
}
#medical .placenta dl dt {
	width: 120px;
    display: inline-block;
}
#medical .placenta dl dd {
	width: calc(100% - 120px);
    display: inline-block;
	text-align: justify;
}
#medical .maintenance table tr:nth-of-type(odd) {
	background: rgba(223,232,237,0.3);
}
#medical .maintenance table td:nth-of-type(2) {
	text-align: right;
}
#medical .maintenance .note {
	width: calc(100% - 1em);
	margin-left: auto;
	display: block;
	font-size: 1.4em;
    line-height: 1.4em;
	text-indent: -1em;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
診療のご案内【04】ワクチン接種
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#medical .vaccination figure {
	width: 40%;
}
#medical .vaccination .textBox {
    width: 56%;
}
#medical .vaccination .textBox ul li:nth-of-type(1),
#medical .vaccination .textBox ul li:nth-of-type(4),
#medical .vaccination .textBox ul li:nth-of-type(7) {
	width: 50%;
}
#medical .vaccination .textBox ul li:nth-of-type(2),
#medical .vaccination .textBox ul li:nth-of-type(3),
#medical .vaccination .textBox ul li:nth-of-type(5),
#medical .vaccination .textBox ul li:nth-of-type(6) {
	width: 25%;
}
#medical .vaccination .textBox dl {
    width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 20px 0;
	padding: 20px;
	font-size: 1.4em;
    line-height: 1.6em;
	border-radius: 10px;
	background: rgba(223,232,237,0.3);
	box-sizing: border-box;
}
#medical .vaccination .textBox dl dt {
	width: 100%;
    display: block;
	margin-bottom: 10px;
	font-size: 1.1em;
	font-weight: bold;
	color: #2c3f6e;
}
#medical .vaccination .textBox dl dd {
	width: 100%;
    display: block;
	text-align: justify;
}
#medical .vaccination .textBox .reserve,
#medical .handle .resBox .reserve {
	width: 100%;
	height: 50px;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	font-size: 1.4em;
	line-height: 1.4em;
	color: red;
}
#medical .handle .resBox .reserve {
	width: auto;
	margin: 0 2%;
}
#medical .vaccination .textBox .reserve::before,
#medical .handle .resBox .reserve::before {
	content: '完全予約制';
	width: 120px;
	height: 50px;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	margin-right: 10px;
	font-size: 1.1em;
	line-height: 1em;
	font-weight: bold;
	color: #fff;
	background: red;
}
#medical .vaccination .textBox .tel,
#medical .handle .resBox .tel {
	width: auto;
    display: block;
	margin: 0 auto;
	padding-left: 60px;
	box-sizing: border-box;
}
#medical .handle .resBox .tel {
	margin: 0 2%;
}
#medical .vaccination .textBox .tel a,
#medical .handle .resBox .tel a {
	position: relative;
    width: calc(100% + 60px);
    display: block;
	margin-left: -50px;
	font-family: "ador-hairline", sans-serif;
	font-size: clamp(3.6em, 3.6vw, 4.6em);
	line-height: 1.2em;
	color: #2c3f6e;
}
#medical .vaccination .textBox .tel a:before,
#medical .handle .resBox .tel a:before {
	content: '';
    width: 40px;
	aspect-ratio: 1/1;
    display: inline-block;
	margin-right: 5px;
	background: url("../images/mark_phone.svg") no-repeat center center;
	background-size: contain;
}
#medical .vaccination .textBox .tel p,
#medical .handle .resBox .tel p {
	padding-left: 5em;
	font-size: 1.4em;
	line-height: 1.4em;
	box-sizing: border-box;
}
#medical .vaccination .textBox .tel p::before,
#medical .handle .resBox .tel p::before {
	content: '【電話受付】';
	margin-left: -5em;
}
#medical .vaccination .step {
	position: relative;
	width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
	padding: 20px 5%;
	box-sizing: border-box;
}
#medical .vaccination .step h5 {
	position: absolute;
    width: 10%;
	aspect-ratio: 1/1;
	top: 0;
	left: 0;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	font-family: "ador-hairline", sans-serif;
	font-size: clamp(1.2em, 1.4vw, 1.6em);
	line-height: 1.2em;
	text-align: center;
	color: #fff;
	border-radius: 50%;
	background: #2c3f6e;
}
#medical .vaccination .step img {
	width: 30%;
    display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
}
#medical .vaccination .step .arrow {
  width: 24px;
  height: calc(tan(60deg) * 24px / 2);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: #2c3f6e;
  transform: rotate(90deg);
}

/*取扱いワクチン*/
#medical .handle {
    margin: 80px auto 40px;
}
#medical .handle .textBox {
    width: 48%;
}
#medical .handle table tr:nth-of-type(odd) {
	background: rgba(223,232,237,0.3);
}
#medical .handle table td:nth-of-type(2) {
	width: 120px;
	text-align: right;
}
#medical .handle .resBox {
	position: relative;
	width: 100%;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	margin: 40px 0 0;
	padding: 40px 10px;
	box-sizing: border-box;
	background: #fff;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
診療のご案内【05】禁煙外来／【06】AGA
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#medical .cessation,
#medical .aga {
	margin: 80px auto 20px;
}
#medical .cessation figure,
#medical .aga figure {
	width: 48%;
}
#medical .cessation .textBox,
#medical .aga .textBox {
	width: 48%;
}
#medical .flow_first {
    width: 70%;
}
#medical .flow_first dl {
    position: relative;
	width: 100%;
	display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin-bottom: 30px;
	padding: 30px 30px 30px 160px;
	box-sizing: border-box;
	background: #fff;
}
#medical .flow_first dl img {
    position: absolute;
	width: 120px;
	top: -20px;
	left: 20px;
	display: block;
}
#medical .flow_first dl dt {
	width: 100%;
    display: block;
	margin-bottom: 10px;
	font-size: clamp(2.4em, 2vw, 3.2em);
	font-weight: bold;
    line-height: 1.4em;
    color: #2c3f6e;
}
#medical .flow_first dl dt span {
	font-size: 0.8em;
	font-weight: normal;
}
#medical .flow_first dl dd {
	width: 100%;
    display: block;
	font-size: 1.6em;
    line-height: 1.8em;
}

/*保険適用の条件*/
#medical .coverage {
    position: relative;
	width: 80%;
	padding: 40px;
	border-radius: 20px;
	box-sizing: border-box;
	background: rgba(223,232,237,0.3);
}
#medical .coverage ul.coverage_list {
    width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin-bottom: 20px;
}
#medical .coverage ul.coverage_list li {
	position: relative;
	width: 49%;
	height: 80px;
    display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	margin: 10px 0;
	padding: 0 20px 0 60px;
	font-size: clamp(1.6em, 1.2vw, 2.4em);
	font-weight: bold;
    line-height: 1.2em;
	color: #2c3f6e;
	border: solid 1px #2c3f6e;
	border-radius: 40px;
	background: #fff;
	box-sizing: border-box;
}
#medical .coverage ul.coverage_list li sup {
	display: inline-block;
	margin-top: -1em;
	font-size: 0.7em;
}
#medical .coverage ul.coverage_list li::before {
	position: absolute;
	content: '';
	width: 24px;
	aspect-ratio: 1/1;
	left: 25px;
    display: block;
	background: url("../images/icon_check.svg") no-repeat center center;
	background-size: contain;
}
#medical .coverage ul.coverage_list .note {
    width: 100%;
	display: block;
	font-size: 1.2em;
    line-height: 1.2em;
}
#medical .coverage .read {
	position: relative;
	width: 100%;
    display: block;
	margin: 20px 0;
	font-size: clamp(1.6em, 1.6vw, 2.4em);
	font-weight: bold;
    line-height: 1.6em;
	text-align: center;
	color: #2c3f6e;
}
#medical .coverage .textBox {
	width: 70%;
	margin: 0 auto;
}
#medical .coverage p.comment,
#medical .schedule p.comment {
	width: 100%;
	display: block;
	margin: 20px auto;
    font-size: clamp(2.4em,1.6vw,2.8em);
	font-weight: bold;
	line-height: 1.2em;
	text-align: center;
}
#medical .coverage p.comment span,
#medical .schedule p.comment span {
	width: auto;
	display: inline-block;
}
#medical .coverage p.comment span::after,
#medical .schedule p.comment span::after {
	content: '';
	width: calc(100% + 40px);
	height: 20px;
	display: block;
	z-index: -1;
	margin: -0.5em -20px 0;
	background: #fcee21;
}
#medical .coverage.nurse::after {
    width: 20%;
	bottom: -40px;
	right: -5%;
}

/*禁煙治療のスケジュール*/
#medical .schedule .textBox {
    width: 32%;
	margin: 0;
}
#medical .schedule .textBox .cal {
    position: relative;
	width: 100%;
	display: block;
}
#medical .schedule .textBox:nth-of-type(3) .cal::after {
    position: absolute;
	content: '';
	width: 25%;
	aspect-ratio: 1/1;
	bottom: 10%;
	left: 50%;
	display: block;
	background: url("../images/medical/smoking-cessation/stamp.png") no-repeat center center;
	background-size: contain;
}
#medical .schedule .textBox img.stamp {
    position: absolute;
	width: 30%;
	bottom: 0;
	right: 0;
	display: block;
}
#medical .schedule .textBox ul {
    margin-bottom: 40px;
}
#medical .schedule .textBox ul li {
    position: relative;
	flex-wrap: wrap;
}
#medical .schedule .textBox ul li span {
    width: 100%;
	display: block;
	margin-top: 5px;
	font-size: 0.9em;
}
#medical .schedule::after {
    position: absolute;
	content: '';
	width: 16%;
	aspect-ratio: 280/370;
	bottom: -160px;
	right: -10%;
	display: block;
	z-index: 1000;
	background: url("../images/medical/smoking-cessation/illust.webp") no-repeat center center;
	background-size: contain;
}

/*禁煙治療のお薬*/
#medical .medication {
	width: 60%;
}
#medical .medication figure {
	width: 40%;
}
#medical .medication .textBox {
    width: 56%;
}
#medical .medication table {
	margin: 0;
}
#medical .medication table tr:nth-of-type(odd) {
	background: rgba(223,232,237,0.3);
}
#medical .medication table td:nth-of-type(2) {
	width: 160px;
	text-align: right;
}
#medical .medication p {
	font-size: 1.2em;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
診療のご案内【07】遺伝子検査
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
<a id="p01"></a>
#medical .down {
	margin-top: 20px;
}
#medical .down a.btn {
	margin: 0 1%;
}
#medical .down a.btn::after {
	transform: rotate(90deg);
}
#medical .kit {
	margin: 80px auto 0;
	background: #fff;
}
#medical .kit+.kit {
	margin: 40px auto 0;
}
#medical .kit .kit_name {
	position: relative;
	width: 100%;
	height: 100px;
    display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
	padding: 0 20px;
	background: #2c3f6e;
	box-sizing: border-box;
}
#medical .kit .kit_name h4 {
	width: auto;
	display: block;
	font-size: clamp(2em, 2.4vw, 3em);
	font-weight: bold;
    line-height: 1.6em;
	text-align: center;
	color: #fff;
}
#medical .kit .kit_name h4::after {
	content: '〈大阪大学医学部から誕生〉';
	display: inline-block;
	margin-left: 10px;
	font-size: 0.8em;
	font-weight: normal;
}
#medical .kit .kit_name span {
	width: auto;
	display: block;
	font-size: clamp(2em, 2.4vw, 3.2em);
	font-weight: bold;
    line-height: 1.6em;
	text-align: center;
	color: #d9e021;
}
#medical .kit .kit_name span::after {
	content: '円（税込）';
	display: inline-block;
	font-size: 0.6em;
	font-weight: normal;
}
#medical .kit figure {
	width: calc(50% - 60px);
	padding: 40px 40px 40px 20px;
}
#medical .kit .textBox {
	width: calc(50% - 60px);
	padding: 40px 20px 40px 40px;
}
#medical .kit .textBox table th {
	width: 120px;
	text-align: left;
	background: rgba(223,232,237,0.3);
}
#medical .telBox {
	justify-content: center;
	padding: 20px 0;
	border-top: solid 1px #2c3f6e;
}
#medical .telBox h5 {
	width: 100%;
	display: block;
	margin: 10px 0;
	font-size: 1.8em;
	line-height: 1.6em;
	text-align: center;
}
#medical .telBox .tel {
	width: auto;
    display: block;
	margin: 0 auto;
	padding-left: 60px;
	box-sizing: border-box;
}
#medical .telBox .tel a {
	position: relative;
    width: calc(100% + 60px);
    display: block;
	margin-left: -50px;
	font-family: "ador-hairline", sans-serif;
	font-size: clamp(3.6em, 3.6vw, 4.6em);
	line-height: 1.2em;
	color: #2c3f6e;
}
#medical .telBox .tel a:before {
	content: '';
    width: 40px;
	aspect-ratio: 1/1;
    display: inline-block;
	margin-right: 5px;
	background: url("../images/mark_phone.svg") no-repeat center center;
	background-size: contain;
}
#medical .telBox .tel p {
	padding-left: 5em;
	font-size: 1.4em;
	line-height: 1.4em;
	box-sizing: border-box;
}
#medical .telBox .tel p::before {
	content: '【電話受付】';
	margin-left: -5em;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
治験・食品試験
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/

/*【共通】お問い合わせ*/
#trial .commonContact {
	position: relative;
	width: 90%;
	max-width: 1400px;
	display: flex;
		justify-content: center;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
	margin: 0 auto;
	padding: 60px 0;
    box-sizing: border-box;
}
#trial .commonContact .title {
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
	font-size: 2.8em;
	line-height: 1.4em;
	text-align: center;
	color: #2c3f6e;
}
#trial .commonContact .title span {
	width: 100%;
	display: block;
	margin-top: 5px;
	font: 200 0.6em/1em "ador-hairline", sans-serif;
}
#trial .commonContact .text {
	width: 100%;
	display: block;
	margin: 30px 0;
	font-size: 2em;
	line-height: 1.4em;
	text-align: center;
}
#trial .commonContact .commonContact_block {
	position: relative;
    width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	padding: 30px 0;
	border-top: solid 1px #ccc
}
#trial .commonContact .commonContact_block .tel {
	width: 32%;
    display: block;
	padding-left: 60px;
	box-sizing: border-box;
}
#trial .commonContact .commonContact_block .tel a {
	position: relative;
    width: calc(100% + 50px);
    display: block;
	margin-left: -50px;
	font-family: "ador-hairline", sans-serif;
	font-size: clamp(2.8em, 3.2vw, 4.6em);
	line-height: 1.2em;
	color: #2c3f6e;
}
#trial .commonContact .commonContact_block .tel a:before {
	content: '';
    width: 40px;
	aspect-ratio: 1/1;
    display: inline-block;
	margin-right: 5px;
	background: url("../images/mark_phone.svg") no-repeat center center;
	background-size: contain;
}
#trial .commonContact .commonContact_block .tel p {
	font-size: 1.4em;
	line-height: 1.4em;
}
#trial .commonContact .commonContact_block a.btn {
	height: 90px;
	padding: 0 0 0 2%;
	font-size: clamp(1.4em, 1.4vw, 2em);
	box-sizing: border-box;
}
#trial .commonContact .commonContact_block a.btn.reserve {
	width: 26%;
}
#trial .commonContact .commonContact_block a.btn.mail {
	width: 36%;
}
#trial .commonContact .commonContact_block .mail_note {
	position: absolute;
	width: auto;
	bottom: 0;
	left: 35%;
	display: block;
	font-size: 1.2em;
	line-height: 1.2em;
}
#trial .commonContact .commonContact_block a.btn img {
	position: absolute;
	width: 40px;
	aspect-ratio: 1/1;
	display: block;
	left: 20px;
	filter: invert(100%) sepia(0%) saturate(715%) hue-rotate(101deg) brightness(113%) contrast(108%);
}
#trial .commonContact .commonContact_block a.btn.mail img {
	width: 28px;
	left: 20px;
}

/*インデックス*/
#trial .index {
    margin: 40px auto;
}
#trial .index .box {
    width: 30%;
	display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	align-self: stretch;
	text-align: center;
}
#trial .index .box img {
    width: 100%;
	display: block;
	margin-bottom: 20px;
	box-shadow: 10px 10px 0 #fff;
}
#trial .index .box h3 {
	position: relative;
	width: 100%;
    display: block;
	padding: 20px 0;
	font-size: clamp(1.4em, 1.4vw, 2em);
	font-weight: bold;
    line-height: 1.2em;
    color: #2c3f6e;
}
#trial .index .box h3::after {
	position: absolute;
	content: '';
	width: 60px;
	bottom: 0;
	left: calc(50% - 30px);
    display: block;
	border-top: solid 2px #2c3f6e;
}
#trial .index .box p {
    width: 100%;
	display: block;
	margin: 20px 0;
	font-size: 1.5em;
	line-height: 1.6em;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
治験・食品試験「01.治験・臨床試験」
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*治験・臨床試験の実績*/
#trial .result {
	width: 80%;
	align-content: flex-end;
	align-items: flex-end;
	margin: 40px auto;
}
#trial .result figure {
	position: relative;
    width: 35%;
    display: block;
	margin-left: auto;
}
#trial .result .textBox {
    width: 62%;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
}
#trial .result .textBox p {
	width: 100%;
    display: block;
	font-size: 1.6em;
    line-height: 2em;
}
#trial .result .textBox h4 {
	width: 100%;
    display: block;
	margin-bottom: 10px;
	padding: 10px 0;
	font-size: 1.6em;
	font-weight: bold;
    line-height: 1.2em;
    color: #2c3f6e;
	border-bottom: solid 4px #2c3f6e;
}
#trial .result .textBox ul {
    width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 10px 0;
	padding-left: 2%;
	box-sizing: border-box;
}
#trial .result .textBox ul li {
	position: relative;
	width: 49%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
	margin: 7px 0;
	padding-left: 1.2em;
	font-size: 1.5em;
    line-height: 1.2em;
	box-sizing: border-box;
}
#trial .result .textBox ul li::before {
	position: absolute;
	content: '●';
	top: 0;
	left: 0;
    display: block;
	color: #2c3f6e;
}
#trial .graf {
    width: 80%;
	justify-content: center;
	align-content: center;
		align-items: center;
	padding: 60px 0;
}
#trial .graf h5 {
	position: absolute;
	width: auto;
	height: 40px;
	top: 0;
	left: 0;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	padding: 0 20px;
	font-size: 1.5em;
	font-weight: bold;
    line-height: 1em;
    color: #fff;
	border-radius: 20px;
	background: #2c3f6e;
}
#trial .graf img {
    width: 30%;
	display: block;
	margin: 0 5%;
}

/*臨床試験の症例*/
#trial .case {
    width: 80%;
	justify-content: space-between;
	padding-top: 40px;
}
#trial .case .box {
    width: 32%;
	display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	align-self: stretch;
	margin: 40px 0;
	padding-bottom: 30px;
	border-radius: 10px;
	background: #fff;
}
#trial .case .box h4 {
	position: relative;
	width: 100%;
	height: 70px;
    display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
	padding: 0 15px;
	font-size: clamp(1.4em, 1.4vw, 2em);
	font-weight: bold;
    line-height: 1.2em;
    color: #fff;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	background: #2c3f6e;
}
#trial .case .box h4 span {
	position: relative;
	width: auto;
	height: 40px;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	padding: 0 10px;
	font-size: 0.7em;
	font-weight: normal;
    line-height: 1em;
	border: solid 1px #fff;
}
#trial .case .box h5 {
	position: relative;
	width: 90%;
    display: block;
	margin: 0 auto;
	padding: 30px 20px;
	font-size: clamp(1.6em, 1.8vw, 2.4em);
	font-weight: bold;
    line-height: 1.2em;
	text-align: center;
    color: #2c3f6e;
	border-bottom: solid 1px #2c3f6e;
	box-sizing: border-box;
}
#trial .case .box .content {
    width: 90%;
	display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 0 auto;
	padding: 20px 10px;
	font-size: 1.4em;
	line-height: 1.8em;
	box-sizing: border-box;
}
#trial .case .box a.btn {
	color: #2c3f6e;
	border: solid 1px #2c3f6e;
	background-color: #f2f7f9;
}
#trial .case .box a.btn.pdf::after {
	width: 26px;
	right: inherit;
	left: 20px;
	background: url("../images/icon_pdf.svg") no-repeat center center;
	background-size: contain;
	filter: invert(23%) sepia(15%) saturate(2005%) hue-rotate(185deg) brightness(99%) contrast(96%);
}

/*試験の流れ*/
#trial .flow {
    width: 80%;
	justify-content: space-between;
	padding: 40px 0;
}
#trial .flow p {
	position: relative;
	width: 100%;
    display: block;
	margin: 30px 0;
	font-size: 1.6em;
    line-height: 1.8em;
	text-align: center;
}
#trial .flow ul {
    width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		/*flex-wrap: wrap;*/
	background: #fff;
}
#trial .flow ul li {
    width: 10%;
	display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	align-self: stretch;
	padding: 5px 10px;
	border-radius: 10px;
	color: #2c3f6e;
	background: #dfe8ed;
	box-sizing: border-box;
}
#trial .flow ul li span {
	width: 80%;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	padding: 15px 0;
    font-family: "ador-hairline", sans-serif;
	font-size: clamp(1.8em,1.6vw,2.4em);
	font-weight: 400;
	line-height: 1em;
	letter-spacing: 0.05em;
	text-align: center;
	border-bottom: solid 1px #2c3f6e;
	box-sizing: border-box;
}
#trial .flow ul li span::before {
	content: 'Step';
	width: 100%;
	display: block;
    font-size: 0.5em;
}
#trial .flow ul li h4 {
    width: 100%;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	padding: 15px 0;
	font-size: clamp(1.2em,1.2vw,2em);
	font-weight: 700;
	line-height: 1.4em;
	letter-spacing: 0.05em;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	border-radius: 10px;
	background: #dfe8ed;
}
#trial .flow ul .arrow {
  width: 24px;
  height: calc(tan(60deg) * 24px / 2);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: #2c3f6e;
  transform: rotate(90deg);
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
治験・食品試験「02.IRB」
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#trial table.irb {
	width: 100%;
	max-width: 1200px;
	display: table;
	margin: 20px auto;
	border-top: solid 1px #2c3f6e;
	border-left: solid 1px #2c3f6e;
}
#trial table.irb th,
#trial table.irb td {
	display: table-cell;
	padding: 20px;
	font-size: 1.6em;
    line-height: 1.2em;
	border-right: solid 1px #2c3f6e;
	border-bottom: solid 1px #2c3f6e;
}
#trial table.irb th {
	width: 120px;
	background: #dfe8ed;
}
#trial .download {
	width: 60%;
	margin: 40px auto;
}
#trial .download .box {
    width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 20px 0;
}
#trial .download .box h4 {
	width: 100%;
    display: block;
	margin-bottom: 20px;
	padding: 10px 0;
	font-size: 1.8em;
    line-height: 1.2em;
	border-bottom: solid 1px #2c3f6e;
}
#trial .download .box h4::before {
	content: '●';
    color: #2c3f6e;
}
#trial .download .box a.btn {
	width: 48%;
	height: 90px;
    text-align: center;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
治験・食品試験「03.治験・食品試験ボランティア会」
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#trial .commonText .attention {
    position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 20px 0 40px;
	padding: 40px;
	text-align: center;
	border-radius: 20px;
	background: rgba(223,232,237,0.3);
}
#trial .commonText .attention.nurse::after {
    width: 20%;
	bottom: -40px;
	right: -2%;
}
#trial .commonText .attention h3 {
	width: 100%;
	display: block;
	margin-bottom: 20px;
    font-size: clamp(1.8em,1.6vw,2.4em);
	font-weight: bold;
	line-height: 1.2em;
	color: #2c3f6e;
	box-sizing: border-box;
}
#trial .commonText .attention p {
	width: 100%;
	display: block;
	margin: 15px 0;
    font-size: clamp(2.4em,1.6vw,2.8em);
	font-weight: bold;
	line-height: 1.2em;
}
#trial .commonText .attention p span {
	width: auto;
	display: inline-block;
}
#trial .commonText .attention p span::after {
	content: '';
	width: calc(100% + 40px);
	height: 20px;
	display: block;
	z-index: -1;
	margin: -0.5em -20px 0;
	background: #fcee21;
}

/*現在募集中の試験*/
#trial .list {
    width: 76%;
}
#trial .list ul {
    width: 100%;
	display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 80px 0 40px;
	border-top: solid 1px #2c3f6e;
}
#trial .list ul li {
    position: relative;
	width: 100%;
	display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	padding: 30px 200px 30px 120px;
	border-bottom: solid 1px #2c3f6e;
	box-sizing: border-box;
}
#trial .list ul li::before {
    position: absolute;
	width: 100px;
	height: 36px;
	top: 30px;
	left: 0;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	font-size: 1.4em;
    line-height: 1em;
	box-sizing: border-box;
}
#trial .list ul li.now::before {
    content: '募集中';
	border: solid 1px #333;
	background: #fff;
}
#trial .list ul li.done::before {
    content: '募集終了';
	color: #fff;
	border: solid 1px #fff;
	background: red;
}
#trial .list ul li h4 {
	width: 100%;
    display: block;
	font-size: 2.4em;
	font-weight: bold;
    line-height: 1.2em;
}
#trial .list ul li p {
	width: 100%;
    display: block;
	margin-top: 10px;
	font-size: 1.6em;
    line-height: 1.2em;
}
#trial .list ul li .new  {
    position: absolute;
	width: 60px;
	height: 24px;
	top: 75px;
	left: 20px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	font-size: 1.2em;
    line-height: 1em;
	border: solid 1px #333;
	background: #fcee21;
	box-sizing: border-box;
}
#trial .list ul li a.btn {
    position: absolute;
	width: 180px;
	height: 60px;
	top: 30px;
	right: 0;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
クリニックの取り組み
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#effort .bg {
	background: url("../images/effort/bg.webp") no-repeat center bottom #dfe8ed;
	background-size: 100%;
}
#effort .policy {
	width: 70%;
	margin: 80px auto !important;
}
#effort .policy hr {
	background: #2c3f6e !important;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
産業医
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#industrial .description {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
}
#industrial .description figure {
	position: relative;
    width: 35%;
    display: block;
	margin-left: auto;
}
#industrial .description figure img {
	width: 100%;
	min-height: 540px;
    display: block;
	object-fit: cover;
	object-position: 50% 50%;
}
#industrial .description .block {
	position: absolute;
	width: 76%;
}
#industrial .description .textBox {
    width: 65%;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	align-self: stretch;
	padding-top: 120px;
}
#industrial .description .textBox p {
	width: 100%;
    display: block;
	font-size: 1.6em;
    line-height: 2em;
}
#industrial .description .textBox ul {
    width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 20px 0;
	padding-left: 2%;
	box-sizing: border-box;
}
#industrial .description .textBox ul li {
	position: relative;
	width: 49%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
	margin: 15px 0;
	padding-left: 30px;
	font-size: 1.6em;
    line-height: 1.2em;
	box-sizing: border-box;
}
#industrial .description .textBox ul li::before {
	position: absolute;
	content: '';
	width: 24px;
	aspect-ratio: 1/1;
	top: 0;
	left: 0;
    display: block;
	background: url("../images/icon_check.svg") no-repeat center center;
	background-size: contain;
	filter: invert(13%) sepia(41%) saturate(1518%) hue-rotate(192deg) brightness(97%) contrast(91%);
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
交通アクセス
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#access .block {
	margin: 20px auto;
}
#access .block figure {
	position: relative;
    width: 48%;
    display: block;
}
#access .block .textBox {
    width: 48%;
	display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	align-self: stretch;
}
#access .block .textBox address {
	width: 100%;
    display: block;
	font-size: 1.6em;
    line-height: 2em;
}
#access .block .textBox address span {
	display: block;
	font-size: 1.3em;
}
#access .block .textBox ul {
    width: 100%;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	margin: 20px 0;
}
#access .block .textBox ul li {
	width: 100%;
    display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	margin: 15px 0;
	font-size: 1.6em;
    line-height: 1.2em;
}
#access .block .textBox ul li::before {
	content: '';
	width: 30px;
	aspect-ratio: 1/1;
    display: inline-block;
	margin-right: 10px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}
#access .block .textBox ul li:nth-of-type(1):before {
	background-image: url("../images/access/icon_train.svg");
}
#access .block .textBox ul li:nth-of-type(2):before {
	background-image: url("../images/access/icon_bus.svg");
}
#access iframe.googlemap {
	width: 100%;
	height: 640px;
    display: block;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
法人のご案内
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#company .greeting {
    width: 80%;
	margin: 100px auto 20px;
}
#company .greeting figure {
	position: relative;
    width: 48%;
    display: block;
}
#company .greeting figure figcaption {
	width: 100%;
    display: block;
	margin-top: 10px;
	font-size: 1.6em;
    line-height: 1.2em;
    text-align: right;
}
#company .greeting .textBox {
    width: 48%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
}
#company .greeting .textBox p {
	width: 100%;
    display: block;
	font-size: 1.6em;
    line-height: 1.8em;
    text-align: justify;
}
#company .greeting .textBox p+p {
	margin-top: 20px;
}
#company .overview {
    margin: 60px auto 40px;
}
#company .overview img {
	margin: 20px auto;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
ニュース
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*-- 一覧 --*/
.newsBlock {
    width: 90%;
	max-width: 1400px;
	min-height: 200px;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 0 auto;
}
.newsBlock dl.list {
	width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	padding: 10px 0;
    box-sizing: border-box;
}
#news .newsBlock dl.list {
	padding: 30px 0;
	border-bottom: solid 1px #ccc;
}
.newsBlock dl.list dt {
	width: 320px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	font-size: 1.4em;
	line-height: 1.6em;
	color: #666;
}
.homeNews .newsBlock dl.list dt {
	color: #fff;
}
.newsCatg {
	position: relative;
	width: 140px;
	height: 40px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	margin-right: 20px;
	border: solid 1px rgba(0,0,0,0.5);
	box-sizing: border-box;
}
.homeNews .newsCatg {
	border: solid 1px rgba(255,255,255,0.5);
}
.newsCatg::before {
	content: '';
	font-size: 1em;
}
.homeNews .newsCatg::before {
	color: #fff;
}
.newsCatg::after {
	position: absolute;
	content: '';
	width: 4px;
	height: 20px;
	top: -7px;
	left: 10px;
	border: solid 2px #fff;
}
.mainVisual_news .newsCatg::after {
	border: none;
}
.homeNews .newsCatg::after {
	border: solid 2px #2c3f6e;
}

/*お知らせ*/
.newsCatg.info::before {content: 'お知らせ';}
.newsCatg.info::after {background: #29abe2;}

/*休診・代診*/
.newsCatg.close::before {content: '休診・代診';}
.newsCatg.close::after {background: #f7931e;}

/*治験関連*/
.newsCatg.trial::before {content: '治験関連';}
.newsCatg.trial::after {background: #8cc63f;}

/*ワクチン関連*/
.newsCatg.vaccine::before {content: 'ワクチン関連';}
.newsCatg.vaccine::after {background: #ed1e79;}

/*トピックス*/
.newsCatg.topics::before {content: 'トピックス';}
.newsCatg.topics::after {background: #fcee21;}

.newsBlock dl.list dd {
	width: calc(100% - 320px);
	display: inline-block;
	padding: 5px 0;
	font-size: 1.6em;
	line-height: 1.6em;
}
#home .newsBlock dl.list dd a {
	color: #fff;
}
.newsBlock dl.list dd a:hover {
	text-decoration: underline;
    color: #2e74e5;
}
#home .newsBlock dl.list dd a:hover {
	text-decoration: underline;
    color: #fff;
}

.wp-pagenavi {
	width: 100%;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	margin: 40px auto;
	text-align: center;
	font-size: 1.4em;
	line-height: 1em;
}
.wp-pagenavi a,
.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.prevpostslink {
	min-width: 40px;
    height: 40px;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
    margin: 0 5px;
	text-decoration: none;
    border: none;
    background: #f5f5f5;
    box-sizing: border-box;
}
.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.prevpostslink {
	border: none;
}
.wp-pagenavi a:hover {
	border-color: #2c3f6e;
}
.wp-pagenavi a,
.wp-pagenavi span {
    border: none;
	box-sizing: border-box;
}
.wp-pagenavi a.page,
.wp-pagenavi span.pages {
    border: none;
}
.wp-pagenavi span.current {
	width: 40px;
    height: 40px;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
    margin: 0 5px;
	font-weight: bold;
	color: #FFF;
	border: none;
	background: #2c3f6e;
    box-sizing: border-box;
}
.wp-pagenavi span.extend {
	padding: 5px 10px;
    border: none;
}
.wp-pagenavi .first,
.wp-pagenavi .last {
	width: 60px;
    height: 40px;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
    margin: 0 5px;
	font-size: 0.9em;
	color: #2c3f6e;
	border: solid 1px #2c3f6e;
	background: #fff;
    box-sizing: border-box;
}

/*-- News（詳細ページ） --*/
#news .date {
	width: 100%;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	margin: 20px auto;
	font-size: 1.4em;
	line-height: 1em;
	color: #999;
}
#news h3.articleTitle {
	width: 100%;
	float: both;
	margin: 0 auto;
	padding-bottom: 30px;
	font-size: 2em;
	line-height: 1.2em;
	border-bottom: solid 1px #CCC;
}
#news .content {
	width: 100%;
    display: block;
	padding: 20px 0;
    font-size: 1.4em;
	line-height: 1.8em;
}
#news .content p {
	width: 100%;
    display: block;
    padding: 10px 0;
	font-size: 1em;
}
#news .content a {
	text-decoration: underline;
	color: #00a971;
}
#news .content .aligncenter {
	display: block;
    margin-left: auto;
    margin-right: auto;
}
.pageNavi {
	position: relative;
	width: 100%;
    min-height: 60px;
	display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		/*flex-wrap: wrap;*/
    margin: 0 auto;
	border-top: solid 1px #CCC;
}
.pageNavi .prev,
.pageNavi .next {
	width: 45%;
	display: block;
}
.pageNavi .prev a,
.pageNavi .next a {
	height: 60px;
    display: flex;
		align-content: center;
		align-items: center;
    font-size: 1.2em;
	line-height: 1.2em;
	text-decoration: none;
    box-sizing: border-box;
}
.pageNavi .prev a {
	justify-content: flex-start;
}
.pageNavi .prev a::before {
	content: '';
	width: 10px;
	height: 10px;
	margin-right: 5px;
	background: url("../images/arrow.svg") no-repeat center center;
	background-size: contain;
	transform: rotate(180deg);
}
.pageNavi .next a {
	justify-content: flex-end;
}
.pageNavi .next a::after {
	content: '';
	width: 10px;
	height: 10px;
	margin-left: 5px;
	background: url("../images/arrow.svg") no-repeat center center;
	background-size: contain;
}
.pageNavi a.btnList {
	position: absolute;
    width: 10%;
    left: calc(50% - 5%);
	display: block;
}
.pageNavi a.btnList span {
	width: 90%;
	max-width: 30px;
	height: 1px;
	display: block;
	margin: 7px auto;
	background: #000;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
サイトポリシー／個人情報保護方針
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#policy .block {
	margin: 40px auto;
}
#policy .block .box {
	width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: stretch;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 0 auto;
	padding: 20px 0;
}
#policy .block hr {
	width: 100%;
	height: 1px;
	border: none;
	background: #ddd;
}
#policy .block .date {
	width: auto;
	display: block;
    margin-left: auto;
	font-size: 1.2em;
	line-height: 1.6em;
	margin-bottom: 20px;
	text-align: right;
}
#policy .block .text {
	width: 100%;
	display: block;
	font-size: 1.6em;
	line-height: 1.8em;
	text-align: justify;
}
#policy .block .subject {
	width: 100%;
	display: block;
	margin-bottom: 15px;
	font-size: 1.7em;
	font-weight: bold;
	line-height: 1em;
	color: #2c3f6e;
}
#policy .block h4 {
	width: 100%;
	display: block;
	margin: 15px 0;
	font-size: 1.6em;
	font-weight: bold;
	line-height: 1em;
}
#policy .block .text a {
	color: #06C;
	text-decoration: underline;
}
#policy .block dl {
	width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 10px 0;
}
#policy .block dl dt {
	width: 25px;
	display: inline-block;
	font-size: 1.5em;
	line-height: 1.6em;
}
#policy .block dl dd {
	width: calc(100% - 25px);
	display: inline-block;
	font-size: 1.4em;
	line-height: 1.6em;
}
#policy .block ul {
	width: calc(100% - 25px);
	display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 15px 0 0 auto;
}
#policy .block ul li {
	width: 100%;
	margin-bottom: 10px;
	font-size: 1.5em;
	line-height: 1.6em;
    box-sizing: border-box;
}
#policy .block ul.number li {
	padding-left: 1.5em;
    text-indent: -1em;
}
#policy .block ul.disc li {
	text-indent: inherit;
    list-style-position: outside;
	list-style-type: disc;
}
#policy .block ol {
	width: 80%;
	display: block;
	margin: 0 auto;
}
#policy .block ol li {
	width: 100%;
	margin: 30px 0;
	font-size: 1.4em;
	line-height: 1.6em;
	list-style: decimal outside;
}
#policy .block .contact {
	width: 100%;
	display: block;
	margin: 0 auto 20px;
	font-size: 1.6em;
	line-height: 1em;
	text-align: center;
}
#policy .block address {
	width: 100%;
    display: block;
	margin: 20px auto;
	font-size: 1.6em;
	line-height: 1.4em;
	text-align: center;
}
#policy .block address strong {
	width: 100%;
    display: block;
    margin-bottom: 10px;
	font-size: 1.2em;
	line-height: 1.2em;
	text-align: center;
}
#policy .block .tel {
	width: 100%;
	display: block;
	margin-top: 20px;
	font-size: 2em;
	line-height: 1.4em;
	text-align: center;
}
#policy .block .tel span {
	font-size: 1.6em;
}
#policy .block .tel span.small {
	font-size: 0.6em;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
サイトマップ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#sitemap .block {
	margin: 40px auto;
	padding-bottom: 40px;
	border-bottom: solid 10px #eee;
}
#sitemap ul.list {
	width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 0 auto;
}
#sitemap ul.list li {
	width: 100%;
	display: block;
    align-self: stretch;
    border-bottom: solid 1px #DDD;
}
#sitemap ul.list li:nth-last-of-type(-n+2) {
	border-bottom: none;
}
#sitemap ul.list li a,
#sitemap ul.list li p {
	width: 100%;
	display: block;
	padding: 40px 0;
	font-size: 1.6em;
	line-height: 1em;
}
#sitemap ul.list li p {
	padding: 40px 10px;
}
#sitemap ul.list li a::before {
	content: '';
	width: 10px;
	height: 10px;
	display: inline-block;
	margin-right: 5px;
	background: url("../images/arrow.svg") no-repeat center center;
	background-size: contain;
	filter: invert(16%) sepia(30%) saturate(7313%) hue-rotate(211deg) brightness(96%) contrast(91%);
}
#sitemap ul.list li a:hover {
    transition: all 200ms;
    opacity: 0.5;
}
#sitemap ul.list li.half {
	width: 49%;
}
#sitemap ul.listS {
	width: calc(100% - 20px);
	display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	margin: 0 0 10px 20px;
}
#sitemap ul.listS li {
	width: 25%;
    display: block;
	margin-bottom: 30px;
	border: none;
}
#sitemap ul.list li.half ul.listS li {
	width: 100%;
}
#sitemap ul.listS li a {
	width: 100%;
	display: block;
	padding: 5px 0 5px 30px;
	font-size: 1.5em;
	line-height: 1.2em;
    box-sizing: border-box;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【共通】コンテンツメニュー
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
ul.contenstMenu {
	position: relative;
	width: 90%;
	max-width: 1400px;
    display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	margin: 0 auto;
	box-sizing: border-box;
}
ul.contenstMenu li {
	width: 24%;
    display: inline-block;
}
ul.contenstMenu li a.btn {
	width: 100%;
	height: 80px;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【共通】お問い合わせ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.commonContact {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
	margin: 0 auto;
	padding: 60px 0 20px;
    box-sizing: border-box;
}
.commonContact .block {
	max-width: 1080px;
}
#news .commonContact,
#policy .commonContact,
#sitemap .commonContact {
	background: #f9f9f9;
}
.commonContact .title {
	width: 100%;
	display: flex;
		justify-content: center;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
	font-size: 2.8em;
	line-height: 1.4em;
	text-align: center;
	color: #2c3f6e;
}
.commonContact .title span {
	width: 100%;
	display: block;
	margin-top: 5px;
	font: 200 0.6em/1em "ador-hairline", sans-serif;
}
.commonContact .tel_resv {
	margin: 20px 0;
	padding: 20px;
	border-top: solid 1px #ccc
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
Footer
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
footer {
	position: relative;
    width: 100%;
	min-height: 640px;
	display: flex;
		justify-content: center;
		align-content: space-between;
		align-items: center;
        flex-wrap: wrap;
	padding: 60px 0;
	background: url("../images/footer_bg.webp") no-repeat center bottom;
    background-size: cover;
    box-sizing: border-box;
}
footer #page-top {
	position: fixed;
	width: 60px;
	right: 20px;
	bottom: 0;
	z-index: 30000;
    border-radius: 30px;
	background: #2c3f6e;
}
footer .block {
	min-height: 640px;
	display: flex;
		justify-content: space-between;
		align-content: space-between;
		align-items: space-between;
        flex-wrap: wrap;
}
footer .info {
	position: relative;
    width: 100%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 40px 0;
	box-sizing: border-box;
}
footer .info a.logo {
    width: 40%;
	display: block;
}
footer .info address {
	width: 100%;
    display: block;
	margin: 40px 0 20px;
	font-size: 1.6em;
    line-height: 1.8em;
}
footer .info address b {
	width: 100%;
    display: block;
	margin-bottom: 10px;
	font-size: 1.1em;
    line-height: 1.2em;
}
footer .instagram {
	width: 500px;
	display: block;
	background: #fff;
}
footer .instagram a:hover {
	transition: all 200ms;
	opacity: 0.5;
}
footer .bottom {
	width: 100%;
    display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
}
footer .bottom ul {
	width: 100%;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
		/*flex-wrap: wrap;*/
	margin: 40px 0;
}
footer .bottom ul li {
	display: block;
	padding-right: 20px;
	font-size: 1.2em;
	line-height: 1em;
}
footer .bottom ul li+li {
	padding-left: 20px;
	border-left: solid 1px rgba(0,0,0,0.5);
}
footer .bottom ul li a {
	
}
footer .bottom ul li a:hover {
	text-decoration: underline;
    color: #698fbc;
}
footer .bottom .copyright {
	width: auto;
    display: inline-block;
	font: 300 1.2em/1em "avenir-lt-pro", sans-serif;
}