@charset "utf-8";
:root {
	--C-white: #ffffff;
	--C-blue: #1285c5;
	--C-light-blue: #e6f6fc;
	--C-gray: #dddddd;
	--C-light-gray: #ecedee;
	--FS-12: 12px;
	--FS-14: 14px;
	--FS-16: 16px;
	--FS-18: 18px;
	--FS-21: 21px;
	--FS-32: 32px;
	--LS-50: calc((50 / 1000) * 1em);
	--LS-100: calc((100 / 1000) * 1em);
	--LS-200: calc((200 / 1000) * 1em);
	--M-15: 15px;
	--M-18: 18px;
	--M-32: 32px;
	--M-48: 48px;
	--M-64: 64px;
	--LH-1: 1;
	--LH-1_25: 1.25;
	--LH-1_4: 1.4;
	--LH-1_5: 1.5;
	--LH-2: 2;
	--FW-regular: 400;
	--FW-medium: 500;
	--FW-semibold: 600;
	--FW-bold: 700;
	--FW-extrabold: 800;
}
@media screen and (min-width: 600px) {
	:root {
		--FS-12: 14px;
		--FS-14: 16px;
		--FS-16: 18px;
		--FS-18: 28px;
		--FS-21: 31px;
		--FS-32: 42px;
		--M-18: 28px;
		--M-32: 42px;
		--M-48: 58px;
	}
}
@media screen and (min-width: 1100px) {
	:root {
		--FS-14: 12px;
		--FS-16: 14px;
		--FS-18: 23px;
		--FS-21: 26px;
	}
}
/*-----menu-----*/
body.active {
	height: 100%;
	overflow: hidden;
}
.header {
	background-color: transparent;
	width: 100%;
	height: 70px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
}
.header--bgc {
	backdrop-filter: blur(3px);
	background: rgba(255, 255, 255, 0.7);
}
.header.active {
	backdrop-filter: blur(3px);
	background: rgba(255, 255, 255, 0.3);
}
.header__inner {
	background-color: rgba(255, 255, 255, 0.83);
	padding: 0 0 0 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: inherit;
	position: relative;
	border-bottom: 1px solid #eee;
}
.header__logo-wrap {
	display: flex;
	align-items: center;
}
.header__logo {
	display: block;
	width: auto;
	height: 30px;
	margin-right: 5px;
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
}
.header__logo:hover {
	opacity: 0.7;
}
.header__clinic-name {
	font-family: "Shippori Mincho", serif;
	font-style: normal;
	font-weight: var(--FW-bold);
	font-size: 21px;
	letter-spacing: var(--LS-100);
	color: var(--C-blue);
}
.header__title {
	width: auto;
	position: relative;
	z-index: 1;
}
.header__nav {
	position: absolute;
	right: 0;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	overflow-y: scroll;
	transform: translateX(100%);
	background-color: var(--C-white);
	transition: ease 0.4s;
}
.nav-items {
	position: absolute;
	top: 70px;
	left: 50%;
	transform: translate(-50%, 0);
	width: calc(100% - 30px);
	padding: 0;
}
.nav-items__item {
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
}
.nav-items__item:hover {
	opacity: 0.7;
}
.nav-items__item a {
	color: var(--C-blue);
	font-weight: 700;
	width: 100%;
	display: block;
	text-align: left;
	font-size: var(--FS-16);
	letter-spacing: var(--LS-200);
	margin-bottom: 28px;
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
}
.nav-items__item:last-child a {
	margin-bottom: 0;
}
.nav-items__item a:hover {
	color: #f4c82d;
}
.nav-items__item--mb {
	margin-bottom: var(--M-48);
}
.nav-items__address {
	font-size: var(--FS-12);
	letter-spacing: var(--LS-200);
	line-height: var(--LH-1_5);
	margin-bottom: 7px;
}
.nav-items__phon-number {
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-size: var(--FS-21);
	color: var(--C-blue);
	letter-spacing: var(--LS-50);
	margin-bottom: var(--M-32);
}
.nav-items__schedule {
	margin-bottom: var(--M-32);
}
.nav-items__btn {
	text-align: center;
	margin-bottom: var(--M-64);
}
.nav-items__btn a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background-color: var(--C-blue);
	color: var(--C-white);
	border-radius: 30px;
	width: 320px;
	height: 60px;
	margin-bottom: 7px;
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
}
.nav-items__btn a:hover {
	opacity: 0.7;
}
.nav-items__btn p {
	text-align: center;
	font-size: 18px;
	font-weight: var(--FW-bold);
	letter-spacing: var(--LS-200);
}
.header__hamburger {
	height: 100%;
}
.hamburger {
	background-color: transparent;
	border: none;
	z-index: 9999;
	box-sizing: border-box;
	width: 60px;
}
.hamburger span {
	width: 24px;
	height: 1px;
	background-color: var(--C-blue);
	position: relative;
	transition: ease 0.4s;
	display: block;
	border-radius: 2px;
	margin: auto;
}
.hamburger span:nth-child(1) {
	top: 0;
}
.hamburger span:nth-child(2) {
	margin: 7px auto;
}
.hamburger span:nth-child(3) {
	top: 0;
}
.header__nav.active {
	transform: translateX(0);
}
.hamburger.active span:nth-child(1) {
	top: 8px;
	transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	top: -8px;
	transform: rotate(-45deg);
}
@media screen and (min-width: 600px) {
	.nav-items {
		max-width: 550px;
		top: 90px;
	}
	.nav-items li {
		text-align: center;
	}
	.nav-items__item a {
		text-align: center;
	}
	.nav-items__item span {
		display: none;
	}
}
@media screen and (min-width: 1100px) {
	.nav-items {
		max-width: 400px;
		top: 110px;
	}
}
/*-----/menu-----*/
/*-----footer-----*/
footer {
	padding: var(--M-64) var(--M-15) var(--M-18);
}
.footer__logo-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--M-18);
}
.footer__logo {
	display: block;
	width: auto;
	height: 30px;
	margin-right: 5px;
	-webkit-transition: ease 0.3s;
	transition: ease 0.3s;
}
.footer__clinic-name {
	font-family: "Shippori Mincho", serif;
	font-style: normal;
	font-weight: var(--FW-bold);
	font-size: 21px;
	letter-spacing: var(--LS-100);
	color: var(--C-blue);
}
.footer__address {
	text-align: center;
	font-size: var(--FS-14);
	letter-spacing: var(--LS-200);
	line-height: var(--LH-1_5);
	margin-bottom: var(--M-18);
}
.footer__phon-number {
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 27px;
	color: var(--C-blue);
	letter-spacing: var(--LS-50);
	margin-bottom: 24px;
	text-align: center;
}
.map__wrap {
	position: relative;
	width: calc(100vw - 30px);
	margin: auto;
}
.map__wrap::before {
	content: "";
	padding-top: 100%;
	display: block;
}
.map {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.access {
	padding: var(--M-18) 0 49px;
}
.access li {
	margin-bottom: var(--M-15);
	letter-spacing: var(--LS-50);
}
.copyright {
	text-align: center;
	border-top: 2px solid var(--C-blue);
	padding: 12px 0;
}
small {
	font-size: var(--FS-12);
	letter-spacing: var(--LS-200);
}
@media screen and (min-width: 600px) {
	.footer__top-area,
	.map__wrap,
	.access {
		max-width: 600px;
		margin: auto;
	}
	.footer__logo {
		height: 40px;
	}
	.footer__clinic-name {
		font-size: 31px;
	}
	.footer__phon-number {
		font-size: 37px;
		margin-bottom: 34px;
	}
	.copyright {
		padding: 18px 0 0;
	}
}
@media screen and (min-width: 1100px) {
	footer {
		display: flex;
		flex-wrap: wrap;
		max-width: 1000px;
		margin: auto;
	}
	.footer__top,
	.footer__bottom {
		width: calc(100% / 2);
	}
	.footer__top-area,
	.map__wrap {
		max-width: 400px;
	}
	.access {
		max-width: 100%;
		padding-top: 14px;
		display: flex;
		justify-content: center;
	}
	.access li {
		margin-right: 1em;
		padding-right: 1em;
		border-right: solid 1px var(--C-gray);
	}
	.access li:last-child {
		margin-right: 0;
		padding-right: 0;
		border-right: none;
	}
	.copyright {
		width: 100%;
	}
	.footer__logo {
		height: 30px;
	}
	.footer__clinic-name {
		font-size: 21px;
	}
	.footer__phon-number {
		font-size: 27px;
		margin-bottom: 32px;
	}
}
/*-----/footer-----*/
/*-----top-----*/
.calendar__wrap {
	position: relative;
	width: calc(100vw - 30px);
	margin: auto;
}
.calendar__wrap::before {
	content: "";
	padding-top: 100%;
	display: block;
}
.calendar {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.top-fv {
	position: relative;
	background: url(../img/top/fv.jpg) center no-repeat;
	background-size: cover;
	height: 100vh;
	width: 100%;
	padding: 0 15px;
	margin-bottom: var(--M-32);
}
.top-fv__txt-top {
	color: var(--C-white);
	font-size: var(--FS-32);
	letter-spacing: var(--LS-100);
	line-height: var(--LH-1_4);
	font-weight: var(--FW-medium);
	position: absolute;
	top: 91px;
}
.top-fv__txt-bottom {
	color: var(--C-white);
	font-size: var(--FS-32);
	letter-spacing: var(--LS-100);
	line-height: var(--LH-1_4);
	font-weight: var(--FW-medium);
	position: absolute;
	bottom: 21px;
}
@media screen and (min-width: 600px) {
	.top-fv {
		background: url(../img/top/fv-tab.jpg) center no-repeat;
		background-size: cover;
	}
	.top-fv__txt-top {
		left: 30px;
	}
	.top-fv__txt-bottom {
		right: 30px;
		bottom: 31px;
	}
	.calendar__wrap {
		max-width: 570px;
	}
}
@media screen and (min-width: 1100px) {
	.top-fv {
		background: url(../img/top/fv-pc.jpg) center no-repeat;
		background-size: cover;
		height: 85vh;
		margin-bottom: 80px;
	}
	.calendar__wrap {
		max-width: 100%;
	}
}
/*-----/top-----*/
/*-----page-----*/
.sec-first {
	padding: 0 15px;
	margin-bottom: var(--M-48);
}
.sec-second {
	padding: 0 15px;
	margin-bottom: var(--M-64);
}
.sec-third {
	background-color: var(--C-light-blue);
	padding: 38px 15px 64px;
	position: relative;
}
.sec-fourth {
	padding: 0 15px;
	margin-bottom: 157px;
}
.under-fv {
	padding: 102px 0 157px;
}
.sec-first--mb {
	margin-bottom: 0;
}
.sec-third::before {
	content: "";
	background: url(../img/common/city.png) center no-repeat;
	background-size: cover;
	display: block;
	width: 100vw;
	height: 93px;
	position: absolute;
	top: 0;
	left: 0;
	margin-top: -93px;
}
.sec-third--mb {
	margin-bottom: var(--M-64);
}
.sec-third--mb0 {
	margin-bottom: 0;
}
.sec-third__area {
	background-color: var(--C-white);
	padding: 32px 16px 64px;
	border-radius: 15px;
	border: solid 1px var(--C-light-gray);
}
.sec-third__area--p {
	padding: 0;
}
.sec-third__area--mb {
	margin-bottom: var(--M-48);
}
.under-fv--pb {
	padding-bottom: 0;
}
.item-wrap {
	margin-bottom: var(--M-48);
}
.item-wrap--mb {
	margin-bottom: 0;
}
.item-wrap__inner {
	background-color: #f0f3f6;
	width: calc(100% - 30px);
	margin: auto;
	padding: 32px 15px;
	border-radius: 15px;
}
.item-wrap__inner--mb {
	margin-bottom: var(--M-48);
}
.heading {
	font-size: var(--FS-21);
	letter-spacing: var(--LS-100);
	line-height: var(--LH-1_5);
	color: var(--C-blue);
	font-weight: var(--FW-regular);
	text-align: center;
	margin-bottom: var(--M-18);
}
.dr-name {
	font-size: var(--FS-21);
	letter-spacing: var(--LS-200);
	line-height: var(--LH-1);
	color: var(--C-blue);
	font-weight: var(--FW-regular);
	text-align: center;
	margin-bottom: var(--M-18);
}
.dr-name span {
	font-size: var(--FS-14);
	letter-spacing: var(--LS-50);
}
.dr-from {
	font-size: var(--FS-14);
	letter-spacing: var(--LS-200);
	line-height: var(--LH-1_4);
	font-weight: var(--FW-regular);
	text-align: center;
	margin-bottom: 21px;
}
.heading--mb {
	margin-bottom: var(--M-32);
}
.sub-heading {
	font-size: var(--FS-18);
	letter-spacing: var(--LS-100);
	line-height: var(--LH-1_25);
	color: var(--C-blue);
	font-weight: var(--FW-regular);
	margin-bottom: var(--M-18);
}
.sub-heading span {
	font-size: var(--FS-14);
}
.sub-heading--ta {
	text-align: center;
}
.sub-heading--c {
	color: #45504c;
}
.sub-heading--lh {
	line-height: var(--LH-1_5);
}
.title {
	font-size: var(--FS-32);
	color: var(--C-blue);
	letter-spacing: var(--LS-100);
	margin-bottom: var(--M-48);
	font-weight: var(--FW-regular);
	text-align: center;
}
.img-first,
.img-second,
.img-third {
	width: 100%;
	height: auto;
	object-fit: cover;
	margin-bottom: var(--M-18);
}
.img-third {
	margin-bottom: var(--M-32);
}
.img-third--p {
	padding: 0 15px;
}
.txt {
	font-size: var(--FS-16);
	letter-spacing: var(--LS-50);
	line-height: var(--LH-2);
	font-weight: var(--FW-regular);
}
.txt--mb {
	margin-bottom: var(--M-32);
}
.txt--p {
	padding: 0 15px;
}
.txt--b {
	border-bottom: solid 1px var(--C-gray);
	padding-bottom: var(--M-32);
	margin-bottom: var(--M-32);
}
.note {
	text-align: right;
	font-size: var(--FS-14);
	letter-spacing: var(--LS-50);
	line-height: var(--LH-2);
	font-weight: var(--FW-regular);
}
.swiper__wrap {
	width: 100%;
}
.swiper__wrap .sub-heading {
	background-color: var(--C-white);
}
.swiper-horizontal {
	padding-bottom: 40px;
}
table {
	border-collapse: collapse;
}
.table-type1,
.table-type2 {
	width: 100%;
}
.table-type1--mb {
	margin-bottom: var(--M-48);
}
.table-type1 th {
	border: solid 1px var(--C-gray);
	border-left: none;
	border-right: none;
	width: 27%;
	padding: 15px 14px;
	font-size: var(--FS-14);
	letter-spacing: var(--LS-100);
	font-weight: var(--FW-regular);
}
.table-type1 td {
	border: solid 1px var(--C-gray);
	border-right: none;
	padding: 15px 14px;
	font-size: var(--FS-14);
	letter-spacing: var(--LS-50);
	line-height: var(--LH-1_5);
}
.table-type2 th {
	border: solid 1px var(--C-gray);
	border-left: none;
	border-right: none;
	width: 65%;
	padding: 15px 14px;
	font-size: var(--FS-14);
	letter-spacing: var(--LS-100);
	font-weight: var(--FW-regular);
	text-align: left;
}
.table-type2 td {
	border: solid 1px var(--C-gray);
	border-right: none;
	padding: 15px 14px;
	font-size: var(--FS-14);
	letter-spacing: var(--LS-50);
	line-height: var(--LH-1_5);
}
.text-align-l {
	text-align: left;
}
.dr-img {
	display: block;
	margin: 0 auto 21px;
	max-width: 550px;
	width: 100%;
}
.review-list li {
	font-size: var(--FS-16);
	letter-spacing: var(--LS-50);
	line-height: 1.25;
	margin-bottom: var(--M-18);
}
.review-list-type2 li {
	font-size: var(--FS-16);
	letter-spacing: var(--LS-50);
	line-height: 1.25;
	margin-bottom: 8px;
}
.review-list-type2 li:nth-child(2n) {
	margin-bottom: var(--M-18);
}
.review-list-type2--p {
	padding: 0 15px;
}
.info__phon-number {
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-size: var(--FS-21);
	color: var(--C-blue);
	letter-spacing: var(--LS-50);
	text-align: center;
}
@media screen and (min-width: 600px) {
	.sec-first {
		max-width: 600px;
		margin: 0 auto var(--M-48);
	}
	.sec-second {
		max-width: 600px;
		margin: 0 auto var(--M-64);
	}
	.sec-fourth {
		max-width: 600px;
		margin: 0 auto 157px;
	}
	.sec-third::before {
		background-size: initial;
		background-repeat: repeat-x;
	}
	.sec-third__area {
		max-width: 600px;
		padding: 42px 26px 74px;
		margin: auto;
		border-radius: 30px;
	}
	.sec-third__area--p {
		padding: 0;
	}
	.sec-third__area--mb {
		margin-bottom: var(--M-48);
	}
	.txt--p {
		padding: 0 26px;
	}
	.item-wrap__inner {
		padding: 32px 26px;
		width: calc(100% - 52px);
	}
	.review-list-type2--p {
		padding: 0 26px;
	}
	.img-third--p {
		padding: 0 26px;
	}
}
@media screen and (min-width: 1100px) {
	.under-fv {
		padding: 182px 0 157px;
	}
	.under-fv--pb {
		padding-bottom: 0;
	}
	.title {
		margin-bottom: 80px;
	}
	.change {
		max-width: 1000px;
		margin: auto;
		display: flex;
	}
	.change .sec-first:nth-child(1) {
		order: 2;
	}
	.sec-first {
		max-width: calc((100% - 85px) / 2);
		margin-bottom: 80px;
	}
	.sec-fourth {
		max-width: 457px;
		margin-bottom: 207px;
	}
	.sec-third::before {
		background-size: contain;
	}
	.sec-third__area {
		max-width: 1000px;
		display: flex;
		flex-wrap: wrap;
		padding: 80px 70px 70px;
	}
	.heading {
		width: 100%;
	}
	.item-wrap {
		max-width: calc((100% - 70px) / 2);
		margin-right: auto;
	}
	.item-wrap--ma {
		margin-left: auto;
	}
	.sub-heading--mb {
		margin-bottom: 5px;
	}
	.item-wrap--mr {
		margin-right: 0;
	}
	.item-wrap--w {
		width: 100%;
	}
	.swiper__wrap {
		padding: 0 129px;
	}
	.swiper__wrap .sub-heading {
		text-align: center;
	}
	.under-fv__img {
		max-width: 1100px;
		margin: auto;
	}
	.dr-wrap {
		margin-right: 40px;
		margin-bottom: var(--M-64);
		width: calc((100% - 40px) / 2);
	}
	.dr-img {
		max-width: 100%;
	}
	.dr-txt-wrap {
		width: calc((100% - 40px) / 2);
	}
	.dr-name {
		margin-right: 21px;
		margin-bottom: 18px;
		text-align: left;
	}
	.dr-from {
		text-align: left;
		line-height: var(--LH-2);
	}
	.text-align-l {
		text-align: center;
	}
	.sec-third-pc .sec-third__area {
		max-width: 650px;
		margin-right: auto;
		padding: 0;
	}
	.sec-third-pc .item-wrap {
		max-width: 100%;
	}
	.faq-list {
		max-width: 100%;
		margin: auto;
	}
}
/*-----/page-----*/
/*-----animation-----*/
.fade_in {
	opacity: 0;
	transition: all 0.5s ease;
	transition-delay: 1s;
}
.fade_in.scrollin {
	opacity: 1;
}
.fade {
	opacity: 0;
	transform: translate(0, 20px);
	transition: all 1s ease;
	transition-delay: 0.6s;
}
.fade02 {
	opacity: 0;
	transform: translate(0, 20px);
	transition: all 1s ease;
	transition-delay: 0.8s;
}
.fade03 {
	opacity: 0;
	transform: translate(0, 20px);
	transition: all 1s ease;
	transition-delay: 1s;
}
.fade04 {
	opacity: 0;
	transform: translate(0, 20px);
	transition: all 1s ease;
	transition-delay: 1.2s;
}
.fade05 {
	opacity: 0;
	transform: translate(0, 20px);
	transition: all 1s ease;
	transition-delay: 1.8s;
}
.fade06 {
	opacity: 0;
	transform: translate(0, 20px);
	transition: all 1s ease;
	transition-delay: 2.2s;
}
@media screen and (max-width: 599px) {
	.fade,
	.fade02,
	.fade03,
	.fade04,
	.fade05,
	.fade06 {
		transition: all 1s ease;
		transition-delay: 1s;
	}
}
.fade.scrollin,
.fade02.scrollin,
.fade03.scrollin,
.fade04.scrollin,
.fade05.scrollin,
.fade06.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}
.fade_right {
	opacity: 0;
	transform: translate(20px, 0);
	transition: all 1s ease;
	transition-delay: 1s;
}
.fade_right.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}
.fade_left {
	opacity: 0;
	transform: translate(-20px, 0);
	transition: all 1s ease;
	transition-delay: 1s;
}
.fade_left.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}
/*-----/animation-----*/
