@charset "UTF-8";

/* ---------------------------------------------------------
	CSS Document Common
--------------------------------------------------------- */

html, body {
	min-width: 1200px;
	margin: 0;
	padding: 0;
	background: #fff;
	-webkit-text-size-adjust: none;
	-ms-text-size-adjust: none;
	text-align: center;
	font-family: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", "Meiryo", sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-weight: 400;
	font-size: 16px;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	letter-spacing: 0.08em;
	line-height: 1.9;
	word-break: normal;
	word-wrap: break-word;
	color: #231815;
}

* {
	outline: none;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-collapse: collapse;
	font-style: normal;
	list-style: none;
}

img {
	vertical-align: top;
	max-width: 100%;
	border: 0;
}

a {
	color: #3FA7D1;
}

.tel {
	text-decoration: none;
	color: #231815;
}

.tel:hover {
	opacity: 1;
}

/* ---------------------------------------------------------
	CSS Document layout
--------------------------------------------------------- */

#wrapper {
	overflow: hidden;
	padding-top: 150px;
}

.container {
	width: 1100px;
	margin: 0 auto;
}

.sp {
	display: none;
}

.clearfix:after {
	content: '';
	display: block;
	clear: both;
	height: 1px;
	overflow: hidden;
}

.find {
	cursor: pointer;
	transition: .4s;
}

.target {
	margin-top: -60px;
	padding-top: 60px;
}

.lazyloaded {
	opacity: 0;
	animation: lazyload .6s forwards ease;
}

@keyframes lazyload {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/* ---------------------------------------------------------
	CSS Document header
--------------------------------------------------------- */

:root {
	--main-color: #3FA7D1;
	--dark-blue: #457B9D;
	--bg-light: #EAF6FA;
	--text-color: #231815;
}

#header {
	min-width: 1200px;
	width: 100%;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9;
}

.h_top_bar {
	height: 34px;
	background: var(--bg-light);
	font-weight: 600;
	font-size: 11px;
	letter-spacing: 0.1em;
	line-height: 32px;
	color: var(--dark-blue);
}

.h_main_row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 116px;
}

.h_logo_link { text-decoration: none; display: block; }
.h_sub_copy {
	font-size: 11px;
	color: var(--main-color);
	font-weight: bold;
	margin: 0 0 4px 0;
}
.h_logo_flex {
	display: flex;
	align-items: flex-end;
	gap: 18px;
}
.h_logo_text .ja {
	display: block;
	font-size: 9px;
	color: var(--text-color);
	letter-spacing: 0.25em;
	margin-bottom: 1px;
}
.h_logo_text .en {
	font-size: 34px;
	font-family: "Jost", serif;
	font-weight: 500;
	color: var(--text-color);
	line-height: 0.9;
}

.h_medical_tag {
	margin-bottom: 7px;
	padding: 2px 8px;
	border-radius: 3px;
	border: 1px solid var(--main-color);
	font-weight: 500;
	font-size: 11px;
	white-space: nowrap;
	letter-spacing: 0.05em;
	color: var(--main-color);
}

/* ---------------------------------------------------------
	CSS Document navi
--------------------------------------------------------- */

#navi {
	display: flex !important;
	align-items: center;
}

.h_right_group {
	display: flex;
	align-items: center;
	gap: 35px;
}

.h_navi {
	display: flex;
	gap: 2.5em;
}

.h_navi li {
	position: relative;
}

.h_navi li a {
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	color: var(--text-color);
	transition: 0.3s;
	opacity: 1;
}

.h_navi > li > a {
	display: block;
	height: 30px;
	line-height: 30px;
}

.h_navi li a:hover,
.h_navi li.this a {
	color: var(--main-color);
}

.h_reserve_btn {
	display: inline-block;
	background: var(--main-color);
	color: #fff;
	text-decoration: none;
	padding: 10px 25px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: bold;
	transition: background 0.3s, transform 0.2s;
}
.h_reserve_btn:hover {
	background: var(--dark-blue);
	transform: translateY(-2px);
}

/* --- メガメニュー本体 --- */
.h_navi li .mega_menu {
	display: flex; 
	gap: 5px;
	min-width: max-content;
	visibility: hidden;
	padding: 10px;
	border-radius: 100px;
	border: 1px solid rgba(63, 167, 209, 0.1);
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(4px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
	transform: translateX(-50%) translateY(5px);
	position: absolute;
	top: calc(100% + 15px);
	left: 50%;
	z-index: 1000;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	opacity: 0;
}

.h_navi li .mega_menu::before {
	content: '';
	width: 100%;
	height: 20px;
	background: transparent;
	position: absolute;
	top: -20px;
	left: 0;
}

.h_navi li:hover .mega_menu {
	visibility: visible;
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.h_navi li .mega_menu li {
	list-style: none;
}

.h_navi li .mega_menu li a {
	padding: 10px 22px;
	font-size: 14px;
	color: var(--text-color);
	font-weight: 500;
	border-radius: 100px;
	white-space: nowrap;
	transition: 0.3s;
	display: block;
}

.h_navi li .mega_menu li a:hover {
	background: var(--bg-light);
	color: var(--main-color);
}

/* ---------------------------------------------------------
	CSS Document visual
--------------------------------------------------------- */

#visual {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 200px;
	background: rgba(63, 167, 209, 0.1) url(../images/visual.svg) no-repeat 0 0 / 100% 100%;
}

#visual .name {
	font-weight: 500;
	font-size: 46px;
	line-height: 1.5;
}

#visual .en {
	display: block;
	font-weight: 500;
	font-family: "Jost", serif;
}

#visual .ja {
	display: block;
	font-size: 16px;
}

/* ---------------------------------------------------------
	CSS Document bread
--------------------------------------------------------- */

#bread {
	height: 40px;
	margin-bottom: 40px;
}

#bread ol {
	display: flex;
	text-align: left;
	font-size: 13px;
	letter-spacing: 0.05em;
	line-height: 40px;
}

#bread li {
	margin-right: 24px;
	position: relative;
}

#bread li:not(:last-of-type):after {
	content: '';
	width: 0;
	height: 0;
	margin-top: -3px;
	border: solid 4px transparent;
	border-left: solid 6px #231815;
	position: absolute;
	top: 50%;
	right: -20px;
}

#bread a {
	text-decoration: none;
	color: #231815;
}

#bread a:hover {
	text-decoration: underline;
}

/* ---------------------------------------------------------
	CSS Document reserve
--------------------------------------------------------- */

#reserve {
	width: 280px;
	height: 60px;
	margin-top: 100px;
	margin-left: auto;
	font-weight: 500;
	font-size: 15px;
	line-height: 60px;
	position: sticky;
	bottom: 0;
	right: 0;
	z-index: 9;
}

#reserve ul {
	display: flex;
	overflow: hidden;
	border-radius: 30px 0 0 0;
	background: #fff;
}

#reserve li {
	width: 50%;
	cursor: pointer;
	transition: opacity .4s;
}

#reserve .line {
	display: block;
	height: 60px;
	background: #06C755;
	color: #fff;
}

#reserve li img {
	vertical-align: -0.3em;
	margin-right: 10px;
	height: 20px;
}

#reserve .hpb {
	height: 60px;
	background: #F5B110;
	color: #fff;
}

#reserve li:hover {
	opacity: 0.6;
}

#reserve .overlay {
	display: none;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}

#reserve .modal {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	line-height: 1;
	position: absolute;
	top: 0;
	left: 0;
}

#reserve .modal .image {
	display: block;
	width: 660px;
	padding: 50px 40px;
	border-radius: 10px;
	background: #fff;
	position: relative;
}

#reserve .modal .store_row {
	margin-bottom: 30px;
	padding: 0 20px 20px;
	position: relative;
	z-index: 0;
}

#reserve .modal .store_row:before {
	content: '';
	width: 100%;
	height: calc(100% - 10px);
	border: solid 2px #3FA7D1;
	position: absolute;
	top: 10px;
	left: 0;
	z-index: -1;
}

#reserve .modal .store_name {
	display: inline-block;
	vertical-align: top;
	height: 24px;
	margin-left: 10px;
	margin-bottom: 15px;
	padding: 0 1em;
	background: #fff;
	line-height: 24px;
	font-weight: bold;
	color: #3FA7D1;
}

#reserve .modal .contact_actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

#reserve .modal .contact_actions > div {
	width: 49%;
}

#reserve .modal .contact_actions a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: 500;
	color: #fff;
	transition: opacity 0.3s;
}

#reserve .modal .contact_actions a:hover {
	opacity: 0.8;
}

#reserve .modal .phone a {
	background: linear-gradient(to bottom, #5ebbe0 0%, #3FA7D1 100%);
	font-family: "Roboto", serif;
	font-size: 18px;
}

#reserve .modal .phone a:before {
	content: '';
	width: 20px;
	height: 20px;
	margin-right: 8px;
	background: url(../images/f_tel.svg) no-repeat center / contain;
}

#reserve .modal .hotpepper a {
	background: linear-gradient(to bottom, #b22053 0%, #9F1547 100%);
	font-size: 14px;
}

#reserve .modal .hotpepper a:before {
	content: '';
	width: 18px;
	height: 18px;
	margin-right: 8px;
	background: url(../images/reserve_hpb.svg) no-repeat center / contain;
}

#reserve .modal .time_info {
	margin-top: 10px;
	text-align: center;
	font-size: 13px;
	line-height: 1.6;
	color: #666;
}

#reserve .modal .close {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background: #231815;
	text-align: center;
	position: absolute;
	top: -20px;
	right: -20px;
	cursor: pointer;
	transition: .4s;
}

#reserve .modal .close:hover {
	opacity: 0.6;
}

#reserve .modal .close img {
	width: 18px;
	height: 18px;
}

/* ---------------------------------------------------------
	#modal-line 特有のスタイル
--------------------------------------------------------- */

#modal-line .modal_title {
	text-align: center;
	font-weight: bold;
	font-size: 18px;
	color: #06C755;
	margin-bottom: 30px;
}

#modal-line .modal .store_row:before {
	border-color: #06C755;
}

#modal-line .modal .store_name {
	color: #06C755;
}

#modal-line .modal .contact_actions > div {
	width: 90%;
	margin: 0 auto;
}

#modal-line .modal .line_btn a {
	background: linear-gradient(to bottom, #07da5e 0%, #06C755 100%);
	font-size: 16px;
}

#modal-line .modal .line_btn a:before {
	content: '';
	width: 24px;
	height: 24px;
	margin-right: 10px;
	background: url(/include/images/reserve_line.svg) no-repeat center / contain;
}

/* ---------------------------------------------------------
	CSS Document pagetop
--------------------------------------------------------- */

#pagetop {
	display: none;
	width: 50px;
	height: 50px;
	position: absolute;
	bottom: 80px;
	right: 30px;
	cursor: pointer;
	transition: .4s;
}

#pagetop img {
	width: 50px;
	height: 50px;
}

#pagetop:hover {
	opacity: 0.6;
}

/* ---------------------------------------------------------
	CSS Document footer
--------------------------------------------------------- */

#footer {
	padding: 80px 0 40px;
	background: linear-gradient(to right, #90CDE4 0%, #A7DADC 100%);
	font-size: 14px;
	color: #fff;
}

#footer .f_service {
	margin-bottom: 50px;
}

#footer .f_service ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px 30px;
}

#footer .f_service li a {
	text-decoration: none;
	font-weight: bold;
	color: #fff;
	transition: opacity 0.3s;
}

#footer .f_service li a:hover {
	opacity: 0.7;
}

#footer .f_meta {
	text-align: center;
}

#footer .loan {
	width: 780px;
	margin: 0 auto 40px;
	padding: 30px 50px;
	background: rgba(255, 255, 255, 0.4);
	border-radius: 25px;
	color: var(--dark-blue);
}

#footer .loan dt {
	margin-bottom: 20px;
	font-size: 13px;
	font-weight: bold;
	line-height: 1;
}

#footer .loan dd {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	padding: 15px;
	border-radius: 15px;
	background: #fff;
}

#footer .loan img {
	width: auto;
	height: 26px;
}

#footer address {
	font-size: 11px;
	letter-spacing: 0.1em;
	color: #fff;
}

/* スマホ用：余白の微調整 */
@media (max-width: 768px) {
	#footer {
		padding: 60px 5vw 30px;
	}
	
	#footer .f_service ul {
		flex-direction: column;
		gap: 12px;
	}

	#footer .loan {
		padding: 20px 10px;
	}

	#footer .loan dd {
		gap: 8px;
		padding: 10px;
	}

	#footer .loan img {
		height: 22px;
	}
}
/*
#footer {
	padding: 40px 0;
	background: #3FA7D1;
	font-size: 15px;
	color: #fff;
	position: relative;
	z-index: 0;
}

#footer .container {
	display: flex;
	justify-content: space-between;
	text-align: left;
	position: relative;
}

#footer .f_service {
	width: 390px;
}

#footer .f_service ul {
	display: flex;
	flex-wrap: wrap;
	gap: 1em 2em;
	margin-bottom: 40px;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.6;
}

#footer .f_service li a {
	text-decoration: none;
	color: #fff;
}

#footer .f_service li a:hover {
	text-decoration: underline;
}

#footer .f_meta {
	text-align: right;
}

#footer .loan {
	width: 520px;
	margin-bottom: 15px;
	padding: 20px 0;
	background: #fff;
	text-align: center;
	font-size: 14px;
	line-height: 1;
	color: #231815;
}

#footer .loan dt {
	margin-bottom: 20px;
	font-weight: 500;
}

#footer .loan img {
	height: 38px;
	margin: 0 10px;
}

#footer .company {
	font-weight: 700;
}

#footer .address {
	margin-bottom: 30px;
}

#footer .address a {
	text-decoration: none;
	color: #fff;
	opacity: 1;
}

#footer .sns {
	display: flex;
	margin-bottom: 60px;
}

#footer .sns li {
	margin-right: 16px;
	font-size: 0;
}

#footer .sns img {
	height: 38px;
}

#footer address {
	font-weight: 400;
	font-size: 12px;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.6);
}
*/