@charset "shift_jis";
/* CSS Document */
/*--- base ---*/
html {
	position: relative;
	font-family: "Zen Maru Gothic", "ƒqƒ‰ƒMƒmŠÛƒS Pro W4", "ƒqƒ‰ƒMƒmŠÛƒS Pro", "Hiragino Maru Gothic Pro", "ƒqƒ‰ƒMƒmŠpƒS Pro W3", "Hiragino Kaku Gothic Pro", "HGŠÛºÞ¼¯¸M-PRO", sans-serif;
	font-weight: 500;
	overflow-x: hidden;
	scroll-behavior: smooth;
}
html, html * {
	box-sizing: border-box;
}
body {
	background-color: #fefaf7;
	color: #555;
}
.containter {
	background-color: #fff;
	border-radius: 10px;
}
main {
	position: relative;
}
/*--- base ---*/
/*--- tags ---*/
h2, h3, h4, h5 {
	font-weight: bold;
}
p {
	line-height: 1.75;
}
ol, ul {
	margin: 0;
}
ol {
	counter-reset: num;
	list-style: none;
}
ol li:before {
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	position: relative;
	top: 0;
	left: 0;
	font-weight: bold;
	color: #f00;
	counter-increment: num;
	content: counter(num)'.';
}
li {
	list-style: none;
}
p a {
	color: #7c8745;
	text-decoration: underline;
}
p a:hover {
	color: #a3c407;
}
a, a:before, a:after {
	transition: .3s;
}
a[href^="tel:"],
span:has(a[href^="tel:"]),
.link_none {
    pointer-events: none !important;
	text-decoration: none !important;
	color: #555 !important;
}
*:has(> wbr) {
	word-break: keep-all;
	overflow-wrap: break-word;
}
* > img {
	width: 100%;
	height: auto;
}
iframe {
	max-width: 100%;
}
/*--- tags ---*/
/*--- header ---*/
header {
	width: 100%;
}
header > div {
	display: flex;
	padding: 10px;
	max-width: 71%;
}
header div h1 {
	max-width: 410px;
	width: 30%;
	display: none;
}
nav ul {
	display: flex;
	max-width: 1100px;
	position: relative;
}
nav > ul {
	padding: 0 30px;
	width: 100%;
}
nav > ul > li {
	padding: 15px clamp(1.25rem, -3.75rem + 8.33vw, 2.5rem); /* 40 -> 20 */
	display: inline-flex;
	align-items: center;
}
nav > ul > li:not(.has_childmenu) {
	position: relative;
}
nav > ul > li:after {
	content: "";
	width: 1px;
	height: 1em;
	background-color: #bbb;
	display: inline-block;
	position: absolute;
	left: 0;
	top: 50%;
	translate: 0 -50%;
}
nav > ul > li.has_childmenu:after, nav > ul > li:last-of-type:after {
	content: none;
}
nav ul > li.has_childmenu > span {
	display: inline-block;
	vertical-align: middle;
	color: #c76922;
	line-height: 1;
	position: absolute;
	width: 16px;
	height: 16px;
	left: 50%;
	bottom: -18px;
	transform: translateX(-50%) rotate(135deg);
	transition: .3s;
	display: none;
}
nav ul > li.has_childmenu:hover > span {
	bottom: -22px;
}
nav ul > li.has_childmenu > span:before, nav ul > li.has_childmenu > span:after {
	content: '';
	position: absolute;
	background: #c76922;
	border-radius: 1px;
}
nav ul > li.has_childmenu > span:before {
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
}
nav ul > li.has_childmenu > span:after {
	top: 0;
	right: 0;
	bottom: 0;
	width: 3px;
}
nav > ul > li > a {
	position: relative;
	margin-top: -15px;
	padding: 10px 0 12px;
	display: inline-block;
	font-size: clamp(1rem, 0.778rem + 0.46vw, 1.125rem);
}
nav > ul > li > a:before {
	content: "";
	background-color: #eb9b23;
	width: 100%;
	height: 6px;
	display: inline-block;
	bottom: 0;
	position: absolute;
	left: 50%;
	translate: -50% 0;
}
nav > ul > li > a:hover {
	font-weight: bold;
}
nav > ul > li > a:hover:before {
	background-color: #ffcf86;
	width: 120%;
}
nav > ul > li:last-of-type a:before {
	content: none;
}
nav > ul > li:last-of-type a {
	background-color: #70b812;
	color: #fff;
	border-radius: 3px;
	padding: 20px clamp(1.875rem, -0.625rem + 4.17vw, 2.5rem); /* 40 -> 30 */
	margin-top: 0;
}
nav > ul > li:last-of-type a:hover {
	background-color: #8ad923;
}
nav .w_arrow {
	display: none;
}
nav ul > li .childmenu {
	position: absolute;
	width: 100%;
	transition: .2s;
	opacity: 0;
	visibility: hidden;
	right: 0;
	top: 100%;
	z-index: 5;
}
nav ul > li.has_childmenu:hover .childmenu {
	opacity: 1;
	visibility: visible;
}
nav ul > li .childmenu > div {
	margin-top: 5px;
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
	padding: 0;
}
nav ul > li .childmenu ul {
	position: relative;
	flex-wrap: wrap;
	row-gap: 10px;
	max-width: 950px;
	margin: 0 auto;
	transform: scale(0.9);
}
nav ul > li .childmenu ul li {
	width: 30%;
}
nav ul > li .childmenu ul li:nth-of-type(4) {

}
nav ul > li .childmenu ul li:nth-of-type(5) {

}
nav ul > li .childmenu ul li:nth-of-type(6) {

}
/*- mobile_nav -*/
.mobile_nav_box, .mobile_nav_button {
	display: none;
	opacity: 0;
	visibility: hidden;
}
.mobile_nav_bg {
	background-color: #fefaf7;
	cursor: pointer;
	display: none;
	height: 100vh;
	left: 0;
	opacity: 0.9;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 2;
}
#mobile_nav:checked ~ .mobile_nav_bg {
	display: block;
}
.mobile_nav_button {
	align-items: center;
	appearance: none;
	background-color: transparent;
	cursor: pointer;
	flex-direction: column;
	gap: 7px;
	height: 60px;
	justify-content: center;
	width: 60px;
	position: absolute;
	top: 15px;
	right: 3%;
	border: 1px solid #595757;
	border-radius: 10px;
	z-index: 10;
}
.mobile_nav_button-mark {
	background-color: #595757;
	display: block;
	height: 3px;
	transition: 0.3s;
	width: 31px;
}
#mobile_nav:checked ~ #mainmenu {
	z-index: 3;
}
/*- mobile_nav -*/
/*--- header ---*/
/*--- footer ---*/
#footer_content {
	color: #59564c;
	background-image: url("../img/common/footer_bg.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	padding: 100px 0;
}
#footer_content > div {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0px 0px 10px 0px #555;
	padding: 0 30px 60px;
	width: 95%;
	max-width: 1366px;
	margin: auto;
}
#footer_title, #footer_menu {
	max-width: 1200px;
	margin: auto;
	width: 100%;
}
#footer_title {
	text-align: center;
	padding: 25px 0;
	border-bottom: 2px dashed #aaa;
}
#footer_title img {
	display: inline-block;
	max-width: 240px;
	height: auto;
	margin: auto;
}
#footer_menu {
	justify-content: space-around;
	padding: 30px 30px 40px;
}
#footer_menu > div {

}
#footer_menu > div:nth-child(1) {
	width: calc(100% - 185px);
	align-items: flex-start;
	gap: 10px 30px;
}
/*
#footer_menu > div:nth-child(1) > ul {
	margin-top: 0;
	align-self: auto;
}*/
#footer_menu > div:nth-child(1) > ul:nth-child(3n-2) {
	width: 288px;
}
#footer_menu > div:nth-child(1) > ul:nth-child(3n-1) {
	width: 242px;
}
#footer_menu > div:nth-child(2) {
	width: 185px;
}
#footer_menu > div ul li {
	padding: 0 20px;
	margin: 10px 0;
}
#footer_menu > div:last-of-type ul li {
	padding: 0;
	margin: 15px 0;
}
#footer_menu > div ul li:not(:first-of-type) a, #footer_menu > div:last-of-type ul li a {
	text-decoration: underline;
}
#footer_menu > div ul li:not(:first-of-type):before, #footer_menu > div:last-of-type ul li:before {
	content: "";
	background-color: #999;
	width: 8px;
	height: 2px;
	display: inline-block;
	margin: 0 8px;
	position: relative;
	top: -5px;
}
#footer_menu > div:not(:last-of-type) ul li:first-of-type {
	font-size: 1.125rem;
	font-weight: bold;
}
#footer_menu ul.homenursing li:first-of-type {
	border-left: 4px solid #eb9b23;
}
#footer_menu ul.visitingcare li:first-of-type {
	border-left: 4px solid #eb6359;
}
#footer_menu ul.renting li:first-of-type {
	border-left: 4px solid #70b812;
}
#footer_menu ul.dayservice li:first-of-type {
	border-left: 4px solid #49bad1;
}
#footer_menu ul.shortstay li:first-of-type {
	letter-spacing: 0px;
	border-left: 4px solid #4078b8;
}
#footer_menu ul.homenursing_s li:first-of-type {
	border-left: 4px solid #b858b8;
}
.f-company {
	margin: 0 auto;
}
.f-company > h3 {
	font-size: 1.75rem;
	text-align: center;
	margin: 0 auto 40px;
}
.f-company > h3 span {
	position: relative;
	z-index: 2;
}
.f-company > h3 span:before {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	transform: translateX(-50%);
	width: 130%;
	height: 50%;
	background: rgba(255,169,37,0.3);
	z-index: -1;
	border-radius: 999px;
}
.f-company > .flex {
	justify-content: space-between;
	max-width: 1100px;
	margin: 0 auto;
}
.f-company > .flex > div {
	width: 49%;
	border: 1px solid #aaa;
	padding: 0 20px 20px;
	border-radius: 10px;
}
.f-company > .flex > div h3 {
	position: relative;
	display: flex;
	align-items: center;
	gap: 15px;
	margin: -11px auto 11px;
}
.f-company > .flex > div h3 .ribbon {
	position: relative;
	width: 50px;
	height: 67px;
	text-align: center;
	background: url(../img/common/company_icon.png) #fff6d9 no-repeat center / auto;
	background-size: 70%;
	top: 0;
}
.f-company > .flex > div h3 .ribbon:before {
	position: absolute;
	content: '';
	right: -10px;
	width: 0;
	height: 0;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #f2dc8a;
}
#address {
	padding: 35px 20px;
}
#address p {
	text-align: center;
	font-size: 0.875rem;
}
#footer_menu > div ul li:before {
	content: "";
}
/*--- footer ---*/

.flex {
	display: flex;
	flex-wrap: wrap;
}
.flex_nowrap {
	flex-wrap: nowrap;
}
.flex_center {
	justify-content: center;
}
.flex_end {
	justify-content: flex-end;
}
.flex_ar {
	justify-content: space-around;
}
.flex_bw {
	justify-content: space-between;
}
.flex_align_center {
	align-items: center;
}
.flex_align_end {
	align-items: flex-end;
}
.ib {
	display: inline-block;
}
.bold {
	font-weight: bold;
}
.btn {
	display: inline-flex;
	color: #fff;
	padding: 20px 20px 20px 30px;
	border-radius: 5px;
	align-items: center;
	position: relative;
	gap: 0 20px;
}
.w_arrow {
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	line-height: 1;
	position: relative;
	width: 16px;
	height: 16px;
	transform: translateX(-25%) rotate(45deg);
	top: 0;
	margin: auto 0 auto auto;
}
.w_arrow:before, .w_arrow:after {
	content: '';
	position: absolute;
	background: currentColor;
	border-radius: 2px;
}
.w_arrow:before {
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
}
.w_arrow:after {
	top: 0;
	right: 0;
	bottom: 0;
	width: 4px;
}
.service_list {
	justify-content: space-between;
	row-gap: 10px
}
.service_list li:not(:has( > .flex)){
	width: calc((100% - 20px) / 3);
/*	width: 360px;*/
	padding: 20px;
}
.service_list li:has(.flex) {
	padding: 20px 0;
}
.service_list li:first-of-type {
	background-color: #e1f3f7;
	width: 100%;
}
.service_list li:nth-of-type(2) {
	background-color: #fbe6e3;
	margin-left: calc(100% / 3 / 2);
}
.service_list li:nth-of-type(3) {
	background-color: #dfebf7;
	margin-right: calc(100% / 3 / 2);
}
.service_list li:nth-of-type(4) {
	background-color: #fff0d9;
}
.service_list li:nth-of-type(5) {
	background-color: #f7e4ef;
}
.service_list li:last-of-type {
	background-color: #eaf3d8;
}
.service_list li a:hover {
	opacity: .6;
}
.service_list li h3 {
	font-size: 1.125rem;
	margin-bottom: clamp(0.625rem, 0.208rem + 0.87vw, 1.25rem); /* 20 -> 10 */
	font-weight: bold;
}
.service_list li h3 span {
	display: inline-block;
	position: relative;
}
.service_list li:nth-child(3) h3 > span span {
	letter-spacing: -4px;
}
#mainmenu .service_list li:nth-child(3) h3 > span {
	letter-spacing: -3px;
}
#mainmenu .service_list li:nth-child(3) h3 > span span {
	letter-spacing: -5px;
}
#mainmenu .service_list li:nth-of-type(4) {
	background: #fff0d9;
}
#mainmenu .service_list li:nth-of-type(4):before {
	display: none;
}
.service_list li h3 > span:before {
	content: "";
	aspect-ratio: 33 / 23;
	width: 28px;
	height: auto;
	display: inline-block;
	position: relative;
	background-size: contain; 
	background-repeat: no-repeat;
	margin-right: 10px;
	margin-bottom: -2px;
}
.service_list li:first-of-type h3 span:before {
	background-image: url("../img/common/leaf_icon04.png");
	margin-left: 20px;
}
.service_list li:nth-of-type(2) h3 span:before {
	background-image: url("../img/common/leaf_icon02.png");
}
.service_list li:nth-of-type(3) h3 > span:before {
	background-image: url("../img/common/leaf_icon05.png");
}
.service_list li:nth-of-type(4) h3 span:before {
	background-image: url("../img/common/leaf_icon01.png");

}
.service_list li:nth-of-type(5) h3 span:before {
	background-image: url("../img/common/leaf_icon06.png");

}
.service_list li:last-of-type h3 span:before {
	background-image: url("../img/common/leaf_icon03.png");
}
.service_list li > .flex {
	row-gap: 10px;
	justify-content: space-between;
	flex-wrap: nowrap;
}
/*
.service_list li:nth-child(2) > div > div,
.service_list li:nth-child(3) > div > div,
.service_list li:nth-child(4) > div,
.service_list li:nth-child(5) > div,
.service_list li:nth-child(6) > div,*/
.service_list li > div:not(.flex),
.service_list li > .flex > div {
	max-width: 320px;
/*	min-width: 280px;*/
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	aspect-ratio: 330 / 295;
}
.service_list li > .flex {
	padding: 0 20px;
}
.service_list li > .flex > div {
	width: 100%;
}
.service_list li > div p {
	padding: 10px 15px;
}
.service_list li > div:not(.flex) p,
.service_list li > .flex > div p {
	display: flex;
	justify-content: space-between;
	width: 100%;
	position: absolute;
	bottom: 0;
	color: #fff;
}
.service_list li:first-of-type div p {
	background-color: #49bad1;
}
.service_list li:nth-of-type(2) div p {
	background-color: #eb6359;	
}
.service_list li:nth-of-type(3) div p {
	background-color: #4078b8;
}
.service_list li:nth-of-type(4) div p {
	background-color: #eb9b23;
}
.service_list li:nth-of-type(5) div p {
	background-color: #b858b8;
}
.service_list li:last-of-type div p {
	background-color: #70b812;
}
.service_list li div p .w_arrow {
	width: 13px;
	height: 13px;
}
nav .service_list {
	max-width: 
}
/*
nav .service_list li:nth-child(2) > div > div,
nav .service_list li:nth-child(3) > div > div,
nav .service_list li:nth-child(4) > div,
nav .service_list li:nth-child(5) > div,
nav .service_list li:nth-child(6) > div,*/
nav .service_list li > div:not(.flex),
nav .service_list li > .flex > div {
	max-width: 275px;
	min-width: inherit;
	aspect-ratio: 275 / 120;
}
nav .service_list li h3 {
	font-size: 1.063rem;
}
nav .service_list li:not(:has( > .flex)){
	padding: 15px;
}
nav .service_list li > .flex {
	padding: 0 15px;
}
.page_top_btn {
	position: fixed;
	right: 2%;
	z-index: 5;
	opacity: 0;
	width: 120px;
	height: 120px;
}
.page_top_btn:before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	background: #eb9b23;
	transform: translate(-50%,-50%) rotate(45deg);
	border-radius: 10px;
}
.page_top_btn:after {
	content: '';
	width: 85%;
	height: 85%;
	position: absolute;
	top: 50%;
	left: 50%;
	border: 1px solid #fff;
	transform: translate(-50%,-50%) rotate(45deg);
	border-radius: 5px;
}
.page_top_btn .w_arrow {
	position: absolute;
	top: 36%;
	left: 50%;
	transform: translate(-50%,-60%) rotate(-45deg);
}
.page_top_btn span:last-child {
	text-align: center;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-30%);
}
.scrolled .page_top_btn {
	display: block;
	cursor: pointer;
	opacity: 1;
}


/*--- other ---*/
#other .flex > div:first-of-type h2 span:first-letter {
	color: #99cc33;
}
#other .flex > div {
	width: 50%;
/*	background-repeat: no-repeat;
	background-size: cover;
	background-position: right bottom;*/
	text-align: center;
	font-weight: bold;
	position: relative;
}
#other .flex > div:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 75%;
	z-index: -1;
	background-repeat: no-repeat;
	background-size: cover;
}
#other .flex > div:first-of-type:before {
	background-image: url("../img/common/contact_bg.jpg");
}
#other .flex > div:last-of-type:before {
	background-image: url("../img/common/recruit_bg.jpg");
}
#other .flex > div > div {
	width: 653px;
	max-width: 90%;
	padding: 0 30px;
/*	margin: -150px auto 0;*/
	margin: 0 auto;
}
#other .flex > div > div p {
	margin-top: 30px;
}
#other .flex > div > div p br,
#club .club_text h3 br {
	display: none;
}
#other .flex > div > div:nth-child(2) {
	background: #fff;
	border-radius: 10px;
	margin: 150px auto 120px;
	padding: 40px 60px;
}
#other .flex > div > div:nth-child(2) > span {
	display: block;
	font-size: clamp(1rem, 0.667rem + 0.69vw, 1.5rem);
}
#other .flex a {
	display: flex;
	border-radius: 5px;
	color: #fff;
	margin: 1rem auto 0;
	font-size: clamp(1rem, 0.667rem + 0.69vw, 1.5rem);
	padding: 1.5rem 1rem 1.5rem 3rem;
}
#other .flex > div span span.tel a {
	margin:0;
	padding:0;
	display: inline-block;
	color: #555;
	background: #fff;
}
#other .flex >div:first-child a {
	background: #70b812;
}
#other .flex >div:last-child a {
	background: #eb9b23;
}
#other .flex > div:first-of-type h2 span:after {
	background-color: #99cc33;
}
#other .w_arrow {
	width: 12px;
	height: 12px;
}
#other span.tel {
	margin-left: 2rem;
	padding-left: 2rem;
	background: url(../img/top/icon-tel.png) no-repeat;
	background-position: left 0 center;
}
/*--- other ---*/
@media screen and (max-width: 1380px) {
	#other span.tel {
		display: block;
		line-height: 1.8;
		margin: 0 auto;
		width: 150px;
	}
}
@media screen and (max-width: 1210px) {
	#other .flex > div > div p br {
		display: block;
	}
	#other .flex > div > div:nth-child(2) {
		padding: 40px;
	}
	#other .flex a {
		padding: 1.5rem 1rem 1.5rem 2rem;
	}
}

@media screen and (max-width: 1156px) {
/*	#service .service_list li:nth-of-type(2),
	#service .service_list li:nth-of-type(3) {
		margin: 0;
	}*/

}


@media screen and (max-width: 960px) {
	/*--- header ---*/
	header > div {
		flex-wrap: wrap;
	}
	header div h1 {
		visibility: visible;
		min-width: 190px;
		width: 53%;
		max-width: 340px;
		position: absolute;
		top: 30px;
	}
	header div:has(> #mobile_nav:checked) h1 {
		position: relative;
		margin-bottom: 50px;
		top: 18px;
	}
	.scrolled header {
		height: 90px;
		background: #fefaf7;
		opacity: 0.9;
	}
	.scrolled header h1 {
		top: 20%;
	}
	/*- mobile_nav -*/
	.mobile_nav_box, .mobile_nav_button {
		opacity: 1;
		visibility: visible;
	}
	.mobile_nav_box {
		display: block;
	}
	#mainmenu {
		position: relative;
	}
	#mainmenu:not(:has(#mobile_nav:checked)) {
		max-height: 0;
	}
	#mainmenu > ul {
		align-items: flex-start;
		display: flex;
		flex-direction: column;
		left: 0;
		padding: 2rem;
		position: relative;
		transform: translateX(-120%);
/*		transition: 0.3s;*/
		width: 100%;
	}
	#mobile_nav:checked ~ #mainmenu ul {
		transform: translateX(0%);
/*		transition: 0.3s;*/
		background-color: transparent;
		border-radius: 0;
		filter: none;
	}
	#mobile_nav:checked ~ #mainmenu > ul > li:after, #mobile_nav:checked ~ #mainmenu > ul > li > a:before {
		content: none;
	}
	#mobile_nav:checked ~ #mainmenu > ul > li {
		display: block;
		width: 100%;
		position: relative;
		padding: 0;
	}
	#mobile_nav:checked ~ #mainmenu > ul > li:before {
		position: absolute;
		left: 0;
		top: 35px;
/*		transform: translateY(-50%);*/
		content: '';
		width: 10px;
		height: 10px;
		background: #EB9A24;
		border-radius: 3px;
	}
	#mobile_nav:checked ~ #mainmenu > ul > li:last-child {
		max-width: 300px;
		margin: 30px auto 0;
	}
	#mobile_nav:checked ~ #mainmenu > ul > li:last-child:before {
		display: none;
	}
	#mobile_nav:checked ~ #mainmenu > ul > li > a {
		margin-top: 0;
		position: static;
		padding: 30px 20px;
		font-size: clamp(1rem, 0.778rem + 0.46vw, 1.125rem);
		width: auto;
		width: 100%;
		border-top: 1px dashed #999;
	}
	#mobile_nav:checked ~ #mainmenu > ul > li:first-child a {
		border-top: none;
	}
	#mobile_nav:checked ~ #mainmenu > ul > li:nth-last-child(2) a {
		border-bottom: 1px dashed #999;
	}
	#mobile_nav:checked ~ #mainmenu > ul > li:last-child a {
		padding: 1.2rem 1rem 1.2rem 2rem;
		border-top: none;
	}

	nav ul > li.has_childmenu span.w_arrow {
		width: 14px;
		height: 14px;
		left: auto;
		bottom: auto;
		transform: translateX(0) rotate(135deg);
		right: 0;
		display: none;
	}
	.mobile_nav_button {
		display: flex;
	}
	.mobile_nav_button .mobile_nav_text:after {
		content: "MENU";
		display: block;
		font-size: 0.875rem;
		color: #595757;
		text-align: center;
		line-height: 0.875;
	}
	#mobile_nav:checked ~ .mobile_nav_button .mobile_nav_text:after {
		content: "CLOSE";
	}
	#mobile_nav:checked ~ .mobile_nav_button .mobile_nav_button-mark {
		translate: 3px;
	}
	#mobile_nav:checked ~ .mobile_nav_button .mobile_nav_button-mark:nth-of-type(1) {
		transform: translate(2px, 1px) rotate(45deg);
		transform-origin: 0%;
	}
	#mobile_nav:checked ~ .mobile_nav_button .mobile_nav_button-mark:nth-of-type(2) {
		opacity: 0;
	}
	#mobile_nav:checked ~ .mobile_nav_button .mobile_nav_button-mark:nth-of-type(3) {
		transform: translate(2px, 3px) rotate(-45deg);
		transform-origin: 0%;
	}
	nav .w_arrow {
		display: inline-block;
	}
	/*
	#mobile_nav:checked ~ #mainmenu > ul .childmenu {
		position: static;
		opacity: 1;
		visibility: visible;
		height: auto;
		margin: -25px 0 25px;
	}*/
	nav ul > li.has_childmenu:hover .childmenu {
		opacity: 0;
		visibility: hidden;
	}
	/*childŠJ*/
	#mobile_nav:checked ~ #mainmenu > ul .childmenu.open {
		position: static;
		opacity: 1;
		visibility: visible;
		height: auto;
		margin: -25px 0 25px;
		transition: .3s;
		transform: translateX(0);
	}
	#mobile_nav:checked ~ #mainmenu .has_childmenu > a {
		position: relative;
		width: auto;
	}/*
	#mobile_nav:checked ~ #mainmenu .has_childmenu > a:after {
		content: '';
		position: absolute;
		right: 1rem;
		top: 40%;
		display: inline-block;
		color: #C96C27;
		line-height: 1;
		width: 12px;
		height: 12px;
		border: 3px solid currentColor;
		border-left: 0;
		border-bottom: 0;
		transform: translateY(-25%) rotate(135deg);
	}
	*/
	nav ul > li.has_childmenu > span {
		display: block;
		cursor: pointer;
		left: auto;
		right: 5px;
		top: 20px;
		
	}
	#mobile_nav:checked ~ #mainmenu .has_childmenu:has(.open) > span {
		transform: translateY(25%) rotate(-45deg);
		right: 8px;
		top: 22px;
		transform-origin: center center;
	}
	#mobile_nav:checked ~ #mainmenu > ul .childmenu.open .service_list li {
		margin: 0 0 0 1rem;
	}
	
	#mobile_nav:checked ~ #mainmenu > ul .childmenu .service_list img {
		display: none;
	}
	nav ul > li .childmenu > div {
		background: none;
		padding: 0;
	}
	nav .service_list li > div:not(.flex),
	nav .service_list li > .flex > div {
		aspect-ratio: auto;
		max-width: none;
	}
	nav .service_list li > div:not(.flex) a,
	nav .service_list li > .flex > div a {
		padding: 0.25rem 0 0.25rem 1.5rem;
		display: inline-block;
		width: 100%;
		text-decoration: underline;
	}
	nav .service_list li > div:not(.flex) p,
	nav .service_list li > .flex > div p {
		position: static;
		color: #555;
		background: none;
		font-weight: normal;
	}
	nav .service_list li div p:before {
		content: '';
		width: 12px;
		height: 3px;
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}
	nav .service_list li:first-of-type div p:before {
		background: #49bad1;
	}
	nav .service_list li:nth-child(2) div p:before {
		background: #eb6359;
	}
	nav .service_list li:nth-child(3) div p:before {
		background: #4078b8;
	}
	nav .service_list li:nth-child(4) div p:before {
		background: #eb9b23;
	}
	nav .service_list li:nth-child(5) div p:before {
		background: #b858b8;
	}
	nav .service_list li:nth-child(6) div p:before {
		background: #70b812;
	}
	nav .service_list li h3 {
		display: none;
	}
	nav .service_list li:has(.flex),
	nav .service_list li > .flex,
	nav .service_list li:not(:has( > .flex)),
	nav .service_list li > div p {
		padding: 0;
	}
	nav .service_list li:not(:has( > .flex)),
	nav .service_list li:first-of-type,
	#mainmenu .service_list li:nth-of-type(4) {
		background: none;
		width: 100%;
	}
	nav .service_list li,
	nav .service_list li:nth-of-type(2),
	nav .service_list li:nth-of-type(3) {
		margin: 0 auto 0;
		width: 100%;
	}
	nav .service_list li > .flex {
		flex-wrap: wrap;
	}


	/*- mobile_nav -*/
	/*--- header ---*/
	header div h1 {
		z-index: 3;
		display: block;
	}
	/*--- header ---*/
}
@media screen and (max-width: 768px) {
	/* tags */
	a[href^="tel:"],
	span:has(a[href^="tel:"]) {
		pointer-events: auto;
		color: 
	}
	.link_none {
		pointer-events: none !important;
		text-decoration: none !important;
		color: #555 !important;
	}
	/* tags */
	.containter,.news .containter {
		width: 95%;
	}
	#footer_menu {
		padding: 30px 0 40px;
	}
	.flex,#footer_menu > div {
		display: block;
	}
	#footer_menu > div:nth-child(1),
	#footer_menu > div:nth-child(1) > ul:nth-child(3n-2),
	#footer_menu > div:nth-child(1) > ul:nth-child(3n-1),
	#footer_menu > div:nth-child(2) {
		width: 100%;
	}
	.f-company > .flex > div {
		width: 100%;
	}
	.f-company > .flex > div:nth-child(n+2) {
		margin-top: 40px;
	}
	#footer_menu > div ul {
		margin-top: 30px;
	}
	.service_list li,
	.service_list li:nth-of-type(2),
	.service_list li:nth-of-type(3) {
		max-width: 360px;
		margin: 0 auto 20px;
	}
	#page_top {
		transform: scale(0.8);
		transform-origin: right top;
	}
	#other .flex > div {
		width: 100%;
	}
	#other .flex > div:before {
		bottom: -50px;
	}

}
@media screen and (max-width: 500px) {
	#other .flex > div > div:nth-child(2) {
		padding: 40px 30px;
	}
	.scrolled header h1 {
		top: 30%;
	}
}