@charset "UTF-8";
/* --------------------------
  TITLE : エステクロス 
  URI : escross.jp
  (C) エステクロス.
-------------------------- */

ul {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
}

/* STRUCTURES
-------------------------- */

body {
	-webkit-text-size-adjust: 100%;
	color: #222222;
	background-color: #f5f5f5;
	font-size: 12px;
	font-family: "Noto Sans JP", sans-serif;
	text-align: left;
}

a,
a:visited {
	color: #222222;
}

main {
		width: 100%;
}

@media screen and (min-width: 980px) {

	main {
		width: 960px;
		margin: 0 auto;
		overflow: hidden;
	}

}

#side {
	width: 100%;
}

@media screen and (min-width: 980px) {

	#side {
		width: 280px;
		float: left;
	}

}

#wrapper {
	width: 100%;
}

@media screen and (min-width: 980px) {

	#wrapper {
		float: right;
		width: 660px;
		margin: 20px 20px 20px 0;
		overflow: hidden;
	}

}

/* HEADER
-------------------------- */

header#main_header {
	background-color: #ffffff;
	height: 50px;
	width: 100%;
	padding: 0 15px;
	box-sizing: border-box;
	box-shadow: 0 1px 3px rgba(0,0,0,0.2);
	z-index: 5;
	position: relative;
}

header#main_header .header_wrap {
	width: 100%;
}

header#main_header .logo {
	padding-top: 8px;
}

header#main_header .logo a {
	width: 240px;
	height: 33px;
	display: inline-block;
}

header#main_header .logo img {
	width: 35px;
	height: 33px;
	float: left;
}

header#main_header .logo .logo_text {
	font-size: 9px;
	line-height: 13px;
	margin-left: 7px;
	float: left;
}

header#main_header .logo .logo_text img {
	width: 115px;
	height: 16px;
	margin-top: 1px;
}

@media screen and (min-width: 980px) {

	header#main_header {
		height: 80px;
		padding: 0;
		margin: 0;
	}

	header#main_header .header_wrap {
		width: 960px;
		margin: 0 auto;
		padding: 0 20px;
	}

	header#main_header .logo {
		padding-top: 15px;
	}
	
	header#main_header .logo a {
		width: 350px;
		height: 45px;
	}
	
	header#main_header .logo img {
		width: 48px;
		height: 45px;
	}
	
	header#main_header .logo .logo_text {
		font-size: 11px;
		line-height: 18px;
		margin-top: 1px;
		margin-left: 10px;
	}
	
	header#main_header .logo .logo_text img {
		width: 143px;
		height: 20px;
	}

}

/* NAVI
-------------------------- */

nav {
	display: block;
	position: fixed;
	top: 0;
	right: -230px;
	bottom: 0;
	width: 230px;
	background: #ffffff;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transition: all .5s;
	z-index: 3;
	opacity: 0;
}

.open nav {
	right: 0;
	opacity: 1;
}

nav .inner {
	padding: 15px;
}

nav .inner ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

nav .inner ul li {
	position: relative;
	margin: 0;
	border-bottom: 1px solid #e7e7e7;
}

nav .inner ul li a {
	display: block;
	color: #222;
	font-size: 14px;
	padding: 1em;
	text-decoration: none;
	transition-duration: 0.2s;
}

nav .inner ul li a:hover {
	background: #e4e4e4;
}

nav .inner ul li span {
	display: block;
	color: #222;
	font-size: 14px;
	padding: 1em;
	text-decoration: none;
	transition-duration: 0.2s;
	cursor: pointer;
}

nav .inner ul li span:hover {
	background: #e4e4e4;
}

nav .inner ul li select {
	position: absolute;
	top: 0;
	left: 0;
	height: 49px;
	width: 100%;
	opacity: 0.0;
	cursor: pointer;
}

.toggle_btn {
	display: block;
	position: fixed;
	top: 5px;
	right: 10px;
	width: 40px;
	height: 40px;
	transition: all .5s;
	cursor: pointer;
	z-index: 3;
	background:rgba(255,255,255,0.5);
  	border-radius: 50%;
}

.open .toggle_btn {
	right: 345px;
}

.toggle_btn span {
	display: block;
	position: absolute;
	left: 7px;
	width: 25px;
	height: 2px;
	background-color: #333;
	border-radius: 4px;
	transition: all .5s;
}

.toggle_btn span:nth-child(1) {
	top: 12px;
}

.toggle_btn span:nth-child(2) {
	top: 19px;
}

.toggle_btn span:nth-child(3) {
	bottom: 11px;
}

.open .toggle_btn {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
	right: 235px;
}

.open .toggle_btn span:nth-child(1), .open .toggle_btn span:nth-child(3) {
	width: 12px;
}

.open .toggle_btn span:nth-child(1) {
	-webkit-transform: translate(16px,3px) rotate(45deg);
	transform: translate(16px,3px) rotate(45deg);
}

.open .toggle_btn span:nth-child(3) {
	-webkit-transform: translate(16px,-4px) rotate(-45deg);
	transform: translate(16px,-4px) rotate(-45deg);
}

#mask {
	display: none;
	transition: all .5s;
}

.open #mask {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .8;
	z-index: 2;
	cursor: pointer;
}

.job_form {
    display: none;
    position: fixed;
    z-index: 15;
    top: 5%;
    left: 5%;
    width: 90%;
    padding: 50px 20px;
    background-color: #e7e7e7;
	font-size: 14px;
}

.job_form label.search_list {
    display: inline-flex;
    align-items: center;
    position: relative;
	width: 100%;
	margin-bottom: 10px;
}

.job_form label.search_list::after {
    position: absolute;
    right: 15px;
    width: 10px;
    height: 7px;
    background-color: #535353;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    pointer-events: none;
}

.job_form label.search_list select {
    appearance: none;
    width: 100%;
    height: 40px;
    padding: 7px 10px;
    border: 1px solid #b7b7b7;
    border-radius: 3px;
    background-color: #fff;
    color: #333333;
    font-size: 1em;
    cursor: pointer;
}

.job_form button.submit_btn {
	display: block;
	width: 200px;
	height: 40px;
	font-size: 14px;
	line-height: 38px;
	color: #222222;
	border: 1px solid #b7b7b7;
	background-image: url(/common/img/arrow-w.gif);
	background-repeat: no-repeat;
	background-size: 15px 10px;
	background-position: right 6px center;
	background-color: #ffffff;
	margin: 20px auto 0 auto;
	cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
	background: #000;
	opacity: .8;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.job_form .close {
	display: block;
	position: absolute;
	width: 25px;
	height: 25px;
	bottom: -30px;
	right: 0;
}
   
.job_form .close::before,
.job_form .close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2px;
	height: 25px;
	background: #ffffff;
}
   
.job_form .close::before {
	transform: translate(-50%,-50%) rotate(45deg);
}
   
.job_form .close::after {
	transform: translate(-50%,-50%) rotate(-45deg);
}

@media screen and (min-width: 980px) {

	nav {
		display: none;
	}
	
	.open nav {
		display: none;
	}

	.toggle_btn {
		display: none;
	}
	
	.open .toggle_btn {
		display: none;
	}
	
	.open #mask {
		display: none;
	}

}

/* PANKUZU
-------------------------- */

#ex_breadcrumb {
	background-color: #e7e7e7;
	height: 35px;
	line-height: 35px;
	z-index: -1;
}

#ex_breadcrumb .breadcrumb {
	margin: 0;
	padding: 0;
	display:flex;
	list-style: none;
    overflow-x: auto;
    word-break: keep-all;
    white-space: nowrap;
	font-size: 10px;
}
  
#ex_breadcrumb .breadcrumb li {
	display: inline;
	list-style: none;
	position: relative;
	padding: 0 20px 0 15px;
}
  
#ex_breadcrumb .breadcrumb li:not(:last-child)::before,
#ex_breadcrumb .breadcrumb li:not(:last-child)::after{
    position: absolute;
    width: 0;
    height: 0;
    border-top: 18px solid transparent;
    border-bottom: 17px solid transparent;
    content:'';
}

#ex_breadcrumb .breadcrumb li:not(:last-child)::before{
    right: 0;
    border-left: 7px solid #d4d4d4;
}

#ex_breadcrumb .breadcrumb li:not(:last-child)::after{
    right: 1px;
    border-left: 7px solid #e7e7e7;
}
  
#ex_breadcrumb .breadcrumb li a {
	text-decoration: none;
	color: #222222;
}

@media screen and (min-width: 980px) {

	#ex_breadcrumb {
		height: 38px;
		line-height: 38px;
	}
	
	#ex_breadcrumb .breadcrumb {
		width: 960px;
		margin: 0 auto;
		font-size: 11px;
		padding: 0 5px;
	}
	  
	#ex_breadcrumb .breadcrumb li {
		padding: 0 25px 0 20px;
	}
	  
	#ex_breadcrumb .breadcrumb li:not(:last-child)::before,
	#ex_breadcrumb .breadcrumb li:not(:last-child)::after{
		border-top: 19px solid transparent;
		border-bottom: 19px solid transparent;
	}

}

/* AREA
-------------------------- */

#area_link {
	display: none;
}

#top #area_link {
	display: block;
}

#area_link {
	margin-top: 40px;
	width: 100%;
	padding: 0 15px;
	box-sizing: border-box;
}

#area_link .ar_unit {
	background-color: #ffffff;
	margin-bottom: 20px;
	padding: 20px 15px;
}

#area_link .ar_unit h2 {
	font-size: 16px;
	font-weight: bold;
}

#area_link .ar_unit ul {
	display: grid;
	gap: 5px;
	grid-template-columns: repeat(2, 1fr);
	margin: 10px 0 5px 0;
}

#area_link .ar_unit ul li {
	height: 40px;
	line-height: 40px;
	list-style-type: none;
	background-color: #f5f5f5;
	font-size: 12px;
	background-image: url(/common/img/arrow-gr.gif);
	background-repeat: no-repeat;
	background-size: 12px 8px;
	background-position: right 4px center;
}

#area_link .ar_unit ul li a {
	height: 40px;
	display: block;
	padding-left: 15px;
}

#area_link .ar_unit ul li a:hover {
	background-color: #f7f7f7;
}

@media screen and (min-width: 980px) {

	#area_link {
		display: block;
		margin-top: 20px;
		width: 280px;
		padding: 0 20px;
	}
	
	#area_link .ar_unit {
		padding: 20px;
		margin: 0 0 10px 0;
	}

	#area_link .ar_unit ul {
		gap: 3px;
		grid-template-columns: repeat(1, 1fr);
		margin: 10px 0 0 0;
	}
	
	#area_link .ar_unit ul li {
		height: 30px;
		line-height: 30px;
		font-size: 11px;
		background-size: 15px 10px;
		background-position: right 6px center;
	}
	
	#area_link .ar_unit ul li a {
		height: 30px;
		padding-left: 20px;
	}

}

/* FOOTER-AD
-------------------------- */

#f_ad {
	margin-top: 40px;
	padding: 0 15px;
}

#f_ad img {
	background-color: #ffffff;
}

#f_ad img:hover {
	opacity: 0.8;
}

#f_ad .ad_100 {
	width:100%;
	margin-bottom: 10px;
}

#f_ad .ad_100 a,
#f_ad .ad_100 img {
	width:100%;
}

#f_ad .ad_50 ul {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 10px;
}

#f_ad .ad_50 ul li {
	list-style-type: none;
}

#f_ad .ad_50 ul li a,
#f_ad .ad_50 ul li img {
	width: 100%;
}

#f_ad .ad_free ul {
	display: block;
	gap: 10px;
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 10px;
	clear: both;
	overflow: hidden;
}

#f_ad .ad_free ul li {
	list-style-type: none;
	float: left;
	margin-left: 10px;
}

#f_ad .ad_free ul li:first-child {
	margin-left: 0;
}

@media screen and (min-width: 481px) {

	#f_ad {
		width: 400px;
	}

}

@media screen and (min-width: 980px) {

	#f_ad {
		margin-top: 20px;
		width: 280px;
		padding: 0 20px;
	}
	
	#f_ad .ad_free ul li {
		margin-bottom: 10px;
	}

}

/* FOOTER
-------------------------- */

footer {
	clear: both;
	width: 100%;
	background-color: #222222;
	padding: 15px;
	box-sizing: border-box;
	margin-top: 40px;
	color: #f5f5f5;
}

footer .logo {
	padding-top: 15px;
}

footer .logo a {
	width: 240px;
	height: 33px;
	display: inline-block;
	color: #f5f5f5;
}

footer .logo img {
	width: 35px;
	height: 33px;
	float: left;
}

footer .logo .logo_text {
	font-size: 9px;
	line-height: 13px;
	margin-left: 7px;
	float: left;
}

footer .logo .logo_text img {
	width: 115px;
	height: 16px;
	margin-top: 1px;
}

footer ul.footer_link {
	margin: 10px 0 10px 0px;
}

footer ul.footer_link li {
	list-style-type: none;
	margin: 15px 0;
}

footer ul.footer_link li a {
	color: #f5f5f5;
}

footer small {
	display: block;
	text-align: center;
	font-size: 9px;
	margin: 30px 0 0 0;
}

@media screen and (min-width: 980px) {

	footer .footer_wrap{
		width: 960px;
		margin: 0 auto;
		padding: 0 20px;
	}

	footer .logo {
		clear: both;
		padding-top: 15px;
	}
	
	footer .logo a {
		width: 350px;
		height: 45px;
	}
	
	footer .logo img {
		width: 48px;
		height: 45px;
	}
	
	footer .logo .logo_text {
		font-size: 11px;
		line-height: 18px;
		margin-top: 1px;
		margin-left: 10px;
	}
	
	footer .logo .logo_text img {
		width: 143px;
		height: 20px;
	}
	
	footer ul.footer_link li {
		list-style-type: none;
		margin: 15px 35px 15px 0;
		float: left;
	}
	
	footer small {
		font-size: 11px;
		margin: 30px 0 15px 0;
	}

}

/* PARTS
-------------------------- */

.ex_link01 {
	width: 200px;
	height: 40px;
	text-align: center;
	font-size: 12px;
	margin: 30px auto 10px auto;
}

.ex_link01 a {
	display: block;
	width: 200px;
	height: 40px;
	line-height: 40px;
	color: #222222;
	border: 1px solid #222222;
	background-image: url(/common/img/arrow-w.gif);
	background-repeat: no-repeat;
	background-size: 15px 10px;
	background-position: right 6px center;
}

.ex_link01 a:hover {
	background-position: right 3px center;
	transition: all .1s;
}

@media screen and (min-width: 640px) {

	.ex_link01,
	.ex_link01 a {
		width: 260px;
		height: 40px;
	}

}

#error {
	background: #ffffff;
	padding: 15px 15px 35px 15px;
	overflow: hidden;
	width: 100%;
}

#error h2 {
	font-size: 20px;
	margin-top: 50px;
	padding: 10px 0 10px 0;
	font-weight: bold;
	font-size: 18px;
}

#error p {
	display: block;
	margin: 10px 0 50px 0;
	font-size: 14px;
}

@media screen and (min-width: 640px) {

	#error {
		padding: 20px 20px 45px 20px;
	}
	
	#error h2 {
		font-size: 24px;
	}

	#error p {
		font-size: 16px;
	}

}