@charset "utf-8";
/*---------------------- mainVisual ---------------------- */
#mainVisual .btn {
	display: inline-block;
	width: 550px;
	padding: 15px 0;
	color: #fff;
	text-decoration: none;
	position: relative;
	background: transparent;
	border: 2px solid #FFF;
	font-size: 24px;
	letter-spacing: 0.05em;
	text-align: center;
	text-indent: 2px;
	text-transform: uppercase;
	transition: color 0.1s linear 0.05s;
	box-sizing: border-box;
}
#mainVisual .btn::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #e1e1e1;
	z-index: 1;
	opacity: 0;
	transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0.2s;
}
#mainVisual .btn::after {
	transition: border 0.1s linear 0.05s;
}
#mainVisual .btn .btn-inner {
	position: relative;
	z-index: 2;
}
#mainVisual .btn:hover {
	color: #007937;
	transition: color 0.1s linear 0s;
}
#mainVisual .btn:hover::before {
	top: 0;
	height: 100%;
	opacity: 1;
	transition: height 0.2s ease, top 0.2s ease, opacity 0s linear 0s;
}
#mainVisual .btn:hover::after {
	border-color: #373737;
	transition: border 0.1s linear 0s;
}
#mainVisual .slideshow {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 450px;
	z-index: 1;
}
#mainVisual .slideshow .slideshow-inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#mainVisual .slideshow .slides {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
#mainVisual .slideshow .slide {
	display: none;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0;
	transition: opacity 0.3s ease;
}
#mainVisual .slideshow .slide.is-active {
	display: block;
}
#mainVisual .slideshow .slide.is-loaded {
	opacity: 1;
}
#mainVisual .slideshow .slide .image-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	z-index: 1;
	background-size: cover;
	image-rendering: optimizeQuality;
}
#mainVisual .slideshow .slide .image-container::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
}
#mainVisual .slideshow .slide .image {
	width: 100%;
	object-fit: cover;
	height: 100%;
}
#mainVisual .slideshow .slide-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	color: #fff;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
#mainVisual .slideshow .slide .title {
	margin: 0 auto;
	max-width: 1000px;
	font-size: 48px;
	line-height: 1.3;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
#mainVisual .slideshow .slide .btn {
	margin: 45px 0 0;
	border-color: #fff;
}
#mainVisual .slideshow .slide .btn::before {
	background-color: #fff;
}
#mainVisual .slideshow .pagination {
	position: absolute;
	bottom: 35px;
	left: 0;
	width: 100%;
	height: 12px;
	cursor: default;
	z-index: 2;
	text-align: center;
}
#mainVisual .slideshow .pagination .item {
	display: inline-block;
	padding: 15px 10px;
	box-sizing: border-box;
	position: relative;
	width: calc(560px / 3);
	height: 32px;
	cursor: pointer;
	text-indent: -999em;
	z-index: 1;
}
#mainVisual .slideshow .pagination .item + .page {
	margin-left: -2px;
}
#mainVisual .slideshow .pagination .item::before {
	content: "";
	display: block;
	position: absolute;
	top: 15px;
	left: 10px;
	right: 10px;
	height: 2px;
	background-color: rgba(255, 255, 255, 0.5);
	transition: background 0.2s ease;
}
#mainVisual .slideshow .pagination .item::after {
	width: 0;
	background-color: #fff;
	z-index: 2;
	transition: width 0.2s ease;
}
#mainVisual .slideshow .pagination .item:hover::before, #mainVisual .slideshow .pagination .item.is-active::before {
	background-color: #fff;
}
#mainVisual .slideshow .arrows .arrow {
	margin: -33px 0 0;
	padding: 20px;
	position: absolute;
	top: 50%;
	cursor: pointer;
	z-index: 3;
}
#mainVisual .slideshow .arrows .prev {
	left: 60px;
}
#mainVisual .slideshow .arrows .prev:hover .svg {
	left: -10px;
}
#mainVisual .slideshow .arrows .next {
	right: 60px;
}
#mainVisual .slideshow .arrows .next:hover .svg {
	left: 10px;
}
#mainVisual .slideshow .arrows .svg {
	position: relative;
	left: 0;
	width: 14px;
	height: 26px;
	fill: #fff;
	transition: left 0.2s ease;
}
@media (max-width: 767px) {
	#mainVisual .btn {
		width: 250px;
		font-size: 14px;
	}
	#mainVisual .slideshow {
		height: 250px;
	}
	#mainVisual .slideshow .slide .title {
		font-size: 22px;
	}
	#mainVisual .slideshow .slide .btn {
		margin: 20px 0 0;
	}
	#mainVisual .slideshow .pagination .item {
		width: calc(260px / 3);
	}
	#mainVisual .slideshow .arrows .prev {
		left: 0;
	}
	#mainVisual .slideshow .arrows .next {
		right: 0;
	}
}
/*---------------------- clinicHours ---------------------- */
#clinicHours {
	background-color: #F3DFC8;
	padding: 20px;
}
#clinicHours .clinicHoursInner {
	background-color: #FFF;
	border-radius: 30px;
	max-width: 1650px;
	margin: auto;
	padding: 30px calc(100 / 1650 * 100%);
	box-sizing: border-box;
}
@media(min-width: 768px) {
	#clinicHours .clinicHoursInner {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}
@media (max-width: 1535px) and (min-width: 1440px) {
	#clinicHours .clinicHoursInner {
		padding: 20px calc(50 / 1535 * 100%);
	}
}
@media (max-width: 1439px) and (min-width: 768px) {
	#clinicHours .clinicHoursInner {
		padding: 20px calc(50 / 1439 * 100%) 30px;
	}
}
@media (max-width: 767px) {
	#clinicHours {
		padding: 15px;
	}
	#clinicHours .clinicHoursInner {
		border-radius: 20px;
		padding: 30px 20px;
	}
}
/*---------------------- timetable ---------------------- */
#clinicHours .timetable table {
	margin: 0 0 20px;
}
#clinicHours .timetable thead th {
	padding: 5px 30px 15px 0;
	letter-spacing: 0.1em;
	text-align: center;
}
#clinicHours .timetable thead th:nth-of-type(2) {
	padding: 5px 30px 15px;
}
#clinicHours .timetable thead th:nth-of-type(1) {
	border-right: 1px solid #000;
}
#clinicHours .timetable thead, #clinicHours .timetable tbody tr:nth-of-type(1), #clinicHours .timetable tbody tr:nth-of-type(2) {
	border-bottom: 1px solid #000;
}
#clinicHours .timetable tbody th {
	border-right: 1px solid #000;
	padding: 10px 25px;
	letter-spacing: 0.1em;
	text-align: center;
	vertical-align: middle;
}
#clinicHours .timetable tbody td {
	text-align: center;
	color: #779424;
	vertical-align: middle;
	padding: 10px 30px 10px 0;
}
#clinicHours .timetable tbody td .none {
	color: #000;
}
#clinicHours .timetable tbody tr td:first-of-type {
	padding: 10px 30px;
}
#clinicHours .timetable .note {
	line-height: 1.4;
}
#clinicHours .timetable .beautyBtn {
	text-align: right;
	margin: 20px 30px 0 0;
}
#clinicHours .timetable .beautyBtn a {
	display: inline-block;
	position: relative;
	background-color: #FFF;
	color: #E55171;
	border: 2px solid #E55171;
	padding: 10px 50px;
	letter-spacing: 0.1em;
	text-decoration: none;
}
#clinicHours .timetable .beautyBtn a:after {
	content: "";
	position: absolute;
	display: block;
	width: 10px;
	height: 40px;
	top: 50%;
	margin-top: -3px;
	right: -5px;
	border-top: solid 2px #E55171;
	border-right: solid 2px #E55171;
	transform: translateY(-50%) rotate(45deg) skewX(-45deg);
}
@media(min-width: 768px) {
	#clinicHours .timetable .beautyBtn a {
		transition: 0.3s;
	}
	#clinicHours .timetable .beautyBtn a:hover {
		background-color: #E55171;
		color: #FFF;
	}
}
@media (max-width: 767px) {
	#clinicHours .timetable {
		margin: 0 0 40px;
	}
	#clinicHours .timetable table {
		width: 100%;
		font-size: 13px;
		margin: 0 0 15px;
	}
	#clinicHours .timetable thead th {
		padding: 5px 5px 10px 0;
	}
	#clinicHours .timetable thead th:nth-of-type(2) {
		padding: 5px 5px 10px 10px;
	}
	#clinicHours .timetable tbody th {
		padding: 10px 5px 10px 0;
	}
	#clinicHours .timetable tbody td {
		padding: 10px 5px 10px 0;
	}
	#clinicHours .timetable tbody tr td:first-of-type {
		padding: 10px 5px 10px 10px;
	}
	#clinicHours .timetable .note {
		font-size: 14px;
	}
	#clinicHours .timetable .beautyBtn {
		text-align: center;
		margin: 20px 30px 0;
	}
	#clinicHours .timetable .beautyBtn a {
		padding: 15px 35px;
	}
	#clinicHours .timetable .beautyBtn a:after {
		height: 30px;
	}
}
/*---------------------- calendar ---------------------- */
#clinicHours .calendar {
	max-width: 550px;
}
#clinicHours .xo-event-calendar .xo-months {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
#clinicHours .xo-event-calendar table.xo-month .month-header {
	margin: 0 0 10px;
}
#clinicHours .xo-event-calendar .month-header button {
	display: none;
}
#clinicHours .xo-event-calendar .xo-month-wrap {
	width: 47%;
}
#clinicHours .xo-event-calendar table.xo-month > thead th {
	padding: 6px 0 !important;
	font-size: 16px;
	color: #FFF;
	background-color: #cbae90;
}
#clinicHours .xo-event-calendar table.xo-month > thead th.saturday {
	color: #FFF;
	background-color: #6091d3;
}
#clinicHours .xo-event-calendar table.xo-month > thead th.sunday {
	color: #FFF;
	background-color: #f2300e;
}
#clinicHours .xo-event-calendar table.xo-month .month-dayname-space {
	height: 1.2em;
}
#clinicHours .xo-event-calendar table.xo-month .month-event-space {
	display: none;
}
#clinicHours .xo-event-calendar table.xo-month .month-dayname td div.other-month {
	display: none;
}
#clinicHours .xo-event-calendar table.xo-month .month-dayname td div {
	text-align: center;
	font-size: 16px;
}
#clinicHours .xo-event-calendar table.xo-month .month-dayname td div.today {
	color: #017b2d;
}
#clinicHours .xo-event-calendar .holiday-titles {
	display: none;
}
#clinicHours .day-titles {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 15px 0 0;
}
#clinicHours .day-titles p.holiday-title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 30px;
}
#clinicHours .day-titles p.holiday-title:last-of-type {
	margin-right: 0;
}
#clinicHours .day-titles p.holiday-title span {
	margin: 0 10px 0 0;
	display: inline-block;
	border: 1px solid #ccc;
	width: 24px;
	height: 24px;
}
@media (max-width: 1439px) and (min-width: 768px) {
	#clinicHours .calendar {
		max-width: 450px;
	}
}
@media only screen and (max-width: 767px) {
	#clinicHours .xo-event-calendar table.xo-month > thead th {
		font-size: 10px;
	}
	#clinicHours .xo-event-calendar table.xo-month .month-dayname td div {
		font-size: 10px;
	}
	#clinicHours .day-titles p.holiday-title {
		margin-right: 20px;
	}
	#clinicHours .day-titles p.holiday-title span {
		width: 18px;
		height: 18px;
	}
}
/*---------------------- news ---------------------- */
#news {
	text-align: center;
	padding: 90px 0 75px;
}
#news h3 {
	font-size: 48px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-align: center;
	color: #7B7A7B;
	margin: 0 0 25px;
}
#news .newsInner {
	display: inline-block;
	text-align: left;
}
#news .newsInner a {
	display: block;
	text-decoration: none;
	color: #000;
	padding: 20px 0;
	border-bottom: 1px solid #CCC;
}
#news a .icon {
	background-color: #779524;
	color: #FFF;
	display: inline-block;
	width: 150px;
	padding: 8px 0;
	text-align: center;
	margin-right: 15px;
}
#news dt {
	font-weight: 700;
	margin: 10px 0 5px;
	line-height: 1.5;
}
#news dd {
	line-height: 1.5;
}
#news .moreIcon {
	position: relative;
	display: inline-block;
	padding: 0 0 0 30px;
	margin-left: 10px;
	color: #007937;
	font-size: 20px;
}
#news .moreIcon::before, #news .moreIcon::after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}
#news .moreIcon::before {
	width: 24px;
	height: 24px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background-color: #779524;
}
#news .moreIcon::after {
	left: 6px;
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#news .moreBtn {
	text-align: right;
	margin: 40px 30px 0 0;
}
#news .moreBtn a {
	display: inline-block;
	position: relative;
	background-color: #FFF;
	color: #007937;
	border: 2px solid #007937;
	padding: 10px 50px;
	letter-spacing: 0.1em;
	text-decoration: none;
}
#news .moreBtn a:after {
	content: "";
	position: absolute;
	display: block;
	width: 10px;
	height: 40px;
	top: 50%;
	margin-top: -3px;
	right: -5px;
	border-top: solid 2px #007937;
	border-right: solid 2px #007937;
	transform: translateY(-50%) rotate(45deg) skewX(-45deg);
}
@media(min-width: 768px) {
	#news .newsInner a {
		transition: 0.3s;
	}
	#news .newsInner a:hover {
		color: #007937;
	}
	#news .newsInner a:hover .moreIcon {
		color: #005A28;
	}
	#news .newsInner a:hover .moreIcon::before {
		background-color: #007937;
	}
	#news .moreBtn a {
		transition: 0.3s;
	}
	#news .moreBtn a:hover {
		background-color: #007937;
		color: #FFF;
	}
}
@media (max-width: 767px) {
	#news {
		text-align: center;
		padding: 40px 20px;
	}
	#news h3 {
		font-size: 22px;
		margin: 0 0 30px;
	}
	#news a .icon {
		width: 110px;
		padding: 6px 0;
	}
	#news .moreIcon {
		padding: 0 0 0 25px;
		font-size: 14px;
	}
	#news .moreIcon::before {
		width: 20px;
		height: 20px;
	}
	#news .moreIcon::after {
		left: 5px;
		width: 5px;
		height: 5px;
	}
	#news .moreBtn {
		text-align: center;
		margin: 30px 30px 0;
	}
	#news .moreBtn a {
		padding: 15px 35px;
	}
	#news .moreBtn a:after {
		height: 30px;
	}
}
/*---------------------- feature ---------------------- */
#feature {
	padding: 30px 110px 20px;
}
#feature h3 {
	font-size: 48px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #7B7A7B;
	margin: 0 0 15px;
	text-align: center;
}
#feature .featureInner {
	max-width: 1670px;
	margin: auto;
}
#feature .slick-slider {
	margin-bottom: 0;
}
#feature .slick-track {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 20px 0;
}
#feature .slick-slide {
	height: inherit;
}
#feature li {
	margin: 0 10px;
	background-color: rgba(155, 148, 57, 0.1);
	border-radius: 10px;
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
	padding: 25px 20px;
}
#feature li .number {
	font-size: 32px;
	color: #007937;
	font-weight: 500;
	text-align: center;
	margin: 0 0 15px;
}
#feature li h4 {
	font-size: 32px;
	color: #007937;
	font-weight: 500;
	line-height: 1.3;
	text-align: center;
	margin: 0 0 20px;
}
#feature li p.text {
	line-height: 1.5;
	margin: 0 0 20px;
}
#feature li img {
	width: 100%;
}
#feature .slick-prev, #feature .slick-next {
	top: 50%;
	width: 20px;
	height: 50px;
	position: absolute;
}
#feature .slick-prev {
	left: -35px;
}
#feature .slick-next {
	right: -35px;
}
#feature .slick-prev:before, #feature .slick-next:before {
	font-size: 0;
	width: 20px;
	height: 50px;
	display: block;
	background-repeat: no-repeat;
	background-position: center center;
}
#feature .slick-prev:before {
	background-image: url("../images/common/arrow_prev.svg");
}
#feature .slick-next:before {
	background-image: url("../images/common/arrow_next.svg");
}
#feature .slick-prev.slick-disabled:before, #feature .slick-next.slick-disabled:before {
	opacity: 0;
}
@media (max-width: 767px) {
	#feature {
		padding: 30px 0 0;
	}
	#feature h3 {
		font-size: 22px;
		margin: 0 0 10px;
	}
	#feature .featureInner {
		padding: 0 50px;
	}
	#feature li {
		margin: 0 5px;
		padding: 15px 15px 20px;
	}
	#feature li .number {
		font-size: 24px;
		margin: 0 0 10px;
	}
	#feature li h4 {
		font-size: 24px;
		margin: 0 0 15px;
	}
	#feature li p.text {
		font-size: 15px;
		margin: 0 0 15px;
	}
}