@charset "utf-8";


/*
 Top page
----------------------------------------------------------- */
.top-img {
	display:flex;
	height: 200px;
	flex-direction: column;
	align-content: space-between;
	background: url("../img/top-img.jpg") top center/cover no-repeat;
	margin-bottom: 40px;
}
@media screen and (min-width: 350px) {
	.top-img {
		height: 230px;
	}
}
@media screen and (min-width: 500px) {
	.top-img {
		height: 320px;
		background: url(../img/top-img.jpg) top 35% center/cover no-repeat;
	}
}
@media screen and (min-width: 769px) {
	.top-img {
		width: 900px;
		height: 400px;
		margin: 0 auto;
	}
}


.top-img-item {
	height: 33%;
}
.top-img-item .title-text {
	font-size: 0.8em;
	font-weight: bold;
	background: rgba(204,255,204,0.6);
	padding: 5px;
	margin: 0;
}
@media screen and (min-width: 500px) {
	.top-img-item .title-text {
		font-size: 1.3em;
	}
}
.top-img-item .title {
	font-family: "M PLUS 1p";
	color: #338e2d;
	font-size: 1.5em;
	text-align: center;
	padding: 9% 0 0;
	text-shadow: #ffd 0 0 10px;
}
@media screen and (min-width: 350px) {
	.top-img-item .title {
		font-size: 2em;
	}
}
@media screen and (min-width: 500px) {
	.top-img-item .title {
		font-size: 3em;
		text-shadow: #ffd 0 0 15px;
		padding: 5% 0 0;
	}
}
@media screen and (min-width: 769px) {
	.top-img-item .title {
		font-size: 3.5em;
		padding: 8% 0 0;
	}
}

.top-img-item .button {
	width: 60%;
	padding-top: 15px;
	margin: 0 auto;
}
@media screen and (min-width: 500px) {
	.top-img-item .button {
		font-size: 1.3em;
		margin: 10px auto;
	}
}
@media screen and (min-width: 769px) {
	.top-img-item .button {
		font-size: 1.5em;
		margin: 15px auto;
	}
	.top-img-item .button a {
		padding: 0.5em;
	}
	.top-img-item .button a::after {
		border-left: 18px solid #fff;
		border-top: 12px solid transparent;
		border-bottom: 12px solid transparent;
	}
}


.top-h2 {
	border-bottom: 1px solid #48A641;
	border-left: 10px solid #48A641;
	padding: 0.5em;
}


.top-h2-und {
	border-bottom: 2px solid #aaa;
	padding: 0.2em;
	margin: 10px 0;
}


.top-job-category {
	display: block;
	padding: 20px 0;
}

.top-job-category-item {
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-bottom: solid 1px #ddd;
}

.top-job-category-img {
	display: inline;
	width: 25%;
	line-height: 0;
}

.top-job-category-text{
	display: inline;
	width: 65%;
	padding-left: 10px;
}

.top-job-category-item img {
	width: 100%;
}
.top-job-category-item p {
	color: #333;
	font-weight: bold;
	margin: 0;
}

.top-job-category-item::after {
	display: inline-block;
	content: "";
	width: 0.5em;
	height: 0.5em;
	border-top: 2px solid #48A641;
	border-right: 2px solid #48A641;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

@media screen and (min-width: 768px) {
	.top-job-category {
		display:flex;
		flex-direction: row;
		justify-content: space-between;
		flex-wrap: wrap;
		text-align: center;
		padding: 20px 0;
	}
	.top-job-category-item {
		display: block;
		width: 27%;
		background: #fffff0;
		border: solid 1px #e6a400;
		border-radius: 10px;
		padding: 10px;
		margin: 10px 0;
	}
	.top-job-category-item:hover {
		text-decoration: none;
	}
	
	.top-job-category-img {
		display: block;
		width: 100%;
	}

	.top-job-category-text{
		display: block;
		width: 100%;
		padding: 0;
	}

	.top-job-category-item img {
		width: 100%;
	}
	.top-job-category-item p {
		display: block;
		width: 100%;
		color: #333;
		font-weight: bold;
		margin: 10px 0;
	}
	.top-job-category-item p::after {
		display: inline-block;
		content: "";
		width: 0;
		height: 0;
		border-left: 10px solid #e6a400;
		border-top: 7px solid transparent;
		border-bottom: 7px solid transparent;
		vertical-align: middle;
		margin: 0 0.5rem 0.3rem;
	}
	.top-job-category-item::after {
		display: none;
	}
}

@media screen and (min-width: 769px) {
	.top-job-category-item p {
		font-size: 1.3em;
	}
}


.top-area {
	width: 100%;
	padding: 20px 0;
}
.top-area label {
	display: block;
	background: #2db324;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	color: #fff;
	font-size: 1.2em;
	font-weight: bold;
	cursor: pointer;
	padding: 15px;
}
.top-area input {
	display: none;
}
.top-area ul {
	background: #f5fffa;
	border: solid 1px #2db324;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	list-style: none;
}
.top-area li {
	height: 45px;
	border-bottom: solid 1px #2db324;
	overflow: hidden;
	-webkit-transition: all 0.5s;
	 -moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}
.top-area li:last-child {
	border: none;
}
.top-area a {
	display: block;
	padding: 10px 15px;
	text-decoration: none;
	color: #333;
}
/* アコーディオンにするときはliのheightを0にして
   下記のコメントアウトを外す
   (PCレイアウト調整必要)
 */
/*
#kanto:checked ~ #kanto-prefect li {
	height: 45px;
}
*/
@media screen and (min-width: 769px) {
	.top-area label {
		background: #fff;
		color: #2db324;
		font-size: 1.3em;
	}
	.top-area ul {
		background: #fff;
		border: none;
		padding-left: 20px;
	}
	.top-area li {
		display: inline-block;
		height: 100%;
		background: #f5fffa;
		border: solid 1px #2db324;
		border-radius: 10px;
		margin: 0 10px;
	}
	.top-area li:last-child {
		border: solid 1px #2db324;
	}
}


/*
 search page
----------------------------------------------------------- */
.sc-search {
	background: #fffbe6;
	border-radius: 10px;
	padding: 20px 10px;
	margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
	.sc-search {
		font-size: 1.2em;
	}
}

.sc-search-item span {
	display: block;
	font-weight: bold;
	padding: 0.5em 0;
}
.sc-search-item select {
	width: 100%;
	background: #fff;
	border-radius: 5px;
	padding: 0.5em;
}
@media screen and (min-width: 700px) {
	.sc-search-item {
		display: block;
		width: 80%;
		margin: 10px auto;
	}
	.sc-search-item span {
		display: inline-block;
		width: 30%;
	}
	.sc-search-item select {
		width: 65%;
	}
}

.sc-search-btn {
	text-align: center;
	margin: 0;
}
.sc-search-btn input {
	width: 200px;
	background: #e6a400;
	color: #fff;
	font-size: 1em;
	font-weight: bold;
	letter-spacing: 0.5em;
	border: none;
	border-radius: 10px;
	box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
	padding: 0.5em 0;
}
.sc-search-btn input:hover {
	background: #cc9200;
	box-shadow: none;
	transform: translate3d(0, 2px, 0);
}
@media screen and (min-width: 769px) {
	.sc-search-btn input {
		width: 250px;
		box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
	}
}

.sc-h1 {
	font-size: 1.3em;
	border-bottom: 1px solid #48A641;
	border-left: 10px solid #48A641;
	padding: 0.5em;
}
@media screen and (min-width: 769px) {
	.sc-h1 {
		font-size: 1.5em;
	}
}

.sc-establishment {
	margin: 20px auto;
}
.sc-establishment .name {
	font-size: 1.3em;
	font-weight: bold;
	border-top: solid 1px #2db324;
	border-right: solid 1px #2db324;
	border-left: solid 1px #2db324;
	border-radius: 10px 10px 0 0;
	padding: 0.5em 1em;
}
@media screen and (min-width: 769px) {
	.sc-establishment {
		width: 80%;
	}
	.sc-establishment .name {
		font-size: 1.5em;
	}
}

.sc-box {
	background: #f5fffa;
	border: solid 1px #2db324;
	border-radius: 0 0 10px 10px;
	padding: 0px 10px 20px;
}
@media screen and (min-width: 700px) {
	.sc-box {
		padding: 0 20px 20px;
	}
}
@media screen and (min-width: 769px) {
	.sc-box {
		padding: 0 40px 20px;
	}
}

.sc-point {
	padding: 10px 0;
}
.sc-point span {
	display: inline-block;
	color: #e6a400;
	background: #fff1cc;
	border-radius: 10px;
	font-size: 0.8em;
	padding: 0.3em 1em;
	margin: 5px 0;
}

.sc-info .img {
	background: #eee;
}
@media screen and (min-width: 700px) {
	.sc-info {
		display:flex;
		justify-content: space-between;
		padding: 10px 0;
	}
}

.sc-info-item img {
	width: 100%;
	max-height: 180px;
	object-fit: contain;
}
@media screen and (min-width: 700px) {
	.sc-info-item {
		width: 45%;
	}
	.sc-info-item img {
		max-height: 200px;
	}
}

.sc-info-tbl {
	display: table;
	width: 100%;
	background: #fff;
	border-top: dotted 2px #2db324;
	margin: 10px 0;
}
.sc-info-tbl .tr {
	border-bottom: dotted 2px #2db324;
}
.sc-info-tbl .th,.sc-info-tbl .td {
	display: table-cell;
	padding: 0.5em;
}
.sc-info-tbl .th {
	font-weight: bold;
	vertical-align: middle;
}

@media screen and (min-width: 700px) {
	.sc-comment {
		padding: 10px 0;
	}
}

.sc-comment .tilte {
	display: inline-block;
	background: #e6a400;
	color: #fff;
	font-weight: bold;
	border-radius: 5px 5px 0 0;
	padding: 0.2em 0.5em;
}
.sc-comment .text {
	background: #fff;
	border: solid 1px #e6a400;
	padding: 5px;
}

.sc-box-btn {
	text-align: center;
}
.sc-box-btn .button {
	display: inline-block;
	width: 45%;
}
.sc-box-btn .button a {
	font-size: 1.2em;
	box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
	padding: 0.8em 0;
}
.sc-box-btn .button a::after {
	content: none;
}
.sc-box-btn .button a:hover {
	box-shadow: none;
	transform: translate3d(0, 2px, 0);
}
@media screen and (min-width: 769px) {
	.sc-box-btn .button a {
		font-size: 1.5em;
	}
	.sc-box-btn .button a::after {
		content: "";
	}
}

.sc-page {
	text-align: center;
	margin: 0;
}

.sc-page-nav {
	font-size: 1.3em;
	text-align: center;
	margin: 20px 0;
}
.sc-page-nav .page-number {
	padding: 0 0.5em;
}


/*
 detail page
----------------------------------------------------------- */
.dt-top {
	padding-bottom: 20px;
}

.dt-top-item img {
	width: 100%;
	max-height: 200px;
	object-fit: contain;
}
.dt-top-item .title {
	border-top: double 5px #48A641;
	border-bottom: double 5px #48A641;
	padding: 5px 0;
	margin: 10px 0;
}
.dt-top-item .title h1 {
	font-size: 1.5em;
}

@media screen and (min-width: 769px) {
	.dt-top {
		display:flex;
		justify-content: center;
		padding: 20px;
		margin-bottom: 60px;
	}
	
	.dt-top-item {
		width: 45%;
		padding: 0 20px;
	}
	.dt-top-item img {
		max-height: 250px;
	}
	.dt-top-item .title {
		height: 50%;
		border: none;
	}
	.dt-top-item .title h1 {
	padding: 0.8em 0.5em;
	background: #e6ffe6;
	border-left: solid 5px #48A641;
	}
}


.dt-point span {
	display: inline-block;
	background: #fff1cc;
	color: #e6a400;
	font-size: 0.8em;
	border-radius: 1em;
	padding: 0.3em 1em;
	margin: 0.3em;
}


.dt-recommend{
	margin: 2em 0 20px 0;
	background-color: #fffff0;
	border: 2px solid #e6a400;
}

.dt-recommend .title{
	font-size: 1.3em;
	position: absolute;
	margin-top: -1.8em;
	margin-left: -2px;
	background-color: #e6a400;
	color: #fff;
	font-weight: bold;
	border-radius: 4px 4px 0 0;
	padding: 4px 10px;
}
.dt-recommend .icon {
	margin-right: 0.5em;
	transform: rotate(-15deg);
}
.dt-recommend p{
	margin: 0;
	padding: 10px;
}


.dt-h2 {
	background: #48A641;
	color: #fff;
	font-size: 1.3em;
	vertical-align: middle;
	border-radius: 25px;
	padding: 0.5em;
	margin: 10px 0;
}
.dt-h2:before {
	content: '●';
	color: #fff;
	margin-right: 8px;
}


.dt-job {
	width: 90%;
	border-collapse: collapse;
	margin: 20px auto;
}
.dt-job th, .dt-job td {
	display: block;
	text-align: left;
	padding: 0.5em;
}
.dt-job th {
	font-size: 1.1em;
	white-space: nowrap;
}
.dt-job td {
	border-bottom: solid 1px #ddd;
}

@media screen and (min-width: 769px) {
	.dt-job th, .dt-job td {
		display: table-cell;
		border-bottom: solid 1px #ddd;
	}
}


.dt-address {
	width: 90%;
	border-collapse: collapse;
	margin: 20px auto;
}
.dt-address th, .dt-address td {
	display: block;
	text-align: left;
}
.dt-address th {
	font-size: 1.1em;
}
.dt-address td {
	display: block;
	padding: 0.5em;
}
.dt-address .map {
	width: 100%;
	height: 250px;
	border: 0;
	padding: 10px 0;
}

@media screen and (min-width: 769px) {
	.dt-address th, .dt-address td {
		display: table-cell;
		border-bottom: solid 1px #ddd;
		padding: 0.5em;
	}
	.dt-address th {
		vertical-align: top;
	}
	.dt-address .map {
		height: 400px;
	}
}