@charset "UTF-8";

/* デバッグ用あとで消すTODO: */

main {
	/* border: 5px solid blue; */
}

/*	基本
====================================== */

/* @layer base { */
:root {
	/* font-size
	------------------------------ */

	--font-size-small: 0.75rem;
	--font-size-hanako: 0.875rem;
	--font-size-sbase: 0.9rem;
	--font-size-base: clamp(1.063rem, 1.085rem + -0.094vw, 1rem);
	/* 17px -16px */
	--font-size-smiddle: clamp(1rem, 0.956rem + 0.188vw, 1.125rem);
	/* 16px -18px */
	--font-size-middle: clamp(1.125rem, 1.059rem + 0.282vw, 1.313rem);
	--font-size-middle-large: clamp(1.313rem, 1.246rem + 0.282vw, 1.5rem);
	--font-size-large: 28px;
	--font-size-xlarge: clamp(1.75rem, 1.662rem + 0.376vw, 2rem);
	--font-size-head: 42px;
	--font-size-xxlarge: 48px;
	--font-size-xxxlarge: 64px;
	--font-size-xxxxlarge: 96px;
}

:root {
	/* color
	------------------------------ */

	--color-white: #fff;
	--color-black: #1a1a1c;
	--color-main-green: #00a58c;
	--color-light-green: #8ab800;
	--color-lightest-green: #effae5;
	--color-orange: #ff8c00;
	--color-brown: #736357;
	--color-gray: #b1b1b1;
	--color-bg-gray: #f8f7f5;
	--color-border-gray: rgb(0 0 0 / 20%);
}

:root {
	/* layout
	------------------------------ */

	/* コンテンツ最大 */
	--content-width: 1308px;

	/* padding
		------------------------------ */
	--padding-01: 3rem 7%;
}

@media screen and (width <=768px) {
	:root {
		--padding-01: 3rem 5svw;
	}
}

:root {
	/* font
	------------------------------ */

	/* 
		■Kiwi Maru
		weight → 300 400 500に対応
		weight 400のみ「α」の文字に未対応 
		*/
	--font-family-title: "Kiwi Maru", serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-family-title);
}

body {
	font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ",
		Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* link
	------------------------------ */

a {
	transition: color 0.4s;
}

a:has(img) {
	display: block;
}

/* image
	------------------------------ */

img {
	display: block;
}

html {
	scroll-behavior: smooth;
}

body {
	margin-bottom: 0;
}
/* } */

@media (pointer: fine), (hover: hover) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}

/*  ユーティリティクラス (Utilityのu-)
====================================== */

/* 背景色 + 文字色 */

.bg-green {
	color: var(--color-white);
	background-color: var(--color-main-green);
}

.bg-gray {
	background-color: var(--color-bg-gray);
}

.bg-history {
	color: var(--color-white);
	background-image: url("../images/common/bg-history.jpg");
	background-repeat: repeat;
	background-attachment: fixed;
	background-size: auto;
}

.content-width {
	max-width: var(--content-width);
	padding-right: 5vw;
	padding-left: 5vw;
	margin: 0 auto;
}

/* PC or SP 切り替え */

.u-sp-only {
	display: none;
}

.u-cover-fit {
	overflow: hidden;
}

.u-cover-fit img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.u-text-center {
	text-align: center;
}

@media screen and (width <=768px) {
	.u-pc-only {
		display: none;
	}

	.u-sp-only {
		display: block;
	}
}

/*  アニメーション(JS)クラス
====================================== */

.gsap-parallax {
	/* 
	* パララックス効果
	* 使用方法: imgタグのひとつ上「.gsap-parallax」を指定する。
	* 記載ファイル: animation.js
	*/
	overflow: hidden;
}

/*  共通の見出し
====================================== */

.top-h {
	position: absolute;
	left: 50%;
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 240px;
	height: 240px;
	margin: 0 auto;
	background-color: #fff;
	border-radius: 50%;
	transform: translateX(-50%);
}

.section-title {
	font-weight: 500;
	color: var(--color-main-brown);
}

.section-sub-title {
	font-family: var(--font-family-title);
	font-weight: 500;
	color: var(--color-light-green);
}

.top-icon-head__icon {
	display: inline-block;
	width: 3.5rem;
	margin: 0 auto;
	text-align: center;
}

@media screen and (width <=768px) {
	.top-h {
		width: 140px;
		height: 140px;
		font-size: 0.9rem;
	}

	.top-icon-head__icon {
		width: 2.5em;
	}

	.section-title {
		margin: 0.8em 0 0;
		font-size: 1.3em;
	}

	.section-sub-title {
		font-size: 0.9em;
	}

	#s-facility .top-h {
		top: -12px;
	}
}

/* co-icon-head セクションのタイトル */

.co-icon-head {
	text-align: center;
}

.co-icon-head__icon {
	text-align: center;
}

.co-icon-head__icon img {
	display: inline-block;
	width: 3.875rem;
	height: auto;
}

@media screen and (width <=768px) {
	.co-icon-head__icon img {
		display: inline-block;
		width: 2.5rem;
		height: auto;
	}
}

.co-icon-head__title {
	margin-top: 0.75rem;
	margin-bottom: 4rem;
	font-size: var(--font-size-large);
	font-weight: 500;
	color: var(--color-brown);
	letter-spacing: 0.08em;
}

@media screen and (width <=768px) {
	.co-icon-head__title {
		font-size: 1.3rem;
	}
}

/* 2枠線 */

.co-border-2 {
	position: relative;
	width: 100%;
	width: fit-content;
	line-height: 1;
	text-align: center;

	--s: 2rem;
}

.co-border-2::before {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: var(--s);
	height: var(--s);
	vertical-align: top;
	content: "";
	background: url("../images/svg/icon-border-tl.svg") no-repeat;
}

.co-border-2::after {
	position: absolute;
	right: 0;
	bottom: 0;
	display: inline-block;
	width: var(--s);
	height: var(--s);
	vertical-align: top;
	content: "";
	background: url("../images/svg/icon-border-ur.svg") no-repeat;
}

/* 2枠線 数字オプション */

.co-border-2--number {
	padding: 0 0.8em 0.1em;
}

.co-border-2--number::before,
.co-border-2--number::after {
	--s: 0.5em;

	width: var(--s);
	height: var(--s);
}

/* 2枠線 ブラウンオプション */

.co-border-2--brown {
	padding: 0.75em 3.5em;
	font-size: var(--font-size-xlarge);
	font-weight: 500;
	color: var(--color-brown);

	--s: 1.5em;
}

/* 2枠線 アニメーション用 */

.co-border-2 {
	--scale: 0;
}

.co-border-2::before {
	opacity: var(--opacity);
	transform: scale(var(--scale));
}

.co-border-2::after {
	opacity: var(--opacity);
	transform: scale(var(--scale));
}

/* 2枠線 コンテンツが長い場合 */

.co-border-2--long {
	margin-right: auto;
	margin-left: auto;
}

@media screen and (width <=768px) {
	.co-border-2--long {
		padding-right: 3rem;
		padding-left: 3rem;
	}
}

/* 数字タイトル */

.co-number {
	font-family: var(--font-family-title);
	font-size: var(--font-size-xxxxlarge);
	font-weight: 300;
	letter-spacing: 0.08em;
}

.co-number::first-letter {
	color: var(--color-gray);
}

.s-house-feature-list__item:first-of-type .co-number {
	color: #fa9ca9;
}

.s-house-feature-list__item:nth-of-type(2) .co-number {
	color: #7ca7e9;
}

.s-house-feature-list__item:nth-of-type(3) .co-number {
	color: #b7d951;
}

.s-house-feature-list__item:nth-of-type(4) .co-number {
	color: #c5add6;
}

/* 四つ角 わく */

.co-border-4 {
	position: relative;
	width: 100%;
	line-height: 1;

	--s: 2.5rem;
}

.co-border-4::before {
	position: absolute;
	top: calc(var(--font-size-xlarge) * 0.5);
	left: 0;
	display: inline-block;
	width: var(--s);
	height: var(--s);
	content: "";
	background: url("../images/svg/icon-border-tl.svg") no-repeat;
}

.co-border-4::after {
	position: absolute;
	right: 0;
	bottom: 0;
	display: inline-block;
	width: var(--s);
	height: var(--s);
	content: "";
	background: url("../images/svg/icon-border-ur.svg") no-repeat;
}

.co-border-4__wrapper::before {
	position: absolute;
	top: calc(var(--font-size-xlarge) * 0.5);
	right: 0;
	display: inline-block;
	width: var(--s);
	height: var(--s);
	content: "";
	background: url("../images/svg/icon-border-tr.svg") no-repeat;
}

.co-border-4__wrapper::after {
	position: absolute;
	bottom: 0;
	left: 0;
	display: inline-block;
	width: var(--s);
	height: var(--s);
	content: "";
	background: url("../images/svg/icon-border-ul.svg") no-repeat;
}

/*  ギャラリー 3列 */

.co-gallery {
	display: flex;
	flex-wrap: wrap;
	row-gap: 3rem;
	justify-content: space-between;
}

.co-gallery-item {
	display: flex;
	flex: 1 1 100%;
	flex-direction: column;
	gap: 1rem;
	max-width: 32%;
}

@media screen and (width <=768px) {
	.co-gallery-item {
		gap: 0.6em;
		max-width: 48%;
	}
}

.co-gallery-item__image {
	aspect-ratio: 4/3;
	overflow: hidden;
}

.co-gallery-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.co-gallery-item__name {
	margin-top: 0;
	font-size: var(--font-size-middle);
	font-weight: 500;
	color: var(--color-brown);
}

.co-gallery-item__text {
	margin: 0;
	font-size: var(--font-size-base);
	line-height: 1.3em;
}

/* リンクボタン */

.co-link-button a {
	position: relative;
	display: inline-block;
	padding: 1em 4em;
	font-family: var(--font-family-title);
	font-weight: 500;
	color: var(--color-white);
	text-decoration: none;
	letter-spacing: 0.06em;
	background-color: var(--color-main-green);
	border: 3px solid transparent;
	border-radius: 2rem;
	transition: all 0.3s;
}

.co-link-button a:hover {
	color: var(--color-main-green);
	background-color: var(--color-white);
	border: 3px solid var(--color-main-green);
}

.co-link-button a::after {
	position: absolute;
	top: 50%;
	right: 1em;
	margin-left: 0.5em;
	content: ">";
	transition: all 0.6s;
	transform: translateY(-50%) translateX(-1em);
}

.co-link-button a:hover::after {
	margin-left: 1em;
	color: var(--color-main-green);
	transform: translateY(-50%) translateX(0);
}

/* 外部リンク */

.co-link-external {
	display: block;
	text-align: left;
}

.co-link-external a {
	display: inline-block;
	color: currentcolor;
}

.co-link-external a::after {
	display: inline-block;
	width: 1em;
	height: 1em;
	margin-top: 1em;
	margin-left: 0.3em;
	color: var(--color-main-green);
	content: url("../images/svg/icon-external-link.svg");

	/* background-image:  */
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

/* カテゴリーラベル */

.co-category-label {
	padding: 0.38em 1.3em 0.3em;
	font-size: var(--font-size-small);
	color: var(--color-white);
	letter-spacing: 0;
	white-space: nowrap;
	background-color: var(--color-light-green);
	border-radius: 2rem;
}

@media screen and (width <=768px) {
	.co-category-label {
		padding: 0.1em 1em;
	}
}

/*  投稿の見出し装飾
====================================== */

.co-post {
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.co-post :where(h1, h2, h3, h4, h5, h6) {
	padding: 0.2em 0.6em;
	font-weight: 500;
}

@media screen and (width <=768px) {
	.co-post :where(h1, h2, h3, h4, h5, h6) {
		padding: 0.1em 0.3em;
		font-weight: 500;
	}
}

.co-post h1 {
	font-size: var(--font-size-middle-large);
	color: var(--color-white);
	background-color: var(--color-main-green);
}

.co-post h2 {
	font-size: var(--font-size-middle-large);
	border-bottom: 5px solid var(--color-main-green);
}

.co-post h3 {
	font-size: var(--font-size-middle);
	border-left: 5px solid var(--color-main-green);
}

.co-post a {
	color: var(--color-main-green);
}

.co-post a:hover {
	color: var(--color-orange);
}

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

/* レイアウト */

.top-header {
	position: relative;
}

.main-navigation {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 5;
}

.site-branding__wrapper--inner {
	display: flex;
	align-items: center;
	padding: 1.75rem 5vw;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 5;
	width: 100%;
	height: 96px;
	background: #fff;
}

/* 1200から769まで */

@media screen and (width <=1200px) {
	.site-branding__wrapper--inner {
		flex-direction: column;
		gap: 1.6rem;
		height: 136px;
	}

	.site-branding__wrapper--inner .menu {
		justify-content: center;
	}
}

@media screen and (width <=768px) {
	.site-branding__wrapper--inner {
		display: none;
	}
}

/* ロゴ */

.site-branding img {
	object-fit: contain;
}

.site-branding--top {
	position: absolute;
	top: 43%;
	left: 50%;
	z-index: 2;
	transform: translate(-50%, -50%);
}

.site-branding--inner {
	min-width: 18rem;
	max-width: 18rem;
}

.site-title {
	margin: 0;
}

.site-title a {
	display: block;
	text-align: center;
}

.site-title--top {
	width: 24rem;
}

@media screen and (width <=768px) {
	.site-branding--top {
		top: 70%;
	}

	.site-title--top {
		width: 100%;
	}
}

.site-copy {
	position: absolute;
	top: 4rem;
	right: 6%;
	z-index: 2;
	height: 57svh;
}

.site-copy img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media screen and (width <=860px) {
	.site-copy {
		display: none;
	}
}

@media screen and (width <=768px) {
	.site-title a {
		display: block;
		width: 100vw;
		margin-right: auto;
		margin-left: auto;
		text-align: center;
	}

	.site-title img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
}

/* ナビゲーションメニュー(共通) */

.menu {
	gap: 3vw;
	justify-content: end;
}

.menu a {
	font-family: var(--font-family-title);
	font-size: clamp(18px, 1.2vw, 21px);
	font-weight: 500;
	color: var(--color-brown);
	text-wrap: nowrap;
}

@media (hover: hover) {
	.menu a:hover {
		font-family: var(--font-family-title);
		color: var(--color-main-green);
	}
}

/* ナビゲーションメニュー(TOP) */

.top-navigation {
	width: fit-content;
	padding-top: 1.5em;
	padding-bottom: 1.5rem;
	padding-left: 5vw;
	background: rgb(255 255 255 / 80%);
	backdrop-filter: blur(5px);
	border-radius: 0 0 0 35px;
}

.top-nav-menu {
	padding-right: 5vw;
}

/* ナビゲーションメニュー(下層) */

.inner-navigation {
	position: static;
}

/* ナビゲーションメニュ(スマホ) */

@media screen and (width <=768px) {
	.sp-navigation {
		position: fixed;
		display: flex;
		justify-content: flex-end;
	}
}

.menu-toggle {
	cursor: pointer;
}

.sp-navigation__button {
	display: flex;
	gap: 0.5rem;
	margin: 0.7rem 0.5rem 0 0;
}

.sp-navigation__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 5.2rem;
	height: 5.2rem;
	font-family: var(--font-family-title);
	font-size: 22px;
	line-height: 1.1;
	text-align: center;
	background-color: #5aae95;
	border-radius: 50%;
}

/*  ヘッダー 下線 アニメーション
====================================== */

.menu-item a {
	position: relative;
	transition: all 0.3s;
}

.menu-item a::after {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 0%;
	height: 2px;
	content: "";
	background-color: var(--color-main-green);
	transition: all 0.3s;
}

@media (hover: hover) {
	.menu-item a:hover::after {
		width: 100%;

		/* 全幅に伸びる */
	}
}


/*  下層ページ 共通
====================================== */

/* 下層レイアウト */

.inner-page,
.archive-page {
	padding-top: 1.5rem;
	background: var(--color-white);
	border-radius: 50px 50px 0 0;
}

/* @layer base { */

.inner-page :where(h1, h2, h3, h4, h5, h6, p),
.archive-page :where(h1, h2, h3, h4, h5, h6, p) {
	margin-bottom: 0;
}

.inner-page p,
.archive-page p {
	line-height: 1.8;
}

main:has(.inner-page),
main:has(.archive-page) {
	position: relative;
	top: -3rem;
	z-index: 1;
	border: none;
}

.inner-page section:not(:first-of-type),
.archive-page section:not(:first-of-type) {
	padding-top: 6rem;
}

.inner-page section,
.archive-page section {
	padding-top: 2.5rem;
	padding-bottom: 4rem;
}

@media screen and (width <=768px) {
	.inner-page section,
	.archive-page section {
		padding-bottom: 0rem;
	}
	.inner-page section {
		padding-top: 0;
	}
}
/* } */

/* パンくず */

.breads-crumbs {
	color: rgb(0 0 0 / 18%);
	color: var(--color-brown);
}

.breads-crumbs a {
	color: var(--color-brown);
	text-decoration: none;
}

@media (hover: hover) {
	.breads-crumbs a:hover {
		color: var(--color-main-green);
	}
}

@media screen and (width <=768px) {
	.aioseo-breadcrumbs {
		display: -webkit-box;
		max-width: 80vw;
		margin-right: auto;
		margin-left: auto;
		overflow: hidden;
		font-size: var(--font-size-hanako);
		-webkit-line-clamp: 1;
		-webkit-box-orient: vertical;
	}
}

/*  ハンバーガーメニュー
====================================== */

/* buttonのスタイルを初期化 */

.menu-toggle {
	width: 5.2rem;
	height: 5.2rem;
	padding: 0;
	background-color: var(--color-white);
	border: 1px solid transparent;
	border-radius: 50%;
}

.menu-toggle__line {
	display: block;
	width: 54%;
	height: 6px;
	margin: 0;
	margin-right: auto;
	margin-left: auto;
	background-color: #5aae95;
	border-radius: 7px;
	transition: all 0.5s ease;
}

.menu-toggle__line:first-child {
	transform: translateY(-8px);
}

.menu-toggle__line:nth-child(2) {
	transform: translateY(0);
}

.menu-toggle__line:last-child {
	transform: translateY(8px);
}

.toggled .menu-toggle__line:nth-child(2) {
	display: none;
}

.toggled .menu-toggle__line:first-child {
	transform: translateY(3.5px) rotate(45deg);
}

.toggled .menu-toggle__line:last-child {
	transform: translateY(-3.5px) rotate(-45deg);
}

/*  サブメニュー
====================================== */

@media screen and (768px < width) {
	.sub-menu {
		display: flex;
		flex-direction: column;
		gap: 0.6rem;
		padding: 1.5rem;
		background: rgb(255 255 255 / 75%);
		backdrop-filter: blur(3.5px);
		border-radius: 0 0 0 35px;
	}

	.sub-menu a {
		font-size: var(--font-size-smiddle);
	}

	.sub-menu a::before {
		display: inline-block;
		margin-right: 0.3em;
		content: "-";
	}
}

@media screen and (width <=768px) {
	.sub-menu {
		position: static;
		display: flex;
		flex-direction: column;
		gap: 0.6rem;
		float: none;
		padding: 0.6rem 1.5rem;
		box-shadow: none;
	}

	.sub-menu a {
		font-size: var(--font-size-base);
	}

	.sub-menu a::before {
		display: inline-block;
		margin-right: 0.3em;
		content: "-";
	}
}

/*  SPハンバーガーメニュー 表示されるメニュー
====================================== */

@media screen and (width <=768px) {
	.sp-nav-menu {
		position: fixed;
		top: -100%;
		z-index: -1;
		width: 100vw;

		/* bottom menu 100px */
		height: calc(100svh - 100px);
		padding: 10vw;
		padding-top: 30vw;
		overflow-y: scroll;
		background: var(--color-bg-gray);
	}

	.sp-nav-menu__inner ul {
		display: flex;
		flex-direction: column;
	}

	.sp-nav-menu a {
		color: var(--color-main-green);
	}
}

/*  テキストアニメーション
====================================== */

/* 共通設定 */

.gsap-text {
	--gs-width: 0;
	--gs-color: #fff;
	--gs-left-position: 0;
	--gs-right-position: auto;
	--gs-opacity: 0;

	position: relative;
	z-index: 1;
	color: var(--gs-color);
}

.gsap-text::after {
	position: absolute;
	right: var(--gs-right-position);
	bottom: 0;
	left: var(--gs-left-position);
	z-index: -1;
	width: var(--gs-width);
	height: 100%;
	content: "";
	background-color: black;
	opacity: var(--gs-opacity);
	transition: all 0.5s;
}

/*	全ページ共通 診療時間・アクセス
====================================== */

.s-hours__head {
	text-align: center;
}

#s-hours .hours-content-flex {
	display: flex;
	justify-content: center;
	padding: 255px 0 0;
	margin: 0 20px;
}

#s-hours .hours-content-flex .hours-left {
	margin-right: 40px;
}

#s-hours address {
	font-style: normal;
}

#s-hours .hours-content-flex address p {
	margin: 0 0 7px;
}

#s-hours .u-pc-only .tel {
	font-size: 36px;
	font-weight: bold;
	color: var(--color-brown);
	text-decoration: none;
}

#s-hours .hours-content-flex p.access-icon {
	margin: 12px 0;
}

#s-hours .access-icon img,
#s-hours .web-btn img,
.bus-norikae img {
	display: inline-block;
	width: 19px;
	margin-right: 12px;
	vertical-align: middle;
}

.bus-norikae img {
	width: 28px;
}

#s-hours .web-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 305px;
	height: 55px;
	margin: 48px 0 0;
	font-size: 19px;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	background-color: #00a170;
	border-radius: 5px;
}

#s-hours .line-btn {
	margin: 20px auto 0;
}

#s-hours .line-btn:hover {
	opacity: 0.6;
}

#s-hours .web-btn img {
	height: auto;
}

/* 診療時間のtable */

#s-hours .hours-table {
	text-align: center;
	border-collapse: collapse;
	border-top: 1px solid #999;
	border-bottom: 1px solid #999;
}

#s-hours .hours-table .table-1 {
	border-bottom: 1px solid #999;
}

#s-hours .hours-table th {
	font-weight: normal;
}

#s-hours .hours-table .table-1 th,
#s-hours .hours-table .table-2 td {
	padding: 23px 0;
}

#s-hours .hours-table .table-1 th {
	width: 10%;
}

#s-hours .hours-table .table-1 th:first-child {
	width: auto;
}

#s-hours .hours-table .table-1 th:last-child {
	width: 14%;
}

#s-hours .hours-table .table-2 td,
#s-hours .hours-table .table-3 td {
	font-weight: bold;
}

#s-hours .hours-table .table-3 th,
#s-hours .hours-table .table-3 td {
	padding: 0 0 23px;
}

#s-hours .hours-table .medi-open {
	color: var(--color-light-green);
}

/* 診療時間のtable ここまで */

#s-hours iframe.okada-map {
	width: 100vw;
	height: 430px;
	margin: 90px 0 60px;
}

#s-hours .hours-info {
	margin: 0 0 5px;
}

#s-hours .available-card {
	margin: 40px 20px 20px;
}

#s-hours .available-card-img {
	max-width: 280px;
}

/* googleマップ下のバス停 */

#s-hours .busstop-map {
	margin: auto;
}

#s-hours .busstop-map img {
	margin: auto;
}

#s-hours .bus-stop {
	display: flex;
	justify-content: space-around;
	max-width: 1350px;
	margin: 0 auto;
}

#s-hours .busstop-timetable {
	display: flex;
	flex-basis: 60%;
	flex-wrap: wrap;
	gap: 35px;
	margin-left: 40px;
}

#s-hours .busstop-timetable .access-icon {
	width: 100%;
	padding: 0 0 10px;
	margin: 0;
	border-bottom: 1px solid #999;
}

#s-hours .bus-stop-content {
	display: flex;
}

#s-hours .bus-stop-content img {
	width: auto;
	height: 57px;
}

#s-hours .bus-destination {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 40px;
	margin: 0 15px;
	font-size: 0.9em;
}

#s-hours .bus-stop-content:last-child {
	padding-bottom: 30px;
	border-bottom: 1px solid #999;
}

#s-hours .bus-destination p {
	margin: 0;
}

#s-hours .bus-norikae {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 400px;
	width: 90%;
	height: 70px;
	margin: 48px auto 50px;
	font-size: 19px;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	background-color: #00a170;
	border-radius: 5px;
}

/*	footer
====================================== */

.site-footer {
	text-align: center;
}

.site-footer .f-logo {
	max-width: 458px;
	margin: 18px auto 60px;
}

.site-footer .f-copyr {
	font-size: 12px;
}

#page-top-btn {
	visibility: hidden;
	opacity: 0;
	transition: all 0.5s;
}

#page-top-btn.active {
	visibility: visible;
	opacity: 1;
}

#page-top-btn a {
	position: fixed;
	right: 10px;
	bottom: 0;
	z-index: 5;
	padding: 20px;
}

#page-top-btn a:hover {
	opacity: 0.7;
}

#page-top-btn img {
	width: 80px;
}

#footer-nav {
	position: fixed;
	bottom: 0;
	z-index: 5;
	display: flex;
	width: 100vw;
	height: 80px;
}

#footer-nav .f-tel,
#footer-nav .f-access,
#footer-nav .f-line {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-family-title);
	font-size: 18px;
	color: #fff;
	text-align: center;
	text-decoration: none;
}

#footer-nav .f-tel {
	width: 35%;
	background-color: #f93;
	border-top-right-radius: 30px;
}

#footer-nav .f-tel img {
	display: inline-block;
	width: 15px;
	margin-right: 10px;
}

#footer-nav .f-access {
	width: 35%;
	background-color: #8ab800;
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
}

#footer-nav .f-line {
	flex-direction: column;
	width: 30%;
	background-color: #00a75b;
	border-top-left-radius: 30px;
}

#footer-nav .f-line img {
	width: 25%;
}

#footer-nav img {
	width: 80px;
}

@media screen and (width <=1000px) {
	#s-hours .u-pc-only .tel {
		font-size: 32px;
	}
}

/* pcの時 */

@media screen and (width >768px) {
	#footer-nav {
		display: none !important;
	}
}

/* スマホの時 */

@media screen and (width <=768px) {

#s-hours{
	padding-top: 80px;
    margin-top: -80px;
}

	#s-hours .available-card-img {
		max-width: 320px;
	}

	.site-footer {
		margin-bottom: 120px;
	}

	#page-top-btn {
		display: none !important;
	}

	#s-hours .hours-table {
		border-top: none;
	}

	#s-hours .hours-table tr th:first-child {
		text-align: left;
	}

	#s-hours iframe.okada-map {
		margin: 30px 0;
	}

	#s-hours .map-bottom {
		margin: 0 20px 30px;
	}

	#s-hours .u-sp-only p {
		margin: 0 0 5px;
	}

	#s-hours .hours-content-flex {
		padding: 170px 0 0;
	}

	#s-hours .hours-info.info-text {
		margin: 0;
	}

	#s-hours .tel {
		color: #404040;
		text-decoration: none;
	}

	/* バス停 */

	#s-hours .bus-stop {
		display: block;
	}

	#s-hours .busstop-timetable {
		margin: 50px 20px 0;
	}

	#s-hours .bus-norikae {
		margin: 25px auto 40px;
	}

	.site-footer p {
		font-size: 0.8em;
	}

	.site-footer .f-logo {
		width: 90%;
		margin: 18px auto 60px;
	}

	#page-top-btn img {
		width: 60px;
	}
}
