@charset "utf-8";

/*
Theme Name: Lightning Child
Template: lightning
Author: pc-suketto.net
Version: 1.0.0
*/


/* ------------------------------ 共通 start ------------------------------ */
body {
	font-size: 16px;
	font-family: "Roboto", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
	font-feature-settings: "palt";
	letter-spacing: 0.1em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-size-adjust: 100%; /* safari用 */
	-webkit-text-size-adjust: 100%;
	overflow: clip; /* position:sticky用 */
}

/* 変数 */
:root {
	--color-main: var(--vk-color-primary);
	--color-main-light: #19BAFF;
	--color-main-dark: #007CB2;
	--color-sub: #0075C1;
	--color-accent: #ED7184;
	--color-accent-dark: #E6415C;
	--color-base: #E9F4FB;
	--color-base-gray: #f7f7f7;
	--box-shadow-primary: 10px 10px 20px 0 rgba(0, 117, 193, 0.2);
	--box-shadow-primary-hover: 2px 2px 4px 0 rgba(0, 117, 193, 0.2);
}
:root { /* Lightningの変数 */
	--vk-width-col-2-main: calc(100% - 360px);
	--vk-width-col-2-sub: 300px;
}

/* タグ */
a { text-decoration: none !important; }
address { font-style: normal; }
p { margin: 0; line-height: 1.8; }
iframe { margin: 0; }
img { vertical-align: middle; }
input, textarea, input::placeholder, textarea::placeholder { font-family: "Noto Sans JP", sans-serif; }

/* コンテナ */
.container { padding-right: 0; padding-left: 0; }
.page .entry-body>div>div { position: relative; z-index: 1; }
.page .site-body-container { max-width: 100%; padding: 0; }
.con-base { width: 1200px; margin: 0 auto; padding: 90px 0; }
.site-body { padding: 90px 0; }

/* 見出し */
p+h1, p+h2, p+h3, p+h4, ul+h1, ul+h2, ul+h3, ul+h4 { margin-top: 0; }
h1,h2,h3,h4,h5,h6 { position: relative; z-index: 1; margin: 0; font-family: "Kosugi Maru", sans-serif; font-weight: 400; line-height: 1.6; }
h2 { font-size: 1.75rem; /* 28px */ }
h3 { font-size: 1.5rem; /* 24px */ }
h4 { font-size: 1.25rem; /* 20px */ }
h5 { font-size: 1.125rem; /* 18px */ }

/* タイトル */
.sec-ttl-wrap {
	text-align: center;
}
.sec-ttl-wrap .sec-ttl::before {
	position: absolute;
	z-index: 1;
	top: -45px;
	right: -90px;
	content: "";
	width: 90px;
	height: auto;
	aspect-ratio: 600/437;
	background: url(/wp-content/uploads/2025/04/illust_bird.png) no-repeat center;
	background-size: contain;
}
.sec-ttl {
	display: inline-flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
}
.sec-ttl h2 {
	display: inline-block;
	font-size: 2rem;
}
.sec-ttl .en {
	margin: 0.5em 0 0;
	color: var(--color-main);
	font-size: 1rem;
	line-height: 1.2;
}
h4.deco {
	padding-left: 15px;
	border-left: 1px solid var(--color-main);
}

/* テキスト */
.lead { color: var(--color-main); font-size: 2rem; font-family: "Kosugi Maru", sans-serif; }
.txt { display: block; margin-bottom: 10px; }
.txt a { border-bottom: 1px solid var(--color-main); transition: all 0.3s; }
.txt a:hover { opacity: 0.5; }
.msg-txt { line-height: 2.5; margin-bottom: 30px; }
div>.txt:last-of-type, div>.msg-txt:last-of-type { margin-bottom: 0; }
.fs-b { margin: 0 0.25em; font-size: 1.25em; }
.fs-s { margin: 0 0.25em; font-size: 0.8em; }
.fw-b { font-weight: 700; }
.en { display: inline-block; font-family: "Quicksand", sans-serif; }
.num { display: inline-block; font-family: "Quicksand", sans-serif; line-height: 1; }
.color { color: var(--color-main); }
.notes { font-size: 0.9em; }
.notes-mark { margin: 0 0.25em; font-size: 0.5em; vertical-align: top; }
.sp-br { display: none; }
.kosugi { font-family: "Kosugi Maru", sans-serif; }

/* リスト */
ol { margin: 0; }
ul { margin: 0; }
li, .widget li { margin: 0; }
:is(.ol-base, .ul-base) li:not(:last-child) { margin-bottom: 0.5em; }
li>:is(.ol-base, .ul-base) { margin-top: 0.5em; }
.nonstyle-list { list-style: none; padding: 0 !important; }

/* 注釈 */
.notes-ol, .notes-ul { list-style: none; padding-left: 2em !important; counter-reset: number 0; }
.notes-ul { padding-left: 1.5em !important; }
.notes-ol li, .notes-ul li { position: relative; font-size: 0.9em; }
.notes-ol li:not(:last-child), .notes-ul li:not(:last-child) { margin-bottom: 5px; }
.notes-ol li::before, .notes-ul li::before { display: block; position: absolute; left: -2.25em; font-size: 1em; counter-increment: number 1; content: "※" counter(number); }
.notes-ul li::before { left: -1.5em; content: "※"; }

/* 定義リスト */
dl { margin: 0; }
.dli:not(:last-child) { margin-bottom: 0.75em; }
dt { font-weight: 700; line-height: 1.25; }
dd:not(:last-child) { margin-bottom: 0.25em; }
.about-dl .dli { display: flex; flex-wrap: wrap; gap: 10px; }
.about-dl .dli:not(:last-child) { margin-bottom: 20px; }
.about-dl .dli dt {
	margin: 0;
	padding: 5px 10px;
	border-bottom: 1px solid var(--color-main);
	font-size: 0.9em;
	font-weight: 400;
}
.about-dl .dli dd { width: 100%; }

/* テーブル */
:where(:not(.wp-block-table))>table:is(thead,tbody,tfoot,th,td) { border-color: #ccc; }
:where(:not(.wp-block-table))>table :is(th,td) { font-size: 0.9em; }
:where(:not(.wp-block-table))>table.tb-base :is(th,td) { border-top: 1px solid #ccc; border-bottom: 1px solid #ccc; }
:where(:not(.wp-block-table))>table.tb-base th { border-color: var(--color-main); }
:where(:not(.wp-block-table))>table { border-right: none; border-left: none; }
table { table-layout: fixed; }
table td, table th { padding: 1.5em; }
.tb-base th {
	width: 30%;
	border-right: none;
	border-left: none;
	color: var(--color-sub);
	text-align: left;
}
.tb-base td {
	width: 70%;
	border-right: none;
	border-left: none;
}
.scroll-tb-wrap .txt.notes { display: none; }

/* ボタン */
.btn-base {
	position: relative;
	z-index: 1;
	display: inline-block;
	min-width: 240px;
	padding: 15px 60px;
	border-radius: 999px;
	background: var(--color-main);
	color: #fff;
	text-align: center;
	transition: all 0.3s;
}
.btn-base:hover {
	background: var(--color-main-dark);
	color: #fff;
}
.line-arrow {
	position: absolute;
	z-index: 1;
	top: 55%;
	right: 20px;
	transform: translateY(-55%);
	width: 20px;
	height: 1px;
	border-top: 1px solid #fff;
	transition: all 0.3s;
}
.line-arrow::before {
	position: absolute;
	z-index: 1;
	bottom: 0;
	right: 0;
	content: "";
	width: 45%;
	height: 1px;
	border-radius: 0 999px 999px 0;
	background: #fff;
	transform: rotateZ(45deg);
	transform-origin: right bottom;
}
.btn-base:hover .line-arrow {
	right: 15px;
}

/* text-align */
.center { text-align: center; }
.left { text-align: left; }
.right { text-align: right; }

/* フェードアニメーション */
.fade-in, .fade-up, .fade-down, .fade-left, .fade-right { opacity: 0; }
/* フェードイン */
.fade-in.active { animation-name: fadeInAnime; animation-duration: 2s; animation-fill-mode: forwards; }
@keyframes fadeInAnime { from { opacity: 0; } to { opacity: 1; } }
/* フェードアップ */
.fade-up.active { animation-name: fadeUpAnime; animation-duration: 2s; animation-fill-mode: forwards; }
@keyframes fadeUpAnime { from { opacity: 0; transform: translateY(100px); } to { opacity: 1; transform: translateY(0); } }
/* フェードダウン */
.fade-down.active { animation-name: fadeDownAnime; animation-duration: 2s; animation-fill-mode: forwards; }
@keyframes fadeDownAnime { from { opacity: 0; transform: translateY(-100px); } to { opacity: 1; transform: translateY(0); } }
/* フェードレフト */
.fade-left.active { animation-name: fadeLeftAnime; animation-duration: 2s; animation-fill-mode: forwards; }
@keyframes fadeLeftAnime { from {opacity: 0; transform: translateX(-100px); } to { opacity: 1; transform: translateX(0); } }
/* フェードライト */
.fade-right.active { animation-name: fadeRightAnime; animation-duration: 2s; animation-fill-mode: forwards; }
@keyframes fadeRightAnime { from { opacity: 0; transform: translateX(100px); } to { opacity: 1; transform: translateX(0); } }
/* フェードのディレイ */
.delay-time02 { transition-delay: 0.2s; animation-delay: 0.2s; }
.delay-time04 { transition-delay: 0.4s; animation-delay: 0.4s; }
.delay-time06 { transition-delay: 0.6s; animation-delay: 0.6s; }
.delay-time08 { transition-delay: 0.8s; animation-delay: 0.8s; }
.delay-time10 { transition-delay: 1s; animation-delay: 1s; }

/* メニュー */
.widget_nav_menu>ul li { margin-top: 10px; }

/* Page Builder by SiteOrigin */
.row-reverse { flex-direction: row-reverse; } /* 2カラム時に左右のコンテンツ入れ替える */
.stretch-cell>div, .stretch-cell>div>div { height: 100%; } /* columnをストレッチさせる */

/* Contact Form 7 */
.txt-cf7 { display: inline-block; margin-bottom: 10px; font-size: 0.9em; }
.cf7-tb { overflow: hidden; table-layout: fixed; border-right: none; border-left: none; }
.cf7-tb input, .cf7-tb textarea { margin-bottom: 0; padding: 0.5em 1em; }
.cf7-tb textarea { border-radius: 5px; }
.cf7-tb select { width: 100%; margin: 0 0 1em 0; padding: 0.5em; }
.cf7-tb th, .cf7-tb td { font-size: 1rem; border-right: none; border-left: none; }
.cf7-tb th { width: 40%; text-align: left; }
.cf7-tb td { width: 60%; text-align: left; }
.cf7-tb .fsize-s { margin: 0; }
.input-zip { display: inline-block; width: 150px !important; max-width: 100%; margin: 0 0 10px 5px !important; }
.wpcf7-list-item { margin: 0 1em 0 0 !important; }
.required {
	margin-right: 10px;
	padding: 2.5px 5px;
	background: var(--color-main);
	color: #fff;
	font-size: 0.7em;
	line-height: 1;
}
.required.not-required {
	background: #999;
	color: #fff;
}
.cf7-btn {
	margin-top: 30px;
	text-align: center;
}
.cf7-btn .btn-base {
	min-width: 30%;
	padding: 25px 45px;
	border: none;
	border-radius: 999px;
	background: var(--color-main);
	color: #fff;
	text-align: center;
}
.cf7-btn .btn-base:hover {
	background: var(--color-main-dark);
}
.wpcf7-spinner { display: block !important; margin: 0 auto !important; text-align: center; }

/* Lightbox */
.featherlight .featherlight-content { padding: 5px 5px 0; border-bottom: 5px solid transparent; }
.featherlight-next { top: 5px; right: 5px; }
.featherlight-previous { top: 5px; left: 5px; }
.rl-gallery-item img { transition: all 0.3s ease;}
.rl-gallery-item img:hover { opacity: 0.8; }
.rl-gallery-caption { display: block; font-size: 0.9em;}

/* Swiper */
.swiper-wrapper { transition-timing-function: linear !important; }

/* Material Symbols & Icons - Google Fonts */
.material-symbols-outlined { margin: 0 0.15em 0.1em; font-size: 1.3em; vertical-align: middle; }

/* Googleマップ */
.map iframe { width: 100%; height: auto !important; aspect-ratio: 3/1.25;}

/* モバイルナビ */
.vk-mobile-nav-menu-btn { display: none; } /* Lightning既存のナビは非表示 */

/* ページトップへ戻るボタン */
.page_top_btn {
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	border: 1px solid #fff;
	border-radius: 50%;
	background-color: var(--color-main);
	box-shadow: none;
}

/* タブ */
.tab-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	position: relative;
	z-index: 1;
	padding: 0 20px !important;
	overflow-y: hidden;
}
.tab-list::before {
	position: absolute;
	z-index: -1;
	bottom: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 1px;
	background: #ccc;
}
.tab-list li {
	margin: 0 !important;
}
.tab-list li .material-symbols-outlined {
	display: block;
	margin-bottom: 0.1em;
	font-size: 2em;
}
.tab {
	width: 100%;
	padding: 20px 30px;
	border: 1px solid #ccc;
	border-radius: 10px 10px 0 0;
	background: #ccc;
	color: #666;
	font-size: 1.25rem;
	font-weight: 400;
	font-family: "Kosugi Maru", sans-serif;
	text-align: center;	
	cursor: pointer;
	box-shadow: var(--box-shadow-primary);
	transition: all 0.3s;
}
.tab:not(.active):hover {
	background: #fff;
	color: var(--color-main);
}
.tab.active {
	border-bottom-color: #fff;
	background: #fff;
	color: var(--color-main);
}
.tab-panel {
	display: none !important;
	position: relative;
	z-index: 1;
	padding-bottom: 0 !important;
	background: #fff;
}
.tab-panel.active {
	display: block !important;
	animation-name: tabFadeIn;
	animation-fill-mode: forwards;
	animation-duration: 0.3s;
}
@keyframes tabFadeIn{ 0% { opacity: 0; } 100% { opacity: 1; } }
/* ------------------------------ 共通 end ------------------------------ */


/* ------------------------------ ヘッダー start ------------------------------ */
.site-header {
	position: absolute !important;
	box-shadow: none;
	transition: all 0.3s;
}
.site-header-container {
	width: calc(100% - 40px);
	max-width: 100%;
	margin: 0 20px;
	padding: 0 20px;
	padding-right: 270px;
	border-radius: 20px;
	background: #fff;
	box-shadow: var(--box-shadow-primary);
}
.site-header--layout--nav-float .site-header-container {
	align-items: center;
	gap: 20px;
}
.site-header--layout--nav-float .site-header-logo {
	margin-right: 0;
}
.global-nav-list {
	padding: 0;
}
.global-nav-list>li::before {
	position: absolute;
	left: 50%;
	bottom: calc(100% - 18px);
	transform: translateX(-50%);
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: #ccc;
	transition: all 0.3s ease-out;
}
.global-nav-list>li:hover::before, .global-nav-list>li[class*=current]::before {
	height: 8px;
	background: var(--color-main);
}
.device-mobile .global-nav-list>li {
	padding: 26px 20px 9px;
}
.device-mobile .global-nav-list .acc-btn {
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
.device-pc .global-nav-list>li>a {
	padding: 26px 20px 14px;
}
.global-nav-list>li>a {
	color: #333;
}
.global-nav-list>li .global-nav-description {
	margin-top: 0.25em;
	color: var(--color-main);
	font-weight: 400;
	font-family: "Quicksand", sans-serif;
	text-transform: capitalize;
	opacity: 1;
}

/* スクロール時ヘッダー */
.header_scrolled .site-header {
	position: fixed !important;
	left: 20px;
	width: calc(100% - 40px);
	margin-top: 20px;
	max-width: 100%;
	background: transparent;
	box-shadow: none;
}
.header_scrolled  .site-header-container {
	margin: 0;
	padding-right: 270px;
}
.header_scrolled .site-header-logo img {
	max-height: 50px !important;
}

/* ヘッダー上部 */
.header-top {
	margin: 0;
	border-bottom: 0;
	background: transparent;
}
.header-top .container {
	max-width: 100%;
	padding: 0 20px;
	padding-right: 290px;
	align-items: center;
}
.header-top .header-top-description {
	top: 0;
	padding: 5px 0;
	font-size: min(1.2vw,14px);
}
.header-top nav {
	top: 0;
}
.header-top ul {
	margin: 0;
}
.header-top ul>li>a {
	padding: 4px 0 4px 20px;
	text-decoration: underline !important;
}
.header-top ul>li>a:hover {
	opacity: 0.5;
}

/* ヘッダーお問い合わせボタン */
.header-contact-btn-wrap {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 50px;
	width: 220px;
	height: calc(100% + 20px);
	text-align: center;
}
.header-contact-btn.hcb-mail {
	width: 100%;
	height: 100%;
}
.header-contact-btn-inner {
	width: 100%;
}
.header-contact-btn.hcb-mail a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 30px 20px;
	border-radius: 0 0 20px 20px;
	background: var(--color-main);
	color: #fff;
	font-weight: 700;
	transition: all 0.3s;
	box-shadow: var(--box-shadow-primary);
}
.header-contact-btn.hcb-mail a:hover {
	background: var(--color-main-dark);
}
.header-contact-btn.hcb-mail .btn-cmt .txt {
	margin-bottom: 0.5em;
	font-size: 0.8em;
	font-weight: 400;
}
.header-contact-btn.hcb-mail .btn-icon .material-symbols-outlined {
	font-size: 2em;
}
.header_scrolled .header-contact-btn-wrap {
	top: -20px;
	right: 30px;
	height: calc(100% + 40px);
}
.header_scrolled .header-contact-btn.hcb-mail .btn-cmt .txt {
	display: none;
}

/* 固定ボタン（電話） */
.fixed-btn-wrap {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
	position: fixed;
	z-index: 9999;
	top: 192.8px;
	right: -255px;
}
.fixed-btn {
	transition: all 0.3s;
}
.fixed-btn a {
	display: block;
	position: relative;
	z-index: 1;
	left: 0;
	transition: all 0.6s;
}
@media (hover: hover) {
	.fixed-btn a:hover {
		left: -255px;
	}
}
.fixed-btn.fb-tel {
	text-align: center;
}
.fixed-btn.fb-tel a {
	padding: 20px 30px;
	border-radius: 20px 0 0 20px;
	background: #fff;
	color: #333;
	box-shadow: var(--box-shadow-primary);
}
.fixed-btn.fb-tel .btn-tel {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}
.fixed-btn.fb-tel .btn-tel-icon .material-symbols-outlined {
	color: var(--color-main);
	font-size: 40px;
}
.fixed-btn.fb-tel .btn-tel-icon .kosugi {
	color: #333;
	font-size: 0.9em;
	line-height: 1.25;
}
.fixed-btn.fb-tel .btn-tel-num .tel-num {
	margin-bottom: 0.125em;
	color: #333;
	font-size: 2rem;
}
.fixed-btn.fb-tel .btn-tel-num .tel-num-desc {
	color: #666;
	font-size: 0.8em;
}

/* 固定ボタン（はじめて） */
.fixed-first-btn {
	position: fixed;
	z-index: 9999;
	top: 522.63px;
	right: 0;
}
.fixed-first-btn a {
	display: block;
	padding: 30px 15px;
	padding-top: 40px;
	border-radius: 20px 0 0 20px;
	background: var(--color-accent);
	color: #fff;
	box-shadow: var(--box-shadow-primary);
	transition: all 0.3s;
}
.fixed-first-btn a:hover {
	background: var(--color-accent-dark);
}
.fixed-first-btn img {
	position: absolute;
	z-index: 1;
	top: -30px;
	left: -30px;
	width: 120px;
	transition: all 0.6s;
}
@media (hover: hover) {
	.fixed-first-btn a:hover img {
		transform: rotate(-10deg);
	}	
}
.fixed-first-btn .txt {
	font-size: 1.1em;
	letter-spacing: 0.25em;
	writing-mode: vertical-rl;
}
/* ------------------------------ ヘッダー end ------------------------------ */


/* ------------------------------ ページヘッダー start ------------------------------ */
.page-header {
	text-shadow: 0.2em 0.2em 0 #fff;
}
.page-header-inner {
	margin-bottom: 0 !important;
}
.page-header-title, h1.page-header-title {
	margin-bottom: 0.25em;
	color: var(--color-main);
	font-size: min(3vw,3rem);
	font-weight: 400;
	font-family: "Kosugi Maru", sans-serif
}
.page-header-subtext {
	margin: 0;
	color: #666;
	font-size: min(1.25vw,1.25rem);
	font-weight: 500;
	font-family: "Quicksand", sans-serif;
	line-height: 1.25;
}
/* ------------------------------ ページヘッダー end ------------------------------ */


/* ------------------------------ フッター start ------------------------------ */
.site-footer {
	position: relative;
	z-index: 1;
	font-size: 0.9em;
}
.site-footer-content {
	padding: 90px 0;
}
#menu-footer_nav>li>.sub-menu {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#menu-footer_nav>li>.sub-menu>li {
	width: 50%;
}
#menu-footer_nav>li>.sub-menu>li>a::before {
	left: 11px;
	height: 2px;
}
.ft-contents-wrap {
	margin-bottom: 60px;
}
.ft-logo img {
	width: 100%;
	max-width: 300px;
}
.ft-map a {
	padding: 5px 15px;
	border: 1px solid #fff;
	color: #fff;
	font-size: 0.9em;
	transition: all 0.3s;
}
.ft-map a:hover {
	opacity: 0.5;
}
.site-footer .widget_nav_menu>div>ul#menu-header-top-nav-1 {
	margin-bottom: 60px;
}
.site-footer .widget_nav_menu>div>ul#menu-header-top-nav-1 li:not(:last-child) {
	margin-bottom: 10px;
}
.site-footer .widget_nav_menu>div>ul#menu-header-top-nav-1 li a {
	display: inline-block;
	padding: 0;
	background-color: transparent;
	text-decoration: underline !important;
}
.site-footer .widget_nav_menu>div>ul#menu-header-top-nav-1 li a:hover {
	opacity: 0.5;
}

.site-footer-copyright {
	max-width: 100%;
	padding: 2.5px 20px;
	background: var(--color-sub);
}
.site-footer-copyright p {
	margin: 0;
	color: #fff;
	font-family: "Quicksand", sans-serif;
}
/* ------------------------------ フッター end ------------------------------ */


/* ------------------------------ フッター上部（ウィジェット） start ------------------------------ */
.site-body-bottom .widget {
	margin: 0;
}
.site-body-bottom .container {
	width: 100%;
	max-width: 100%;
}
.aozora-curve {
	margin-top: 90px;
	overflow: hidden;
	aspect-ratio: 64 / 4;
}
.aozora-curve span {
	--outsize: 20%;
	display: block;
	width: calc(100% + var(--outsize) * 2);
	margin-left: calc(var(--outsize) * (-1));
	aspect-ratio: 64 / 18;
	background: var(--color-main);
	border-radius: 100% 100% 0 0;
}
.msg-con {
	position: relative;
	z-index: 1;
	padding-bottom: calc(min(5vw,90px) + 90px);
	background: var(--color-main);
	color: #fff;
}
.msg-con::before {
	position: absolute;
	z-index: 2;
	bottom: -1px;
	left: 0;
	content: "";
	width: 100%;
	height: 5vw;
	max-height: 90px;
	background: url(/wp-content/uploads/2025/04/deco_cloud.png) repeat-x top center;
	background-size: contain;
}
.msg-con::after {
	position: absolute;
	z-index: 2;
	bottom: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 70%;
	background: url(/wp-content/uploads/2025/04/deco_cloud-left.png) no-repeat bottom left, url(/wp-content/uploads/2025/04/deco_cloud-right.png) no-repeat bottom right;
	background-size: contain, contain;
}
.msg-con .lead {
	margin-bottom: 30px;
	color: #fff;
	font-size: min(2.5vw,2.5rem);
}
.msg-deco {
	position: absolute;
	z-index: 3;
}
.msg-deco.deco-bird {
	top: -180px;
	right: 5vw;
	width: 300px;
}
.msg-deco.deco-balloon {
	bottom: -30px;
	left: 5vw;
	width: 150px;
}
.contact-con {
	position: relative;
	z-index: 1;
	border-bottom: 1px solid #ccc;
}
.contact-con .sec-ttl-wrap {
	margin-bottom: 60px;
}
/* ------------------------------ フッター上部（ウィジェット） end ------------------------------ */


/* ------------------------------ クリニック情報（ショートコード） start ------------------------------ */
.clinic-info-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 60px;
}
.clinic-info-item {
	position: relative;
	z-index: 1;
	width: calc(50% - 30px);
	text-align: center;
}
.clinic-info-item::before {
	position: absolute;
	z-index: -1;
	top: 0;
	content: "";
	color: var(--color-base);
	font-size: 3.5rem;
	font-family: "Quicksand", sans-serif;
	line-height: 1;
	writing-mode: vertical-rl;
}
.clinic-info-item.cii-tsuchiura::before {
	left: -4.5rem;
	content: "TSUCHIURA";
}
.clinic-info-item.cii-mito::before {
	right: -4rem;
	content: "MITO";
}
.clinic-info-item strong {
	display: block;
	margin-bottom: 15px;
	color: var(--color-main);
	font-size: 1.5rem;
	font-weight: 400;
}
.clinic-info-item address {
	margin-bottom: 15px;
	font-size: 0.9em;
}
.clinic-info-item address a {
	color: var(--color-main);
}
.info-contact-wrap {
	margin-bottom: 60px;
}
.info-contact-ttl {
	position: relative;
	z-index: 1;
	margin-bottom: 30px;
}
.info-contact-ttl::before {
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 0;
	content: "";
	width: 100%;
	height: 1px;
	border-bottom: 2px dashed #ccc;
}
.info-contact-ttl strong {
	display: inline-block;
	padding: 0 30px;
	background: #fff;
	color: var(--color-accent-dark);
	font-size: 1.5rem;
	letter-spacing: 0.25em;
	text-indent: 0.25em;
}
.info-contact-wrap .tel-num-desc {
	margin-bottom: 5px;
}
.info-contact-wrap .mail-btn {
	width: 600px;
	max-width: 100%;
}
.info-tel {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-bottom: 30px;
}
.clinic-info-item .info-tel {
	display: none;
}
.info-tel-icon .material-symbols-outlined {
	margin: 0;
	color: var(--color-main);
	font-size: 4rem;
}
.info-tel-num .tel-num {
	margin-bottom: 0.125em;
}
.info-tel-num-desc {
	color: #666;
	font-size: 0.9em;
	line-height: 1.6;
}
.clinic-info-item .mail-btn {
	margin-bottom: 30px;
}
.clinic-info-tb-wrap {
	padding: 30px;
	border-radius: 10px;
	background: var(--color-base);
}
.clinic-info-tb {
	margin-bottom: 10px;
	border-top: none;
}
.clinic-info-tb :is(th,td) {
	padding: 0.5em;
	text-align: center;
}
.clinic-info-tb thead th {
	width: 10%;
	border-top: none;
	border-bottom-color: #ccc;
	color: #333;
	font-weight: 400;
}
.clinic-info-tb thead th:first-child {
	width: 30%;
}
.clinic-info-tb tbody td {
	color: var(--color-main);
}
.clinic-info-tb tbody td.closed {
	color: var(--color-accent-dark);
}
.clinic-info-tb tbody td:first-child {
	font-weight: 700;
}
.clinic-info-tb-wrap .txt {
	margin-bottom: 5px !important;
	font-size: 0.9em;
}
.mark-desc-list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0 10px;
}
.clinic-info-tb-wrap .mark-desc-list {
	margin-bottom: 15px;
	border-radius: 2.5px;
	background: #fff;
}
.mark-desc-list li {
	display: flex;
	gap: 5px;
	align-items: center;
	font-size: 1rem;
}
.clinic-info-tb-wrap .mark-desc-list li {
	font-size: 0.8em;
}
.mark-desc-list li .info-desc {
	flex: 1;
}
.closed {
	color: var(--color-accent-dark);
}
.medical-subject-list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 5px;
}
.medical-subject-list li {
	padding: 2.5px 10px;
	border: 1px solid #ccc;
	border-radius: 2.5px;
	background: #fff;
	color: var(--color-main);
	font-size: 0.9em;
	line-height: 1.25;
}
.clinic-info-item .more-btn {
	display: none;
	margin-top: 30px;
	border-radius: 10px;
}
/* ------------------------------ クリニック情報（ショートコード） end ------------------------------ */


/* ------------------------------ フロントページ start ------------------------------ */
/* メインビジュアル */
.mv-con {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 102.5svh;
	min-height: 720px;
	max-height: 1440px;
}
.mv-con::before {
	position: absolute;
	z-index: 2;
	bottom: -1px;
	left: 0;
	content: "";
	width: 100%;
	height: 5vw;
	background: url(/wp-content/uploads/2025/04/deco_cloud.png) repeat-x top center;
	background-size: contain;
}
.main-visual {
	position: absolute;
	z-index: 1;
	top: 55%;
	right: 5vw;
	transform: translateY(-55%);
	width: 57.5%;
	height: 60%;
	margin: 0 0 0 auto;
}
.mv-ttl {
	display: inline-block;
	position: absolute;
	z-index: 2;
	top: 40%;
	left: 5vw;
	transform: translateY(-40%);
	width: 38%;
	color: var(--color-main);
	text-align: center;
	text-shadow: 0.2em 0.2em 0 #fff;
}
.mv-ttl-inner {
	display: inline-block;
	text-align: left;
}
.mv-ttl .en {
	margin-bottom: 1em;
	font-size: min(2vw,2rem);
}
.mv-ttl h2 {
	margin-bottom: 0.65em;
	font-size: min(4vw,4rem);
}
.mv-ttl .txt {
	color: #666;
	font-size: min(1.25vw,1.25rem);
}
.mv-swiper {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 960px;
	height: 100%;
	max-height: 1440px;
	margin: 0 auto;
}
.mv-swiper .swiper-slide, .mv-swiper .swiper-slide-inner {
	width: 100%;
	height: 100%;
	border-radius: 30px;
	overflow: hidden;
}
.mv-swiper .swiper-slide img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 最新のお知らせ（ホーム） */
.whats-new-con {
	position: relative;
	z-index: 1;
}
.whats-new-box .stretch-cell div {
	height: 100%;
}
.whats-new-box {
	border: 1px solid #ccc;
	border-radius: 5px;
	background: #fff;
	overflow: hidden;
}
.whats-new-box h2 {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 20px 30px;
	color: var(--color-main);
	font-size: 1rem;
	text-align: center;
}
.whats-new-box h2 span {
	width: 100%;
}
.whats-new-box .vk_posts, .news-con .vk_posts {
	margin: 0;
}
.whats-new-box .vk_posts .postListText {
	display: flex;
	align-items: center;
	gap: 5px;
	margin: 0;
	padding: 0.8rem 20px 0.7rem;;
	border: none;
	background: #fff;
}
.whats-new-box .postListText_singleTermLabel {
	margin-top: 0;
}
.whats-new-con .right a {
	font-size: 0.9em;
}

/* あおぞらクリニックについて（ホーム） */
.home-about-us-con {
	position: relative;
	z-index: 1;
}
.home-about-us-con::before, .home-about-us-con::after {
	position: absolute;
	z-index: -1;
	top: 50%;
	right: 110%;
	transform: translateY(-50%);
	content: "";
	width: 15vw;
	height: auto;
	aspect-ratio: 420/600;
	background: url(/wp-content/uploads/2025/04/illust_leaf-left.png) no-repeat center;
	background-size: contain;
}
.home-about-us-con::after {
	top: auto;
	right: auto;
	bottom: 0;
	left: 110%;
	transform: none;
	aspect-ratio: 441/600;
	background: url(/wp-content/uploads/2025/04/illust_leaf-right.png) no-repeat center;
	background-size: contain;
}
.about-us-wrap {
	position: relative;
	z-index: 1;
	width: 60%;
}
.about-us-wrap::before {
	position: absolute;
	z-index: -1;
	top: -60px;
	right: -240px;
	content: "";
	width: 300px;
	height: auto;
	aspect-ratio: 600/369;
	background: url(/wp-content/uploads/2025/04/illust_main-bird.png) no-repeat center;
	background-size: contain;
}
.about-us-ttl {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 15px;
	text-align: left;
}
.about-us-ttl h2 {
	margin: 0;
	font-size: 1.25rem;
}
.about-us-map {
	position: absolute;
	z-index: -1;
	top: -90px;
	right: -10%;
	width: 45%;
	max-height: 100%;
}
.about-us-map img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center top;
	opacity: 0.5;
}
.feature-link-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
}
.feature-link-item {
	position: relative;
	top: 0;
	left: 0;
	width: calc(100%/3 - 20px);
	padding: 30px;
	border-radius: 10px;
	background: #fff;
	text-align: center;
	box-shadow: var(--box-shadow-primary);
	transition: all 0.3s;
}
@media (hover: hover) {
	.feature-link-item:hover {
		top: 10px;
		box-shadow: var(--box-shadow-primary-hover);
	}	
}
.feature-link-item a {
	display: block;
	color: #333;
}
.feature-link-item .en {
	margin-bottom: 0.5em;
}
.feature-link-item .feature-link-img {
	margin-bottom: 15px;
	overflow: hidden;
}

/* クリニック情報（ホーム） */
.clinic-info-con .clinic-info-item .mail-btn {
	display: none;
}
.clinic-info-con .clinic-info-item .more-btn {
	display: block;
}

/* 在宅医療のご案内（ホーム） */
#pg-19-4 {
	border-radius: 90px 90px 0 0;
	overflow: hidden;
}
.medical-care-link-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 60px;
}
.medical-care-link-item {
	position: relative;
	top: 0;
	width: calc(50% - 30px);
	border-radius: 60px;
	background: #fff;
	text-align: center;
	box-shadow: var(--box-shadow-primary);
	transition: all 0.3s;
}
.medical-care-link-item a {
	display: block;
	padding: 60px;
	color: #333;
}
.medical-care-link-item .en {
	margin-bottom: 30px;
	color: #666;
	font-size: 1.25rem;
}
.medical-care-link-img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60%;
	aspect-ratio: 1/1;
	margin: 0 auto 30px;
	border-radius: 999px;
	background: var(--color-base);
}
.medical-care-link-img img {
	width: 60%;
}
.medical-care-link-item h3 {
	margin-bottom: 15px;
}
.medical-care-link-item .txt br {
	display: none;
}
@media (hover: hover) {
	.medical-care-link-item:hover {
		top: 10px;
		box-shadow: var(--box-shadow-primary-hover);
	}
}

/* はじめて在宅医療をご利用される方へ（ホーム） */
.first-btn {
	display: block;
	position: relative;
	z-index: 1;
	background: var(--color-accent);
	color: #fff;
	transition: all 0.3s;
}
.first-btn:hover {
	color: #fff;
}
.first-btn .con-base {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	text-align: center;
}
.first-btn-icon {
	width: calc(25% - 20px)
}
.first-btn-icon img {
	width: 60%;
	transition: all 0.6s;
}
.first-btn-contents {
	width: calc(50% - 20px)
}
.first-btn-contents .first-btn-label {
	display: inline-block;
	margin-bottom: 30px;
	padding: 5px 60px;
	border-radius: 999px;
	background: var(--color-accent-dark);
	transition: all 0.3s;
}
.first-btn-contents h2 {
	margin-bottom: 10px;
}
.first-btn-contents h2 br {
	display: none;
}
.first-btn-arrow {
	position: relative;
	z-index: 1;
	width: calc(25% - 20px)
}
.first-btn-arrow .line-arrow {
	width: 50%;
}
.first-btn-arrow .line-arrow::before {
	width: 25%;
}
@media (hover: hover) {
	.first-btn:hover {
		background: var(--color-accent-dark);
	}
	.first-btn:hover .first-btn-icon img {
		transform: rotate(-10deg);
	}
	.first-btn:hover  .first-btn-contents .first-btn-label {
		background: var(--color-accent);
	}
	.first-btn:hover .first-btn-arrow .line-arrow {
		right: 0;
	}
}

/* 診療のご案内（ホーム） */
.medical-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
}
.medical-item {
	width: calc(50% - 15px);
}
.medical-item a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	padding: 30px;
	border: 1px solid #ccc;
	border-radius: 10px;
	color: #333;
	transition: all 0.3s;
}
.medical-item a:hover {
	border-color: var(--color-main);
	color: var(--color-main);
}
.medical-item-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}
.medical-img {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 30%;
	aspect-ratio: 1/1;
	border-radius: 999px;
	background: var(--color-base);
	text-align: center;
}
.medical-img img {
	width: 60%;
}
.medical-contents {
	flex: 1;
}
.medical-contents h3 {
	margin-bottom: 15px;
}
.medical-contents .txt {
	font-size: 0.9em;
}
@media (hover: hover) {
	.medical-item a:hover {
		box-shadow: var(--box-shadow-primary);
	}
}

/* お知らせ（ホーム） */
#pg-19-7 {
	background: var(--color-base);
}
.news-con .vk_posts-layout-postListText {
	margin-bottom: 0;
}
.news-con .vk_posts .postListText {
	margin: 0;
	padding: 30px;
	border-bottom: 1px solid #ccc;
}
.news-con .vk_posts .postListText:first-child {
	border-top: 1px solid #ccc;
}
.news-con .postListText_singleTermLabel_inner {
	border-radius: 0;
}

/* 医療法人一青会（ホーム） */
.home-org-con .right a {
	font-size: 0.9em;
}
.org-link-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
}
.org-link-list li {
	width: calc(100%/3 - 20px);
}
.org-link-list li a {
	display: block;
	position: relative;
	z-index: 1;
	padding: 10px 0 10px 60px;
	color: #333;
	font-size: 1.25rem;
	transition: all 0.3s;
}
.org-link-list li a::before, .org-link-list li a::after {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	content: "";
	width: 40px;
	height: 20px;
	border-radius: 999px;
	background: var(--color-main);
}
.org-link-list li a::after {
	left: 15px;
	width: 10px;
	height: 5px;
	background: #fff;
	transition: all 0.3s;
}
.org-link-list li a:hover {
	color: var(--color-main-dark);
}
.org-link-list li a:hover::after {
	background: var(--color-main-dark);
}
/* ------------------------------ フロントページ end ------------------------------ */


/* ------------------------------ サブページ共通 start ------------------------------ */
/* 余白 */
body:not(.home,.post-name-about-us,.parent-pageid-23,.post-name-shiratama) .entry-body > div > div:not(:last-child) > .con-base {
	padding-bottom: 0 !important;
}

/* サブページ内リンク */
.anchor-links {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 10px;
	align-items: center;
}
.anchor-links li {
	display: flex;
	flex-direction: column;
	height: 100%;
	margin: 0 !important;
	text-align: center;
}
.anchor-links li a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	padding: 10px 30px;
	border-bottom: 1px solid #ccc;
	color: #666;
	font-size: 0.8em;
	font-weight: 700;
	text-align: center;
	transition: all 0.3s;
}
.anchor-links li a::before {
	position: absolute;
	z-index: -1;
	top: 50%;
	right: 7.5px;
	transform: translateY(-50%);
	content: "↓";
	color: var(--color-main);
	font-size: 15px;
	line-height: 1;
	transition: all 0.3s;
}
.anchor-links li a:hover{
	border-color: var(--color-main);
	color: var(--color-main);
}
.anchor-links li a:hover::before {
	animation: loopAnimationBottom 0.3s ease 1 normal forwards;
}

/* 固定背景 */
.fixed-img-wrap {
	display: block;
	position: absolute;
	z-index: -1;
	top: 0;
	right: 0;
	height: 100%;
	width: 100%;
}
.fixed-img {
	position: relative;
	overflow: hidden;
	clip-path: inset(0 0 0 0);
	height: 100%;
}
.fixed-img img {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	object-fit: cover;
	object-position: center;
	pointer-events: none;
}

/* リスト */
.deco-list-wrap {
	height: 100%;
	padding: 60px;
	border-radius: 10px;
	background: var(--color-base);
}
.deco-list-wrap h3 {
	margin-bottom: 30px;
}
.deco-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.deco-list li {
	position: relative;
	z-index: 1;
	width: 100%;
	padding-left: 22.5px;
}
.deco-list li::before {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	content: "";
	width: 15px;
	height: auto;
	aspect-ratio: 1/1;
	border-radius: 999px;
	background: var(--color-main);
}
.deco-list li a {
	color: #333;
	text-decoration: underline !important;
}
.deco-list li a:hover {
	opacity: 0.5;
}

/* ボックス */
.contents-box {
	position: relative;
	z-index: 1;
	padding: 60px;
	border-radius: 10px;
	background: var(--color-base-gray);
}
.contents-box.att {
	background: var(--color-base);
}
.con-base#about .contents-box.att::before {
	position: absolute;
	z-index: 1;
	bottom: calc(100% - 1px);
	left: 50%;
	transform: translateX(-50%);
	content: "";
	width: 60px;
	height: auto;
	aspect-ratio: 3 / 1;
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	background: var(--color-base);
}

/* チェックリスト */
.check-list-wrap {
	padding: 60px;
	border: 1px solid var(--color-main);
	background: #fff;
}
.check-list {
    display: flex;
    flex-wrap: wrap;
	gap: 0 30px;
    position: relative;
    z-index: 1;
    max-width: 840px;
    margin: 0 auto;
}
.check-item {
    display: flex;
    align-items: center;
    gap: 0 15px;
    width: calc(50% - 15px);
    padding: 30px;
    border-bottom: 2px dashed #ccc;
}
.check-item .check-box {
    display: inline-block;
    position: relative;
    z-index: 1;
    width: auto;
    height: 25px;
    aspect-ratio: 1 / 1;
	border: 1px solid #ccc;
    background: var(--color-base-gray);
}
.check-item .check {
    position: absolute;
    z-index: 2;
    top: 10%;
    left: 160%;
    transform: translate(-160%, -10%) rotate(-45deg);
    transform-origin: center;
    width: 90%;
    height: 60%;
    border-left: 4px solid var(--color-accent-dark);
    border-bottom: 4px solid var(--color-accent-dark);
}
.check-item .txt {
	margin: 0 !important;
    font-size: 1.25rem;
    line-height: 1.25;
}

/* CTA */
.contents-box .info-contact-wrap {
	margin: 0;
}
.contents-box .info-contact-ttl strong {
	background: var(--color-base);
}
/* ------------------------------ サブページ共通 end ------------------------------ */


/* ------------------------------ サブページ共通（診療案内） end ------------------------------ */
/* ヘッド */
.medical-head {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column-reverse;
	gap: 30px;
}
.medical-head-img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 240px;
	aspect-ratio: 1/1;
	border-radius: 999px;
	background: var(--color-base);
}
.medical-head-img img {
	width: 60%;
}
.medical-head .sec-ttl {
	text-align: center;
}

/* セクションタイトル */
.medical-sec-ttl {
	padding: 30px;
	background: var(--color-main);
	text-align: center;
}
.medical-sec-ttl h2 {
	color: #fff;
}
.medical-sec-ttl .en {
	color: #fff;
}

/* 吹き出し */
.fukidashi p {
	display: inline-block;
	position: relative;
	z-index: 1;
	padding: 0 5%;
}
.fukidashi p::before, .fukidashi p::after {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    content: "";
    width: 2px;
    height: 50%;
    background: var(--color-main);
    transform: rotate(-35deg);
    transform-origin: top;
}
.fukidashi p::after {
    left: auto;
    right: 0;
    transform: rotate(35deg);
}

/* メインビジュアル */
.mv-medical {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	max-height: 960px;
	aspect-ratio: 16/9;
}
.mv-medical > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.mv-medical-ttl {
	position: absolute;
	z-index: 2;
	top: 10%;
	left: 5%;
	width: 40%;
}
.mv-medical-ttl img {
	width: 100%;
	margin: 0 auto;
}

/* 特徴 */
.catch-feature-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}
.catch-feature-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 15px;
	width: calc(100%/3 - 22.5px);
	height: 100%;
	aspect-ratio: 1/1;
	border-radius: 999px;
	background: var(--color-base);
	text-align: center;
}
.catch-feature-item .material-symbols-outlined {
	display: block;
	margin: 0;
	color: var(--color-accent-dark);
	font-size: 3rem;
}
.catch-feature-item .txt {
	margin: 0;
	font-size: 1.5rem;
}

/* 3つの定義リスト */
.medical-std-dl {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
}
.medical-std-dl .dli {
	width: calc(100%/3 - 22.5px);
	margin: 0;
	padding: 60px;
	border: 1px solid var(--color-main);
	border-radius: 10px;
	background: #fff;
}
.medical-std-dl .dli dt {
	margin-bottom: 20px;
	color: var(--color-accent-dark);
	font-size: 1.5rem;
	text-align: center;
}
/* ------------------------------ サブページ（診療案内）共通 end ------------------------------ */


/* ------------------------------ あおぞらクリニックについて start ------------------------------ */
.post-name-about-us .anchor-links {
	grid-template-columns: 1fr 1fr 1fr;
}

/* リードコンテンツ */
.symbol-mark {
	position: relative;
	z-index: 2;
}
.symbol-mark img {
	width: 100%;
	max-width: 300px;
}
.con-base#greeting .contents-box {
	margin-top: -75px;
	background: var(--color-base);
}

/* あおぞらクリニックの特徴 */
.feature-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	border-top: 1px solid #ccc;
	counter-reset: number 0;
}
.feature-item {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 60px;
	width: 100%;
	padding: 60px 0;
	border-bottom: 1px solid #ccc;
}
.feature-item-img {
	width: calc(40% - 30px);
	border-radius: 30px;
}
.feature-item-contents {
	width: calc(60% - 30px);
}
.feature-item-contents .feature-ttl {
	position: relative;
	z-index: 2;
	margin-bottom: 30px;
}
.feature-item-contents .feature-ttl .en {
	margin-bottom: 10px;
}
.feature-item-contents .feature-txt {
	position: relative;
	z-index: 1;
	padding: 30px;
	border-radius: 10px;
	background: var(--color-base);
}
.feature-item-contents .feature-txt::before {
	position: absolute;
	z-index: -1;
	bottom: 90%;
	right: 30px;
	counter-increment: number 1;
	content: counter(number, decimal-leading-zero) "";
	color: var(--color-base);
	font-size: 8rem;
	font-family: "Quicksand", sans-serif;
	line-height: 1;
}

/* 事業所一覧 */
.con-base#clinic-list .clinic-info-item .mail-btn {
	display: none;
}
.con-base#clinic-list .clinic-info-item .more-btn {
	display: block;
}
/* ------------------------------ あおぞらクリニックについて end ------------------------------ */

/* ------------------------------ あおぞらクリニック個別ページ start ------------------------------ */
/* 訪問エリア */
.area-map {
	width: 100%;
	max-width: 600px;
	aspect-ratio: 4/3;
	margin: 0 auto;
	border: 1px solid #ccc;
	border-radius: 30px;
	overflow: hidden;
}
.area-map img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.25,1.25);
}
.area-map.map-tsuchiura img {
	object-position: bottom 5% left 50%;
}
.area-map.map-mito img {
	object-position: top 35% left 50%;
}
.area-box {
	padding: 30px;
	border-radius: 10px;
	background: var(--color-base);
	font-size: 0.9em;
}

/* 診療科目 */
.departments-list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
}
.departments-item {
	padding: 30px;
	border: 1px solid #ccc;
	border-radius: 10px;
	text-align: center;
}
.departments-tsuchiura .departments-item {
	width: calc(100%/3 - 20px);
}
.departments-mito .departments-item {
	width: calc(100%/3 - 20px);
}
.departments-icon {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 50%;
	aspect-ratio: 1/1;
	margin: 0 auto 30px;
	border-radius: 999px;
	background: var(--color-base);
}
.departments-icon .material-symbols-outlined {
	margin: 0;
	font-size: 3em;
}
.departments-ttl {
	margin-bottom: 15px;
}
.departments-ttl h3 {
	color: var(--color-main);
}
.departments-txt .txt {
	font-size: 0.9em;
}

/* 診療時間 */
.con-base#c-hours .clinic-info-tb-wrap {
	margin: 0;
	padding: 60px;
}
.con-base#c-hours .clinic-info-tb :is(th,td) {
	padding: 1em;
}
/* ------------------------------ あおぞらクリニック個別ページ end ------------------------------ */


/* ------------------------------ 訪問診療・往診 start ------------------------------ */
/* 共通 */
.visit-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	gap: 60px;
}
.visit-head-img {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 15%;
	aspect-ratio: 1 / 1;
	margin: 0 auto;
	border-radius: 999px;
	background: var(--color-base);
}
.visit-head-img img {
	width: 60%;
}
.visit-head .sec-ttl {
	flex: 1;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--color-main);
}
.visit-tag {
	margin-bottom: 15px;
}
.visit-tag .txt {
	display: inline-block;
	padding: 2.5px 20px;
	border-radius: 5px;
	background: var(--color-main);
	color: #fff;
	font-weight: 700;
}
.post-name-visit .medical-care-link-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-radius: 30px;
}
.post-name-visit .medical-care-link-item a {
	padding: 60px;
}
.post-name-visit .medical-care-link-item-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px;
}
.post-name-visit .medical-care-link-img {
	width: 30%;
	margin: 0;
}
.post-name-visit .medical-care-link-ttl {
	flex: 1;
	text-align: left;
}
.post-name-visit .medical-care-link-ttl .txt {
	font-size: 0.9em;
}
/* 診療報酬 */
.score-tb :is(th,td) {
	padding: 1em;
	background: #fff;
	text-align: center;
}
.score-tb thead th {
	background: var(--color-base);
}
.score-tb.sogo-kanri thead tr:first-child th:nth-child(1) {
	width: 12.5%;
}
.score-tb.sogo-kanri thead tr:first-child th:nth-child(2) {
	width: 27.5%;
}
.score-tb.sogo-kanri thead tr:first-child th:nth-child(3) {
	width: 60%;
}
.score-tb tbody td.fs-s {
	font-size: 0.7em;
}
.contents-box:not(.att) .deco-list li {
	width: auto;
}
/* ------------------------------ 訪問診療・往診 end ------------------------------ */


/* ------------------------------ オンライン診療 start ------------------------------ */
/* よくある質問 */
.faq-dl {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
}
.faq-dl .dli {
	width: 100%;
	margin: 0;
}
.faq-dl dt {
	position: relative;
	z-index: 1;
	margin-bottom: 20px;
	padding-left: 2.5em;
	font-size: 1.1em;
	line-height: 1.8;
}
.faq-dl dd {
	position: relative;
	z-index: 1;
	padding: 30px;
	padding-left: 4.5em;
	border-radius: 10px;
	background: var(--color-base-gray);
	font-size: 1em;
}
.faq-dl .qa {
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0.25em;
	color: var(--color-main);
	font-size: 1.5em;
	font-family: "Quicksand", sans-serif;
	line-height: 1;
}
.faq-dl .qa-a {
	top: 30px;
	left: calc(30px + 0.25em);
	color: var(--color-accent);
	font-weight: 700;
}
/* ------------------------------ オンライン診療 end ------------------------------ */


/* ------------------------------ 美容内科 start ------------------------------ */
/* ------------------------------ 美容内科 end ------------------------------ */


/* ------------------------------ 白玉点滴 start ------------------------------ */
/* 余白 */
.post-name-shiratama .entry-body > div > div > .con-base {
	padding-top: 0 !important;
}

/* こんなな方におすすめ！ */
#pg-4527-2 {
	background: var(--color-base);
}

/* 主な成分と効果 */
#pg-4527-3::before {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	background: url(/wp-content/uploads/2025/05/bg_shiratama01.jpg) no-repeat center;
	background-size: cover;
	opacity: 0.25;
}
/* ------------------------------ 白玉点滴 end ------------------------------ */


/* ------------------------------ 巡回健診 start ------------------------------ */
/* 巡回健診について */
.post-name-mobile-checkup .medical-img {
	width: 20%;
}

/* 巡回健診の特徴 */
.mc-feature-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.mc-feature-item {
	width: 100%;
	padding: 30px;
	border-radius: 10px;
	background: var(--color-base);
}
.mc-feature-txt .txt {
	margin: 0 !important;
	font-size: 0.9em;
}

/* 健診内容 */
.helth-check-dl {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.helth-check-dl .dli {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 0;
	border-radius: 10px;
	background: var(--color-base-gray);
}
.helth-check-dl .dli dt {
	position: relative;
	z-index: 1;
	width: 30%;
	margin: 0;
	padding: 20px;
	font-size: 1rem;
}
.helth-check-dl .dli dt::before {
	position: absolute;
	z-index: 1;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	content: "";
	width: 1px;
	height: 50%;
	background: var(--color-main);
}
.helth-check-dl .dli dd {
	flex: 1;
	padding: 20px;
	font-size: 0.9em;
}
.helth-check-dl .dli .star {
	color: var(--color-main);
	font-size: 0.8em;
	vertical-align: super;
}

/* 健康診断実施コース */
.course-tb :is(th,td) {
	padding: 1em 1.5em;
}
.course-tb thead th {
	background: var(--color-base);
	text-align: center;
}
.course-tb thead th .fs-s {
	display: block;
}
.course-tb thead tr:nth-child(1) th:nth-child(1) {
	width: 15%;
}
.course-tb thead tr:nth-child(2) th:nth-child(1) {
	width: 25%;
}
.course-tb thead tr:nth-child(2) th {
	width: 20%;
}
.course-tb tbody td:nth-of-type(n+2) {
	color: var(--color-sub);
	text-align: center;
}
:where(:not(.wp-block-table))>table.course-tb th {
	border-color: #ccc;
}

/* 巡回健診までの流れ */
.service-flow-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
	position: relative;
	z-index: 1;
	padding: 45px 0 90px 45px !important;
	counter-reset: number 0;
}
.service-flow-list::before {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	content: "";
	width: 90px;
	height: 100%;
	border-radius: 0 0 999px 999px;
	background: var(--color-base);
}
.service-flow-item {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 60px;
	border: 1px solid #ccc;
	border-radius: 30px;
	background: #fff;
}
.service-flow-item::before {
	position: absolute;
	z-index: -1;
	bottom: 0;
	right: 30px;
	counter-increment: number 1;
	content: counter(number, decimal-leading-zero) "";
	color: var(--color-base);
	font-size: 8rem;
	font-family: "Quicksand", sans-serif;
	line-height: 1;
}
.service-flow-item::after {
	position: absolute;
	z-index: 1;
	top: 70px;
	left: -15px;
	content: "";
	width: 30px;
	height: 1px;
	background: var(--color-main);
}
.service-flow-item .num:not(.tel-num) {
	margin-bottom: 15px;
	color: var(--color-main);
	font-size: 1.5em;
}
.service-flow-item h3 {
	margin-bottom: 30px;
}
.service-flow-item h4 {
	margin-bottom: 15px;
}
.service-flow-item .txt:last-of-type {
	margin-bottom: 0 !important;
}
.service-flow-item .info-contact-wrap {
	margin: 30px 0 0;
}
/* ------------------------------ 巡回健診 start ------------------------------ */


/* ------------------------------ はじめての方へ start ------------------------------ */
.post-name-first .entry-body {
	--color-main: var(--color-accent);
}
.post-name-first .fixed-first-btn {
	display: none;
}
.post-name-first .homon {
	--color-main: #009fe8;
}
.post-name-first .oshin {
	--color-main: #0054b4;
}

/* リードコンテンツ */
#pg-4057-0 {
	background: var(--color-accent);
}
#pg-4057-0::before {
	position: absolute;
	z-index: -1;
	bottom: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 1px;
	background: #ccc;
}
.con-base#first {
	padding-bottom: 0 !important;
}
.first-head-wrap {
	display: flex;
	align-items: center;
	gap: 60px;
	color: #fff;
}
.first-head-icon {
	position: relative;
	z-index: 1;
	width: 25%;
}
.first-head-ttl {
	display: flex;
	flex-direction: column;
	gap: 20px;
	flex: 1;
	padding: 60px 20px;
	border-top: 2px dashed #fff;
	border-bottom: 2px dashed #fff;
}
.first-head-label {
	margin-bottom: 10px;
}
.first-head-label .txt {
	display: inline-block;
	padding: 5px 30px;
	border-radius: 999px;
	background: #fff;
	color: var(--color-accent);
}
.first-head-ttl h2 {
	line-height: 2.25;
}
ruby rt {
	margin-bottom: 0.5em;
	font-size: 0.35em;
}
.first-box {
	padding: 60px;
	border-radius: 10px;
	background: #fff;
}
.compare-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
}
.compare-item {
	width: calc(50% - 15px);
	padding: 30px;
	border-radius: 10px;
	background: var(--color-base-gray);
}
.compare-item h4 {
	margin-bottom: 15px;
	color: var(--color-main);
	text-align: center;
}
.compare-tb :is(th,td) {
	padding: 1em;
}
:where(:not(.wp-block-table))>table.compare-tb th {
	border-color: #ccc;
	color: var(--color-main);
	vertical-align: top;
}
.tab-lead-wrap {
	display: inline-block;
	position: relative;
	z-index: 1;
	padding: 0 130px;
}
.tab-lead-wrap::before, .tab-lead-wrap::after {
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	content: "";
	width: 40px;
	height: 20px;
	clip-path: polygon(50% 100%, 0 0, 100% 0);
	background: #fff;
}
.tab-lead-wrap::after {
	left: auto;
	right: 0;
}
.tab-lead-wrap .lead {
	color: #fff;
}
.tab-lead-wrap .txt {
	color: #fff;
}

/* 訪問診療・往診タブ */
.first-tab-panel-wrap .tab-panel {
	padding-top: 0 !important;
}
.visit-info-item {
	display: flex;
	gap: 60px;
	padding: 60px 0;
	border-bottom: 1px solid #ccc;
}
.visit-info-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 150px;
	height: 100%;
	aspect-ratio: 1/1;
	border-radius: 999px;
	background: var(--color-main);
	color: #fff;
}
.visit-info-icon .material-symbols-outlined {
	margin: 0;
	font-size: 4em;
}
.visit-info-contents {
	flex: 1;
}
.visit-info-contents h3 {
	margin-bottom: 15px;
}
.visit-info-contents .lead {
	margin-bottom: 30px;
	color: #333;
}
.visit-info-contents :is(ul,ol):not(.deco-list) {
	margin-top: 30px;
}
.info-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.info-list li {
	padding: 5px 20px;
	border-radius: 5px;
	background: var(--color-base-gray);
	font-size: 0.9em;
}
.list-wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 30px;
}
.list-wrap .list {
	width: calc(50% - 15px);
	padding: 60px;
	border-radius: 10px;
	background: var(--color-base);
}
.list-wrap .list:last-child {
	background: var(--color-base-gray);
}
.list-wrap .list h4 {
	display: inline-block;
	margin-bottom: 30px;
	padding: 0 5px;
	border-bottom: 1px solid var(--color-main);
	color: var(--color-main);
}
.list-wrap .list .deco-list li .fs-s {
	display: block;
	margin: 0;
	color: var(--color-main);
}
.fee-case-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
}
.fee-case-item {
	width: 100%;
	padding: 60px;
	border: 1px solid #ccc;
	border-radius: 30px;
	background: #fff;
	text-align: center;
}
.fee-case-item > .num {
	margin-bottom: 10px;
	color: var(--color-main);
}
.fee-case-item :is(h3,h4) {
	margin-bottom: 30px;
	padding: 10px 30px;
	background: var(--color-base);
	color: var(--color-accent);
}
.fee-case-item .notes-ul {
	text-align: left;
}
.fee-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 30px;
}
.fee-list li {
	position: relative;
	z-index: 1;
	width: calc(100%/3 - 20px);
}
.fee-list li:not(:last-child)::before {
	position: absolute;
	z-index: 1;
	top: 50%;
	right: -14.5px;
	transform: translateY(-50%);
	content: "";
	width: 1px;
	height: 80%;
	background: #ccc;
}
.fee-list li .fee-ttl {
	font-weight: 700;
}
.fee-list li .fee {
	margin-bottom: 5px;
	color: var(--color-main);
	font-size: 1.5rem;
}
.fee-list li .fee .num {
	font-size: 2em;
}
.fee-list li .desc-txt {
	margin: 0;
	color: #666;
	font-size: 0.9em;
}
.other-fee-wrap {
	position: relative;
	z-index: 1;
	margin: 90px 0 30px;
}
.other-fee-wrap::before {
	position: absolute;
	z-index: 1;
	top: -75px;
	left: 50%;
	transform: translateX(-50%);
	content: "+";
	color: var(--color-main);
	font-size: 60px;
	font-weight: 700;
	line-height: 1;
}
.other-fee-wrap .info-list {
	justify-content: center;
	margin-top: 10px !important;
}
.breakdown-tb :is(th, td) {
	padding: 1em;
}
.breakdown-tb tbody th {
	width: 70%;
	background: var(--color-base);
}
.breakdown-tb tbody td {
	width: 30%;
}
/* ------------------------------ はじめての方へ end ------------------------------ */


/* ------------------------------ 法人案内 start ------------------------------ */
/* 法人概要 */
.overview-tb th {
	background: var(--color-base);
	vertical-align: top
}

/* 経営方針 */
.m-policy-dl {
	display: flex;
	flex-wrap: wrap;
}
.m-policy-dl .dli {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 60px 0 30px;
	margin-left: 7.5%;
}
.m-policy-dl .dli:not(:last-child) {
	margin-bottom: 60px;
}
.m-policy-dl .dli::before, .m-policy-dl .dli::after {
	position: absolute;
	z-index: -1;
	top: 50%;
	left: -7.5%;
	transform: translateY(-50%);
	content: "";
	width: auto;
	height: 100%;
	aspect-ratio: 1/1;
	border: 1px solid var(--color-main);
	border-radius: 999px;
}
.m-policy-dl .dli::after {
	top: 0;
	transform: none;
	height: 25%;
}
.m-policy-dl .dli :is(dt,dd) {
	padding: 5px 0;
	background: #fff;
}
.m-policy-dl .dli dt {
	margin-bottom: 20px;
	color: var(--color-main);
	font-size: 2rem;
	font-weight: 400;
}
.m-policy-dl .dli dd {
	margin-left: 2em;
}

/* 沿革 */
.history-dl {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
	padding-left: 75px;
}
.history-dl::before {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 5px;
	content: "";
	width: 2px;
	height: 100%;
	background: #ccc;
}
.history-dl .dli {
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
	width: 100%;
	margin: 0;
	padding: 30px 0;
}
.history-dl .dli dt {
	position: relative;
	z-index: 1;
	margin: 0;
	color: var(--color-main);
	font-size: 1.25rem;
}
.history-dl .dli dt .fs-s {
	display: block;
	margin: 0.25em 0 0;
	color: #666;
}
.history-dl .dli dt::before {
	position: absolute;
	z-index: 1;
	top: 1.5em;
	left: -74px;
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: var(--color-main);
}
.history-dl .dli dt .num {
	margin-right: 0.125em;
	font-size: 3em;
	font-weight: 400;
}
.history-dl .dli dd {
	flex: 1;
	font-size: 1rem;
}
.history-dl .dli dd ul {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.history-dl .dli dd ul li {
	width: 100%;
}
.history-dl .dli dd .month {
	display: block;
	margin-bottom: 10px;
	color: var(--color-main);
	font-size: 1.25rem;
	font-weight: 700;
}
/* ------------------------------ 法人案内 end ------------------------------ */


/* ------------------------------ 施設基準 start ------------------------------ */
/* ------------------------------ 施設基準 end ------------------------------ */


/* ------------------------------ 投稿 start ------------------------------ */
/* サイドバー */
.widget-title.sub-section-title {
	padding: 10px 0;
	color: #333;
	font-size: 1rem;
	line-height: 1;
}

/* アーカイブページ */
.archive-header-title { margin-bottom: 60px; }
:is(.post-type-post, .archive, .single) .sub-section .widget_nav_menu>div>ul li a, :is(.post-type-post, .archive, .single) .widget_nav_menu>ul li a { padding: 0.85em 1.5em; border: 1px solid #ccc; border-radius: 999px; background-color: #fff; color: #333; }
:is(.post-type-post, .archive, .single) .sub-section .widget_nav_menu>ul li>ul.children { margin-left: 1.5em; }
:is(.post-type-post, .archive, .single) .sub-section .widget_nav_menu>ul li.current-cat>a { border-color: var(--color-main); background: var(--color-main); color: #fff; }
.card-noborder .vk_post_imgOuter { border-color: #ccc; border-radius: 10px; }
.next-prev-prev .vk_post_imgOuter_singleTermLabel { right: auto; left: 5px; }
.vk_post_imgOuter_singleTermLabel { top: 5px; right: 5px; border: 1px solid #fff; border-radius: 5px; }
.vk_post .vk_post_title { margin: 0; font-size: 1.25rem; font-weight: 400; }

/* シングルページ */
.single:not(.single-works) .entry-header {
	margin-bottom: 60px;
}
.single .entry-header h1 {
	margin: 0;
}
.single .entry-body p:not(:last-of-type) {
	margin-bottom: 10px;
}
.entry-meta-data-list:first-child {
	margin: 30px 0 5px;
}
.single .main-section--margin-bottom--on {
	margin-bottom: 60px;
}
.single .site-body .entry-footer {
	margin-bottom: 60px;
}
/* ------------------------------ 投稿 end ------------------------------ */


/* ------------------------------ お問い合わせ start ------------------------------ */
.post-name-contact .site-body-bottom {
	display: none;
}
.con-base#tel {
	padding-bottom: 0 !important;
}
.contact-tel-box {
	padding: 60px;
	border-radius: 10px;
	background: var(--color-base);
	text-align: center;
}
.tel-num {
	color: #333;
	font-size: 3rem;
	font-weight: 500;
	transition: all 0.3s;
}
.tel-num:hover {
	color: var(--color-main);
}
.tel-num .fs-s {
	margin-left: 0;
	color: var(--color-main);
	font-size: 0.5em;
}
.contact-desc {
	color: #666;
	font-weight: 700;
}
/* ------------------------------ お問い合わせ end ------------------------------ */


/* ------------------------------ プライバシーポリシー start ------------------------------ */
/* ------------------------------ プライバシーポリシー end ------------------------------ */


/* ------------------------------ 404ページ start ------------------------------ */
/* ------------------------------ 404ページ end ------------------------------ */


/* ------------------------------ レスポンシブ対応（1260px以下） start ------------------------------ */
@media (max-width: 1260px) {
	/* コンテナ */
	.con-base, :is(.page-header, #breadcrumb, footer, body:not(.page) .site-body) .container:not(.site-footer-copyright) { width: 931px; max-width: 931px; }

	/* ヘッダー */
	.site-header--layout--nav-float .site-header-container {
		padding-right: 135.68px;
	}
	.site-header--layout--nav-float .site-header-logo {
		margin-right: 0;
	}

	/* スクロール時ヘッダー */
	.header_scrolled .site-header-logo {
		margin-right: 0 !important;
	}

	/* ヘッダー上部 */
	.header-top .container {
		padding-right: 175.68px;
	}

	/* ヘッダーお問い合わせボタン */
	.header-contact-btn-wrap {
		right: 40px;
		width: auto;
	}
	.header-contact-btn.hcb-mail .btn-cmt .txt {
		display: none;
	}
	.header-contact-btn.hcb-mail .btn-icon .material-symbols-outlined {
		font-size: 1.5em;
	}
	.header-contact-btn.hcb-mail .btn-ttl .txt {
		font-size: 0.7em;
	}
	.header_scrolled .header-contact-btn-wrap {
		right: 20px;
	}

	/* フッター上部 */
	.aozora-curve {
		aspect-ratio: 64/8; 
	}
	.msg-con .lead {
		font-size: 3vw;
	}
	.msg-deco.deco-bird {
		width: 30vw;
	}
	.msg-deco.deco-balloon {
		width: 15vw;
	}

	/* ページヘッダー */
	.page-header {
		min-height: 22.5rem;
	}
	.page-header-title, h1.page-header-title {
		font-size: 4vw;
	}
	.page-header-subtext {
		font-size: 2.25vw;
	}

	/* 固定ボタン（はじめて） */
	.fixed-first-btn .txt {
		font-size: 0.9em;
	}

	/* クリニック情報（ショートコード） */
	.medical-subject-list li {
		font-size: 0.8em;
	}

	/* フロントページ */
	.mv-ttl .en {
		font-size: 2.25vw;
	}
	.mv-ttl .txt {
		font-size: 1.75vw;
	}
	.whats-new-con .vk_posts .postListText {
		flex-wrap: wrap;
		padding: 15px 20px;
	}
	.about-us-wrap::before {
		width: 30vw;
	}
	.about-us-map {
		top: 0;
		width: 55%;
	}
	.medical-care-link-item .txt br {
		display: block;
	}
	.first-btn-icon img {
		width: 80%;
	}
	.first-btn-contents h2 br {
		display: block;
	}

	/* はじめての方へ */
	.list-wrap .list {
		padding: 60px 30px;
	}
	.fee-case-item {
		padding: 60px 30px;
	}
	.fee-list li .fee {
		font-size: 1.2em;
	}
}
/* ------------------------------ レスポンシブ対応（1260px以下） end ------------------------------ */


/* ------------------------------ レスポンシブ対応（991px以下） start ------------------------------ */
@media (max-width: 991px) {
	/* コンテナ */
	.con-base, :is(.page-header, #breadcrumb, footer, body:not(.page) .site-body) .container:not(.site-body-bottom .container, .site-footer-copyright) { width: 100%; max-width: 100%; padding-right: 30px; padding-left: 30px; }

	/* 共通 */
	.scroll-tb-wrap { overflow: scroll; }
	.scroll-tb-wrap .txt.notes { display: block; }
	.scroll-tb-wrap table { width: 990px; }

	/* モバイルナビ */
	.vk-mobile-nav {
		padding: 80px 20px 180px;
		text-align: center;
		background: #fff;
	}
	.vk-mobile-nav.vk-mobile-nav-open {
		display: block;
		transition: all 0.3s;
	}
	.vk-mobile-nav-widget:first-child {
		margin-bottom: 30px;
	}
	.mobile-logo img {
		width: 100%;
		max-width: 240px;
	}
	.vk-mobile-nav-menu-outer { opacity: 0; transition: all 0.3s;}
	.vk-mobile-nav-open .vk-mobile-nav-menu-outer { animation-name: opacityAnime; animation-duration: 1s; animation-delay: 0s; animation-fill-mode: forwards; }
	@keyframes opacityAnime { 0% { opacity: 0; } 100% { opacity: 1; } }
	.vk-mobile-nav .btn-base { opacity: 0; width: 100%; }
	.vk-mobile-nav.vk-mobile-nav-open .btn-base { animation-name: opacityAnime; animation-duration: 1s; animation-delay: .3s; animation-fill-mode: forwards; }
	.vk-mobile-nav-menu-outer>ul>li a {
		position: relative;
		z-index: 1;
		padding: 15px 45px !important;
		color: #333 !important;
		font-size: 1.1rem;
		font-weight: 700;
		text-align: center !important;
		border-bottom: 1px solid #ccc !important;
	}
	.vk-mobile-nav-menu-outer>ul>li:last-child {
		margin: 10px 0 45px;
	}
	.vk-mobile-nav-menu-outer>ul>li:last-child a {
		border: none !important;
		border-radius: 10px;
		background: var(--color-main);
		color: #fff !important;
	}
	.vk-mobile-nav-menu-outer>ul>li a .fs-s {
		display: block;
		margin-top: 0.25em;
		color: var(--color-main);
		font-size: 0.65em;
		font-weight: 400;
		font-family: "barlow", sans-serif;
	}
	.vk-mobile-nav-menu-outer>ul>li:last-child a .fs-s {
		color: #fff;
	}
	.vk-menu-acc .acc-btn {
		top: 22px;
		border-color: #fff;
		border-radius: 50%;
		background: var(--vk-menu-acc-icon-open-white-bg-src) center 50% no-repeat;
		background-color: var(--color-main);
	}
	.vk-menu-acc .acc-btn.acc-btn-close {
		background: var(--vk-menu-acc-icon-close-white-bg-src) center 50% no-repeat;
		background-color: var(--color-main);
	}
	.vk-menu-acc ul.sub-menu li {
		margin-top: 5px;
	}
	.vk-menu-acc ul.sub-menu li:last-child {
		margin-bottom: 10px;
	}
	.vk-menu-acc ul.sub-menu li a {
		border: none !important;
		background: var(--color-base-gray);
		font-size: 0.9em;
	}
	.vk-menu-acc ul.sub-menu li .acc-btn {
		top: 12.5px;
	}
	.vk-menu-acc ul.sub-menu li .sub-menu li {
		margin-bottom; 0;
	}
	.vk-menu-acc ul.sub-menu li .sub-menu li a {
		background: transparent;
		color: var(--color-sub) !important;
	}
	.vk-mobile-nav .widget_nav_menu ul.menu {
		border-top: 1px solid #ccc;
	}
	.vk-mobile-nav .widget_nav_menu ul li a {
		padding: 10px 20px;
		border-bottom: 1px solid #ccc;
	}
	.openbtn {
		position: fixed;
		top: 15px;
		right: 25px;
		transition: all 0.5s ease-out;
		cursor: pointer;
		width:  35px;
		height: 45px;
		z-index: 9999;
	}
	.openbtn span {
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 0;
		width: 100%;
		height: 2px;
		background: var(--color-main);
		box-sizing: content-box;
		transition: all 0.3s;
	}
	.openbtn span:nth-of-type(1) { top:13px; }
	.openbtn span:nth-of-type(2) { top:21px; }
	.openbtn span:nth-of-type(3) { top:29px; }
	.openbtn.active span:nth-of-type(1) { top: 16px; transform: translateY(6px) rotate(-45deg); }
	.openbtn.active span:nth-of-type(2) { opacity: 0; }
	.openbtn.active span:nth-of-type(3) { top: 28px; transform: translateY(-6px) rotate(45deg); }

	/* ヘッダー */
	.site-header {
		top: 10px;
		left: 0;
		min-height: 55px;
		padding-right: 0;
	}
	.site-header-container {
		width: calc(100% - 20px);
		min-height: 55px;
		margin: 0 10px;
		padding: 0 10px;
		border-radius: 10px;
	}
	.site-header--layout--nav-float .site-header-container {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		padding-right: 200.68px;
	}
	.site-header--layout--nav-float .site-header-logo {
		margin: 0;
		padding: 0;
	}
	.site-header-logo a {
		display: block;
	}
	.site-header-logo img {
		max-height: 40px;
	}

	/* スクロール時ヘッダー */
	.header_scrolled .site-header {
		left: 10px;
		width: calc(100% - 20px);
		max-width: 100%;
		margin: 0 auto;
		padding: 0;
	}
	.header_scrolled .site-header-container {
		width: 100%;
	}
	.header_scrolled .site-header-logo {
		display: block;
		max-height: 40px;
		margin: 7.5px 0;
		padding-top: 0;
		background-image: var(--vk-header-logo-url);
		background-repeat: no-repeat;
		background-size: contain;
		background-position: left;
	}
	.header_scrolled .site-header-logo img {
		max-height: 40px !important;
		opacity: 0;
	}

	/* ヘッダーお問い合わせボタン */
	.header-contact-btn-wrap {
		top: -10px;
		right: 75px;
	}
	.header-contact-btn.hcb-mail a {
		border-radius: 0 0 10px 10px;
	}
	.header_scrolled .header-contact-btn-wrap {
		top: -10px;
		right: 65px;
		height: calc(100% + 20px);
	}

	/* ページヘッダー */
	.page-header-title, h1.page-header-title {
		font-size: 5vw;
	}
	.page-header-subtext {
		font-size: 2.75vw;
	}

	/* フッター上部 */
	.msg-con::after {
		height: 50%;
	}
	.msg-con .lead {
		font-size: 3.5vw;
	}

	/* フッター */
	.site-footer-copyright {
		padding-bottom: 81px;
	}

	/* 固定ボタン（電話） */
	.fixed-btn-wrap {
		flex-direction: row;
		top: auto;
		right: auto;
		bottom: 10px;
		left: 50%;
		transform: translateX(-50%);
	}
	.fixed-btn.fb-tel {
		width: 100%;
	}
	.fixed-btn.fb-tel a {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
		padding: 10px 30px;
		border-radius: 10px;
		box-shadow: 0 0 20px rgba(0, 117, 193, 0.4);
	}
	.fixed-btn.fb-tel .btn-tel-icon .material-symbols-outlined {
		font-size: 25px;
	}
	.fixed-btn.fb-tel .btn-tel-icon .kosugi {
		font-size: 0.7em;
	}
	.fixed-btn.fb-tel .btn-tel {
		justify-content: center;
	}
	.fixed-btn.fb-tel .btn-tel-num {
		display: none;
	}

	/* 固定ボタン（はじめて） */
	.fixed-first-btn {
		top: auto;
		bottom: 130px;
	}
	.fixed-first-btn a {
		padding: 20px 10px;
		padding-top: 30px;
		border-radius: 10px 0 0 10px;
	}
	.fixed-first-btn img {
		top: -20px;
		left: -20px;
	}
	.fixed-first-btn .txt {
		font-size: 0.8em;
	}

	/* クリニック情報（ショートコード） */
	.clinic-info-list {
		gap: 30px;
	}
	.clinic-info-item {
		width: calc(50% - 15px);
	}
	.clinic-info-item.cii-tsuchiura::before {
		left: -30px;
	}
	.clinic-info-item.cii-mito::before {
		right: -30px;
	}
	.clinic-info-item .info-tel-icon .material-symbols-outlined {
		font-size: 3rem;
	}
	.clinic-info-item .info-tel-num .tel-num {
		font-size: 2.5rem;
	}
	.clinic-info-item .info-tel-num-desc {
		font-size: 0.8em;
	}

	/* フロントページ */
	.mv-con {
		height: auto;
		min-height: 100%;
		max-height: 100%;
	}
	.mv-ttl {
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		width: 100%;
		padding: 105px 30px 45px;
	}
	.mv-ttl-inner {
		text-align: center;
	}
	.mv-ttl .en {
		font-size: 2.5vw;
	}
	.mv-ttl h2 {
		font-size: 5vw;
	}
	.mv-ttl .txt {
		font-size: 2vw;
	}
	.main-visual {
		position: relative;
		top: auto;
		right: auto;
		transform: none;
		width: 80%;
		height: auto;
		aspect-ratio: 3/2;
		margin: 0 auto 12.5svh;
	}
	.mv-swiper {
		max-width: 100%;
		max-height: 100%;
	}
	.about-us-map {
		width: 65%;
	}
	.feature-link-list {
		justify-content: center;
	}
	.feature-link-item {
		width: calc(50% - 15px);
	}
	.medical-care-link-item {
		border-radius: 30px;
	}
	.medical-item {
		width: 100%;
	}
	
	/* 診療ページ共通 */
	.medical-std-dl .dli {
		width: calc(50% - 15px);
	}
	.medical-std-dl .dli:first-child {
		width: 100%;
	}
	
	/* あおぞらクリニックについて */
	.deco-list-wrap {
		padding: 30px;
	}

	/* 訪問診療・往診 */
	.post-name-visit .medical-care-link-item a {
		padding: 30px;
	}
	.post-name-visit .medical-care-link-item-inner {
		flex-direction: column;
	}
	.post-name-visit .medical-care-link-img {
		width: 60%;
	}
	.medical-care-link-item h3 {
		text-align: center;
	}
	.visit-head-img {
		width: 25%;
	}
	.contents-box {
		padding: 60px 30px;
	}

	/* 巡回健診 */
	.post-name-mobile-checkup .medical-img {
		width: 30%;
	}

	/* はじめての方へ */
	.first-head-wrap {
		flex-direction: column;
		gap: 0;
	}
	.first-head-ttl {
		margin-top: -30px;
		text-align: center;
	}
	.first-box {
		padding: 60px 30px;
	}
	.compare-item {
		width: 100%;
	}
	.visit-info-item {
		gap: 30px;
	}
	.visit-info-icon {
		width: 100px;
	}
	.visit-info-icon .material-symbols-outlined {
		font-size: 2em;
	}
	.list-wrap .list {
		width: 100%;
		padding: 30px;
	}

	/* お問い合わせ */
	.cf7-btn .btn-base {
		min-width: 50%;
	}

	/* サブページ共通 */
	.anchor-links {
		grid-template-columns: 1fr 1fr;
	}
}
/* ------------------------------ レスポンシブ対応（991px以下） end ------------------------------ */


/* ------------------------------ レスポンシブ対応（780px以下） start ------------------------------ */
@media (max-width: 780px) {
	/* 共通 */
	.sec-ttl-wrap .sec-ttl::before {
		top: -22.5px;
		right: -45px;
		width: 45px;
	}
	.sec-ttl h2 { font-size: 1.75rem; }
	.lead { font-size: 1.75rem; }
	.msg-txt { line-height: 2.25; }
	.cf7-tb th, .cf7-tb td { display: block; width: 100%; padding-right: 5px; padding-left: 5px; text-align: left; }
	.cf7-tb th { padding-bottom: 0; border-bottom: none; }
	.cf7-tb td { border-top: none; }
	.map iframe { aspect-ratio: 3/2; }

	/* コンテナ */
	.con-base, :is(.page-header, #breadcrumb, footer, body:not(.page) .site-body) .container:not(.site-body-bottom .container, .site-footer-copyright) { padding-right: 20px; padding-left: 20px; }
	:is(footer, .page-header, #breadcrumb, body:not(.page) .site-body) .container { width: 100%; max-width: 100% !important; }
	.con-base { padding-top: 60px; padding-bottom: 60px; }
	.site-body { padding: 60px 0; }

	/* ページヘッダー */
	.page-header {
		min-height: 20rem;
	}
	.page-header-title, h1.page-header-title {
		font-size: 6vw;
	}
	.page-header-subtext {
		font-size: 3.25vw;
	}

	/* フッター上部 */
	.aozora-curve {
		margin-top: 60px;
	}
	.msg-con::after {
		height: 40%;
	}
	.msg-deco.deco-bird {
		top: -120px;
		right: -2.5vw;
	}
	.msg-deco.deco-balloon {
		left: 2.5vw;
	}
	.msg-con .lead {
		font-size: 4.5vw;
	}

	/* フッター */
	.site-footer-content {
		padding: 60px 20px 120px;
	}
	.ft-contents-wrap {
		margin-bottom: 45px;
	}
	
	/* フッター上部 */
	.contact-con .sec-ttl-wrap {
		margin-bottom: 45px;
	}
	.info-contact-wrap {
		margin-bottom: 45px;
	}

	/* クリニック情報（ショートコード） */
	.clinic-info-list {
		gap: 90px;
	}
	.clinic-info-item {
		width: 100%;
	}
	.clinic-info-item.cii-tsuchiura::after {
		position: absolute;
		z-index: 1;
		bottom: -44.5px;
		left: 50%;
		transform: translateX(-50%);
		content: "";
		width: 80%;
		height: 1px;
		background: #ccc;
	}

	/* フロントページ */
	.mv-ttl .en {
		font-size: 3.25vw;
	}
	.mv-ttl h2 {
		font-size: 6.5vw;
	}
	.mv-ttl .txt {
		font-size: 3vw;
	}
	.main-visual {
		width: 90%;
	}
	.mv-swiper .swiper-slide, .mv-swiper .swiper-slide-inner {
		border-radius: 10px;
	}
	.whats-new-box h2 {
		padding: 15px 20px 0 20px;
	}
	.about-us-wrap {
		width: 100%;
	}
	.about-us-wrap::before {
		right: 0;
	}
	.about-us-map img {
		opacity: 0.25;
	}
	.feature-link-item {
		width: 100%;
	}
	#pg-19-4 {
		border-radius: 60px 60px 0 0;
	}
	.medical-care-link-list {
		gap: 45px;
	}
	.medical-care-link-item {
		width: 100%;
	}
	.medical-care-link-item a {
		padding: 45px 20px;
	}
	.first-btn .con-base {
		flex-direction: column;
	}
	.first-btn-icon {
		width: 40%;
	}
	.first-btn-contents {
		width: 100%;
	}
	.first-btn-arrow {
		margin-top: 30px;
	}
	.medical-wrap {
		flex-direction: column;
	}

	/* サブページ共通 */
	.anchor-links {
		gap: 10px;
	}
	
	/* 診療ページ共通 */
	.mv-medical-ttl {
		left: 1%;
		width: 45%;
	}
	.catch-feature-item .txt {
		font-size: 1.25rem;
	}
	.check-list-wrap {
		padding: 45px 30px;
	}
	.check-item {
		width: 100%;
	}
	.medical-std-dl .dli {
		width: 100%;
		padding: 45px 30px;
	}

	/* あおぞらクリニックについて */
	.symbol-mark img {
		width: 40%;
	}
	.con-base#greeting .contents-box {
		padding: 60px 20px 45px;
	}
	.post-name-about-us .anchor-links {
		grid-template-columns: 1fr;
	}
	.feature-item {
		gap: 30px;
		padding: 45px 0;
	}
	.feature-item-img {
		width: 100%;
	}
	.feature-item-contents {
		width: 100%;
	}

	/* あおぞらクリニック個別ページ */
	.departments-list {
		gap: 10px;
	}
	:is(.departments-tsuchiura, .departments-mito) .departments-item {
		width: calc(50% - 5px);
	}
	.con-base#c-hours .clinic-info-tb-wrap {
		padding: 30px;
	}

	/* 訪問診療・往診 */
	.post-name-visit .medical-care-link-list {
		gap: 30px;
	}
	.post-name-visit .medical-care-link-item {
		width: calc(50% - 15px);
		border-radius: 10px
	}
	.post-name-visit .medical-care-link-ttl .txt {
		font-size: 0.8em;
	}
	.visit-head {
		gap: 45px;
	}
	.contents-box {
		padding: 30px 20px;
	}
	.fee-case-item {
		padding: 45px 20px;
	}
	.fee-list li {
		width: 100%;
	}
	.fee-list li:not(:last-child)::before {
		top: auto;
		bottom: -14.5px;
		left: 50%;
		transform: translateX(-50%);
		width: 80%;
		height: 1px;
	}
	.breakdown-tb tbody th {
		width: 50%;
	}
	.breakdown-tb tbody td {
		width: 50%;
	}

	/* 巡回健診 */
	.service-flow-item {
		padding: 45px 30px;
	}
	.service-flow-item::before {
		font-size: 6rem;
	}

	/* はじめての方へ */
	.first-box {
		padding: 45px 20px;
	}
	.visit-info-item {
		flex-direction: column;
		padding: 45px 0;
	}
	.visit-info-icon {
		margin: 0 auto;
	}
	.visit-info-contents :is(.lead, h3) {
		text-align: center;
	}

	/* 法人案内 */
	.history-dl {
		padding-left: 45px;
	}
	.history-dl .dli {
		gap: 45px;
	}
	.history-dl .dli dt::before {
		left: -44px;
	}

	/* 投稿（お知らせ） */
	.single:not(.single-works) .entry-header {
		margin-bottom: 45px;
	}
	.single .entry-header h1 {
		font-size: 1.5rem;
	}

	/* お問い合わせ */
	.contact-tel-box {
		padding: 45px 20px;
	}
	.contact-tel-box .txt:not(.contact-desc) {
		font-size: 0.9em;
	}
	.contact-tel-box .contact-desc span {
		display: block;
		font-size: 0.9em;
	}
	.tel-num {
		font-size: 3rem;
	}
}
/* ------------------------------ レスポンシブ対応（780px以下） end ------------------------------ */


/* ------------------------------ レスポンシブ対応（576px以下） start ------------------------------ */
@media (max-width: 576px) {
	/* 共通 */
	body { font-size: 15px; }
	h1 { font-size: 1.75rem; /* 28px */ }
	h2 { font-size: 1.5rem; /* 24px */ }
	h3 { font-size: 1.4rem; }
	h4 { font-size: 1.3rem; }
	h5 { font-size: 1.2rem; }
	.lead { font-size: 1.5rem; }
	.rl-gallery-caption { font-size: 0.8em; }
	.pc-br { display: none; }
	.sp-br { display: block; }
	table td, table th { padding: 1.5em 1em; }

	/* ヘッダーお問い合わせボタン */
	.header-contact-btn.hcb-mail a {
		padding: 10px;
	}
	.header-contact-btn.hcb-mail .btn-ttl .txt {
		font-size: 0.5em;
	}

	/* ページヘッダー */
	.page-header {
		min-height: 15rem;
	}
	.page-header-title, h1.page-header-title {
		font-size: 6.5vw;
	}
	.page-header-subtext {
		font-size: 3.75vw;
	}

	/* フッター上部 */
	.aozora-curve {
		aspect-ratio: 64/14;
	}
	.msg-wrap {
		padding: 0 30px;
	}
	.msg-con .lead {
		font-size: 5.5vw;
	}
	.msg-wrap .msg-txt {
		font-size: 1rem;
	}
	.msg-wrap .msg-txt br {
		display: none;
	}

	/* フッター */
	.ft-logo img {
		width: 240px;
	}
	.site-footer .widget_nav_menu>div>ul#menu-header-top-nav-1 {
		margin-bottom: 45px;
	}
	
	/* クリニック情報（ショートコード） */
	.clinic-info-tb-wrap {
		padding: 30px 20px;
	}
	.info-contact-ttl strong {
		padding: 0 15px;
		font-size: 1.25rem;
	}

	/* 固定ボタン（はじめて） */
	.fixed-first-btn {
		right: auto;
		left: 0;
		bottom: 0;
	}
	.fixed-first-btn a {
		padding: 10px;
		border-radius: 0 10px 0 0;
		text-align: center;
	}
	.fixed-first-btn img {
		position: static;
		width: 40px;
		margin-bottom: 5px;
	}
	.fixed-first-btn .txt {
		font-size: 0.5em;
		writing-mode: horizontal-tb;
	}

	/* フロントページ */
	.mv-ttl .en {
		font-size: 4.5vw;
	}
	.mv-ttl h2 {
		font-size: 8vw;
	}
	.mv-ttl .txt {
		font-size: 4vw;
	}
	.about-us-ttl {
		flex-direction: column;
		gap: 0;
	}
	.about-us-ttl h2 {
		width: 100%;
	}
	.about-us-ttl .en {
		margin: 0.5em auto 0 0;
	}
	.first-btn-contents .txt.kosugi {
		font-size: 0.9em;
	}
	.news-con .vk_posts .postListText {
		padding: 20px 10px;
	}
	.org-link-list {
		gap: 20px;
	}
	.org-link-list li {
		width: calc(50% - 15px);
		text-align: left;
	}

	/* サブページ共通 */
	.anchor-links li a {
		padding: 10px 20px;
	}
	.anchor-links li a::before {
		right: 4.5px;
		font-size: 14px;
	}
	.helth-check-dl .dli dt {
		padding: 20px 20px 10px 20px;
	}
	.helth-check-dl .dli dd {
		padding: 10px 20px 20px 20px;
	}
	
	/* 診療ページ共通 */
	.medical-head-img {
		width: 180px;
	}
	.mv-medical {
		margin-top: 20svh;
		height: 40svh;
		max-height: 100%;
	}
	.mv-medical::before {
		position: absolute;
		z-index: 1;
		top: -20svh;
		left: 0;
		content: "";
		width: 100%;
		height: 100%;
		background: linear-gradient(0deg, transparent 0%, rgba(233,244,251,1) 50%, rgba(233,244,251,1) 100%);
	}
	.mv-medical-ttl {
		top: -18svh;
		width: 60%;
		min-width: 280px;
		max-width: 98%;
	}
	.medical-sec-ttl {
		padding: 20px;
	}
	.catch-feature-list {
		justify-content: center;
		gap: 0 15px;
	}
	.catch-feature-item {
		width: calc(50% - 7.5px);
	}
	.check-item {
		padding: 20px 0;
	}
	.post-name-shiratama .con-base .txt:not(.kosugi) {
		text-align: left;
	}
	.fukidashi p {
		padding: 0 15%;
	}
	
	/* あおぞらクリニックについて */
	.feature-item-contents .feature-txt::before {
		bottom: 95%;
		font-size: 6rem;
	}

	/* あおぞらクリニック個別ページ */
	.area-map {
		border-radius: 10px;
	}
	.con-base#area .txt {
		text-align: left;
	}
	:is(.departments-tsuchiura, .departments-mito) .departments-item {
		width: 100%;
	}
	.con-base#c-hours .clinic-info-tb-wrap {
		padding: 30px 20px;
	}

	/* 訪問診療・往診 */
	.post-name-visit .medical-care-link-item {
		width: 100%;
	}
	.visit-head {
		align-items: end;
		gap: 20px;
	}
	.visit-head-img {
		margin: 0 auto 0 0;
	}
	.visit-head .sec-ttl {
		width: 100%;
		padding-bottom: 20px;
	}
	.visit-tag .txt {
		font-size: 0.9em;
	}
	.helth-check-dl .dli dt {
		width: 100%;
	}
	.helth-check-dl .dli dt::before {
		top: auto;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: calc(100% - 40px);
		height: 1px;
	}

	/* 巡回健診 */
	.post-name-mobile-checkup .medical-img {
		width: 50%;
	}
	.service-flow-item .info-contact-wrap .info-tel {
		flex-direction: column;
	}
	.service-flow-item .info-contact-wrap .info-tel {
		width: 100%;
	}

	/* はじめての方へ */
	.con-base:is(#homon,#oshin) .lead br {
		display: none;
	}
	.first-head-label .txt {
		font-size: 0.9em;
	}
	.first-head-ttl {
		padding: 45px 0 20px;
	}
	.first-head-ttl h2 {
		font-size: 1.25rem;
		text-align: left;
	}
	.compare-item {
		padding: 30px 20px;
	}
	.compare-tb {
		font-size: 0.9em;
	}
	.compare-tb th {
		width: 40%;
	}
	.compare-tb td {
		width: 60%;
	}
	.tab-lead-wrap {
		padding: 0 60px;
	}
	.tab-lead-wrap::before, .tab-lead-wrap::after {
		width: 20px;
		height: 10px;
	}
	.fee-case-item h4 {
		padding: 10px;
	}

	/* 法人案内 */
	.m-policy-dl .dli dt {
		font-size: 1.5rem;
	}
	.history-dl .dli {
		flex-direction: column;
		gap: 30px;
	}

	/* 投稿（お知らせ） */
	.entry-title {
		font-size: 1.5rem;
	}

	/* お問い合わせ */
	.contact-tel-box {
		padding: 45px 30px;
	}
	.contact-tel-box .txt:not(.contact-desc) {
		text-align: left;
	}
	.contact-tel-box .txt:not(.contact-desc) br {
		display: none;
	}
	.info-tel-icon .material-symbols-outlined {
		font-size: 3.5rem;
	}
	.tel-num {
		font-size: 2.25rem;
	}
	.tel-num .fs-s {
		display: block;
		margin: 0 0 0.5em 0;
	}
	.contact-desc {
		font-size: 0.9em;
	}
	.cf7-btn .btn-base {
		min-width: 75%;
	}
}
/* ------------------------------ レスポンシブ対応（576px以下） end ------------------------------ */