@charset"utf-8";
/*CSSDocument*/
/*
ThemeName: Arkhe-child
Template: arkhe
*/


 /*====================================================================================
■基本設定
====================================================================================*/

:root {
	font-size: 62.5%;
	--main-color: #790000;
	--link-color: #009399;
	--hover-color: #A04B4B;
	--txt-hover-color: #4CB3B7;
	--bg-color: #FAFAFA;
    --font-serif: YakuHanJP_Narrow, "Noto Serif JP", serif;
	--transition: .25s;
}
* {
	min-height: 0vw;
	box-sizing: border-box;
}
*, *::before, *::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	font-family: YakuHanJP_Narrow, "Noto Sans JP", sans-serif;
	font-size: 1.6rem; 
	line-height: 1.75;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
@media (max-width: 767px) {
	body {
		font-size: 1.4rem;
	}
}


 /*====================================================================================
■全体共通
====================================================================================*/

img {
	max-width: 100%;
	height: auto;
}
table {
	border-collapse: collapse;
}
a {
	text-decoration: none;
	transition: var(--transition);
}
a:hover {
	color: var(--hover-color);
}
a img {
	transition: var(--transition);
}
a img:hover {
	opacity: .8;
}     

/* PC非表示 */
@media (min-width: 768px) {
	.hide-pc {
		display: none !important;
	}
}

/* スマートフォン非表示 */ 
@media (max-width: 767px) {
	.hide-sp {
		display: none !important;
	}
}


 /*====================================================================================
■ヘッダー
====================================================================================*/

/* ヘッダー全体 */
#header > .l-container {
	max-width: 100%;
	padding-top: 48px;
    padding-bottom: 8px;
}
@media (max-width: 1349px) {
	#header > .l-container {
		padding-top: 8px;
		padding-right: 6vw;
	}
}
@media (max-width: 999px) {
	#header > .l-container {
		padding-right: 2vw;
	}
}
@media (max-width: 1349px) {
	[data-btns=rr-rl] .l-header__body {
		grid-template-columns: auto 25% 75% min-content min-content !important;
	}
}
@media (max-width: 999px) {
	[data-btns=rr-rl] .l-header__body {
		grid-template-columns: 0 auto 0 0 40px !important;
	}
}
.l-header {
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .15);
}
.l-header__center {
    padding: 8px 0 16px 0;
}
@media (max-width: 999px) {
	.l-header__center {
		padding: 0;
	}
}
.l-header__right {
    margin: 0 0 16px 0;
}

/* キャッチコピー */
.head-copy {
	position: absolute;
	top: 1em;
	left: var(--ark-padding--container);;
	margin: 0 0 16px 0;
	color: #989898;
	font-size: clamp(1.2rem, 1.166vw, 1.4rem);
}
@media (max-width: 1349px) {
	.head-copy {
		top: 50%;
		left: calc(48px + 25%);
		transform: translateY(-50%);
	}
}
@media (max-width: 999px) {
	.head-copy {
		top: .75em;
		left: 2vw;
		transform: translateY(0);
	}
}
@media (max-width: 767px) {
	.head-copy {
		display: none;
	}
}

/* ロゴ */
.l-header__logo {
    justify-content: left;
}
@media (max-width: 999px) {
	.l-header__logo {
		padding: .65em 0 0 0;
	}
}
@media (max-width: 767px) {
	.l-header__logo {
		padding: 0;
	}
}

/* お問い合わせボタン */
.head-contact {
	position: fixed;
	display: flex;
	justify-content: flex-end;
    width: 100%;
    top: 0;
    right: 0;
	color: #fff;
	font-family: var(--font-serif);
	z-index: 99;
}
@media (max-width: 1349px) {
	.head-contact {
		display: none;
	}
}
.head-tel-link,
.head-mail-link {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: .5em 2em;
	color: #fff;
	font-weight: bold;
}
.head-tel-link {
	background: var(--link-color);
}
.head-tel-link:hover {
	color: #fff;
	background: var(--txt-hover-color);
}
.head-tel-link::before {
	width: 16px;
	height: 21px;
	content: "";
	background: url("img/common/tel.svg") no-repeat;
}
.head-mail-link {
	background: var(--main-color);
}
.head-mail-link:hover {
	color: #fff;
	background: var(--hover-color);
}
.head-mail-link::before {
	width: 21px;
	height: 17px;
	content: "";
	background: url("img/common/mail.svg") no-repeat;
}

/* グローバルナビゲーション */
@media (max-width: 999px) {
	.header-nav {
		display: none;
	}
}
[data-drawer=opened] .header-nav {
	display: none;
}
@media (max-width: 1349px) {
	.c-gnavWrap {
		display: none;
	}
}
.c-gnav__li > .c-gnav__a {
    justify-content: flex-end;
    padding: 16px 1.2vw;
}
.c-gnav__a {
    font-size: clamp(1.4rem, 1.333vw, 1.6rem);
	font-weight: 500;
}
.c-gnav .__mainText,
.c-gnav .__subText {
    line-height: 1.5;
}

/* サブナビゲーション */
.c-gnav .sub-menu .c-gnav__a {
	padding: 1em;
	font-size: clamp(1.4rem, 1.333vw, 1.6rem);
}

/* ハンバーガーメニュー */
@media (max-width: 1349px) {
    [data-has-drawer=sp] .l-header__drawerBtn {
        display: inherit;
    }
}

/* ドロワーメニュー */
.p-drawer {
	background: var(--link-color);
	font-size: 1.6rem;
}
.c-submenuToggleBtn {
	width: 2rem;
	height: 2rem;
}
.c-submenuToggleBtn:after {
    box-shadow: inset 0 0 0 1px #fff;
    opacity: 0.7;
}
.c-drawerNav {
    border-top: none;
    border-bottom: none;
}
.c-drawerNav__a {
    display: flex;
    align-items: center;
    gap: .5em;
    border-bottom: 0.5px solid #fff;
}
.c-drawerNav__a:hover {
	color: #fff;
}
.c-drawerNav .menu-item {
	border-bottom: none;
}
.c-drawerNav .menu-item::marker {
    color: #fff;
}
.c-drawerNav .sub-menu {
	border-top: none;
	list-style: disc;
}
.c-drawerNav .sub-menu.is-opened {
	padding: .75em 0 .75em 1.75em;
}
.c-drawerNav .sub-menu .menu-item {
	border-bottom: none;
}
.c-drawerNav .is-opened.sub-menu .menu-item:last-child {
    margin: 0 0 var(--ark-nav-padding--Y, .75rem) 0 !important;
}
.c-drawerNav .sub-menu .c-drawerNav__a {
	display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: .75em;
	padding: .75rem 0;
	border-bottom: none;
}
.c-drawerNav .sub-menu .c-drawerNav__a::before {
	display: none;
}
.c-drawerNav .sub-menu .is-pdf a::after {
	margin-left: 0;
}
.p-drawer__search {
	margin: 2em 0;
	border: 1px solid #fff;
}
.p-drawer__search .c-searchForm__s {
	width: 100%;
}
.p-drawer__body input {
	border-radius: 0;
}


 /*====================================================================================
■フッター
====================================================================================*/

/* お問い合わせ */
.cta-foot {
	padding: 88px 0;
	background: url("img/common/cta-foot-bg.jpg") no-repeat;
	background-size: cover;
}
@media (max-width: 767px) {
	.cta-foot {
		padding: 12% 0;
	}
}
.cta-foot-inner {
	display: flex;
	justify-content: space-between;
	width: min(1000px, 90%);
	max-width: calc(var(--ark-width--container) + var(--ark-padding--container) * 2);
    padding-left: var(--ark-padding--container);
    padding-right: var(--ark-padding--container);
	margin: 0 auto;
	padding: 48px 0;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .15);
}
@media (max-width: 767px) {
	.cta-foot-inner {
		flex-wrap: wrap;
		gap: 2em;
		padding: 7%;
	}
}
.cta-foot-tel,
.cta-foot-mail {
	display: flex;
	flex-wrap: wrap;
	width: 50%;
	padding: 0 72px;
}
@media (max-width: 999px) {
	.cta-foot-tel {
		padding: 0 2.5% 0 5%;
	}
	.cta-foot-mail {
		padding: 0 5% 0 2.5%;
	}
}
@media (max-width: 767px) {
	.cta-foot-tel,
	.cta-foot-mail {
		width: 100%;
		padding: 0;
	}
}
.cta-foot-tel {
	justify-content: flex-start;
}
.cta-foot-mail {
	justify-content: center;
	text-align: center;
}
@media (max-width: 999px) {
	.cta-foot-mail {
		text-align: left;
	}
}
.cta-foot-ti {
	width: 100%;
	font-size: clamp(1.6rem, 1.666vw, 2rem);
	font-weight: bold;
	font-family: var(--font-serif);
	letter-spacing: 0.1em;
}
.cta-foot-num {
	width: 100%;
	font-size: clamp(2.6rem, 3vw, 3.6rem);
	font-weight: bold;
	font-family: var(--font-serif);
}
@media (max-width: 999px) {
	.cta-foot-num {
		margin: 0 0 .25em 0;
	}
}
.cta-foot-num-link {
	color: var(--main-color);
}
.cta-foot-num-link::before {
	display: inline-block;
    width: 25px;
	height: 32px;
	margin: 0 .25em 0 0;
	background: url("img/common/tel-fill.svg") no-repeat;
	background-size: contain;
	vertical-align: bottom;
    transform: translateY(-50%);
	content: "";
}
@media (max-width: 999px) {
	.cta-foot-num-link::before {
		width: 16px;
		height: 21px;
	}
}
.cta-foot-num-sub {
	font-size: clamp(1.2rem, 1.5vw, 1.8rem);
}
.cta-foot-dat {
	display: grid;
    grid-template-columns: 3.5em auto;
	gap: .25em 0;
	width: 100%;
	margin: .25em 0 0 0;
	font-weight: 500;
	line-height: 1.5;
}
.cta-foot-dat dt {
	width: auto !important;
}
.cta-foot-dat dd {
	width: auto !important;
}
.btn-cta-foot {
	width: min(344px, 100%) !important;
}
.btn-cta-foot-link {
	margin: 24px 0 0 0 !important;
}
@media (max-width: 999px) {
	.btn-cta-foot-link {
		width: 100% !important;
		margin: 5% 0 0 0 !important;
		line-height: 1.5;
	}
}
.btn-cta-foot-link::before {
	position: absolute;
    top: 50%;
    left: 32px;
    width: 27px;
	height: 21px;
	background: url("img/common/mail.svg") no-repeat;
	background-size: contain;
    transform: translateY(-50%);
	content: "";
}
@media (max-width: 999px) {
	.btn-cta-foot-link::before {
		left: 24px;
	}
}
@media (min-width: 375px) {
	.btn-cta-foot-block {
		display: none;
	}
}

/* フッター全体 */
.l-footer {
    padding: 48px 0 16px 0;
    border-top: 3px solid var(--main-color);
}
@media (max-width: 999px) {
	.l-footer {
		padding: 5% 0 0 0;
	}
}

/* フッター上部 */
.foot-profile {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	gap: .75em 2em;
}

/* フッターロゴ */
.foot-logo {
	width: min(280px, 60%);
}

/* 電話番号 */
.foot-tel-link {
	color: var(--ark-color--link) !important;
}
.foot-tel-link:hover {
	color: var(--hover-color) !important;
}

/* サイトマップ */
.l-footer__foot {
    padding-top: 40px;
}
@media (max-width: 999px) {
	.l-footer__foot {
		padding-top: 7%;
	}
}
.l-footer__foot .l-container .u-flex--c {
	justify-content: flex-start;
	align-items: flex-start;
	gap: 56px;
}
@media (max-width: 999px) {
	.l-footer__foot .l-container .u-flex--c {
		display: grid;
		flex-wrap: wrap;
		gap: 2em 1em;
		grid-template-columns: 1fr 1fr;
		margin: 0 0 10% 0;
	}
}
.l-footer__nav a {
    display: flex;
    align-items: center;
    gap: .5em;
    padding: 0;
}
.l-footer__nav > .menu-item {
	color: var(--main-color);
	font-weight: 500;
}
@media (max-width: 999px) {
	.l-footer__nav > .menu-item {
		width: 100%;
	}
}
.l-footer__nav > .menu-item a {
	font-size: clamp(1.6rem, 1.5vw, 1.8rem);
}
.l-footer__nav .sub-menu {
    display: inherit;
	margin: .75em 0 0 1.25em;
	list-style: disc;
	color: #000;
	font-weight: normal;
}
.l-footer__nav .sub-menu a {
	font-size: clamp(1.4rem, 1.333vw, 1.6rem);
}

/* サイトマップ - 三保の森クリニック */
@media (min-width: 1000px) {
	.facility-mihomori .l-footer__foot .l-container .u-flex--c {
		gap: 56px 1.5%;
	}
	.facility-mihomori .l-footer__nav > .menu-item {
		width: 15%;
	}
	.facility-mihomori .l-footer__nav > .menu-item:nth-child(5) {
		width: 34%;
	}
	.facility-mihomori .l-footer__nav > .menu-item:nth-child(5) .sub-menu {
		display: inline-grid;
		column-gap: 2em;
		grid-auto-flow: column;
		grid-template-rows: repeat(5, auto);
	}
}

/* 赤枝会グループバナー */
.foot-bn {
	display: flex;
	justify-content: flex-end;
	width: 100%;
	margin: 24px 0 0 0;
}
.foot-bn-link {
	position: relative;
	display: flex;
    justify-content: flex-end;
	width: 600px;
	height: 152px;
	border: 1px solid var(--main-color);
	background-image: url("img/common/bn-akaeda-group.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top left;
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .15);
}
@media (max-width: 999px) {
	.foot-bn-link {
		width: 100%;
		height: auto;
		background-position: top center;
	}
}
.foot-bn-link::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: -1;
}
.foot-bn-link::after {
	position: absolute;
	top: 50%;
    right: 16px;
	transform: translate(0, -50%);
	color: var(--main-color);
	font-size: 2rem;
	font-family: FontAwesome;
	content: "\f105";
	transition: var(--transition);
}
@media (max-width: 999px) {
	.foot-bn-link::after {
		top: 85%;
	}
}
.foot-bn-link:hover::after {
	color: var(--hover-color);
}
.foot-bn-inner {
	display: flex;
    flex-wrap: wrap;
    align-items: center;
	width: 328px;
    padding: 1.25em 2.5em 1.5em 0;
}
@media (max-width: 999px) {
	.foot-bn-inner {
		gap: .25em;
		width: 100%;
		padding: 55% 10% 5% 5%;
	}
}
.foot-bn-ti {
	color: var(--main-color);
	font-size: clamp(1.8rem, 1.666vw, 2rem);
	font-weight: bold;
	font-family: var(--font-serif);
	transition: var(--transition);
}
.foot-bn-link:hover .foot-bn-ti {
	color: var(--hover-color);
}
.foot-bn-txt {
	font-size: clamp(1.2rem, 1.166vw, 1.4rem);
}

/* コピーライト */
.c-copyright {
    padding: 48px 0 0 0;
    text-align: right;
    font-size: clamp(1.2rem, 1.166vw, 1.4rem);
}
@media (max-width: 999px) {
	.c-copyright {
		padding: 10% 0 0 0;
		text-align: center;
	}
}


 /*====================================================================================
■サイドバー
====================================================================================*/

/* サイドバー全体 */
.l-sidebar {
	font-size: 1.6rem;
}
@media (max-width: 999px) {
	.l-sidebar {
		display: none;
	}
}
@media (max-width: 999px) {
	.archive .l-sidebar {
		display: block;
	}
}


/*====================================================================================
■コンテンツ共通
====================================================================================*/

/* テキスト自動改行 */
.txt-block {
	display: inline-block;
}

/* メールアドレス変換 */
.mto i {
    font-style: normal;
}
.mto i:after {
    content: '@';
}

/* パンくず */
.p-breadcrumb {
	padding: 0 0 0 var(--ark-padding--container);
	font-family: var(--font-serif);
}
@media (max-width: 767px) {
	.p-breadcrumb__list {
		margin: 0 0 1.5em 0;
		padding: 3% 0;
	}
}
.p-breadcrumb__list {
    padding: 1.5em 0 1.5em 1.5em;
}
@media (max-width: 1295px) {
	.p-breadcrumb__list {
		padding: 1.5em 0;
	}
}
@media (max-width: 767px) {
	.p-breadcrumb__list {
		padding: 1em 0;
	}
}
@media (max-width: 767px) {
	.p-breadcrumb__list {
		overflow-x: scroll;
		-webkit-overflow-scrolling: touch;
		overflow-scrolling: touch;
	}
	.p-breadcrumb__list::-webkit-scrollbar {
		height: 2px;
	}
	.p-breadcrumb__list::-webkit-scrollbar-thumb {
		border-radius: 2px;
		background: #ccc;
	}
}
.p-breadcrumb__text{
	font-size: clamp(1.2rem, 1.166vw, 1.4rem);
}
.p-breadcrumb__text .arkhe-svg-home {
	display: none;
}

/* ページタイトル */
.p-topArea {
	height: 156px;
	min-height: auto;
}
@media (max-width:  767px) {
	.p-topArea {
		height: 100px;
	}
}
.c-pageTitle__main {
	margin: 0;
	font-size: 1.8rem;
	font-weight: bold;
}

/* コンテンツ全体 */
.l-content__body {
    margin: 0 auto;
}
@media (max-width:  767px) {
	.l-content__body {
		padding-bottom: 12%;
	}
}
.c-postContent {
    line-height: 2;
}

/* コンテンツ区切り */
.contents {
	margin: 0 0 88px 0;
 }
@media (max-width:  767px) {
	.contents {
		margin: 0 0 48px 0;
	}
}
.c-postContent .contents:last-child {
	margin: 0;
}

/* リンクボタン */
.btn-more {
    width: min(320px, 100%);
    margin: 0 auto;
}
.btn-more-link {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin: 36px 0 0 0;
    padding: 0.6em 1em 0.7em 1em;
    border-radius: 100vh;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    background: var(--main-color);
    color: #fff;
	font-size: clamp(1.6rem, 1.5vw, 1.8rem);
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
}
@media (max-width: 999px) {
	.btn-more-link {
		width: 90%;
		margin: 7% auto 0 auto;
		padding: .75em;
	}
}
.btn-more-link:hover {
	background: var(--hover-color);
	color: #fff;
}
.btn-more-link::after {
	position: absolute;
	top: 50%;
    right: 16px;
	font-size: 2rem;
	font-family: FontAwesome;
	content: '\f105';
	transform: translateY(-50%);
}


/*====================================================================================
■トップページ
====================================================================================*/

/* 共通レイアウト */
.top-full {
    position: relative;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
}
.top-inner {
	position: relative;
	width: 100%;
	max-width: calc(var(--ark-width--container) + var(--ark-padding--container) * 2);
    padding-left: var(--ark-padding--container);
    padding-right: var(--ark-padding--container);
	margin: 0 auto;
}

/* 見出し */
.ti-top {
	margin: 0 0 40px 0;
	border-bottom: none!important;
	text-align: center;
	font-size: clamp(2.2rem, 2.666vw, 3.2rem)!important;
	font-family: var(--font-serif);
	font-weight:bold!important;
}
@media (max-width: 999px) {
	.ti-top {
		margin: 0 0 5% 0;
	}
}
.ti-top-en {
	display: block;
	padding: .5em 0 0 0;
	color: var(--main-color);
	font-size: clamp(1.6rem, 1.666vw, 2rem);
	font-family: "Lato", sans-serif;
	font-weight: 300;
}
@media (max-width: 999px) {
	.ti-top-en {
		padding: .25em 0 0 0;
	}
}

/* メインビジュアル */
.top-main {
	position: relative;
	width: 100vw;
	height: 70vh;
	margin: 0 calc(50% - 50vw);
	overflow: hidden;
}
@media (max-width: 1024px) {
	.top-main {
		height: 30vh;
	}
}
.top-main::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	z-index: 1;
	content: ";";
	opacity: .25;
}
.top-main-img {
	width: 100%;
    height: 100%;
	object-fit: cover;
	animation: bgFadeIn 1.2s ease forwards;
}
.top-main-txt {
	position: absolute;
	top: 50%;
    left: 7%;
	font-size: clamp(2rem, 3vw, 4.2rem);
	font-family: var(--font-serif);
	z-index: 2;
	opacity: 0;
	transform: translateY(-50%) translateY(10px);
	animation: textFadeIn 0.8s ease forwards;
	animation-delay: 1s;
	text-shadow:
		0 0 24px #fff,
		0 0 24px #fff,
		0 0 24px #fff,
		0 0 24px #fff,
		0 0 24px #fff,
		0 0 24px #fff,
		0 0 24px #fff,
		0 0 24px #fff,
		0 0 24px #fff,
		0 0 24px #fff,
		0 0 24px #fff,
		0 0 24px #fff,
		0 0 24px #fff,
		0 0 24px #fff,
		0 0 24px #fff,
		0 0 24px #fff,
		0 0 24px #fff,
		0 0 24px #fff,
		0 0 24px #fff,
		0 0 24px #fff,
		0 0 24px #fff,
		0 0 24px #fff,
		0 0 24px #fff,
		0 0 24px #fff,
		0 0 24px #fff,
		0 0 24px #fff,
		0 0 24px #fff,
		0 0 24px #fff;
}
@media (max-width: 999px) {
	.top-main-txt {
		text-shadow:
			0 0 12px #fff,
			0 0 12px #fff,
			0 0 12px #fff,
			0 0 12px #fff,
			0 0 12px #fff,
			0 0 12px #fff,
			0 0 12px #fff,
			0 0 12px #fff,
			0 0 12px #fff,
			0 0 12px #fff,
			0 0 12px #fff,
			0 0 12px #fff,
			0 0 12px #fff,
			0 0 12px #fff;
	}
}
@keyframes bgFadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes textFadeIn {
	from {
		opacity: 0;
		transform: translateY(-50%) translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(-50%) translateY(0);
	}
}

/* メインコンテンツ */
.top-intro {
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	padding: 48px 0 96px 0;
	background: var(--bg-color);
}
@media (max-width: 999px) {
	.top-intro {
		padding: 7% 0 12% 0;
	}
}
.top-intro-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 16px;
	padding: 0;
	list-style: none;
}
.top-intro-item {
	position: relative;
	width: 32%;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .15);
}
@media (max-width: 999px) {
	.top-intro-item {
		width: 100%;
	}
}
.top-intro-link {
	display: block;
	color: #000;
}
@media (max-width: 999px) {
	.top-intro-link {
		display: flex;
	}
}
.top-intro-tn {
	width: 100%;
	height: 232px;
	object-fit: cover;
}
@media (max-width: 999px) {
	.top-intro-tn {
		width: 30%;
		height: auto;
		object-position: 66% 100%;
	}
}
.top-intro-link:hover .top-intro-tn {
	opacity: .8;
}
.top-intro-icon {
	position: absolute;
	top: 184px;
	right: 0;
	left: 0;
	width: 96px;
	aspect-ratio: 1 / 1;
	margin: 0 auto;
}
@media (max-width: 999px) {
	.top-intro-icon {
		display: none;
	}
}
.top-intro-icon:hover {
	opacity: 1;
}
.top-intro-cont {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 40px 32px 16px 32px;
}
@media (max-width: 999px) {
	.top-intro-cont {
		width: 70%;
		padding: 3% 3% 5% 3%;
	}
}
.top-intro-ti {
	width: 100%;
	text-align: center;
	font-size: clamp(2rem, 2vw, 2.4rem);
	font-weight: 500;
	margin-bottom: 5px;
}
@media (max-width: 999px) {
	.top-intro-ti {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 0 16px 0 0;
	}
	.top-intro-list .top-intro-item:nth-child(1) .top-intro-ti::before {
		content: "";
		background: url(img/mihomori/top-outpatient-icon.png) no-repeat;
		background-size: contain;
		width: 56px;
		aspect-ratio: 1 / 1;
	}
	.top-intro-list .top-intro-item:nth-child(2) .top-intro-ti::before {
		content: "";
		background: url(img/mihomori/top-dialysis-icon.png) no-repeat;
		background-size: contain;
		width: 56px;
		aspect-ratio: 1 / 1;
	}
	.top-intro-list .top-intro-item:nth-child(3) .top-intro-ti::before {
		content: "";
		background: url(img/mihomori/top-checkups-icon.png) no-repeat;
		background-size: contain;
		width: 56px;
		aspect-ratio: 1 / 1;
	}
}
.top-intro-txt {
	width: 100%;
	text-align: center;
	line-height: 1.8;
}
.top-intro-arrow {
	width: 39px;
	aspect-ratio: 1 / 1;
	margin: 16px 0 0 0;
}
@media (max-width: 999px) {
	.top-intro-arrow {
		width: 12%;
		margin: 12px 0 0 0;
	}
}

/* 大事なお知らせ */ 
.top-topics {
	display: flex;
	min-height: 56px;
	margin: 0 0 48px 0;
	border: 1px solid var(--main-color);
	border-radius: 6px;
	background: #fff;
	overflow: hidden;
}
@media (max-width: 999px) {
	.top-topics {
		flex-wrap: wrap;
		margin: 0 0 7% 0;
	}
}
.top-topics-ti {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 192px;
	background: var(--main-color);
	color: #fff;
	font-size: clamp(1.6rem, 1.5vw, 1.8rem);
	font-family: var(--font-serif);
	font-weight: bold;
}
@media (max-width: 999px) {
	.top-topics-ti {
		width: 100%;
	}
}
.top-topics-list {
	display: flex;
	flex-wrap: wrap;
    align-items: center;
	padding: .25em 1em;
	width: calc(100% - 192px);
	list-style: none;
}
@media (max-width: 999px) {
	.top-topics-list {
		width: 100%;
	}
}
.top-topics-item {
	width: 100%;
	margin: 0;
	border-bottom: 1px dotted #ccc;
}
.top-topics-item:last-child {
	border-bottom: none;
}
.top-topics-link {
	display: block;
	width: 100%;
	padding: .25em 0;
}

/* お知らせ */
.top-news {
	margin: 0;
	padding: 56px 0 112px 0;
}
@media (max-width: 999px) {
	.top-news {
		padding: 7% 0;
	}
}
.top-news-item {
	border-bottom: 1px solid #CECECE;
}
.top-news-cont {
	display: flex;
	align-items: center;
	gap: 32px;
	padding: 1em 0;
}
@media (max-width: 999px) {
	.top-news-cont {
		flex-wrap: wrap;
		gap: .5em 1em;
	}
}
.top-news-date {
	color: #000;
}
@media (max-width: 999px) {
	.top-news-date {
		order: 2;
	}
}
.top-news-date:hover {
	color: #000;
}
.top-news-cat {
	min-width: 144px;
	padding: .25em 2em .3em 2em;
	color: #fff;
	text-align: center;
}
@media (max-width: 999px) {
	.top-news-cat {
		min-width: 120px;
		padding: .1em 0 .15em 0;
		order: 1;
	}
}
.top-news-ti {
	color: #000;
	transition: var(--transition);
}
@media (max-width: 999px) {
	.top-news-ti {
		width: 100%;
		order: 3;
	}
}
.top-news-link:hover .top-news-ti {
	color: var(--hover-color);
}

/* タブ切り替え */
.js-tabs__tablist {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1em;
	margin-bottom: 16px;
}
.js-tabs__tab {
	position: relative;
	min-width: 168px;
	padding: .25em 2em .3em 2em;
	border: 2px solid var(--cat-color);
	background: #fff;
	color: #555;
	font-size: clamp(1.4rem, 1.5vw, 1.6rem);
	font-weight: 500;
	transition: var(--transition);
	cursor: pointer;
}
@media (max-width: 767px) {
	.js-tabs__tab {
		width: calc(50% - .5em);
		min-width: auto;
		padding: .1em 0 .15em 0;
	}
}
.js-tabs__tab:hover {
	opacity: .8;
}
/* アクティブ時 */
.js-tabs__tab.is-active {
	background: var(--cat-color);
	color: #fff;
}
.js-tabs__panel[hidden] {
	display: none;
}

/* 私たちについて */
.top-about-main {
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
    width: 100vw;
    margin: 0 calc(50% - 50vw) 96px calc(50% - 50vw);
	background: #FAFAFA;
}
@media (max-width: 1511px) {
	.top-about-main {
		padding-right: var(--ark-padding--container);
	}
}
@media (max-width: 1024px) {
	.top-about-main {
		display: flex;
		flex-wrap: wrap;
		margin: 0 calc(50% - 50vw);
		padding: 0 0 5% 0;
	}
}
.top-about-wrap {
	display: flex;
    justify-content: flex-end;
	order: 2;
	max-width: 840px;
	padding: 80px 0 80px 80px;
}
@media (max-width: 1511px) {
	.top-about-wrap {
		padding: 80px 0 80px var(--ark-padding--container);
	}
}
@media (max-width: 1024px) {
	.top-about-wrap {
		max-width: 100%;
		padding: 1em var(--ark-padding--container);
	}
}
.top-about-inner {
	display: flex;
    justify-content: flex-end;
    align-items: center;
}
.top-about-cont {
	width: 100%;
}
.top-about-ti {
	margin: 0 0 1.5em 0 !important;
	padding-left: 0 !important;
	border-left: none !important;
	color: #000 !important;
	font-size: clamp(1.8rem, 2.166vw, 2.6rem)!important;
	font-family: var(--font-serif);
}
@media (max-width: 1024px) {
	.top-about-ti {
		margin: 1.25em 0 1em 0 !important;
	}
}
.top-about-img {
	object-fit: cover;
}
@media (max-width: 1511px) {
	.top-about-img {
		width: 40%;
	}
}
@media (max-width: 1024px) {
	.top-about-img {
		width: 100%;
		height: 20vh;
		order: 1;
	}
}


/* 私たちの強み */
.top-features {
	padding: 56px 0;
}
@media (max-width: 1024px) {
	.top-features {
		margin: 0;
		padding: 7% 0 0 0;
	}
}
.top-feat-list {
	padding: 0;
}
.top-feat-item {
	position: relative;
	display: flex;
	justify-content: flex-end;
	margin: 0 0 88px 0;
}
@media (max-width: 1024px) {
	.top-feat-item {
		flex-wrap: wrap;
		margin: 0 0 10% 0;
	}
}
.top-feat-inner {
	display: flex;
    justify-content: flex-end;
	align-items: center;
	min-height: 344px;
}
@media (max-width: 1024px) {
	.top-feat-inner {
		align-items: flex-start;
		min-height: auto;
		padding-top: 7%;
	}
}
.top-feat-list .top-feat-item:nth-child(2n) .top-feat-inner {
    justify-content: flex-start;
}
.top-feat-cont {
	width: calc(100% - 47%);
	padding: 0 0 0 3%;
}
@media (max-width: 1024px) {
	.top-feat-cont {
		width: 100%;
		padding: 0;
	}
}
.top-feat-list .top-feat-item:nth-child(2n) .top-feat-cont {
	padding: 0 3% 0 0;
}
@media (max-width: 1024px) {
	.top-feat-list .top-feat-item:nth-child(2n) .top-feat-cont {
		padding: 0;
	}
}
.top-feat-ti {
	position: relative;
	width: 100%;
	margin: 0 0 1em 0!important;
	padding: 0 0 .75em 0!important;
	border-left: none !important;
	border-bottom: 1px solid var(--main-color);
	color: #000 !important;
	font-size: clamp(1.8rem, 1.833vw, 2.2rem)!important;
	font-family: var(--font-serif)!important;
}
@media (max-width: 999px) {
	.top-feat-ti {
		padding: 0 3em .75em 0!important;
	}
}
.top-feat-ti::after {
	position: absolute;
	bottom: 1em;
	right: 0;
	content: "";
	width: 76px;
	height: 51px;
}
@media (max-width: 999px) {
	.top-feat-ti::after {
		bottom: .9em;
		max-height: 3vh;
	}
}
.top-feat-list .top-feat-item:nth-child(1) .top-feat-ti::after {
	background: url("img/common/top-feat-ti01.png") no-repeat;
	background-size: contain;
	background-position: right bottom;
}
.top-feat-list .top-feat-item:nth-child(2) .top-feat-ti::after {
	background: url("img/common/top-feat-ti02.png") no-repeat;
	background-size: contain;
	background-position: right bottom;
}
.top-feat-list .top-feat-item:nth-child(3) .top-feat-ti::after {
	background: url("img/common/top-feat-ti03.png") no-repeat;
	background-size: contain;
	background-position: right bottom;
}
.top-feat-img {
	position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 47%;
    height: 100%;
}
@media (max-width: 1024px) {
	.top-feat-img {
		position: inherit;
		width: 100%;
		height: 20vh;
	}
}
.top-feat-list .top-feat-item:nth-child(2n) .top-feat-img {
	left: auto;
	right: 0;
}

/* 各種ご案内 */
.top-info-list {
	display: grid;
	justify-content: space-between;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
	padding: 0;
	list-style: none;
}
.top-info-tn {
	width: 100%;
	margin: 0 0 8px 0;
	border-radius: 5px;
}
.top-info-ti {
	display: flex;
	align-items: center;
	min-height: 40px;
	padding-left: 16px !important;
	border-left: 4px solid var(--main-color) !important;
	color: #000 !important;
	font-size: clamp(1.8rem, 1.666vw, 2rem);
	font-family: var(--font-serif);
}
.top-info-link:hover .top-info-ti {
	color: var(--main-color) !important;
}
.top-info-recruit {
	padding: 56px 0 0 0;
}
@media (max-width: 767px) {
	.top-info-recruit {
		padding: 10% 0 0 0;
	}
}


 /*====================================================================================
■お知らせ
====================================================================================*/

/* 記事一覧 */
.p-archive .c-pageTitle__main {
	margin: 0 0 1.75em 0;
	padding: 0 0 .75em 0;
	border-bottom: 2px solid var(--main-color);
	color: var(--main-color);
	font-size: clamp(1.8rem, 1.833vw, 2.2rem)!important;
	font-family: inherit;
}
.p-postList.-type-list .p-postList__item {
	margin-bottom: 0;
	padding: 2em 0;
	border-bottom: 1px solid #ccc;
	font-size: clamp(1.4rem, 1.333vw, 1.6rem);
}
.p-postList.-type-list .p-postList__item:first-child {
	padding: 0 0 2em 0;
}
@media (max-width: 767px) {
	.p-postList.-type-list .p-postList__link {
		flex-wrap: wrap;
		gap: 1em;
	}
}
@media (max-width: 767px) {
	.p-postList.-type-list .p-postList__thumb {
		width: 100%;
		max-width: 100%;
	}
}
.p-postList__thumb .c-postThumb__figure {
	aspect-ratio: 6 / 4;
}
@media (max-width: 767px) {
	.p-postList__thumb .c-postThumb__figure {
		width: 100%;
	}
}
.p-postList.-type-list .p-postList__body {
	padding-left: 1.5em;
	color: #000;
}
@media (max-width: 767px) {
	.p-postList.-type-list .p-postList__body {
		width: 100%;
		padding-left: 0;
	}
}
.p-postList .p-postList__title {
	font-size: clamp(1.4rem, 1.333vw, 1.6rem);
}
.p-postList__excerpt {
	display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
	font-size: clamp(1.4rem, 1.333vw, 1.6rem);
}
.p-postList__excerpt-next {
	position: relative;
	display: block;
	margin: 1em 0 0 0;
	padding: 0 16px 0 0;
	color: var(--link-color);
	text-align: right;
}
.p-postList__excerpt-next::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 8px;
	height: 8px;
	margin: auto;
	border: 0;
	border-top: solid 2px var(--link-color);
	border-right: solid 2px var(--link-color);
	transform: rotate(45deg);
}
.p-postList .p-postList__title {
    margin: 0 0 1em 0;
}
.pagination a {
	color: var(--main-color);
}

/* 記事詳細 */
.p-entry__head .c-postMetas {
	font-size: clamp(1.2rem, 1.166vw, 1.4rem);
}
.p-entry__foot>.c-postMetas {
	font-size: clamp(1.2rem, 1.166vw, 1.4rem);
}
.blog-title {
	margin: 0 0 1.75em 0;
	padding: 0 0 .75em 0;
	border-bottom: 2px solid var(--main-color);
	font-size: clamp(1.8rem, 1.833vw, 2.2rem)!important;
	font-family: inherit;
}
.c-pnNav {
	margin: 1em 0;
	padding: 1em 0;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
.c-pnNav__item {
	font-size: clamp(1.4rem, 1.333vw, 1.6rem);
}
.c-pnNav__link:hover {
    opacity: 1;
}
.p-entry_back {
	width: min(320px, 100%);
    margin: 3em auto 0 auto;
}
.p-entry_back-link {
	position: relative;
	display: flex;
    justify-content: center;
    align-items: center;
	padding: 0.6em 1em 0.7em 1em;
	border: 1px solid var(--main-color);
	border-radius: 100vh;
	color: var(--main-color);
	font-size: clamp(1.6rem, 1.5vw, 1.8rem);
	text-align: center;
	transition: var(--transition);
}
.p-entry_back-link::after {
    position: absolute;
    top: 50%;
    left: 16px;
	color: var(--main-color);
    font-size: 2rem;
    font-family: FontAwesome;
    content: '\f104';
    transform: translateY(-50%);
	transition: var(--transition);
}
.p-entry_back-link:hover::after {
	color: var(--hover-color);
}
.p-entry__content.c-postContent {
    display: flow-root;
}
.p-entry__content a {
	text-decoration: underline;
}
.p-entry__content h1 {
	font-size: clamp(1.8rem, 1.833vw, 2.2rem)
}
.p-entry__content h2 {
	margin: 2em 0 1em 0;
	padding-left: 20px;
	padding-bottom: 0;
	border-left: 10px solid var(--ark-color--main);
	border-bottom: 0;
	color: var(--ark-color--main);
    font-size: clamp(1.8rem, 1.9vw, 2rem);
	font-weight: bold;
	font-family: inherit;
}
.p-entry__content h3 {
    margin: 2em 0 1em 0;
	padding-left: 0;
	border-left: 0;
	color: var(--link-color);
    font-size: clamp(1.8rem, 1.9vw, 2rem);
}
.p-entry__content h4 {
	color: var(--main-color);
	font-size: clamp(1.6rem, 1.5vw, 1.8rem);
}
.p-entry__content h5,
.p-entry__content h6 {
	margin: 2em 0 1em 0;
}
.p-entry img {
    margin: 1em 0;
}
.p-entry ol {
	margin: 1em 0;
}
.p-entry ol li::marker {
	font-weight: bold;
}
.p-entry video {
	width: 100%;
    height: 100%;
	aspect-ratio: 16 / 9;
    object-fit: contain;
	margin: 1em 0;
}
.alignright {
	float: none;
	margin: 0 0 0 auto !important;
}
.alignleft {
	float: none;
	margin: 0 auto 0 0 !important;
}
.aligncenter {
	margin-left: auto;
	margin-right: auto;
}
.wp-caption {
	margin: 1.5em 0;
}
.wp-caption img {
	margin: 0;
}
.wp-caption-text {
	font-size: clamp(1.4rem, 1.2vw, 1.6rem)!important;
}

/* メタ情報 */
.p-postList__meta,
.p-entry__meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 1em 0;
	font-size: clamp(1.2rem, 1.166vw, 1.4rem);
}
.p-postList__cat,
.blog-cat {
	padding: .25em 1em;
	color: #fff;
}

/* サイドバー */
.sidebar-pages__list {
	margin: 0 0 32px 0;
}
.sidebar-custompost__title {
	position: relative;
    display: block;
	padding: 10px;
	background: var(--main-color);
	color: #fff;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.75;
}
.sidebar-search-form,
.c-searchForm {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	height: 48px;
}
.sidebar-search-input,
.c-searchForm__s {
	width: calc(100% - 48px);
	border: 1px solid var(--main-color);
	background: var(--bg-color);
}
.sidebar-search-btn,
.c-searchForm__submit {
	display: flex;
    justify-content: center;
    align-items: center;
	width: auto;
	height: 100%;
	aspect-ratio: 1 / 1;
	border: 1px solid var(--main-color);
	background: var(--main-color);
	color: #fff;
	font-size: 2rem;
}


 /*====================================================================================
■検索結果ページ
====================================================================================*/

.p-postList--notfound .c-searchForm {
	width: 50%;
    margin: 2em 0 0 0;
}
@media (max-width: 767px) {
	.p-postList--notfound .c-searchForm {
		width: 100%;
	}
}







