@charset "UTF-8";

/* base ---------------------------------------*/

* {
	box-sizing: border-box;
	min-height: 0vw;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 120px;
}

html,
body {
	height: 100%;
}

body {
	-webkit-text-size-adjust: 100%;
	padding: 0;
	margin: 0;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-feature-settings: 'palt' 1;
	-webkit-font-feature-settings: 'palt' 1;
	color: #4b4737;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	transition: all 0.25s ease;
}

img {
	vertical-align: bottom;
	line-height: 1;
	max-width: 100%;
	height: auto;
}

.inner {
	max-width: 1300px;
	margin: 0 auto;
}

p {
	font-size: 18px;
	letter-spacing: 0.04em;
	line-height: 2;
}

.en {
	font-family: 'Oswald', sans-serif;
	font-size: 22px;
	font-weight: normal;
}

/* common ---------------------------------------*/

.title-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: center;
	margin-bottom: 48px;
}

.title {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 32px;
}

.title:last-child {
	margin-bottom: 0;
}

.title-jp {
	font-size: 40px;
	font-weight: bold;
	line-height: normal;
}

.title-en {
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-size: 20px;
	font-weight: normal;
	color: #d96e34;
	line-height: normal;
}

.subtitle {
	font-size: 28px;
	font-weight: bold;
	color: #d96e34;
	align-items: center;
	display: flex;
	margin-bottom: 32px;
}

.subtitle::before {
	width: 100%;
	height: 1px;
	background: #d96e34;
	content: '';
}

.subtitle::after {
	width: 100%;
	height: 1px;
	background: #d96e34;
	content: '';
}

.subtitle span {
	padding: 0 20px;
	white-space: nowrap;
}

/* header ---------------------------------------*/

.header {
	background: #fff;
	width: 100%;
	max-width: initial;
	height: 100px;
	position: fixed;
	top: 0;
	z-index: 9999;
	border-bottom: 1px solid #d96e34;
}

.header-inner {
	max-width: initial;
	margin: 0 auto;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.header-logo {
	left: 20px;
}

.header-wrap {
	height: 100%;
}

.header-reservation-btn {
	display: flex;
	flex-direction: column; /* アイコンとテキストを縦並び */
	align-items: center;
	justify-content: center;
	width: 100px; /* 画像の見た目に合わせる */
	height: 100%; /* ヘッダーの高さ一杯に */
	background-color: #d96e34; /* 画像から抽出した色 */
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: bold;
	margin-left: 20px; /* ナビゲーションとの間隔 */
	text-align: center;
	transition: background-color 0.3s;
}

.header-reservation-btn:hover {
	background-color: #b55017;
}

.reservation-icon {
	display: block;
	margin-bottom: 8px;
}

.reservation-icon img {
	width: 28px;
	height: 28px;
	display: block;
}

.reservation-text {
	display: block;
}

.header-right-content {
	display: flex;
	align-items: stretch; /* ボタンの高さをヘッダーに合わせる */
	height: 100%; /* ヘッダーの高さに合わせる */
}

/* gnav ---------------------------------------*/

.gnav-header {
	display: none;
}

.gnav-list {
	font-size: 0px;
}

.gnav-list > li {
	display: inline-block;
	font-size: min(1.111vw, 16px);
	font-weight: bold;
	margin: 0 min(0.833vw, 12px);
	transition: color 0.5s;
}

.gnav-list > li {
	font-size: 15px;
}

.gnav-list > li a {
	display: block;
}

.gnav-list > li a:hover {
	color: #d96e34;
}

#openmenu {
	display: none;
}

.has-child {
	position: relative;
	padding-right: min(1.041vw, 15px);
}

.has-child:after {
	position: absolute;
	top: 65%;
	right: 0;
	width: min(0.694vw, 10px);
	height: min(0.694vw, 10px);
	display: block;
	content: '';
	background: url(../img/common/arrow-down.svg) no-repeat;
	background-size: contain;
	transform: translateY(-50%);
}

.gnav-sub {
	position: absolute;
	width: 100%;
	height: 20px;
	visibility: hidden;
}

.gnav-sublist {
	position: absolute;
	min-width: 160px;
	top: 12px;
	left: 0;
	background: #fff;
	border: 1px solid #d96e34;
	border-radius: 8px;
	padding: 20px 32px 20px 40px;
	visibility: hidden;
	opacity: 0;
	transition: 0.6s;
	box-shadow: 2px 2px 20px rgba(51, 51, 51, 0.04);
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.has-child:hover .gnav-sub {
	visibility: visible;
}

.has-child:hover .gnav-sublist {
	visibility: visible;
	opacity: 1;
}

.gnav-sublist li a {
	display: inline-block;
	position: relative;
	padding-left: 4px;
	width: max-content;
}

.gnav-sublist li a:before {
	position: absolute;
	top: 50%;
	left: -10px;
	width: 10px;
	height: 10px;
	display: block;
	content: '';
	background: url(../img/common/arrow-right.svg) no-repeat;
	background-size: contain;
	transform: translateY(-50%);
}

/* footer ---------------------------------------*/

.footer {
	background: #4b4737;
	padding: 0 50px;
}

.footer-inner {
	max-width: 1300px;
	margin: 0 auto;
	padding: 64px 0;
	display: flex;
	justify-content: space-between;
	gap: 30px;
	line-height: 1;
}

.footer-logo {
	display: block;
	color: #fff;
	font-size: 28px;
	font-weight: bold;
}

.footer-address {
	color: #fff;
	font-size: 18px;
}

.footer-wrap {
	width: min(55vw, 480px);
}

.footer-text {
	color: #fff;
	font-size: 12px;
	line-height: 2;
}

.footer-block {
	padding: 24px 20px;
	background: #f9f7f3;
}

.footer-block .psychiatry-link-btn {
	width: 100%;
	max-width: none;
}

.footer-block .psychiatry-link-btn a {
	max-width: none;
	height: 80px;
}

.footer-block-detail {
	align-items: center;
}

.footer-block-tel {
	font-family: 'oswald', sans-serif;
	color: #d96e34;
	font-size: 32px;
	font-weight: normal;
	display: inline-flex;
	align-items: center;
}

.footer-block-tel img {
	width: 28px;
	height: 28px;
	object-fit: contain;
	margin-right: 4px;
	margin-bottom: 0;
}

.footer-block-text {
	font-size: 16px;
	padding-top: 0;
}

.footer-image a img {
	border-radius: 8px;
}

.footer-nav {
	padding: 40px 0 64px;
	border-top: 1px solid #f9f7f3;
}

.footer-nav-list {
	justify-content: left;
	gap: min(2.222vw, 32px);
	line-height: 1;
}

.footer-nav-list > li a {
	font-size: min(1.5vw, 15px);
}

.footer-nav-list > li a:hover {
	font-size: min(1.5vw, 15px);
}

.footer-nav-sublist {
	padding-top: 15px;
	width: min(13.889vw, 200px);
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.footer-nav-sublist li {
	display: inline-block;
	padding-left: 11px;
	line-height: 1;
}

.footer-nav-sublist li a {
	font-size: min(1.4vw, 14px);
	font-weight: normal;
	position: relative;
}

.footer-nav-sublist li a:before {
	position: absolute;
	top: 50%;
	left: -7px;
	width: 7px;
	height: 7px;
	display: block;
	content: '';
	background: url(../img/common/arrow-right-white.svg) no-repeat;
	background-size: contain;
	transform: translateY(-50%);
}

.footer-nav-sublist li a:hover {
	font-size: min(1.4vw, 14px);
	font-weight: normal;
	opacity: 0.7;
}

/* small pc */
@media screen and (min-width: 768px) and (max-width: 1200px) {
	.header-wrap {
		right: 0;
	}
	.header-logo {
		left: 20px;
	}

	.gnav-list > li {
		margin: 0 min(0.764vw, 11px);
	}

	.footer-block-text {
		margin-bottom: 0;
	}
}

@media screen and (max-width: 1100px) {
	.pc {
		display: none !important;
	}

	#openmenu {
		display: block;
		background: #d96e34;
		width: 100px;
		height: 100%;
		/* box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.24); */
		box-shadow: none;
		/* border-radius: 50%; */
		overflow: hidden;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		z-index: 99999;
	}

	#openmenu span {
		content: '';
		display: block;
		width: 32px;
		height: 1px;
		background: #fff;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		transition: all 0.25s ease;
	}

	#openmenu span:nth-child(1) {
		top: 44px;
	}
	#openmenu span:nth-child(2) {
		top: 50px;
	}
	#openmenu span:nth-child(3) {
		top: 56px;
	}

	#openmenu.is-open span:nth-child(1) {
		transform: translateX(-50%) rotate(45deg);
		top: 50px;
	}

	#openmenu.is-open span:nth-child(2) {
		opacity: 0;
	}

	#openmenu.is-open span:nth-child(3) {
		transform: translateX(-50%) rotate(-45deg);
		top: 50px;
	}

	/* header ---------------------------------------*/

	.header {
		width: 100%;
		max-width: 1280px;
		/* height: 80px; */
		top: 0;
	}

	.header-inner {
		max-width: 100%;
		background: #fff;
		z-index: 999;
	}

	.header-logo {
		left: 20px;
	}

	.header-logo img {
		width: 200px;
	}

	.header-wrap {
		display: contents;
	}

	.bodyfixed {
		position: fixed;
		width: 100%;
		height: 100%;
	}

	.header-reservation-btn {
		position: absolute;
		right: 101px;
	}

	/* gnav ---------------------------------------*/

	.gnav {
		height: 100dvh !important;
		border: none;
		background: #f9f7f3;
		/* padding: 88px 20px 81px; */
		padding: 120px 20px 80px;
		overflow: auto;
		z-index: 100;
		position: absolute;
		left: 0px;
		top: 0px;
		width: 100%;
		transition: all 0.25s ease;
		transform: translate3d(0, -100%, 0);
	}

	#gnav.is-active {
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}

	.gnav-list {
		margin-bottom: 32px;
	}

	.gnav-list > li {
		display: block;
		border-bottom: 1px solid #402e32;
	}

	.gnav-list > li a {
		font-size: 18px;
		font-weight: bold;
		padding: 24px 0;
	}
	/* gnav ---------------------------------------*/

	.gnav-header {
		display: block;
		background: #f9f7f3;
		height: 100px;
		width: 100%;
		position: absolute;
		top: 0;
		left: 0;
	}

	.gnav-logo {
		position: absolute;
		width: 200px;
		height: auto;
		object-fit: contain;
		left: 20px;
		top: 50%;
		transform: translateY(-50%);
	}

	.gnav-list > li {
		border-bottom: 0.5px solid #402e32;
	}

	.gnav-list > li a {
		font-size: 16px;
		padding: 20px 0;
		line-height: 1;
	}

	.has-child {
		position: unset;
		padding-right: 0px;
	}

	.has-child:after {
		display: none;
	}

	.gnav-sub {
		position: unset;
		width: 100%;
		height: inherit;
		visibility: visible;
	}

	.gnav-sublist {
		position: unset;
		border: none;
		top: 11px;
		left: 0;
		background: unset;
		width: 100%;
		height: inherit;
		padding: 0;
		visibility: visible;
		opacity: 1;
		transition: unset;
		box-shadow: unset;
		display: block;
	}

	.gnav-sublist li {
		display: block;
		border-top: 1px solid #402e32;
	}

	.gnav-sublist li {
		padding-left: 20px;

		display: block;
		border-top: 0.5px solid #402e32;
	}

	.gnav-sublist li:nth-of-type(n + 2) {
		margin-left: 0;
	}

	.gnav-sublist li a {
		display: block;
		position: relative;
		font-size: 16px;
		font-weight: normal;
		line-height: 1;
		width: 100%;
	}

	.gnav-sublist li a:before {
		position: absolute;
		top: 50%;
		left: -10px;
		width: 10px;
		height: 10px;
		display: block;
		content: '';
		background: url(../img/common/arrow-right.svg) no-repeat;
		background-size: contain;
		transform: translateY(-50%);
	}
}

/* s0 only */
@media screen and (max-width: 767px) {
	/* common item ---------------------------------------*/

	/* .pc {
		display: none !important;
	} */

	/* base ---------------------------------------*/

	* {
		box-sizing: border-box;
		min-height: 0vw;
	}

	html {
		/* scroll-behavior: smooth; */
		scroll-behavior: auto;
		scroll-padding-top: 80px;
	}

	html,
	body {
		height: 100%;
	}

	body {
		-webkit-text-size-adjust: 100%;
		padding: 0;
		margin: 0;
		font-family: 'Zen Kaku Gothic New', sans-serif;
		font-feature-settings: 'palt' 1;
		-webkit-font-feature-settings: 'palt' 1;
		color: #4b4737;
		overflow-x: hidden;
	}

	a {
		text-decoration: none;
		transition: all 0.25s ease;
	}

	img {
		vertical-align: bottom;
		line-height: 1;
		max-width: 100%;
		height: auto;
	}

	.inner {
		max-width: 1300px;
		margin: 0 auto;
	}

	p {
		font-size: 16px;
		letter-spacing: 0.04em;
		line-height: 1.8;
	}

	/* common ---------------------------------------*/

	.title-container {
		margin-bottom: 24px;
	}

	.title {
		margin-bottom: 20px;
		gap: 4px;
	}

	.title:last-child {
		margin-bottom: 0;
	}

	.title-jp {
		font-size: 28px;
	}

	.title-en {
		font-size: 16px;
	}

	.subtitle {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.subtitle::before {
		width: 100%;
		height: 1px;
		background: #d96e34;
		content: '';
	}

	.subtitle::after {
		width: 100%;
		height: 1px;
		background: #d96e34;
		content: '';
	}

	.subtitle span {
		padding: 0 12px;
		white-space: nowrap;
		text-align: center;
	}

	/* header ---------------------------------------*/

	#openmenu {
		display: block;
		background: #d96e34;
		width: 100px;
		height: 100%;
		/* box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.24); */
		box-shadow: none;
		/* border-radius: 50%; */
		overflow: hidden;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		z-index: 99999;
	}

	#openmenu span {
		content: '';
		display: block;
		width: 32px;
		height: 1px;
		background: #fff;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		transition: all 0.25s ease;
	}

	#openmenu span:nth-child(1) {
		top: 44px;
	}
	#openmenu span:nth-child(2) {
		top: 50px;
	}
	#openmenu span:nth-child(3) {
		top: 56px;
	}

	#openmenu.is-open span:nth-child(1) {
		transform: translateX(-50%) rotate(45deg);
		top: 50px;
	}

	#openmenu.is-open span:nth-child(2) {
		opacity: 0;
	}

	#openmenu.is-open span:nth-child(3) {
		transform: translateX(-50%) rotate(-45deg);
		top: 50px;
	}

	/* header ---------------------------------------*/

	.header {
		width: 100%;
		max-width: 1280px;
		height: 100px;
		top: 0;
	}

	.header-inner {
		max-width: 100%;
		background: #fff;
		z-index: 999;
	}

	.header-logo {
		left: 20px;
	}

	.header-logo img {
		width: 200px;
	}

	.header-wrap {
		display: contents;
	}

	.bodyfixed {
		position: fixed;
		width: 100%;
		height: 100%;
	}

	.header-reservation-btn {
		position: absolute;
		right: 101px;
	}

	/* gnav ---------------------------------------*/

	.gnav {
		height: 100dvh !important;
		border: none;
		background: #f9f7f3;
		/* padding: 88px 20px 81px; */
		/* padding: 120px 20px 80px; */
		padding: 100px 20px 80px;
		overflow: auto;
		z-index: 100;
		position: absolute;
		left: 0px;
		top: 0px;
		width: 100%;
		transition: all 0.25s ease;
		transform: translate3d(0, -100%, 0);
	}

	#gnav.is-active {
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}

	.gnav-list {
		margin-bottom: 32px;
	}

	.gnav-list > li {
		display: block;
		border-bottom: 1px solid #402e32;
	}

	.gnav-list > li a {
		font-size: 18px;
		font-weight: bold;
		padding: 24px 0;
	}
	/* gnav ---------------------------------------*/

	.gnav-header {
		display: block;
		background: #f9f7f3;
		height: 100px;
		width: 100%;
		position: absolute;
		top: 0;
		left: 0;
	}

	.gnav-logo {
		position: absolute;
		width: 200px;
		height: auto;
		object-fit: contain;
		left: 20px;
		top: 50%;
		transform: translateY(-50%);
	}

	.gnav-list > li {
		border-bottom: 0.5px solid #402e32;
	}

	.gnav-list > li a {
		font-size: 16px;
		padding: 20px 0;
		line-height: 1.8;
	}

	.has-child {
		position: unset;
		padding-right: 0px;
	}

	.has-child:after {
		display: none;
	}

	.gnav-sub {
		position: unset;
		width: 100%;
		height: inherit;
		visibility: visible;
	}

	.gnav-sublist {
		border: none;
		border-radius: 0;
		position: unset;
		top: 11px;
		left: 0;
		background: unset;
		width: 100%;
		height: inherit;
		padding: 0;
		visibility: visible;
		opacity: 1;
		transition: unset;
		box-shadow: unset;
		display: block;
	}

	.gnav-sublist li {
		display: block;
		border-top: 1px solid #402e32;
	}

	.gnav-sublist li {
		padding-left: 20px;

		display: block;
		border-top: 0.5px solid #402e32;
	}

	.gnav-sublist li:nth-of-type(n + 2) {
		margin-left: 0;
	}

	.gnav-sublist li a {
		display: block;
		position: relative;
		font-size: 16px;
		font-weight: normal;
		line-height: 1;
		width: 100%;
	}

	.gnav-sublist li a:before {
		position: absolute;
		top: 50%;
		left: -10px;
		width: 10px;
		height: 10px;
		display: block;
		content: '';
		background: url(../img/common/arrow-right.svg) no-repeat;
		background-size: contain;
		transform: translateY(-50%);
	}

	/* footer ---------------------------------------*/

	.footer {
		padding: 0 20px 72px;
	}

	.footer-inner {
		padding: 48px 0;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		gap: 32px;
	}

	.footer-logo {
		font-size: 24px;
	}

	.footer-address {
		font-size: 14px;
		padding-left: 5px;
	}

	.footer-wrap {
		width: 100%;
	}

	.footer-text {
		padding-left: 5px;
	}

	.footer-block .psychiatry-link-btn a {
		height: 64px;
	}

	.footer-nav-list {
		display: block;
	}

	.footer-nav-list > li {
		border-bottom: 1px solid #f9f7f3;
	}

	.footer-nav-list > li a {
		display: block;
		font-size: 14px;
		padding: 16px 0;
	}

	.footer-fix {
		width: 100%;
		height: 72px;
		display: flex;
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: 9999;
	}

	.footer-fix-button {
		/* width: 50%; */
		width: 100%;
		padding: 6px 0 6px;
	}

	.footer-fix-button:first-child {
		background: #402e32;
	}

	.footer-fix-button:last-child {
		background: #d96e34;
	}

	.footer-fix-button a {
		display: block;
		width: 100%;
		height: 100%;
		color: #fff;
		font-size: 22px;
		/* font-weight: bold; */
		text-align: center;
		vertical-align: middle;
		line-height: 1;
		letter-spacing: 0.04em;
		/* margin-right: 5px; */
		align-content: center;
	}

	.footer-fix-button img {
		display: inline-block;
		width: 18px;
		height: 18px;
		object-fit: contain;
		margin-right: 4px;
		margin-bottom: 0px;
	}

	.footer-fix-button-text {
		display: block;
		color: #fff;
		font-size: 14px;
		font-weight: normal;
		padding-bottom: 8px;
	}
}

@media screen and (max-width: 767px) {
	/* header ---------------------------------------*/

	#openmenu {
		border-radius: 0%;
	}

	/* index common ---------------------------------------*/

	.indexwrapper {
		padding-bottom: 80px;
	}

	/* footer ---------------------------------------*/

	.footer-inner {
		padding: 48px 0 32px;
	}

	.footer-wrap {
		width: 100%;
	}

	.footer-block {
		padding: 20px;
	}

	.footer-nav {
		padding: 0px 0 32px;
		border-top: 0.5px solid #f9f7f3;
	}

	.footer-nav-list > li {
		border-bottom: 0.5px solid #f9f7f3;
	}

	.footer-nav-list > li a {
		font-size: 14px;
	}

	.footer-nav-list > li a:hover {
		font-size: 14px;
	}

	.footer-nav-sublist {
		padding-top: 0;
		width: 100%;
		display: block;
	}

	.footer-nav-sublist li {
		display: block;
		border-top: 0.5px solid #f9f7f3;
	}

	.footer-nav-sublist li a {
		font-size: 14px;
	}

	.footer-nav-sublist li a:hover {
		font-size: 14px;
	}
}

@media screen and (max-width: 480px) {
	.pcbr {
		display: none;
	}
}

@media screen and (max-width: 426px) {
	.header {
		height: 80px;
	}
	.gnav-header {
		height: 80px;
	}

	#openmenu {
		width: 80px;
	}

	#openmenu span:nth-child(1) {
		top: 34px;
	}
	#openmenu span:nth-child(2) {
		top: 40px;
	}
	#openmenu span:nth-child(3) {
		top: 46px;
	}

	#openmenu.is-open span:nth-child(1) {
		transform: translateX(-50%) rotate(45deg);
		top: 40px;
	}

	#openmenu.is-open span:nth-child(2) {
		opacity: 0;
	}

	#openmenu.is-open span:nth-child(3) {
		transform: translateX(-50%) rotate(-45deg);
		top: 40px;
	}
}

@media screen and (max-width: 376px) {
}
