@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Miriam+Libre:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Winky+Rough:ital,wght@0,300..900;1,300..900&display=swap');


html {
	margin: 0 !important;
}

body {
	min-width: 1240px;
	color: #602D08;
	font-size: 16px;
	line-height: 1.75;
	font-weight: 500;
	font-family: "Zen Maru Gothic", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	outline: none;
	background: #F3EFEA;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}

main {
	padding-top: 130px;
}

.-miriam {
	font-family: 'Miriam Libre', 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
}

.-bold {
	font-weight: bold;
}

.hovact {
	transition-duration: 0.5s;
}

.inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 40px;
}

.hero .inner {
	max-width: 1340px;
}

.vis-hidden {
	display: block;
	visibility: visible;
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 4px;
	height: 4px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border: none;
}

.vis-sp,
.vis-tb {
	display: none;
}

li {
	list-style: none;
}


/* cmnhd */

.cmnhd {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
}

.cmnhd_wrapper {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 20px;
	padding-left: 40px;
	background: #F3EFEA;
}

.cmnhd_logo_intro {
	font-size: 14px;
}

.cmnhd_logo_name {
	font-size: 25px;
	font-weight: bold;
}

.cmnhd_logo_name span {
	font-size: 38px;
	margin-left: 10px;
}

.cmnhd .inner {
	max-width: unset;
	padding: 0;
}

.cmnhd_cnt_info {
	display: flex;
	align-items: center;
	justify-content: right;
	margin-bottom: 20px;
}

.cmnhd_cnt_info .address {
	font-size: 14px;
	margin-right: 20px;
}

.cmnhd_cnt_info .tel {
	font-size: 18px;
	background: #fff;
	border-radius: 0 0 0 20px;
	padding: 5px 20px;
}

.cmnhd_cnt_info .tel span {
	font-size: 26px;
}

.cmnhd_cnt_info .access {
	color: #fff;
	background: #602D08;
	font-size: 17px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 0 20px;
	height: -webkit-fill-available;
}

.cmnhd_cnt_info .access::before {
	content: '';
	width: 20px;
	height: 28px;
	background: url(/img/cmn/icon-access.svg);
	background-size: cover;
	background-repeat: no-repeat;
}

.cmnhd_cnt_info .reserve {
	color: #fff;
	background: #B9442F;
	font-size: 17px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 0 20px;
	height: -webkit-fill-available;
}

.cmnhd_cnt_info .reserve::before {
	content: '';
	width: 22px;
	height: 25px;
	background: url(/img/cmn/icon-reserve.svg);
	background-size: cover;
	background-repeat: no-repeat;
}

.cmnhd_list {
	display: flex;
	justify-content: right;
}

.cmnhd_list li a {
	display: block;
	padding: 5px 22px;
	font-size: 17px;
	border-right: solid 1px #E2DCD7;
	position: relative;
}

.cmnhd_list li a.-open::after {
	content: '';
    width: 80%;
    height: 3px;
    background: #602D08;
    border-radius: 50px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
	opacity: 1;
}

.cmnhd_list li a::after {
	content: '';
    width: 80%;
    height: 3px;
    background: #602D08;
    border-radius: 50px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    transition-duration: 0.5s;
    opacity: 0;
}

.cmnhd_list li a:hover::after {
	opacity: 1;
}

.cmnhd_list li a:hover {
	opacity: .8;
	cursor: pointer;
}

.cmnhd_list li:last-child a {
	border-right: none;
}

.cmnhd_menu {
	position: relative;
	z-index: 1000;
    width: 30%;
    /* height: -webkit-fill-available; */
    background: #602D08;
    border-radius: 0 0 0 30px;
    display: none;
    align-items: center;
    justify-content: right;
    padding: 25px 15px;
}

.cmnhd_menu > span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 2px;
    margin-top: -1px;
    margin-left: -15px;
    background: #fff;
    transition: transform 0.3s;
	border-radius: 10px;
}

.cmnhd_menu > span.-top {
    transform: translate(-20px, -4px);
}

.cmnhd_menu > span.-btm {
    transform: translate(-20px, 4px);
}

.cmnhd_menu.-open > span.-top {
    transform: translate(-20px, 0px) rotate(30deg);
}

.cmnhd_menu.-open > span.-btm {
    transform: translate(-20px, 0px) rotate(-30deg);
}

.cmnhd_menu p {
	font-size: 12px;
	color: #fff;
	font-family: 'Miriam Libre', 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
}

.cmnhd_sub_cnt {
	width: 100%;
	padding: 50px 200px;
	background: #fff;
	display: none;
	justify-content: center;
	gap: 50px;
	flex-wrap: wrap;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cmnhd_sub_cnt_item_cat {
	font-weight: bold;
	margin-bottom: 20px;
}

.cmnhd_sub_cnt_item_ttl {
	position: relative;
    display: block;
    padding-left: 15px;
}

.cmnhd_sub_cnt_item_ttl::before {
	content: '';
    width: 5px;
    height: 8px;
    background: url(/img/home/icon-arrow_subject_list.svg);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition-duration: 0.5s;
}

.cmnhd_sub_cnt_item_ttl:hover::before {
	transform: translate(5px, -50%);
}



.cmnnav {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow: scroll;
	z-index: 100;
	background: #F3EFEA;
	padding: 90px 0 60px;
}

.cmnnav_wrapper {
	margin-bottom: 20px;
}

.cmnnav_list li a {
	display: block;
	width: 100%;
	font-size: 17px;
	font-weight: bold;
	padding: 15px 0;
	border-bottom: solid 1px #E2DCD7;
	transition-duration: 0.5s;
}

.cmnnav_list li:first-child a {
	border-top: solid 1px #E2DCD7;
}

.cmnnav_list li a:hover {
	opacity: 0.8;
}

.cmnnav_info {
	display: flex;
	flex-flow: column;
	gap: 10px;
	align-items: center;
	margin-bottom: 20px;
}

.cmnnav_info a {
	border-radius: 50px;
	padding: 5px 20px;
	width: 100%;
	max-width: 260px; 
	height: 60px;
}

.cmnnav_info .access {
	color: #fff;
    background: #602D08;
    font-size: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.cmnnav_info .access::before {
	content: '';
	width: 20px;
	height: 28px;
	background: url(/img/cmn/icon-access.svg);
	background-size: cover;
	background-repeat: no-repeat;
}

.cmnnav_info .tel {
	font-size: 18px;
    background: #fff;
    padding: 5px 20px;
}

.cmnnav_info .tel span {
	font-size: 26px;
}

.cmnnav_info .reserve {
	color: #fff;
    background: #B9442F;
    font-size: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.cmnnav_info .reserve::before {
	content: '';
	width: 22px;
	height: 25px;
	background: url(/img/cmn/icon-reserve.svg);
	background-size: cover;
	background-repeat: no-repeat;
}

.cmnnav .calendar {
	border-radius: 10px;
	padding: 20px 10px;
	margin-bottom: 20px;
}

.clinic_info_intro {
	font-size: 10px;
	font-weight: 500;
}

.clinic_info_ttl {
	font-size: 14px;
}

.clinic_info_ttl span {
	font-size: 25px;
}


/* section */

.sec {
	padding: 60px 0;
}

.sec_ttl.-ja {
	font-size: 30px;
	font-weight: 500;
	position: relative;
}

.sec_hd {
	margin-bottom: 30px;
}

.sec_ttl.-ja::before {
	content: '';
	width: 6px;
	height: 30px;
	background: url(/img/cmn/img-line_sec_ttl.svg);
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	left: -20px;
    top: 0px;

}

.sec_ttl.-en {
	font-size: 20px;
	font-weight: normal;
	font-family: 'Winky Rough', 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
	color: #6C9D0F;
	line-height: 15px;
}

.cmn_btn {
	display: block;
	background: #fff;
	border-radius: 100px;
	padding: 15px 30px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	position: relative;
	width: 100%;
	max-width: 260px;
	/* margin: 0 auto; */
}

.cmn_btn:hover {
	box-shadow: none;
}

.cmn_btn::after {
	content: '';
	width: 20px;
	height: 20px;
	background: url(/img/cmn/icon-arrrow_cmnbtn.svg);
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

.cmn_btn.vis-sp {
	display: none;
}


/* pnkz */

.pnkz {
	display: flex;
	align-items: center;
	font-size: 12px;
	gap: 10px;
	flex-wrap: wrap;
}

.pnkz span {
	display: block;
    width: 4px;
    height: 4px;
	border-radius: 50px;
    background-color: #6C9D0F;
}

.pnkz p {
	color: #A29B93;
}


/* page */

.hero {
	position: relative;
	margin-bottom: 100px;
}

.inner.-hero {
	max-width: unset;
}

.hero img {
	width: 100%;
	height: auto;
}

.page_ttl {
	font-size: 50px;
}

.page_hd {
	width: 50%;
	padding: 40px 30px 0 90px;
	/* position: absolute;
	left: 0;
	bottom: -40px; */
	background: #F3EFEA;
	border-radius: 0 30px 0 0;
}


/* cmnft */
.cmnft {
	padding: 70px 0 40px;
	background: #EBE7E1;
}

.cmnft_wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding-bottom: 60px;
	margin-bottom: 50px;
	border-bottom: solid 1px #E2DCD7;
}

.cmnft_name {
	font-size: 14px;
}

.cmnft_name span {
	font-size: 38px;
	margin-left: 10px;
}

.cmnft_address {
	margin-bottom: 20px;
}

.cmnft_link {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
}

.cmnft_link a {
	display: block;
	width: 260px;
}

.cmnft_link a:hover {
	opacity: 0.8;
}

.cmnft_link .tel {
	background: #fff;
	padding: 5px 30px;
	border-radius: 100px;
	text-align: center;
}

.cmnft_link .tel span {
	font-size: 25px;
	margin-left: 10px;
}

.cmnft_link .reserve {
	color: #fff;
	background: #B9442F;
	padding: 12px 30px;
	border-radius: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.cmnft_link .reserve::before {
	content: '';
	width: 22px;
	height: 25px;
	background: url(/img/cmn/icon-reserve.svg);
	background-size: cover;
	background-repeat: no-repeat;
}

.cmnft_list li {
	padding-left: 10px;
	position: relative;
}

.cmnft_list li::before {
	content: '';
	width: 6px;
	height: 6px;
	background: #6C9D0F;
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	bottom: 50%;
	transform: translateY(50%);
	border-radius: 50px;
}

.copy {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	font-family: 'Winky Rough', 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
}

.totop {
	position: relative;
}

.totop::before {
	content: '';
	width: 11px;
	height: 10px;
	background: url(/img/cmn/icon-arrow_copy.svg);
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	left: -20px;
	top: 50%;
	transform: translateY(-50%);
}


.cmnft .calendar {
	border-radius: 30px;
}

.calendar {
    padding: 20px 45px;
    background: #fff;
    border-radius: 30px 0 0 30px;
    font-weight: 500;
    font-size: 18px;
}

.calendar tr {
    border-bottom: solid 1px #E2DCD7;
    padding: 13px 0;
    display: block;
}

.calendar table {
	margin-bottom: 20px;
	width: 100%;
}

.calendar table thead tr th,
.calendar table tbody tr td {
    width: 48px;
    vertical-align: middle;
}

.calendar table thead tr th {
    text-align: center;
}

.calendar table thead tr th:first-child,
.calendar table tbody tr td:first-child {
    width: 100px;
    text-align: left;
}

.calendar table thead tr th.-saturday {
    color: #029FB4;
}

.calendar p {
	font-size: 14px;
}

.icon-open {
    display: block;
    width: 15px;
    height: 15px;
    background: #6C9D0F;
    border-radius: 50px;
    margin: 0 auto;
}

.icon-close {
    display: block;
    width: 13px;
    height: 2px;
    background: #602D09;
    margin: 0 auto;
    transform: rotate(-45deg);
    display: flex;
    justify-content: center;
    align-items: center;
}


.link_ft {
    display: none;
}


@media screen and (max-width:1240px) {
	.vis-tb {
		display: block;
	}

	.hide-tb {
		display: none;
	}
}

@media screen and (max-width:1180px) {
	.cmnhd_logo_name {
		font-size: 20px;
	}

	.cmnhd_logo_name span {
		font-size: 32px;
	}

	.cmnhd_list li a {
		font-size: 14px;
	}

	.cmnhd_cnt_info .tel span {
		font-size: 20px;
	}

	.cmnhd_cnt_info .access {
		font-size: 14px;
	}
}

@media screen and (max-width:767px) {
	body {
		min-width: 0;
	}

	.inner {
		padding: 0 24px;
	}

	.vis-sp {
		display: block;
	}

	.hide-sp {
		display: none;
	}

	.sec {
		padding: 30px 0;
	}


	/* cmnhd */

	.cmnhd_wrapper {
		padding-left: 20px;
	}

	.cmnhd_cnt {
		display: none;
	}

	.cmnhd .inner {
		padding: 0 0 0 15px;
	}

	.cmnhd_logo {
		padding: 10px 0;
	}

	.cmnhd_logo_intro {
		font-size: 10px;
	}

	.cmnhd_logo_name {
		font-size: 16px;
		line-height: 30px;
	}

	.cmnhd_logo_name span {
		font-size: 24px;
	}

	.cmnhd_menu {
		display: flex;
	}
	
	.calendar table thead tr th,
	.calendar table tbody tr td {
		width: 42px;
	}


	/* section */

	.hero {
		margin-bottom: 0;
	}

	.page_hd {
        width: 100%;
        position: unset;
        padding: 30px 0 0;
		margin-bottom: 20px;
    }

	.calendar {
		font-size: 16px;
		padding: 20px;
	}

	.calendar tr {
		padding: 5px 0;
	}

	.page_ttl {
		font-size: 32px;
	}

	.sec_ttl.-ja {
		font-size: 26px;
	}

	.sec_ttl.-ja::before {
		left: -15px;
	}

	.cmn_btn.vis-sp {
		display: block;
	}


	/* cmnft */

	.cmnft {
		padding: 30px 0 100px;
	}

	.cmnft_wrapper {
		flex-flow: column;
	}

	.cmnft_link {
		flex-flow: column;
		gap: 10px;
	}

	.cmnft .calendar {
		border-radius: 10px;
	}

	.cmnft .calendar table thead tr th {
		width: 42px;
	}

	.cmnft .calendar table thead tr th:first-child {
		width: 100px;
	}

	.cmnft_cnt {
		width: 100%;
	}

	.cmnft_link a {
		width: 100%;
	}

	.link_ft {
        display: flex;
        justify-content: center;
        border-radius: 50px;
        position: fixed;
        bottom: 10px;
        width: 100%;
        z-index: 10;
    }

    .link_ft a {
        width: 48%;
        padding: 15px 20px;
    }

    .link_ft .access {
        color: #fff;
        background: #602D08;
        font-size: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 50px 0 0 50px;
    }

    .link_ft .access::before {
        content: '';
        width: 20px;
        height: 28px;
        background: url(/img/cmn/icon-access.svg);
        background-size: cover;
        background-repeat: no-repeat;
    }

    .link_ft .reserve {
        color: #fff;
        background: #B9442F;
        font-size: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 0 50px 50px 0;
    }

    .link_ft .reserve::before {
        content: '';
        width: 22px;
        height: 25px;
        background: url(/img/cmn/icon-reserve.svg);
        background-size: cover;
        background-repeat: no-repeat;
    }
}

@media print {
}
