/* CSS Document */

body {
	min-width: 1080px;
	max-width: 1920px;
	margin: auto;
}
.inner {
	max-width: 1020px;
	margin: auto;
	padding: 0 20px;
	box-sizing: border-box;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}



#header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 30px 15px 25px;
	box-sizing: border-box;
	width: 100%;
	max-width: 1440px;
	margin: auto;
}
#header h1 {
	width: 400px;
	flex-shrink: 0;
}


#header nav.global {
	font-weight: 500;
	line-height: 1.4;
}
#header nav.global ul {
	display: flex;
	justify-content: flex-end;
}
#header nav.global ul li {
	word-break: keep-all;
}
#header nav.global ul li a {
	padding: 5px;
}
#header nav.global ul li a:hover {
}
#header nav.global ul.nav1 {
	font-size: 105%;
	display: flex;
	gap: 10px;
}
#header nav.global ul.nav1 li,
#header nav.global ul.nav1 li a {
	display: flex;
	gap: 8px;
}
#header nav.global ul.nav1 li.tel {
	font-size: 140%;
	letter-spacing: 3px;
	color: #1B745B;
}
#header nav.global ul.nav1 li.tel::before {
	content: url("../img/i_tel_green.svg");
	width: 18px;
	line-height: 1;
	position: relative;
  top: 6px;
}
#header nav.global ul.nav1 li.mail a {
	color: #fff;
	background: #1B745B;
	padding: 5px 20px;
}
#header nav.global ul.nav1 li.mail a::before {
	content: url("../img/i_mail2_wht.svg");
	width: 22px;
  line-height: 1;
	position: relative;
	top: 4px;
}
#header nav.global ul.nav1 li.recruit a {
	background: #E2E1DE;
	color: #1B745B;
	padding: 5px 40px;
}


#header nav.global ul.nav2 {
	gap: 20px;
	margin: 20px 0 0;
}
#header nav.global ul.nav2 li a {
	padding: 2px 12px;
	border-bottom: 1px solid #1B745B;
}
#header nav.global ul.nav2 li a:hover {
	color: #1B745B;
}
#header nav.global ul.nav2 li.current a {
	color: #fff;
	background: #1B745B;
	/*pointer-events: none;*/
}




#header nav.popmenu {
	width: 60px;
	position: absolute;
	top: 0;
  right: 0;
	display: none;
}
#header nav.popmenu label.menuBtn {
	display: block;
	background: rgba(255,255,255,.8);
	padding: 10px;
  box-sizing: border-box;
	width: 60px;
	height: 70px;
	position: fixed;
	z-index: 99;
}
#header nav.popmenu label.menuBtn:before {
	content: url("../img/menu.svg");
  position: relative;
	top: 4px;
}
#header nav.popmenu input:checked ~ .menuBtn:before {
	content: url("../img/menu_close.svg");
	z-index: 99;
	position: relative;
}
#header nav.popmenu input:checked ~ .menuBtn {
	color: #fff;
}
#header nav.popmenu label.menuBtn:hover {
	cursor: pointer;
	color: #fff;
}
#header nav.popmenu .menu {
	position: absolute;
	top: 0;
	right: 0;
	height: 0;
	width: 380px;
	overflow: hidden;
	transition: all .4s;
	cursor: auto;
	z-index: 9;
	opacity: 0;
	pointer-events: none;
}
#header nav.popmenu .menu .menuInner {
	padding: 80px 40px 40px;
  background: rgba(230,240,240,.98);
	position: fixed;
  height: 0;
	width: 380px;
  box-sizing: border-box;
	transition: all .4s;
}
#header nav.popmenu .menu .menuInner ul {
}
#header nav.popmenu .menu .menuInner ul li {
}
#header nav.popmenu .menu .menuInner ul li.logo {
	width: 280px;
	margin: 0 auto 20px;
}
#header nav.popmenu .menu .menuInner ul li:not(:first-of-type) a {
	display: block;
	padding: 7px 10px;
	margin: 3px 0;
	color: #1b745b;
	border-bottom: 1px solid #1b745b;
}
#header nav.popmenu .menu .menuInner ul li:not(:first-of-type) a:hover {
	color: #fff;
	background: #1b745b;
}
#header nav.popmenu .menu .menuInner ul li.tel {
	margin: 20px 0 0;
}
#header nav.popmenu .menu .menuInner ul li.tel a {
	font-size: 160%;
	font-weight: 500;
  letter-spacing: 3px;
  color: #1B745B;
	border: none;
	display: flex;
  justify-content: center;
  gap: 8px;
}
#header nav.popmenu .menu .menuInner ul li.tel a::before {
	content: url("../img/i_tel_green.svg");
	width: 18px;
	line-height: 1;
	position: relative;
	top: 6px;
}
#header nav.popmenu input {
	display: none;
}
#header nav.popmenu input:checked ~ .menu {
	box-sizing: border-box;
	height: 100vh;
	width: 380px;
  top: 0;
	right: 0;
	opacity: 1;
	overflow: scroll;
	pointer-events: auto;
}
#header nav.popmenu input:checked ~ .menu .menuInner{
	height: 100vh;
}
#header nav.popmenu .menu .close {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 3em;
	line-height: 1em;
	cursor: pointer;
}
#header nav.popmenu .menu .close:hover {
	color: #666;
}


.breadcrumbs {
	padding: 30px 25px;
	display: flex;
	gap: 5px;
}
.breadcrumbs::before {
	font-family: 'Material Icons';
	content: '\e88a';
	font-size: 20px;
	line-height: 1;
	color: #333;
	margin-right: 2px;
}
.breadcrumbs ul {
	font-size: 80%;
	line-height: 1.6;
	letter-spacing: 0;
}
.breadcrumbs li {
	display: inline;
}
.breadcrumbs li a:hover {
	text-decoration: underline;
}
.breadcrumbs li:not(:last-of-type):after{
	content: '';
	border: 1px solid #666;
	border-width: 1px 1px 0 0;
	transform: rotate(45deg);
	margin: 0 10px;
	width: 7px;
	height: 7px;
	display: inline-block;
}



.titleBox {
	padding: 15px;
}
.titleSet {
	line-height: 1.8;
	display: flex;
	flex-direction: column;
	width: 240px;
	position: relative;
	padding: 17px 30px 8px;
}
.titleSet strong {
	font-size: 125%;
	font-weight: 400;
	position: relative;
}
.titleSet span {
	font-family: 'Graphik Compact Regular';
	font-size: 95%;
	color: #1b745b;
	border-top: 1px solid #1b745b;
	padding: 0 3px;
	position: relative;
}
.titleSet::before {
	content: '';
	border-bottom: 90px solid #E2E1DE;
	border-left: 0 solid transparent;
	border-right: 90px solid transparent;
	position: absolute;
	left: 0;
	bottom: 0;
}



a.btn {
	line-height: 1.4;
	text-align: center;
	color: #fff;
	background: #1B745B;
	width: 125px;
	display: inline-block;
  padding: 8px 10px 8px 5px;
	margin: 0 0 0 5px;
	position: relative;
	clip-path: polygon(-5px 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, -5px 100%);
}
a.btn::after {
	content: '';
  width: 5px;
  height: 100%;
  border-left: 4px solid #1B745B;
  position: absolute;
  top: 0;
  left: -5px;
}
a.btn.mail {
	font-size: 120%;
	display: flex;
  justify-content: center;
  gap: 8px;
  width: 250px;
	padding: 12px;
}
a.btn.mail::before {
	content: url("../img/i_mail2_wht.svg");
	width: 22px;
	line-height: 1;
	position: relative;
	top: 4px;
}






#main {
}



/*Open User Map*/
main .oum_location_text {
	padding-right: 3px !important;
}
main .oum_location_address {
	font-size: 13px !important;
	margin-bottom: 5px !important;
}
main h3.oum_location_name {
	font-size: 16px !important;
}
main .oum_location_description {
	font-size: 12px !important;
	line-height: 1.4;
	text-align: justify;
	max-height: 85px;
  overflow: auto;
	padding-right: 12px;
}
main .oum_location_link {
	font-size: 13px !important;
  line-height: 1;
	text-align: right;
	margin: 10px 10px 0 0;
}
main .oum_location_link a {
	border: 1px solid #4fa85d;
  display: inline-block;
  padding: 4px 6px 3px !important;
}





#contact {
	background: #E2E1DE;
	padding: 60px 0;
}
#contact .titleSet {
	margin: auto;
}
#contact .titleSet::before {
	border-bottom-color: #fff;
}
#contact .tel {
  font-size: 120%;
	line-height: 1.4;
  background: #fff;
  border-radius: 3px;
  box-sizing: border-box;
  max-width: 820px;
	margin: 70px auto 40px;
  padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
#contact .tel a {
  font-size: 140%;
	font-weight: 500;
	letter-spacing: 2px;
  color: #1B745B;
	display: flex;
  gap: 10px;
}
#contact .tel a::before {
	content: url("../img/i_tel.svg");
	width: 18px;
	line-height: 1;
	position: relative;
	top: 6px;
}
#contact .mail {
	margin: auto;
	text-align: center;
}
#contact .mail span {
	font-size: 90%;
	display: inline-block;
	margin: 10px 0 0;
}





#footer {
	position: relative;
	padding: 40px 0 0;
}
#footer .ftNav {
	max-width: 820px;
  margin: 0 auto 60px;
}
#footer .ftNav ul {
	display: flex;
	justify-content: space-between;
}
#footer .ftNav ul.nav1 li {
	text-align: center;
	width: 20%;
	border-left: 1px solid #1b745b;
}
#footer .ftNav ul.nav1 li:last-of-type {
	border-right: 1px solid #1b745b;
}
#footer .ftNav ul.nav1 li a {
	display: block;
	padding: 5px;
}
#footer .ftNav ul.nav1 li a:hover {
	color: #1b745b;;
}
#footer .ftNav ul.nav2 {
	font-size: 120%;
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
	gap: 30px;
	margin: 30px 0;
}
#footer .ftNav ul.nav2 li {
	width: 33.3%;
}
#footer .ftNav ul.nav2 li a {
	display: flex;
	justify-content: center;
  gap: 8px;
  padding: 5px;
}
#footer .ftNav ul.nav2 li.recruit a {
	background: #E2E1DE;
  color: #1B745B;
}
#footer .ftNav ul.nav2 li.tel a {
	font-size: 120%;
  letter-spacing: 2px;
  color: #1B745B;
	padding: 3px;
}
#footer .ftNav ul.nav2 li.tel a::before {
	content: url("../img/i_tel_green.svg");
	width: 18px;
	line-height: 1;
	position: relative;
	top: 6px;
}
#footer .ftNav ul.nav2 li.mail a {
	color: #fff;
  background: #1B745B;
}
#footer .ftNav ul.nav2 li.mail a::before {
	content: url("../img/i_mail2_wht.svg");
	width: 22px;
	line-height: 1;
	position: relative;
	top: 4px;
}

#footer address {
}
#footer address h2 {
	max-width: 380px;
  margin: 30px auto;
}
#footer address p {
	max-width: 580px;
  margin: auto;
	white-space: nowrap;
}
#footer small {
	font-size: 90%;
	text-align: center;
	color: #fff;
	background: #E2E1DE;
	display: block;
	padding: 10px 0;
	margin: 30px 0 0;
}
#footer .topBtnBox {
	width: 80px;
	position: absolute;
	bottom: 20px;
	right: 20px;
}
#footer .topBtnBox #topBtn {
	width: 80px;
}
#footer .topBtnBox #topBtn:hover {
	opacity: 0.8;
	cursor: pointer;
}





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

	body {
		min-width: initial;
		font-size: 14px; font-size: 1.4rem;
		line-height: 1.8;
	}
	.inner { width: auto;}
	
	
	
	#header {
		padding: 15px 10px;
	}
	#header h1 {
		width: 250px;
	}
	#header nav.global {
		display: none;
	}
	#header nav.popmenu {
		display: block;
	}
	#header nav.popmenu .menu {
		width: 100vw;
	}
	#header nav.popmenu input:checked ~ .menu {
		width: 100vw;
	}
	#header nav.popmenu .menu .menuInner {
		width: 100vw;
		padding: 80px 20px 20px;
	}
	#header nav.popmenu input:checked ~ .menu .menuInner {
		width: 100vw;
	}
	#header nav.popmenu .menu .menuInner ul li:not(:first-of-type) a {
		font-size: 110%;
	}
	#header nav.popmenu .menu .menuInner ul li.tel a {
		font-size: 180%;
	}
	#header nav.popmenu .menu .menuInner ul li.tel a::before {
		width: 20px;
		top: 12px;
	}
	#header nav.popmenu .menu .menuInner ul li.tel a:hover {
		color: #1B745B;
		background: none;
		opacity: 1;
	}

	
	.titleBox {
		padding: 10px;
	}
	.titleSet {
		line-height: 1.6;
		max-width: 160px;
		position: relative;
		padding: 10px 15px 0;
	}
	.titleSet strong {
		font-size: 110%;
	}
	.titleSet span {
		font-size: 90%;
		border-top: 1px solid #1b745b;
	}
	.titleSet::before {
		border-width: 0 55px 55px 0;
	}
	
	
	a.btn {
		width: 100px;
		padding: 5px 10px 7px 5px;
		clip-path: polygon(-5px 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, -5px 100%);
	}
	a.btn.mail {
		font-size: 110%;
		width: 200px;
		padding: 10px;
	}
	
	

	
	#main {
	}
	#main section {
	}
	
	
	
	#contact {
		padding: 30px 0;
	}
	#contact .tel {
		font-size: 100%;
		margin: 30px auto;
		padding: 10px;
		gap: 5px;
	}
	#contact .tel a {
		letter-spacing: 1px;
		gap: 5px;
	}
	#contact .tel a::before {
		width: 14px;
		top: 5px;
	}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
  
	
	#footer {
		padding: 30px 0 0;
	}
	#footer .ftNav {
		display: none;
	}
	#footer address {
		text-align: center;
	}
	#footer address h2 {
		max-width: 250px;
		margin: 15px auto;
	}
	#footer address p {
		font-size: 90%;
		line-height: 1.4;
		margin: 20px 0;
	}
	
	
	#footer .topBtnBox {
		width: 40px;
		right: 10px;
	}
	#footer .topBtnBox #topBtn {
		width: 40px;
	}
	#footer small {
		font-size: 80%;
    line-height: 1.2;
		display: flex;
    flex-direction: column;
	}
	
	
	
}


