@charset "utf=8";

/* ==========================================
カスタムプロパティ
========================================== */

:root {
	/* base color */
	--base-font-color: #535A5F;

	--white: #fff;
	--gray: #777F84;
	--light-gray: #9AA7AF;

	/* ui color */
	--ui-border-color: #555;
	--ui-focus-color: #333;

	/* site color */
	--primary: #262626;
	--primary-hover: #fff;
	--secondary: #FAF9F7;
	/* --secondary-hover: #55f; */
	--tertiary: #0f0;
	/* --tertiary-hover: #5f5; */
	--quaternary: #f0f;
	/* --quaternary-hover: #f5f; */
	--fifth: #ff0;
	/* --fifth-hover: #ff5; */
	--sixth: #0ff;
	/* --sixth-hover: #5ff; */
	--white: #fff;

	/* btn color */
	--btn-primary: #FFF;
	--btn-primary-hover: #34A9EE;
	
	/*
	--btn-secondary: var(--secondary);
	--btn-secondary-hover: var(--secondary-hover);
	--btn-tertiary: var(--tertiary);
	--btn-tertiary-hover: var(--tertiary-hover);
	--btn-quaternary: var(--quaternary);
	--btn-quaternary-hover: var(--quaternary-hover);
	--btn-fifth: var(--fifth);
	--btn-fifth-hover: var(--fifth-hover);
	--btn-sixth: var(--sixth);
	--btn-sixth-hover: var(--sixth-hover);
	*/

	/* border color */
	--border-primary: #D9D9D9;
	--border-secondary: #eeca34;
	--sp-border-color: #fff;

	/* gradation color */
	--gradation-primary: linear-gradient(to bottom, rgba(0, 0, 0, 5%), rgba(0, 0, 0, 30%));
	--gradation-secondary: linear-gradient(180deg,rgba(15, 27, 48, 0) 0%, rgba(15, 27, 46, 0.33) 30%, rgba(15, 27, 45, 0.5) 55%, rgba(15, 27, 45, 0.76) 100%);
	--gradation-tertiary: linear-gradient(to bottom, rgba(52, 169, 238, 0%), rgba(52, 169, 238, 80%));

	/* font family */
	--base-font-family: "Noto Sans JP", sans-serif, "Montserrat", sans-serif, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	/* --base-font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif; */
	/* --font-family01: ; */
	--font-family-primary: "Noto Sans JP", sans-serif;
	/* --font-family02: ; */
	--font-family-secondary: "Montserrat", sans-serif;
	/* --font-family03: ; */
}

/* ==========================================
共通
========================================== */

html {
	/* font-size: var(--root-font-size); */
	font-size: 62.5%;
}

body {
	margin: 0 auto;
	max-width: 192rem;
	width: 100%;
	letter-spacing: 0.05em;
	line-height: 2.1875;
	font-size: 1.6rem;
	font-weight: 400;
	font-family: var(--base-font-family);
	color: var(--base-font-color);
}

input {
	appearance: auto;
	border: 1px solid var(--ui-border-color);
}

input:focus-visible {
	outline: 1px solid var(--ui-focus-color);
	border-color: var(--ui-focus-color);
}

textarea {
	border: 1px solid var(--ui-border-color);
}

textarea:focus-visible {
	outline: 1px solid var(--ui-focus-color);
	border-color: var(--ui-focus-color);
}

img {
	max-width: 100%;
	height: auto;
}

.in-wrapper01 {
	max-width: 192rem;
	width: 100%;
	margin: 0 auto;
	padding: 13rem 0;
}

.padding01 {
	padding: 0 1.5rem;
}

.inner01 {
	max-width: 122rem;
	width: 100%;
	margin: 0 auto;
}

.pb-0 {
	padding-bottom: 0 !important;
}

/* ==========================================
フォント
========================================== */

.font-family-primary {
	font-family: var(--font-family-primary);
}

.font-family-secondary {
	font-family: var(--font-family-secondary);
}

/* ==========================================
テキスト
========================================== */

.title01 {
	font-size: 3.6rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	line-height: 1.59444;
}

.title02 {
	font-size: 3rem;
	letter-spacing: 0.15em;
	font-weight: 400;
	line-height: 1.4;
}

.english-title01 {
	margin: 0.5rem 0 0 0;
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.2;
}

.text01 {
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 2.1875;
}

/*--- result-text ---*/

.result-text {
    margin: auto;
    text-align: center;
}

/* ==========================================
テキストカラー
========================================== */

.text-color-primary {
	color: var(--primary);
}

.text-color-gray {
	color: var(--gray);
}

.text-color-light-gray {
	color: var(--light-gray);
}

.text-color-white {
	color: var(--white);
}

/* ==========================================
ボタンカラー
========================================== */

.btn-color-primary {
	background: var(--btn-primary);
	transition: all .3s;
}

.btn-color-primary:hover {
	background: var(--btn-primary-hover);
}

/* ==========================================
バックグラウンドカラー
========================================== */

.contact-link-background-white {
	background: var(--white);
}

.background-primary {
	background: var(--primary);
}

.background-secondary {
	background: var(--secondary);
}

/* ==========================================
ボーダーカラー
========================================== */

.border-primary {
	border: 1px solid var(--border-primary);
}

.border-bottom-primary {
	border-bottom: 1px solid var(--border-primary);
}

.border-bottom-secondary {
	border-bottom: 1px solid var(--border-secondary);
}

.border-left-primary {
	border-left: 1px solid var(--border-primary);
}

.border-secondary {
	border: 1px solid var(--border-secondary);
}

/* ==========================================
ボタン
========================================== */

.form-send-btn {
	display: block;
	max-width: 28rem;
	width: 100%;
	padding: 1.5rem;
	text-align: center;
	border: solid 1px var(--border-primary);
	border-radius: 4rem;
	transition: all .3s;
}

.form-send-btn {
	background: var(--primary);
	color: var(--white);
}

.form-send-btn:hover {
	border-color: var(--primary);
	background: var(--primary-hover);
	color: var(--primary);
}

.btn01 {
    display: flex;
    align-items: center;
    justify-content: space-between;
	position: relative;
    max-width: 22rem;
    width: 100%;
    padding: 1.3rem 1.2rem 1.1rem 3rem;
    border-radius: 4rem;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.03em;
	transition: all .3s;
}

.btn01:after {
    content: "\f0a9";
    font-family: "Font Awesome 5 Free";
	display: inline-block;
    max-width: 2.5rem;
    width: 100%;
	transition: all .3s;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
}

.btn01:hover::after {
    transform: translateX(0.6rem);
}

.tel-btn {
    max-width: 35.5rem;
    width: 100%;
    display: flex;
    align-items: center;
}

.tel-icon {
    max-width: 2.6rem;
    width: 100%;
	margin: 0 1.5rem 0 0;
}

.tel-text {
    font-size: 4.5rem;
	letter-spacing: 0;
	line-height: 1.2222;
}

.contact-link {
    max-width: 37rem;
    width: 100%;
	padding: 1.3rem 1rem 1.2rem;
	border-radius: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
	position: relative;
    transition: all .3s;
}

.contact-link::before {
    content: "\f0e0";
    font-family: "Font Awesome 5 Free";
    max-width: 2.6rem;
    width: 100%;
    height: auto;
    margin: 0.2rem 1rem 0 0;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
}

.contact-btn-text {
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0.1em;
}

.contact-link-img {
	display: block;
}

.contact-link-img-hover {
	display: none;
}

.contact-link:hover .contact-link-img {
    display: none;
}

.contact-link:hover .contact-link-img-hover {
    display: block;
}

.contact-link-icon-block {
    max-width: 2.6rem;
    width: 100%;
    margin: -1.5rem 1rem 0 0;
}

.contact-link.text-color-primary.text-color-primary-hover:hover {
    color: var(--primary-hover);
}

.contact-link-background-white:hover {
	background: var(--primary);
}

.contact-link.border-secondary:hover {
	border: 1px solid var(--white);
}

/* ==========================================
スタッフ紹介・アクセス紹介 バナー
========================================== */

.introduction01-link {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
	transition: all .3s;
}

.introduction01-link:before {
    content: "";
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	background: var(--gradation-tertiary);
}

.introduction01-link-img {
    width: 100%;
}

.introduction01-link-img img {
    height: 100%;
    object-fit: cover;
}

.introduction01-link-title-block {
    position: absolute;
    bottom: 2rem;
	left: 4rem;
	margin: auto;
}

.introduction01-link-icon {
    max-width: 5rem;
    width: 100%;
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    margin: auto;
	transition: all .3s;
}

.introduction01-link:hover .introduction01-link-icon {
	transform: translateX(0.8rem);
}

/* ==========================================
下層カバー
========================================== */

.in-cover {
	max-width: 192rem;
	width: 100%;
	margin: 0 auto;
	position: relative;
}

.in-cover:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	background: var(--gradation-primary);
	z-index: 2;
}

.in-cover:after {
	content: "";
	display: block;
	width: 100%;
	height: 50%;
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	background: var(--gradation-secondary);
	z-index: 3;
}

.in-cover-img {
	max-width: 192rem;
	width: 100%;
	height: 30rem;
}

.in-cover-img img {
	width: 100%;
	height: 100% !important;
	object-fit: cover;
}

.in-cover-title {
	display: inline-table;
	font-size: 6rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.7;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	z-index: 3;
}

/* ==========================================
パンくず
========================================== */

.breadcrumbs-wrapper {
	max-width: 192rem;
	width: 100%;
	margin: 0 auto;
	padding: 1.5rem;
}

.breadcrumbs-list {
	max-width: 122rem;
	width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
}

.breadcrumbs-item {
	font-size: 1.4rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.7;
	display: flex;
	align-items: center;
}

.breadcrumbs-link {
	display: block;
	text-decoration: underline;
}

.breadcrumbs-link:hover {
	text-decoration: none;
}

.breadcrumbs-arrow {
	margin: 0 1rem;
}

/* ==========================================
テーブル
========================================== */

.table {
	width: 100%;
}

.table-primary {
    background: var(--white);
    border: solid 1px var(--border-primary);
}

.th {
	width: 30%;
	padding: 1.5rem;
	vertical-align: middle;
}

.th-primary {
    background: var(--primary);
    color: var(--white);
    border: solid 1px var(--border-primary);
}

.td {
	width: 70%;
	padding: 1.5rem;
}

.td-primary {
	border: 1px solid var(--border-primary);
}

/* ==========================================
診察テーブル
========================================== */

.medical-table {
	width: 100%;
	border-radius: 0.8rem;
	overflow: hidden;
}

.medical-tr {
	display: flex;
	align-items: center;
}

.medical-th {
    width: 18%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem;
}

.medical-td {
    width: 11.71428571428571%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem;
}

.medical-text01 {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.medical-text02 {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* ==========================================
スマホ固定ヘッダー
========================================== */

.sp-header {
	width: 100%;
	height: 8rem;
	display: none;
	padding: 0 8rem 0 0;
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9999;
}

.sp-header-block {
	width: 100%;
	height: 100%;
	flex: 1;
	border-right: solid 1px;
	border-top: solid 1px;
}

.sp-header-block-color {
	background: var(--primary);
	border-color: var(--white);
	color: var(--white);
}

.sp-header-link {
	width: 100%;
	height: 100%;
}

.sp-header-link > a {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.sp-header-link > a:before {
	content: "";
	display: inline-block;
	max-width: 3rem;
	width: 100%;
	height: 3rem;
	font-size: 2.5rem;
	font-weight: 900;
	text-align: center;
}

.sp-header-link-pagetop > a:before {
	content: "\f106";
	font-family: "Font Awesome 5 Free";
}

.sp-header-link-tel > a:before {
	content: "\f095";
	font-family: "Font Awesome 5 Free";
}

.sp-header-link-contact > a:before {
	content: "\f0e0";
	font-family: "Font Awesome 5 Free";
}

.sp-header-link-text {
	font-size: 1.4rem;
	margin: .7rem 0 0;
}

/* ---------- ハンバーガーボタン ---------- */

.sp-nav-btn {
	width: 8rem;
	height: 8rem;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: fixed;
	top: auto;
	bottom: 0;
	right: 0;
	border-top: solid 1px;
	z-index: 9999;
}

.sp-nav-btn-color {
	background: var(--primary);
	color: var(--white);
	border-color: var(--white);
}

.sp-nav-btn-bar-box {
	max-width: 4rem;
	width: 100%;
	height: 3rem;
	display: flex;
	position: relative;
}

.sp-nav-btn-bar {
	display: block;
	width: 100%;
	height: 3px;
	background: var(--white);
	position: absolute;
	right: 0;
	left: 0;
	margin: auto;
	transition: .3s;
}

.sp-nav-btn-bar-top {
	top: 10%;
}

.sp-nav-btn-bar-center {
	top: 50%;
	transform: translateY(-50%);
}

.sp-nav-btn-bar-bottom {
	top: 90%;
	transform: translateY(-100%);
}

.sp-nav-btn-text {
	font-size: 1.4rem;
	margin: .7rem 0 0;
}

.js-open .sp-nav-btn-bar-top {
	top: 50%;
	transform: rotate(45deg) translateY(0%);
}

.js-open .sp-nav-btn-bar-center {
	opacity: 0;
}

.js-open .sp-nav-btn-bar-bottom {
	top: 50%;
	transform: rotate(-45deg) translateY(0%);
}


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

.js-sp-nav {
	display: none;
	max-width: 1920px;
	width: 100%;
	margin: auto;
	padding: 0;
	position: fixed;
	top: 0;
	bottom: 0;
	right: -100%;
	transition: ease .5s;
	z-index: 999;
}

.sp-nav.js-open {
	right: 0;
}

.sp-nav-bg {
	background: var(--primary);
}

.sp-nav-area {
	width: 100%;
	height: 100%;
	overflow: auto;
	padding: 10rem 1.5rem;
}

.sp-nav-list {
	padding: 10rem 0;
	width: 100%;
	height: 100%;
	overflow-y: scroll;
	-ms-overflow-style: none;
}

.sp-nav-list::-webkit-scrollbar {
	display:none;
}

.sp-nav-list-item {
	width: 100%;
	display: block;
	font-weight: bold;
	line-height: 1.5em;
	letter-spacing: 0.05em;
	position: relative;
	border-bottom: solid 1px;
}

.sp-nav-list-item a{
	display: block;
	padding: 1.5rem 0;
	font-size: 1.6rem;
	transition: .3s;
}

.sp-nav-list-item a:hover{
	opacity: .6;
}

.sp-nav-list-item-color{
	border-bottom-color: var(--sp-border-color);
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

	html {
		/* 10px */
		font-size: 0.52083vw;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

	html {
		/* 10px */
		font-size: 0.64516vw;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

	html {
		/* 10px */
		font-size: 0.97656vw;
	}

	/* ==========================================
	テキスト
	========================================== */

	.title01 {
		font-size: 3.4rem;
	}

	.title02 {
		font-size: 2.8rem;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

	html {
		/* 10px */
		font-size: 1.30208vw;
	}

	.in-wrapper01 {
		padding: 8rem 0;
	}

	/* ==========================================
	テキスト
	========================================== */

	.english-title01 {
		margin: 0;
	}

	.text01 {
		font-size: 1.4rem;
	}

	/* ==========================================
	テーブル
	========================================== */

	.th {
		width: 100%;
		display: block;
		border: 0;
	}

	.td {
		display: block;
		width: 100%;
		border: 0;
	}

	/* ==========================================
	診察テーブル
	========================================== */

	.medical-text02 {
		font-size: 1.2rem;
	}

	/* ==========================================
	スマホ固定ヘッダー
	========================================== */

	.sp-header {
		display: flex;
	}

	/* ---------- ハンバーガーボタン ---------- */

	.sp-nav-btn {
		display: flex;
	}

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

	.js-sp-nav {
		display: block;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

	html {
		/* 12px */
		font-size: 2.08333vw;
	}

	/* ==========================================
	ボタン
	========================================== */

	.tel-btn {
		max-width: 24.5rem;
		width: 100%;
		display: flex;
		align-items: center;
	}
	
	.tel-icon {
		max-width: 2rem;
	}
	
	.tel-text {
		font-size: 3rem;
	}

	.contact-link {
		max-width: 30rem;
	}

	/* ==========================================
	スタッフ紹介・アクセス紹介
	========================================== */

	.introduction01-link-title-block {
		bottom: 2rem;
		left: 2rem;
	}

	/* ==========================================
	テキスト
	========================================== */

	.title01 {
		font-size: 2.6rem;
	}

	.title02 {
		font-size: 2rem;
	}

	
	/* ==========================================
	テーブル
	========================================== */

	.th {
		padding: 1.07rem;
	}

	.td {
		padding: 1.07rem;
	}

	/* ==========================================
	診察テーブル
	========================================== */

	.medical-text01 {
		font-size: 1rem;
	}

	.medical-text02 {
		font-size: 1rem;
	}

	/* ==========================================
	下層カバー
	========================================== */

	.in-cover-img {
		height: 20rem;
	}

	.in-cover-title {
		font-size: 4rem;
	}

	/* ==========================================
	スマホ固定ヘッダー
	========================================== */
	.sp-header{
		height: 6rem;
		padding: 0 6rem 0 0;
	}

	.sp-header-link > a:before{
		font-size: 2rem;
	}

	.sp-header-link-text{
		font-size: 1rem;
		margin: 0;
	}

	/* ---------- ハンバーガーボタン ---------- */

	.sp-nav-btn{
		width: 6rem;
		height: 6rem;
	}

	.sp-nav-btn-bar-box{
		max-width: 3rem;
	}

	.sp-nav-btn-text{
		font-size: 1rem;
	}

	.sp-nav-btn-text{
		margin: 0;
	}

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

	.sp-nav-list-item a{
		padding: 1.2rem 0;
		font-size: 1.45rem;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

	html {
		/* 14px */
		font-size: 2.43055vw;
	}

	/* ==========================================
	テキスト
	========================================== */

	.title02 {
        font-size: 1.9rem;
    }

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */