@charset "utf-8";
/*
Theme Name: CH.158芦屋川ビルディング
Description: CH.158芦屋川ビルディングのテーマ
Author: Snowholding
*/

:root {
	/* カラー */
	--txt_color: #707070;
	--accent_01: #fffc6b;
	--base_01: #a9cdec;
	--base_02: #72dfa3;
	--base_03: #f3f3f3;
	--btn_01: #84a3be;

	/* フォント */
	--serif: "Yu Mincho", YuMincho, 游明朝, 游明朝体, serif;
	--sans_serif: "Yu Gothic", YuGothic, 游ゴシック, 游ゴシック体, sans-serif;
}

/**** ページトップボタン　ここから ****/
#pagetop {
	position: fixed;
	right: 0;
	bottom: 0;
	text-indent: -9999px;
	margin: 0;
	z-index: 1;
}
#pagetop a {
	position: relative;
	display: block;
	width: 65px;
	height: 65px;
	background: var(--btn_01);
	transition: opacity 0.6s ease;
}
#pagetop a:hover {
	opacity: 0.3;
}
#pagetop a::before {
	position: absolute;
	top: 7px;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 14px;
	height: 14px;
	margin: auto;
	content: "";
	transform: rotate(-45deg);
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}
@media (max-width: 767px) {
	#pagetop a {
		width: 45px;
		height: 45px;
	}
	#pagetop a::before {
		top: 5px;
		width: 10px;
		height: 10px;
	}
}
/**** ページトップボタン　ここまで ****/

/*========= ハンバーガーメニュー　ここから ===============*/
/*アクティブになったエリア*/
#g-nav.panelactive {
	/*position:fixed;にし、z-indexの数値を大きくして前面へ*/
	position: fixed;
	z-index: 999;
	top: 0;
	width: 100%;
	height: 100vh;
}

/*丸の拡大*/
.circle-bg {
	position: fixed;
	z-index: 3;
	/*丸の形*/
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: var(--base_01);
	/* background: linear-gradient(120deg, rgba(64, 202, 181, 1) 0%, rgba(153, 204, 63, 0.95) 100%); */
	/*丸のスタート位置と形状*/
	transform: scale(0); /*scaleをはじめは0に*/
	top: -50px;
	left: calc(50% - 50px); /*50%から円の半径を引いた値*/
	transition: all 0.6s; /*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive {
	transform: scale(50); /*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list {
	display: none; /*はじめは表示なし*/
	/*ナビの数が増えた場合縦スクロール*/
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100vh;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list {
	display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
	opacity: 0; /*はじめは透過0*/
	/*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
	position: absolute;
	z-index: 999;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
	opacity: 1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li {
	animation-name: gnaviAnime;
	animation-duration: 1s;
	animation-delay: 0.2s; /*0.2 秒遅らせて出現*/
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes gnaviAnime {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/*リストのレイアウト設定*/
#g-nav li {
	text-align: center;
	list-style: none;
}

#g-nav li a {
	color: var(--txt_color);
	text-decoration: none;
	padding: 10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
	position: fixed;
	z-index: 9999; /*ボタンを最前面に*/
	top: 0;
	right: 0;
	cursor: poter;
	width: 60px;
	height: 60px;
	background: white;
}

/*×に変化*/
.openbtn span {
	display: inline-block;
	transition: all 0.4s;
	position: absolute;
	left: 12px;
	height: 2px;
	border-radius: 2px;
	background-color: var(--txt_color);
	width: 65%;
}

.openbtn span:nth-of-type(1) {
	top: 14px;
}

.openbtn span:nth-of-type(2) {
	top: 30px;
}

.openbtn span:nth-of-type(3) {
	top: 46px;
}

.openbtn.active span:nth-of-type(1) {
	top: 23px;
	left: 14px;
	transform: translateY(6px) rotate(-45deg);
	width: 65%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
	top: 35px;
	left: 14px;
	transform: translateY(-6px) rotate(45deg);
	width: 65%;
}
/*========= ハンバーガーメニュー　ここまで ===============*/

/******** WP-page-navi　ここから *********/
.wp-pagenavi {
	clear: both;
	text-align: center;
}
.wp-pagenavi a,
.wp-pagenavi span {
	color: var(--base_01);
	background-color: #ffffff;
	padding: 8px 15px;
	margin: 0 2px;
	white-space: nowrap;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	text-align: center;
	text-decoration: none;
	border: thin dotted var(--base_01);
}
.wp-pagenavi a:hover {
	color: #fff;
	background-color: var(--base_01);
}
.wp-pagenavi span.current {
	color: #fff;
	background-color: var(--base_01);
}
/******** WP-page-navi　ここまで *********/

#breadcrumb {
	margin-left: 10px;
}

html {
	color: var(--txt_color);
	font-family: var(--sans_serif);
	font-weight: 600;
	text-align: justify;
	scroll-behavior: smooth;
}

a {
	color: var(--txt_color);
}

.index_main {
	height: 500px;
}
.index_main img {
	object-fit: cover;
	height: 450px;
}
.p_main img {
	object-fit: cover;
	height: 400px;
}
header .block {
	display: flex;
	flex-direction: column;
	padding: 10px 0;
	background: rgb(169, 205, 236);
	background: linear-gradient(129deg, rgba(169, 205, 236, 1) 0%, rgba(151, 240, 191, 0.4206932773109243) 100%);
}
header .block .inner {
	padding: 0 10px;
}
header .block .left h1 {
	font-size: 2rem;
}
header .block .left h1 a {
	color: var(--txt_color);
}
header .block .left {
	transition: all 0.6s;
}
header .block .left:hover {
	opacity: 0.6;
}
header .block .right {
	margin-top: 10px;
	width: 100%;
	display: flex;
	justify-content: center;
}
header .block .right .tel_block {
	width: calc(100% / 2);
	padding: 5px;
}
header .block .right .tel_block a {
	font-size: 1.7rem;
}
header .block .right p {
	color: var(--txt_color);
}
header .block .right a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--serif);
	background: var(--btn_01);
	color: white;
	border-radius: 50px;
	padding: 10px;
	margin: 10px 0;

	transition: all 0.6s;
}
header .block .right a:hover {
	opacity: 0.8;
}
header .block .right a img {
	width: 20px;
	margin-right: 5px;
}
header .block .right p {
	text-align: center;
}
header .block .right .btn {
	width: 100%;
}
header .block .right .btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	padding: 10px;
	font-family: var(--san-serif);
	border-radius: 50px;
}
.header_nav {
	display: none;
}

/* 221227 新規カラム作成 */
#pushpoint {
	margin: 50px 0 50px;
}
#pushpoint .inner {
	margin: 0 10px;
}
#pushpoint img {
	width: 40px;
	background: var(--base_01);
	/* border-radius: 50px; */
	padding: 10px;
	margin-right: 10px;
	border-radius: 10px;
}
#pushpoint .block {
	border: 1px solid var(--base_01);
	margin: 30px 0;
}
#pushpoint h2 {
	display: flex;
	align-items: center;
	text-align: center;
	font-size: 16px;
	padding-bottom: 10px;
	justify-content: center;
}
#pushpoint h3 {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin: 30px 0;
}
#pushpoint h3 span {
	margin-top: 10px;
}
#pushpoint h3 img {
	background: var(--base_02);
	/* border-radius: 50px; */
	padding: 10px;
	width: 40px;
}
#pushpoint p em {
	background: linear-gradient(transparent 60%, var(--accent_01) 60%);
}
#pushpoint .pushpoint_area ul.ul_pc {
	display: none;
}

#pushpoint .pushpoint_area ul.ul_sp {
	display: flex;
	width: 100%;
	margin: 150px auto 20px;
	justify-content: center;
}
#pushpoint .pushpoint_area .parking {
	margin: 30px 0;
}
#pushpoint .pushpoint_area .parking p:last-of-type {
	font-size: 1.4rem;
}
#pushpoint .pushpoint_area ul {
	display: flex;
	width: 100%;
	max-width: 800px;
	margin: 150px auto 20px;
	justify-content: space-between;
}
#pushpoint .pushpoint_area ul li {
	width: 100px;
	margin: 0 10px 0 0;
	background-color: #83b1d9;
	position: relative;
	text-align: center;
	color: white;
	border-radius: 5px;
}
#pushpoint .pushpoint_area ul li::after {
	content: "";
	border: 5px solid var(--btn_01);
	border-radius: 50%;
	width: 90px;
	height: 90px;
	position: absolute;
	top: -120px;
	left: 50%;
	transform: translate(-50%);
}
#pushpoint .pushpoint_area ul li.point_train::before {
	content: "";
	display: inline-block;
	background: url(../yusei-mall/assets/img/point_train.svg);
	background-size: cover;
	width: 50px;
	height: 57px;
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translate(-50%);
}
#pushpoint .pushpoint_area ul li.point_newbuild::before {
	content: "";
	display: inline-block;
	background: url(../yusei-mall/assets/img/point_newbuild.svg);
	background-size: cover;
	width: 50px;
	height: 48px;
	position: absolute;
	top: -95px;
	left: 50%;
	transform: translate(-50%);
}
#pushpoint .pushpoint_area ul li.point_newbuild::before {
	content: "";
	display: inline-block;
	background: url(../yusei-mall/assets/img/point_newbuild.svg);
	background-size: cover;
	width: 50px;
	height: 49px;
	position: absolute;
	top: -95px;
	left: 50%;
	transform: translate(-50%);
}
#pushpoint .pushpoint_area ul li.point_lighthouse::before {
	content: "";
	display: inline-block;
	background: url(../yusei-mall/assets/img/point_lighthouse.svg);
	background-size: cover;
	width: 62px;
	height: 50px;
	position: absolute;
	top: -95px;
	left: 50%;
	transform: translate(-50%);
}
#pushpoint .pushpoint_area ul li.point_ev::before {
	content: "";
	display: inline-block;
	background: url(../yusei-mall/assets/img/point_ev.svg);
	background-size: cover;
	width: 50px;
	height: 52px;
	position: absolute;
	top: -98px;
	left: 50%;
	transform: translate(-50%);
}

#pushpoint .pushpoint_area ul li.point_parking::before {
	content: "";
	display: inline-block;
	background: url(../yusei-mall/assets/img/point_parking.svg);
	background-size: cover;
	width: 62px;
	height: 40px;
	position: absolute;
	top: -92px;
	left: 50%;
	transform: translate(-50%);
}

#pushpoint .pushpoint_area ul li.point_medicalmall::before {
	content: "";
	display: inline-block;
	background: url(../yusei-mall/assets/img/point_medicalmall.svg);
	background-size: cover;
	width: 56px;
	height: 42px;
	position: absolute;
	top: -92px;
	left: 50%;
	transform: translate(-50%);
}

/* 新型コロナウイルス感染症対策　ここから */
#covid_19 {
	background: url(../yusei-mall/assets/img/mask_disinfection_img.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: rgba(255, 255, 255, 0.7);
	background-blend-mode: lighten;
	margin: 50px 10px;
	/* background-attachment: fixed; */
	padding: 40px 0;
	border-radius: 10px;
}
#covid_19 .inner {
	margin: 0 10px;
}
#covid_19 h2 {
	text-align: center;
}
#covid_19 .covid_19_area .block {
	margin: 30px 0;
}
#covid_19 .covid_19_area h3 {
	margin-bottom: 15px;
}
#covid_19 .covid_19_area ul li {
	text-indent: -1em;
	padding: 5px 0 5px 20px;
}
#covid_19 .covid_19_area ul .list_style:before {
	content: "";
	width: 10px;
	height: 10px;
	display: inline-block;
	background-color: var(--btn_01);
	border-radius: 50%;
	position: relative;
	top: -1px;
	margin-right: 5px;
}
/* 新型コロナウイルス感染症対策　ここまで */

/* 各クリニックのご案内　ここから */
#info_each_clinic {
	margin: 50px 0;
	padding: 40px 0 10px;
	background: var(--base_03);
}
#info_each_clinic .inner {
	margin: 0 10px;
}
#info_each_clinic .block .block {
	margin: 50px 0;
}
#info_each_clinic h2 {
	text-align: center;
	margin-bottom: 30px;
}
#info_each_clinic h3 {
	border-bottom: 2px solid var(--txt_color);
	margin-bottom: 30px;
}
#info_each_clinic .columns {
	margin: 20px 0;
}
#info_each_clinic .columns .block {
	margin: 40px 0;
}
#info_each_clinic .columns .left .ci_img {
	margin-bottom: 20px;
}
#info_each_clinic .columns .left p {
	margin-bottom: 20px;
}
#info_each_clinic .columns .right p {
	user-select: none;
}
#info_each_clinic .columns .left p em {
	background: #83b1d9;
	padding: 5px 10px;
	color: white;
	border-radius: 5px;
	margin-right: 10px;
}
#info_each_clinic .closed_day {
	margin-top: 10px !important;
}
#info_each_clinic .columns table {
	width: 100%;
	text-align: center;
}
#info_each_clinic .columns table tr:nth-of-type(2) td:first-of-type {
	border-left: 1px solid var(--btn_01);
	background: white;
}
#info_each_clinic .columns table tr:last-of-type td:first-of-type {
	border-left: 1px solid var(--btn_01);
	background: white;
}
#info_each_clinic .columns table tr:nth-of-type(2) td:last-of-type {
	border-right: 1px solid var(--btn_01);
}
#info_each_clinic .columns table tr:last-of-type td:last-of-type {
	border-right: 1px solid var(--btn_01);
}
#info_each_clinic .columns table th {
	background: #83b1d9;
	color: white;
	padding: 5px;
}
#info_each_clinic .columns table tr:nth-of-type(2) td {
	border-bottom: 1px solid var(--btn_01);
	padding: 5px;
	background: white;
}
#info_each_clinic .columns table tr:last-of-type td {
	border-bottom: 1px solid var(--btn_01);
	padding: 5px;
	background: white;
}
#info_each_clinic .columns table tr:first-of-type th:first-of-type {
	border-radius: 5px 0 0 0;
}
#info_each_clinic .columns table tr:first-of-type th:last-of-type {
	border-radius: 0 5px 0 0;
}
#info_each_clinic .columns table tr:last-of-type td:first-of-type {
	border-radius: 0 0 0 5px;
}
#info_each_clinic .columns table tr:last-of-type td:last-of-type {
	border-radius: 0 0 5px 0;
}
#info_each_clinic .columns .right .btn_block {
	width: 100%;
}
#info_each_clinic .columns .right .btn_block p {
	text-align: center;
}
#info_each_clinic .columns .right .btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	padding: 15px 20px;
	font-family: var(--san-serif);
	border-radius: 50px;
	font-size: 1.6rem;
	background: var(--btn_01);
	margin: 20px 0 0;
	transition: all 0.6s;
}
#info_each_clinic .columns .right .btn a:hover {
	opacity: 0.6;
}
#info_each_clinic .columns .right {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 30px 0;
}
#info_each_clinic .columns .right img {
	width: 300px;
}

/* 各クリニックのご案内　ここまで */

/* 各階のご案内　ここから */
#floor_guide {
	background: url(../yusei-mall/assets/img/medical_bg.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: rgba(255, 255, 255, 0.6);
	background-blend-mode: lighten;
	margin: 80px 0 50px;
	padding: 40px 0;
}
#floor_guide .inner {
	margin: 0 10px;
}
#floor_guide .block .inner {
	margin: 0;
}
#floor_guide h2 {
	position: relative;
	text-align: center;
	color: var(--base_01);
	margin-bottom: 50px;
}
#floor_guide h2:after {
	position: absolute;
	content: "";
	width: 100px;
	height: 4px;
	display: inline-block;
	background-color: var(--base_01);
	bottom: -10px;
	left: calc(50% - 50px);
}
#floor_guide h3 {
	border-bottom: 1px solid var(--txt_color);
	margin-bottom: 20px;
	padding-left: 2.3em;
	text-indent: -2.3em;
}
#floor_guide .closed_day {
	margin-top: 10px !important;
}
#floor_guide table {
	width: 100%;
	text-align: center;
}
#floor_guide table tr:nth-of-type(2) td:first-of-type {
	border-left: 1px solid var(--btn_01);
	background: white;
}
#floor_guide table tr:last-of-type td:first-of-type {
	border-left: 1px solid var(--btn_01);
	background: white;
}
#floor_guide table tr:nth-of-type(2) td:last-of-type {
	border-right: 1px solid var(--btn_01);
}
#floor_guide table tr:last-of-type td:last-of-type {
	border-right: 1px solid var(--btn_01);
}
#floor_guide table th {
	background: var(--btn_01);
	color: white;
	padding: 5px;
}
#floor_guide table tr:nth-of-type(2) td {
	border-bottom: 1px solid var(--btn_01);
	padding: 5px;
	background: white;
}
#floor_guide table tr:last-of-type td {
	border-bottom: 1px solid var(--btn_01);
	padding: 5px;
	background: white;
}
#floor_guide table tr:first-of-type th:first-of-type {
	border-radius: 5px 0 0 0;
}
#floor_guide table tr:first-of-type th:last-of-type {
	border-radius: 0 5px 0 0;
}
#floor_guide table tr:last-of-type td:first-of-type {
	border-radius: 0 0 0 5px;
}
#floor_guide table tr:last-of-type td:last-of-type {
	border-radius: 0 0 5px 0;
}
#floor_guide table p em {
	background: var(--btn_01);
	padding: 5px 10px;
	color: white;
	border-radius: 5px;
	margin-right: 10px;
}
#floor_guide a {
	display: flex;
	justify-content: center;
	align-items: center;
}
#floor_guide .btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	padding: 15px 20px;
	font-family: var(--san-serif);
	border-radius: 50px;
	font-size: 1.6rem;
	background: var(--btn_01);
	margin: 10px 0;
	transition: all 0.6s;
}
#floor_guide .btn a img {
	width: 30px;
	margin-right: 10px;
}
/* 各階のご案内　ここまで */

/* CH.158芦屋川ビルディングについて　ここから */
#about {
	background: url(../yusei-mall/assets/img/sky_img.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: rgba(255, 255, 255, 0.8);
	background-blend-mode: lighten;
	margin: 50px 0;
	padding: 40px 0;
	background-attachment: fixed;
}
#about img {
	border-radius: 10px;
}
#about .inner {
	margin: 0 10px;
}
#about .block .inner {
	margin: 0;
}
#about h2 {
	border-bottom: 2px solid var(--txt_color);
	margin-bottom: 30px;
}
/* CH.158芦屋川ビルディングについて　ここまで */

/* お知らせ　ここから */
#news {
	background: url(../yusei-mall/assets/img/main2_img.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: rgba(255, 255, 255, 0.9);
	background-blend-mode: lighten;
	margin: 50px 0;
	padding: 40px 0;
}
#news .inner {
	margin: 0 10px;
}
#news .left {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
}
#news .left img {
	width: 50px;
	margin-right: 10px;
}
#news article {
	margin: 20px 0;
	border-bottom: 1px solid var(--txt_color);
	transition: all 0.6s;
}
#news article:hover {
	opacity: 0.6;
}

#news .date_ttl p:first-of-type {
	margin-right: 10px;
}
#news .btn {
	display: flex;
	justify-content: right;
}
#news .btn a {
	background: var(--btn_01);
	padding: 10px 15px;
	color: white;
	border-radius: 50px;
	transition: all 0.6s;
}
#news .btn a:hover {
	opacity: 0.6;
}
/* お知らせ　ここまで */

/* アクセス　ここから */
#access {
	background: url(../yusei-mall/assets/img/access_bg.svg);
	background-repeat: repeat;
	background-position: right;
	background-size: contain;
	background-color: rgba(255, 255, 255, 0.5);
	background-blend-mode: lighten;
	margin: 50px 0;
	padding: 40px 0;
}
#access .inner {
	margin: 0 10px;
}
#access h2 {
	border-bottom: 2px solid var(--txt_color);
	color: var(--txt_color);
	margin-bottom: 30px;
}
#access .address {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
#access .address p {
	margin-top: 0;
}
#access .address img {
	width: 30px;
	margin-right: 10px;
	background: var(--base_01);
	padding: 10px;
	border-radius: 10px;
}
#access .access_block {
	display: flex;
	justify-content: left;
	align-items: center;
}
#access .access_block p {
	margin-top: 0;
}
#access .bicycle_parking_block {
	margin: 30px 0;
}
#access .bicycle_parking_block .columns {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#access .bicycle_parking_block .columns .bicycle_parking_img_block {
	width: calc(100% / 2);
	padding: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
#access .bicycle_parking_block .bicycle_parking_img_block img {
	border-radius: 10px;
}
#access .bicycle_parking_block .bicycle_parking_img_block.price {
	width: 300px;
	margin: 30px auto;
}
#access .bicycle_parking_block .bicycle_parking_img_block.map {
	width: 300px;
	margin: 30px auto;
}
/* アクセス　ここまで */

/* フッター　ここから */
footer {
	background: rgb(169, 205, 236);
	background: linear-gradient(129deg, rgba(169, 205, 236, 1) 0%, rgba(151, 240, 191, 0.4206932773109243) 100%);
	padding: 50px 0 20px;
	margin-top: 60px;
}
footer .inner {
	margin: 0 10px;
}
footer .left {
	text-align: center;
	color: white;
	margin-bottom: 30px;
	transition: all 0.6s;
}
footer .left:hover {
	opacity: 0.6;
}
footer .left h1 a {
	color: var(--txt_color);
}
footer .center {
	text-align: center;
	color: var(--txt_color);
	margin: 20px 0;
	font-size: 2rem;
}
footer .right {
	margin: 20px 0;
}
footer .right .tel_block a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--serif);
	color: white;
	font-size: 2.4rem;
	background: var(--btn_01);
	border-radius: 50px;
	padding: 10px;
	margin: 20px 0;
	transition: all 0.6s;
}
footer .right a:hover {
	opacity: 0.6;
}

footer .right img {
	width: 40px;
	margin-right: 10px;
}

footer .block .right p {
	color: var(--txt_color);
	margin: 20px 0 10px;
	font-size: 1.6rem;
}

footer .right .btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.6rem;
	background: var(--btn_01);
	border-radius: 50px;
	padding: 15px;
	margin: 20px 0;
	transition: all 0.6s;
}
footer .right .btn a:hover {
	opacity: 0.6;
}
footer .block .right a img {
	width: 30px;
	margin-right: 10px;
}
footer .block .right p {
	text-align: center;
}
footer .block .right .btn {
	text-align: center;
}

footer ul {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin: 30px 0;
}
footer ul li {
	width: calc(100% / 2);
	display: flex;
	justify-content: left;
	align-items: center;
	margin: 5px 0;
	position: relative;
	padding-left: 40px;
	transition: all 0.6s;
}
footer ul li:hover {
	opacity: 0.6;
}
footer ul li:before,
footer ul li:after {
	position: absolute;
	content: "";
	display: block;
	top: 50%;
	left: 20px;
	transform-origin: 100% 50%;
	height: 2px;
	width: 11px;
	background-color: var(--txt_color);
	border-radius: 2px;
}
footer ul li:before {
	transform: translateY(-50%) rotate(30deg);
}
footer ul li:after {
	transform: translateY(-50%) rotate(-30deg);
}
footer ul li a {
	color: var(--txt_color);
}

footer .copyright {
	text-align: center;
	color: var(--txt_color);
	font-size: 1.3rem;
}
/* フッター　ここまで */

/* シングルページ　ここから */
#single {
	margin: 50px 0;
}
#single .inner {
	margin: 0 10px;
}
#single article h1 {
	margin-top: 10px;
	color: var(--base_01);
}
/* シングルページ　ここまで */

/* アーカイブページ　ここから */
#archive {
	margin: 50px 0;
}
#archive .inner {
	margin: 0 10px;
}
#archive h1 {
	margin-bottom: 20px;
	color: var(--base_01);
}
#archive article {
	margin: 20px 0;
	border-bottom: 1px solid var(--base_01);
}
/* アーカイブページ　ここまで */

@media (min-width: 768px) {
	#pagetop a {
		width: 65px;
		height: 65px;
	}
	#pagetop a::before {
		top: 7px;
		width: 14px;
		height: 14px;
	}
	.openbtn {
		display: none;
	}
	#breadcrumb {
		margin-left: 30px;
	}
	header .block {
		padding: 0;
	}
	header .block .inner {
		display: flex;
		justify-content: space-between;
		align-items: baseline;
	}
	header .block .left {
		width: 40%;
	}
	header .block .right {
		display: flex;
		width: 350px;
		padding-bottom: 0;
		margin-top: 0;
	}
	header .block .right .tel_block {
		width: calc(100% / 2);
		padding: 10px;
		margin: 0;
		order: 2;
	}
	header .block .right a {
		font-size: 2rem;
	}
	header .block .right .btn a {
		font-size: 1.5rem;
		padding: 15px;
	}
	.header_nav {
		display: block;
		background: var(--base_03);
	}
	.header_nav ul {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 15px 0;
	}
	.header_nav ul li {
		margin: 0 15px;
	}
	.header_nav ul li a {
		position: relative;
	}
	.header_nav ul li a::after {
		position: absolute;
		left: 0;
		content: "";
		width: 100%;
		height: 2px;
		background: var(--btn_01);
		bottom: -5px; /*アンダーラインがaタグの下端から現れる*/
		transform: scale(0, 1); /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
		transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
		transition: transform 0.6s; /*変形の時間*/
	}

	.header_nav ul li a:hover::after {
		transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
	}

	.index_main img {
		height: 500px;
	}

	/* 221227 新規カラム作成 */
	#pushpoint {
		margin: 60px 0;
	}
	#pushpoint .inner {
		margin: 0 30px;
	}
	#pushpoint h2 {
		display: flex;
		flex-direction: row;
		margin-bottom: 40px;
		justify-content: center;
	}
	#pushpoint h2 img {
		margin-right: 30px;
	}
	#pushpoint p:last-of-type {
		text-align: left;
	}
	#pushpoint h3 {
		flex-direction: row;
	}
	#pushpoint h3 img {
		margin-right: 10px;
	}
	#pushpoint h3 span {
		margin-top: 0;
		font-size: 2.5rem;
		margin-right: 20px;
	}
	#pushpoint .pushpoint_area .parking {
		max-width: 800px;
		margin: 0 auto;
	}
	#pushpoint .pushpoint_area ul.ul_sp {
		display: none;
	}

	#pushpoint .pushpoint_area ul.ul_pc {
		display: flex;
		width: 100%;
		max-width: 800px;
		margin: 150px auto 20px;
		justify-content: space-between;
	}

	#covid_19 {
		margin: 50px 30px;
		padding: 40px 0 20px;
	}
	#covid_19 .inner {
		margin: 0 30px;
	}
	#covid_19 .covid_19_area ul {
		padding: 0 20px 0;
	}

	#info_each_clinic .inner {
		margin: 0 30px;
	}

	#info_each_clinic .columns {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#info_each_clinic .columns .left {
		width: calc(100% / 2);
		margin-right: 30px;
	}
	#info_each_clinic .columns .right {
		width: calc(100% / 2);
	}
	#info_each_clinic .columns .right img {
		width: 100%;
	}

	#info_each_clinic .block .block {
		margin: 30px 0;
	}

	#floor_guide {
		width: 100%;
		margin: 80px 0;
	}

	#floor_guide .inner {
		margin: 0 30px;
	}
	#floor_guide .column {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		flex-wrap: wrap;
	}
	#floor_guide .column .block {
		width: calc(95% / 2);
	}
	#floor_guide dl.dl_block {
		display: block;
		margin-bottom: 20px;
	}
	#floor_guide dl.dl_block dt {
		margin: 20px auto 10px;
		background: var(--base_01);
		width: 100%;
		text-align: center;
		display: inline-block;
		height: 30px;
		line-height: 2em;
	}
	#floor_guide dl.dl_block dd {
		width: 90%;
		text-align: left;
		margin: 0 auto;
	}

	/*
  #floor_guide .column .block:nth-of-type(odd) {
    padding-right: 5px;
  }
  #floor_guide .column .block:nth-of-type(even) {
    padding-left: 5px;
  }
  */

	#about {
		margin: 80px 0;
	}
	#about .inner {
		margin: 0 30px;
	}
	#about .block .inner .left {
		float: left;
		width: 400px;
		margin-right: 20px;
	}

	#news {
		margin: 80px 0;
	}
	#news .block {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#news .block .left {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 40%;
		margin-bottom: 0;
	}
	#news .block .right {
		width: 60%;
	}
	#news .inner {
		margin: 0 30px;
	}
	#news .date_ttl {
		display: flex;
		align-items: center;
	}

	#news .btn {
		justify-content: right;
	}

	#access {
		margin: 80px 0;
	}
	#access .inner {
		margin: 0 30px;
	}
	#access .block {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 90%;
		margin: 0 auto;
	}

	#access .left {
		width: calc(100% / 2);
		justify-content: left;
		margin: 0;
	}
	#access .right {
		width: calc(100% / 2);
		justify-content: right;
		margin: 0;
	}
	#access .bicycle_parking_block .columns .bicycle_parking_img_block {
		width: calc(100% / 3);
	}
	#access .bicycle_parking_block .bicycle_parking_img_block.price {
		width: 500px;
	}
	#access .bicycle_parking_block .bicycle_parking_img_block.map {
		width: 400px;
	}

	footer h1 {
		font-size: 2rem;
	}
	footer .columns {
		display: flex;
		align-items: center;
	}
	footer .left {
		width: 30%;
		display: flex;
		justify-content: left;
	}
	footer .center {
		flex-grow: 1;
	}
	footer .right {
		width: 280px;
	}
	footer ul {
		flex-direction: column;
		align-items: flex-start;
	}
	footer .footer_banner {
		display: flex;
		justify-content: center;
	}
	footer .footer_banner a {
		padding: 10px;
		transition: all 0.6s;
	}
	footer .footer_banner a:hover {
		opacity: 0.6;
	}

	#single .inner {
		margin: 0 30px;
	}

	#archive article a {
		display: flex;
		align-items: center;
	}
	#archive article a .date {
		margin-right: 10px;
	}
	#archive .inner {
		margin: 0 30px;
	}

	.dl_flex dt {
		width: 40%;
	}

	.pc_hidden,
	.pc_hidden_inline {
		display: none;
	}
	.sp_hidden {
		display: block;
	}
	.sp_hidden_inline {
		display: inline;
	}

	.pharmacy_box {
		width: 85%;
		max-width: 1000px;
		margin: 0 auto 50px;
	}
	.pharmacy_box img {
		width: 90%;
		margin-top: 20px;
		margin-left: 10%;
	}
	.cafe_box {
		width: 80%;
		max-width: 1000px;
		padding: 30px;
	}
	.cafe_box img {
		width: 90%;
		margin-top: 2em;
		margin-left: 10%;
	}

	a.btn07 {
		width: 90%;
	}
}

@media (min-width: 1024px) {
	header .block .inner {
		padding: 0 5%;
	}
	header .block .left {
		width: 350px;
	}
	header .block .right .tel_block a {
		font-size: 2rem;
	}
	header .block .right a img {
		width: 30px;
		margin-right: 10px;
	}
	#breadcrumb {
		margin-left: 5%;
	}
	.header_nav ul li {
		margin: 0 10px;
	}

	/* 221227 新規カラム作成 */

	#pushpoint .inner {
		margin: 0 10%;
	}

	#covid_19 {
		margin: 50px 10%;
	}

	#info_each_clinic .inner {
		margin: 0 10%;
	}

	#about {
		padding: 60px 0;
	}
	#about .inner {
		margin: 0 10%;
	}
	#about .inner .block .inner {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#about .block .inner .left {
		float: none;
		width: calc(100% / 2);
	}
	#about .block .inner .right {
		width: calc(100% / 2);
	}

	#news .inner {
		margin: 0 10%;
	}

	#access {
		padding: 60px 0;
	}
	#access .inner {
		margin: 0 10%;
	}
	#access .left {
		justify-content: center;
		margin: 0;
	}
	#access .right {
		justify-content: center;
	}
	footer .column {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	footer .left {
		margin-bottom: 0;
		text-align: left;
		width: 25%;
	}
	footer .center {
		flex-grow: 1;
		margin: 0 10px;
	}
	footer .right {
		width: 350px;
	}
	footer .center {
		margin-bottom: 0;
	}
	footer .center p {
		margin-top: 0;
	}

	footer .inner {
		margin: 0 5%;
	}

	#single .inner {
		margin: 0 5%;
	}

	#archive .inner {
		margin: 0 5%;
	}
}

@media (min-width: 1280px) {
	header .block .inner {
		padding: 0 10%;
	}
	#breadcrumb {
		margin-left: 10%;
	}

	/* 221227 新規カラム作成 */
	#pushpoint .inner {
		margin: 0 15%;
	}

	#covid_19 {
		margin: 50px 15%;
	}

	#info_each_clinic .inner {
		margin: 0 15%;
	}

	#about .inner {
		margin: 0 15%;
	}

	#news .inner {
		margin: 0 15%;
	}

	#access .inner {
		margin: 0 15%;
	}

	#access .block {
		width: 80%;
		margin: 0 auto;
		max-width: 900px;
	}

	#single .inner {
		margin: 0 10%;
	}

	#archive .inner {
		margin: 0 10%;
	}

	footer .inner {
		margin: 0 10%;
	}
}
