@charset "UTF-8";
@import url(./reset.css);
@import url(https://fonts.googleapis.com/css?family=Lato:400,700);

* {
	box-sizing: border-box;
}

html,body { height: 100%; }

body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-weight: normal;
	font-size: 16px;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	line-height: 1;
	color: #000;
	background-color: #fff;
}

img {
	border: none;
	vertical-align: bottom;
	height: auto;
}

.clearfix:after {
	content: ""; 
	display: block; 
	height: 0; 
	font-size:0;	
	clear: both; 
	visibility:hidden;
}

.mb0 { margin-bottom: 0px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb60 { margin-bottom: 60px !important; }
.mb1em { margin-bottom: 1em !important; }
.mb2em { margin-bottom: 2em !important; }
.mb3em { margin-bottom: 3em !important; }
.mb4em { margin-bottom: 4em !important; }
.mb5em { margin-bottom: 5em !important; }
.mb6em { margin-bottom: 6em !important; }
.center { text-align: center; }
.alignright { text-align: right; }
.bold { font-weight: 900; }
.nowrap { white-space: nowrap; }

@media screen and (max-width: 767px){
	.pcOnly{
		display: none;
	}
}

@media screen and (min-width: 768px){
	.spOnly{
		display: none;
	}
}

#wrapper {
	position: relative;
	min-width: 1120px;
}

#js-menuBk {
	display: none;
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
}

@media screen and (max-width: 767px){
	
	#wrapper {
		min-width: 100%;
	}
	
}

/*--------------ヘッダー--------------*/
header {
	height: 145px;
	background-color: #fff;
	border-top: 5px solid #f39800;
	position: relative;
	display: flex;
	justify-content: center;
}

header .inner {
	width: 1120px;
}

header .h1 {
	font-size: 12px;
	color: #000;
	font-weight: normal;
	margin: 15px 0 15px 10px;
}

header .logo img {
	width: 327px;
	margin-left: 10px;
}

header .logo img:hover {
	opacity: 0.7;	
}

header .g_navi {
	height: 56px;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	border-top: 1px solid #e5e5e5;
	display: flex;
	justify-content: center;
}

header .g_navi .inner {
	position: relative;
	display: flex;
	justify-content: center;
	width: 1120px;
}

header ul {
	display: flex;
	width: 100%;
}

header ul li {
	display: flex;
	align-items: center;
	width: 25%;
}

header ul li::after {
	content: '';
	display: inline-block;
	width: 1px;
	height: 27px;
	background-color: #e5e5e5;
}

header ul li:last-child::after {
	display: none;
}

header li a {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 55px;
	color: #333;
	font-weight: bold;
	text-decoration: none;
	border-top: 5px solid #fff;
	border-bottom: 5px solid #fff;
}

header li a:hover {
	border-bottom: 5px solid #f39800;
}

.telbox {
	position: absolute;
	left: 580px;
	top: -70px;
}

.telbox p {
	font-size: 11px;
	font-weight: bold;
	margin-bottom: 10px;
}

.telbox .tel {
	font-size: 30px;
	font-family: Lato;
	font-weight: 700;
	color: #663300;
}

.telbox .tel::before {
	content: '';
	display: inline-block;
	width: 15px;
	height: 24px;
	background: url("../img/icon_tel.png") no-repeat;
	background-size: 15px;
	margin-right: 10px;
}

.contact {
	position: absolute;
	right: 10px;
	top: -67px;
	width: 287px;
	height: 46px;
	background-color: #663300;
	border-radius: 3px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-weight: bold;
	font-size: 15px;
	text-decoration: none;
}

.contact::before {
	content: '';
	display: inline-block;
	width: 20px;
	height: 15px;
	background: url("../img/icon_mail.png") no-repeat;
	background-size: 20px;
	margin-right: 10px;
}

.contact:hover {
	background-color: #7f5429;
}

.btn_close, .btn_spmenu {
	display: none;
}

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

	.btn_spmenu, .btn_close {
		position: absolute;
		right: 0;
		top: 0;
		display: block;
		width: 60px;
		height: 70px;
		font-size: 9px;
		color: #663300;
		text-align: center;
		cursor: pointer;
	}
	
	.btn_spmenu span,
	.btn_spmenu::before,
	.btn_spmenu::after,
	.btn_close span,
	.btn_close::before,
	.btn_close::after {
		content: '';
		width: 30px;
		height: 3px;
		position: absolute;
		top: 23px;
		left: 50%;
		margin-left: -15px;
		background: #663300;
		transition: all 0.3s ease;
	}
	
	.btn_spmenu::before {
		transform: translateY(-10px);
	}

	.btn_spmenu::after {
		transform: translateY(10px);
	}
	
	.btn_close span {
		opacity: 0;
	}

	.btn_close::before {
		transform: translateY(0) rotate(45deg);
	}

	.btn_close::after {
		transform: translateY(0) rotate(-45deg);
	}
	
	.btn_spmenu p, .btn_close p {
		position: absolute;
		left: 0;
		bottom: 13px;
		width: 100%;
	}
	
	header {
		height: 70px;
		border-top: 5px solid #f39800;
	}

	header .inner {
		width: 100%;
		flex-direction: column;
		align-items: center;
	}
	
	header .h1 {
		display: none;
	}

	header .logo img {
		width: auto;
		height: 20px;
		margin: 20px 0 0 10px;
	}

	header .g_navi {
		position: fixed;
		z-index: -9999;
		top: 0;
		bottom: 0;
		left: 20%;
		right: 0;
		width: 80%;
		height: auto;
		border: none;
		background: #fff;
		transition: all .3s;
		flex-direction: column;
		background-color: #fff;
		transform: translateX(100%);
		display: block;
		opacity: 0;
	}
	
	header .g_navi.is-active {
		transform: translateX(0);
		z-index: 9999;
		opacity: 1;
	}

	header .g_navi .inner {
		width: 100%;
	}

	header ul {
		flex-direction: column;
		padding-top: 70px;
		margin-bottom: 30px;
	}

	header ul li {
		width: 100%;
		border-bottom: 1px solid #e5e5e5;
	}

	header ul li::after {
		display: none;
	}

	header ul li:first-child {
		border-top: 1px solid #e5e5e5;
	}
	
	header li a {
		height: 55px;
		border: none;
	}

	header li a:hover {
		border: none;
	}

	.telbox {
		position: relative;
		left: auto;
		top: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-bottom: 10px;
	}

	.telbox p {
		font-size: 12px;
	}

	.telbox .tel {
		font-size: 30px;
	}

	.telbox .tel::before {
		width: 15px;
		height: 24px;
		background: url("../img/icon_tel.png") no-repeat;
		background-size: 15px;
	}

	.contact {
		position: relative;
		right: auto;
		top: auto;
		width: 90%;
		max-width: 300px;
		height: 50px;
		font-size: 13px;
	}

	.contact::before {
		width: 20px;
		height: 15px;
		background: url("../img/icon_mail.png") no-repeat;
		background-size: 20px;
	}
	
}


/*--------------メイン--------------*/

.main_visual {
	width: 100%;
	height: 740px;
	background: url("../img/img_main.jpg") 50% 50%;
	background-size: cover;
}


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

	.main_visual {
		height: auto;
		background: none;
	}
	
	.main_visual img {
		width: 100%;
		height: auto;
	}
	
}

/*--------------コンセプト--------------*/

.greeting .inner {
	width: 1120px;
	margin: 0 auto;
	padding: 40px 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.greeting h2 {
	font-size: 18px;
	font-weight: bold;
	background-color: #f39800;
	color: #fff;
	width: 220px;
	height: 36px;
	border-radius: 18px;
	text-align: center;
	line-height: 36px;
	margin-bottom: 30px;
}

.greeting .lead {
	font-size: 30px;
	font-weight: bold;
	color: #663300;
	line-height: 1.5;
	margin-bottom: 40px;
}

.greeting .flex_box {
	width: 100%;	
}

.img_yoshida {
	width: 313px;
}

.ul_merit {
	display: flex;
}

.ul_merit li {
	width: 346px;
	border-radius: 15px;
	padding: 15px 20px;
	margin-right: 31px;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #fff5e2;
}

.ul_merit li:last-child {
	margin-right: 0;	
}

.ul_merit .ttl {
	font-size: 14px;
	font-weight: bold;
	color: #663300;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
}

.ul_merit .ttl span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background-color: #f39800;
	color: #fff;
	font-weight: 700;
	font-family: Lato;
	font-size: 22px;
	margin-left: 10px;
}

.ul_merit h3 {
	font-size: 18px;
	color: #663300;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
	margin-bottom: 20px;
}

.ul_merit .txt {
	font-size: 14px;
	line-height: 1.5;
	width: 100%;
}

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

	.greeting .inner {
		width: auto;
		padding: 20px 10px;
	}

	.greeting h2 {
		font-size: 14px;
		width: 160px;
		height: 30px;
		border-radius: 15px;
		line-height: 30px;
		margin-bottom: 20px;
	}

	.greeting .lead {
		font-size: 16px;
		margin-bottom: 20px;
	}

	.img_yoshida {
		width: 100%;
		max-width: 320px;
	}

	.ul_merit {
		flex-direction: column;
	}

	.ul_merit li {
		width: 100%;
		padding: 15px;
		margin: 0 0 20px;
	}

	.ul_merit .ttl {
		font-size: 13px;
		margin-bottom: 10px;
	}

	.ul_merit .ttl span {
		width: 26px;
		height: 26px;
		font-size: 18px;
	}

	.ul_merit h3 {
		font-size: 16px;
		margin-bottom: 15px;
	}

	.ul_merit .txt {
		font-size: 13px;
	}

}

/*--------------事業内容--------------*/

.buz {
	background-color: #f6fceb;
}

.buz .inner {
	width: 1120px;
	margin: 0 auto;
	padding: 40px 10px 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.h2box {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.h2box span {
	font-size: 16px;
	font-weight: 700;
	font-family: Lato;
	color: #f39800;
	margin-bottom: 25px;
}

.h2box h2 {
	font-size: 30px;
	color: #663300;
	font-weight: bold;
	margin-bottom: 40px;
}

.ul_buz {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.ul_buz li {
	width: 346px;
	border-radius: 15px;
	margin: 0 31px 31px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #fff;
	padding: 20px;
}

.ul_buz li a {
	text-decoration: underline;
	color: #663300;
}

.ul_buz li a:hover {
	text-decoration: none;
}

.ul_buz li:nth-child(3n) {
	margin-right: 0;
}

.ul_buz li img {
	width: 80px;
	margin-bottom: 20px;
}

.ul_buz li h3 {
	font-size: 22px;
	font-weight: bold;
	color: #663300;
	margin-bottom: 25px;
}

.ul_buz li p {
	line-height: 2;
	font-size: 15px;
	width: 100%;
	margin-bottom: 0.5em;
	text-align: center;
}

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

	.buz .inner {
		width: auto;
		padding: 20px 10px 10px;
	}

	.h2box span {
		font-size: 14px;
		margin-bottom: 15px;
	}

	.h2box h2 {
		font-size: 16px;
		margin-bottom: 20px;
	}

	.ul_buz {
		justify-content: space-between;
	}

	.ul_buz li {
		width: 48%;
		margin: 0 0 15px 0;
		border-radius: 15px;
		padding: 20px 10px;
	}

	.ul_buz li a {

	}
	
	.ul_buz li img {
		width: 60px;
		margin-bottom: 20px;
	}

	.ul_buz li h3 {
		font-size: 15px;
		margin-bottom: 20px;
	}

	.ul_buz li p {
		line-height: 1.5;
		font-size: 12px;
		text-align: left;
		margin-bottom: 1em;
	}
	
}

/*--------------事業所紹介--------------*/

.office .inner {
	width: 1120px;
	margin: 0 auto;
	padding: 40px 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.office .flex_box {
	width: 100%;
}

.office .data {
	width: 550px;	
}

.office .map {
	width: 500px;
	height: 450px;
	background-color: #eee;
}

@media screen and (max-width: 767px){
	
	.office .inner {
		width: auto;
		padding: 20px 10px;
	}

	.office .data {
		width: 100%;
		margin-bottom: 30px;
	}

	.office .map {
		width: 100%;
		height: 300px;
	}
	
}

/*--------------ニュース--------------*/

.news {
	background-color: #fff5e2;
}

.news .inner {
	width: 1120px;
	margin: 0 auto;
	padding: 60px 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.news .h2box {
	flex-direction: row;
	align-items: center;
	margin-bottom: 40px;
}

.news .h2box span {
	margin-bottom: 0;
}

.news .h2box h2 {
	margin-bottom: 0;
	margin-right: 1em;
}

.news ul {
	width: 800px;	
}

.news ul li {
	display: flex;
	font-size: 16px;
	border-bottom: 1px solid #dcdcdc;
	padding: 20px 0;
}

.news ul li:last-child {
	border: none;
	padding-bottom: 0;
}

.news ul li .hdr {
	display: flex;
	width: 200px;
	line-height: 1.8;
}

.news ul li .txt {
	width: calc(100% - 200px);
	line-height: 1.8;
}

.news ul li .txt a {
	color: #000;
}

.news ul li .txt a:hover {
	text-decoration: none;
}

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

	.news .inner {
		width: auto;
		padding: 30px 10px;
	}

	.news .h2box {
		margin-bottom: 0;
	}

	.news .h2box span {
		display: none;
	}

	.news .h2box h2 {
		margin-right: 0;
	}
	
	.news ul {
		width: 100%;	
	}
	
	.news ul li {
		flex-direction: column;
		font-size: 13px;
		padding: 20px 0;
	}

	.news ul li .hdr {
		width: 100%;
		margin-bottom: 5px;
	}

	.news ul li .txt {
		width: 100%;
	}
	
}

/*--------------フッターお問い合わせ--------------*/

.ft_contact {
	background-color: #f39800;
	color: #fff;
	display: flex;
	justify-content: center;
}

.ft_contact .inner {
	width: 900px;
	padding: 50px 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.ft_contact .ttl {
	width: 460px;
	font-weight: bold;
}

.ft_contact .ttl span {
	display: inline-block;
	font-size: 20px;
	margin-bottom: 20px;
}

.ft_contact .ttl p {
	font-size: 28px;
	line-height: 1.3;
}

.ft_contact .ft_telbox {
	width: 390px;	
}

.ft_contact .ft_telbox .tel {
	font-size: 46px;
	font-weight: 700;
	font-family: Lato;
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.ft_contact .ft_telbox .tel span {
	font-size: 20px;
	margin-right: 1em;
}

.ft_contact .ft_telbox .txt {
	margin-bottom: 25px;
	font-weight: bold;
}

.ft_contact .ft_telbox a {
	width: 390px;
	height: 55px;
	background-color: #663300;
	border-radius: 3px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-weight: bold;
	font-size: 18px;
	text-decoration: none;
}

.ft_contact .ft_telbox a:hover {
	background-color: #7f5429;
}

.ft_contact .ft_telbox a::before {
	content: '';
	display: inline-block;
	width: 20px;
	height: 15px;
	background: url("../img/icon_mail.png") no-repeat;
	background-size: 20px;
	margin-right: 10px;
}

@media screen and (max-width: 767px){
	
	.ft_contact {

	}

	.ft_contact .inner {
		width: 100%;
		padding: 20px 10px;
		flex-direction: column;
	}

	.ft_contact .ttl {
		width: 100%;
		text-align: center;
	}

	.ft_contact .ttl span {
		font-size: 14px;
		margin-bottom: 15px;
	}

	.ft_contact .ttl p {
		font-size: 18px;
		line-height: 1.5;
		margin-bottom: 15px;
	}

	.ft_contact .ft_telbox {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.ft_contact .ft_telbox .tel {
		font-size: 24px;
		margin-bottom: 15px;
	}

	.ft_contact .ft_telbox .tel span {
		font-size: 14px;
		margin-right: 0.5em;
	}

	.ft_contact .ft_telbox .txt {
		margin-bottom: 25px;
		font-size: 13px;
	}

	.ft_contact .ft_telbox a {
		width: 100%;
		height: 50px;
		font-size: 14px;
	}
	
}

/*--------------フッター--------------*/

.ftr {
	width: 1120px;
	margin: 0 auto;
	padding: 40px 10px 20px;
	display: flex;
	justify-content: space-between;
}

.ftr .name {
	font-size: 18px;
	font-weight: bold;
	color: #663300;
	margin-bottom: 1em;
}

.ftr .address {
	font-size: 12px;
	line-height: 1.5;
}

.ftr ul {
	display: flex;
	font-size: 14px;
}

.ftr ul li::after {
	content: '｜';
	color: #000s;
}

.ftr ul li:last-child::after {
	display: none;
}

.ftr a {
	display: inline-block;
	margin: 0 20px;
	color: #000;
	text-decoration: none;
}

.ftr a:hover {
	text-decoration: underline;
}

.copy {
	width: 1120px;
	margin: 0 auto;
	padding: 0 10px 30px;
	font-size: 11px;
}


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

	.ftr {
		width: auto;
		padding: 30px 10px;
		text-align: center;
	}
	
	.ftr .data {
		width: 100%;
	}
	
	.ftr .name {
		font-size: 14px;
		margin-bottom: 1em;
	}

	.ftr .address {
		font-size: 11px;
	}

	.ftr ul {
		display: none;
	}

	.copy {
		width: auto;
		padding: 0 10px 20px;
		font-size: 10px;
		text-align: center;
	}

}

/*--------------共通--------------*/

.h1_visual {
	width: 100%;
	height: 300px;
	background: url("../img/bg_h1.jpg") no-repeat 50% 50%;
	background-size: cover;
	position: relative;
}

.h1_visual div {
	background-color: rgba(0, 60, 134, 0.5);
	padding: 20px;
	color: #fff;
	width: 100%;
	max-width: 360px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	border-radius: 3px;
}

.h1_visual h1 {
	font-size: 30px;
	font-weight: bold;
}

.pankuzu {
	background-color: #f6fceb;
	height: 50px;
	display: flex;
	justify-content: center;
	font-size: 12px;
}

.pankuzu div {
	width: 1100px;
	display: flex;
	align-items: center;
}

.pankuzu a {
	color: #000;
}

.pankuzu a:hover {
	text-decoration: none;
}

.contents {
	width: 1120px;
	margin: 0 auto;
	padding: 50px 10px 50px;
}

.contents.narrow {
	max-width: 800px;
}

.honbun {
	font-size: 15px;
	line-height: 1.8;
}

.honbun a {
	color: #448aca;
}

.ul_list li {
	font-size: 15px;
	border-bottom: 1px solid #dcdcdc;
	padding: 25px 30px;
	display: flex;
}

.ul_list li:first-child {
	padding-top: 0;
}

.ul_list li:last-child {
	border: none;
	padding-bottom: 0;
}

.ul_list li span {
	line-height: 1.5;
}

.ul_list li span.label {
	width: 20%;
	white-space: nowrap;
}

.flex_box {
	display: flex;
	justify-content: space-between;
}

.flex_box .img {
	margin-left: 50px;
}

.ft_btns {
	display: flex;
	justify-content: center;
}

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

	.h1_visual {
		height: 150px;
	}

	.h1_visual div {
		padding: 15px;
		max-width: 200px;
	}

	.h1_visual h1 {
		font-size: 20px;
	}
	
	.pankuzu {
		height: auto;
		padding: 15px 10px;
		font-size: 11px;
	}
	
	.contents {
		width: auto;
		padding: 20px 10px 40px;
	}
	
	.honbun {
		font-size: 13px;
		line-height: 1.8;
	}
	
	.ul_list li {
		padding: 15px 10px;
		flex-direction: column;
		font-size: 13px;
	}

	.ul_list li span.label {
		width: 100%;
		margin-bottom: 5px;
		font-weight: bold;
	}
	
	.flex_box {
		flex-direction: column;
	}

	.flex_box .img {
		margin: 30px 0 0;
		text-align: center;
	}
	
}

/*--------------採用--------------*/

.ul_recruit {
	width: 800px;
	margin: 0 auto;
}

@media screen and (max-width: 767px){
	
	.ul_recruit {
		width: 100%;
	}
	
}
/*--------------フォーム--------------*/

.form_box {
	width: 800px;
	margin: 0 auto;
}

.form_box ul {
	border-top: 1px solid #dcdcdc;
	margin-bottom: 50px;
}

.form_box li {
	padding: 20px;
	border-bottom: 1px solid #dcdcdc;
	display: flex;
}

.form_box li div {
	display: flex;
	align-items: center;
	line-height: 1.5;
	width: 540px;
}

.form_box li div.label {
	width: 260px;
}

.form_box li div.parts {
	flex-direction: column;
	align-items: flex-start;
}

.form_box li span {
	display: inline-block;
	margin-left: 1.5em;
	background-color: #f39800;
	width: 50px;
	height: 22px;
	font-size: 13px;
	text-align: center;
	color: #fff;
	line-height: 22px;
	font-weight: bold;
}

.form_box input[type='text'], .form_box textarea {
	border: 1px solid #d2d2d2;
	background-color: #f6f6f6;
	height: 45px;
	width: 100%;
	border-radius: 5px;
	padding: 0 10px;
	font-size: 16px;
}

.form_box input[type='text']:focus, .form_box textarea:focus {
	background-color: #fff;
}

.form_box input.zip {
	width: 180px;
	margin-bottom: 1em;
}

.form_box textarea {
	height: 140px;
	padding: 10px;
}

.form_box input::-webkit-input-placeholder, .form_box textarea::-webkit-input-placeholder {
	color: #666;
}
.form_box input::-moz-input-placeholder, .form_box textarea::-moz-input-placeholder {
	color: #666;
}
.form_box input:-ms-input-placeholder, .form_box textarea:-ms-input-placeholder {
	color: #666;
}
.form_box input::placeholder, .form_box textarea::placeholder {
	color: #666;
}

.submit {
	width: 320px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	text-decoration: none;
	border-radius: 5px;
	border: none;
    -webkit-appearance: none;
}

.submit.personal {
	cursor: pointer;
	background-color: #663300;
}

.submit:hover {
	background-color: #7f5429;
}


@media screen and (max-width: 767px){
	
	.form_box {
		width: 100%;
	}

	.form_box ul {
		border-top: none;
		margin-bottom: 20px;
	}

	.form_box li {
		padding: 0;
		border-bottom: none;
		flex-direction: column;
		margin-bottom: 30px;
	}

	.form_box li div {
		width: 100%;
		font-size: 13px;
	}

	.form_box li div.label {
		width: 100%;
		margin-bottom: 10px;
	}

	.form_box li span {
		margin-left: 1em;
		width: 40px;
		height: 20px;
		font-size: 11px;
		line-height: 20px;
	}

	.form_box input[type='text'], .form_box textarea {
		height: 45px;
		font-size: 14px;
	}

	.form_box input.zip {
		width: 150px;
		margin-bottom: 10px;
	}

	.form_box textarea {
		height: 140px;
	}

	.submit {
		width: 100%;
		height: 50px;
	}
	
}

/*service*/

.ul_service {
	margin-bottom: 50px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.ul_service li {
	width: 30%;
	margin-bottom: 30px;
}

.ul_service li a {
	display: block;
	width: 100%;
	border: 1px solid #ccc;
	color: #663300;
	text-decoration: none;
	font-weight: bold;
	font-size: 16px;
	height: 60px;
	padding-left: 70px;
	line-height: 60px;
	border-radius: 0px;
	transition: all 0.3s ease;
}

.ul_service li a.ct1 {
	background:  url("../img/img_kaigo.png") no-repeat 10px 50%;
	background-size: 40px;
}

.ul_service li a.ct2 {
	background:  url("../img/img_hojin.png") no-repeat 10px 50%;
	background-size: 40px;
}

.ul_service li a.ct3 {
	background:  url("../img/img_nyukoku.png") no-repeat 10px 50%;
	background-size: 40px;
}

.ul_service li a.ct4 {
	background:  url("../img/img_rikon.png") no-repeat 10px 50%;
	background-size: 40px;
}

.ul_service li a.ct5 {
	background:  url("../img/img_minpaku.png") no-repeat 10px 50%;
	background-size: 40px;
}

.ul_service li a.ct6 {
	background:  url("../img/img_other.png") no-repeat 10px 50%;
	background-size: 40px;
}

.ul_service li a:hover {
	background-color: #f5f5f5;
}

.hdr_a {
	background-color: #fff5e2;
	border-top: 3px solid #f39800;
	padding: 15px 20px;
	color: #663300;
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 30px;
}

.hdr_b {
	border-left: 5px solid #f39800;
	padding: 10px 15px 10px;
	color: #663300;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 20px;
	line-height: 1.5;
}

.service_img {
	width: 280px;
	height: auto;
	float: right;
	margin: 0 0 30px 30px;
}

@media screen and (max-width: 767px){
	
	.ul_service {
		margin-bottom: 30px;
	}

	.ul_service li {
		width: 48%;
		margin-bottom: 20px;
	}

	.ul_service li a {
		font-size: 13px;
		height: 50px;
		padding-left: 45px;
		line-height: 50px;
	}

	.ul_service li a.ct1 {
		background:  url("../img/img_kaigo.png") no-repeat 5px 50%;
		background-size: 30px;
	}

	.ul_service li a.ct2 {
		background:  url("../img/img_hojin.png") no-repeat 5px 50%;
		background-size: 30px;
	}

	.ul_service li a.ct3 {
		background:  url("../img/img_nyukoku.png") no-repeat 5px 50%;
		background-size: 30px;
	}

	.ul_service li a.ct4 {
		background:  url("../img/img_rikon.png") no-repeat 5px 50%;
		background-size: 30px;
	}

	.ul_service li a.ct5 {
		background:  url("../img/img_minpaku.png") no-repeat 5px 50%;
		background-size: 30px;
	}

	.ul_service li a.ct6 {
		background:  url("../img/img_other.png") no-repeat 5px 50%;
		background-size: 30px;
	}

	.hdr_a {
		border-top: 2px solid #f39800;
		padding: 15px 15px;
		font-size: 16px;
		margin-bottom: 20px;
	}

	.hdr_b {
		border-left: 5px solid #f39800;
		padding: 5px 10px 5px;
		font-size: 15px;
		margin-bottom: 20px;
	}
	
	.service_img {
		display: block;
		width: 100%;
		max-width: 280px;
		float: none;
		margin: 0 auto 20px;
	}
	
}