@charset "utf-8";

html, * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
html {
	font-size: 62.5%;
	background: #F2F5F4;
}

body, a, p, li, dd, td {
	color: #222222;
	font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic,  "游ゴシック", "Yu Gothic", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, Verdana, Meiryo, sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: .5px;
	-webkit-font-smoothing: antialiased;
	animation: fadeIn .5s ease 0s 1 normal;
	-webkit-animation: fadeIn .5s ease 0s 1 normal;
	transition: .2s;
}
a:hover {
	opacity: .8;
}
input, button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
em, strong, span, figcaption {
	font-size: inherit;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
table {
	table-layout: fixed;
	width: 100%;
}
@keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}

/* component */
.txt-color-red {
	color: #E35252;
}
.base-btn {
	padding: 8px 12px;
	box-shadow: 0px 3px 6px rgba(0,0,0, .2);
	line-height: 1;
	background: #fff;
	border-radius: 30px;
	font-weight: bold;
}
.tel-btn {
	display: block;
	color: #fff;
	background: #B1C999;
	font-size: 2.6rem;
	font-family: 'Avenir', Arial, sans-serif;
	font-weight: 500;
	text-align: center;
	letter-spacing: 1.5px;
	position: relative;
	padding-left: 38px;
}
.tel-btn:before {
	position: absolute;
	content: '';
	background-image: url('/assets/img/svg/phone_icon.svg');
	background-size: contain;
	background-repeat: no-repeat;
	left: 15px;
	bottom: 10px;
	width: 18px;
	height: 18px;
}
@media (max-width: 1450px) and (min-width: 1024px) {
	.base-btn {
		padding: 6px 10px;
	}
	.tel-btn {
		font-size: 2rem;
		padding-left: 32px;
	}
	.tel-btn:before {
		left: 11px;
		bottom: 8px;
		width: 15px;
		height: 15px;
	}
}
.detail-btn {
	padding: 14px 60px 14px 25px !important
}
.detail-btn:after {
	right: 25px !important;
}
@media (max-width: 767px) {
	.detail-btn {
		padding: 12px 45px 12px 20px !important;
	}
	.detail-btn:after {
		right: 20px !important;
		width: 16px !important;
		height: 16px !important;
	}
}
.txt-link {
	text-decoration: underline;
	color: #005faa;
}
/* layout */
main {
	display: block;
}
.wrapper {
	width: 100%;
	height: 100%;
	min-height: 100vh;
	position: relative;
	padding-bottom: 467px;
}
.inner {
	width: 95%;
	max-width: 1110px;
	margin: 0 auto;
}
.sec-wrap {
	padding: 80px 0;
}
@media (max-width: 767px) {
	.sec-wrap {
		padding: 60px 0;
	}
}
.sec-head {
	font-size: 2.8rem;
	line-height: 1.4;
	padding-bottom: 20px;
}
@media (max-width: 767px) {
	.sec-head {
		font-size: 2.2rem;
	}
}
.subhead {
	margin-bottom: 24px;
	line-height: 1;
	font-size: 2.0rem;
}
@media(max-width: 460px) {
	.subhead  {
		margin-bottom: 12px;
		font-size: 1.6rem;
	}
}
.fixed_width {
	width: auto;
	max-width: 1000px;
	margin: auto;
	padding: 20px;
}
.ly-flex {
	display: -webkit-flex;
	display: flex;
	position: relative;
	width: 100%;
}
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}
.ly-square-img {
	position: relative;
}
.ly-square-img:before {
	content: "";
	display: block;
	padding-top: 100%;
}
.ly-square-img img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	object-fit: cover;
}
.ly-detail-arrow-left,
.ly-detail-arrow-right {
	display: inline-block;
	position: relative;
}
.ly-detail-arrow-right {
	padding-right: 40px;
}
.ly-detail-arrow-left {
	padding-left: 40px;
}
.ly-detail-arrow-left:after,
.ly-detail-arrow-right:after {
	position: absolute;
	content: '';
	top: 50%;
	transform: translateY(-50%);
	background-image: url('/assets/img/svg/arrow_right.svg');
	background-size: contain;
	background-repeat: no-repeat;
	width: 22px;
	height: 22px;
}
.ly-detail-arrow-right.blog-detail-btn:after {
	background-image: url('/assets/img/svg/arrow_right_blog.svg');
}
.ly-detail-arrow-right:after {
	right: 0;
}
.ly-detail-arrow-left:after {
	left: 0;
}
@media (max-width: 767px) {
	.ly-detail-arrow-right {
		padding-right: 25px;
	}
	.ly-detail-arrow-left {
		padding-left: 25px;
	}
	.ly-detail-arrow-left:after,
	.ly-detail-arrow-right:after {
		width: 15px;
		height: 15px;
	}
}
.ly-border {
	display: block;
	border-radius: 20px;
	padding: 25px 30px;
}
.ly-shadow {
	box-shadow: 0px 3px 6px rgba(0,0,0, .2);
}
@media (max-width: 767px) {
	.ly-border {
		padding: 30px 25px;
	}
}
.listyle {
	list-style: none;
}
.kerning {
	display: inline-block;
}
#breadcrumb ul li {
	display: inline-block;
	padding-right: 8px;
}

/* header */
#breadcrumb {
	position: absolute;
	bottom: 10px;
	left: 20px;
}
#breadcrumb span, #breadcrumb span a {
	font-size: 1.2rem;
	color: #fff;
}
#breadcrumb span {
	font-weight: 700;
}
@media (max-width: 460px) {
	#breadcrumb {
		bottom: 5px;
		left: 10px;
	}
	#breadcrumb span, #breadcrumb span a {
		font-size: 1.0rem;
	}

}

/* main */

/* footer */
footer {
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	background: #849573;
	color: #fff;
	padding: 60px 5px 0px;
	font-weight: 600;
}
.footer-wrap {
	max-width: 970px;
	width: 90%;
	margin: 0 auto;
	justify-content: space-between;
}
.footer-wrap div.footer-info-logo {
	width: 90%;
}
.footer-info {
	max-width: 445px;
}
.footer-address {
	margin: 15px 0 8px;
}
.footer-tel-btn {
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	display: inline-block;
	font-size: 3.6rem;
	padding-left: 32px;
}
.footer-tel-btn:before {
	width: 21px;
	height: 21px;
	left: 0;
	bottom: 12px;
}
.footer-sns {
	margin-bottom: .5em;
	padding-top: 2px;
}
@media(min-width: 1023px) {
	.footer-sns {
		display: inline;
		float: right;
	}
	.footer-insta {
		padding-top: 5px;
	}
}
.footer-twitter img {
	background: #fff;
	border-radius: 12px;
	padding: 4px;
	margin-right: .1em;
}
.footer-gmap {
	width: 50%;
	max-width: 445px;
}
.timetable-wrap {
	width: 100%;
	margin-bottom: 6px;
}
.copyright {
	font-size: 1rem;
	text-align: center;
	color: #ccc;
	padding: 15px 0 5px;
}
@media (max-width: 1023px) and (min-width: 768px) {
	.footer-wrap {
		width: 98%;
		max-width: 780px;
	}
	.footer-info {
		max-width: 340px;
	}
}
@media (max-width: 767px) {
	footer {
		padding-top: 45px;
	}
	.footer-wrap {
		display: block;
		min-width: 346px;
	}
	.footer-wrap div {
		width: 100%;
	}
	.footer-gmap,
	.footer-info {
		margin: 0 auto;
	}
	.footer-gmap {
		margin-top: 20px;
	}
}


@media (max-width: 767px) {
	body, a, p, li, dd, td {
		font-size: 1.4rem;
	}
 	.inner {
		min-width: 340px;
	}
	header {
		height: 55px;
		position: fixed;
		display: block;
		z-index: 999;
		background: rgba(255,255,255, .8);
	}
	.logo-wrap a {
		width: 150px;
	}
	.wrapper {
		padding-bottom: 846px;
	}
}


h1.page-ttl {
	font-weight: bold;
	letter-spacing: 2px;
	font-size: 5.6rem;
	margin-bottom: 24px;
	background: #222;
	color: #fff;
	height: 35vh;
	position: relative;
	text-shadow: 0px 3px 6px rgba(0,0,0, .2);
}
h1.page-ttl:after  {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	background: rgba(193,193,193, .45);
	z-index: 0;
}
h1.page-ttl img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: bottom;
	position:relative;
}
h1.page-ttl span {
	position: absolute;
	top: 62%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	width: 100%;
	text-align: center;
	text-shadow: 3px 3px 3px #2f2f2f;
}
@media (max-width: 1450px) and (min-width: 1024px) {
	h1.page-ttl {
		font-size: 4.5rem;
	}
}
@media (min-width: 1024px) {
	h1.page-ttl {
		height: auto;
	}
}
@media (max-width: 1023px) {
	h1.page-ttl {
		padding-top: 80px;
		font-size: 4rem;
	}
}
@media (max-width: 767px) {
	h1.page-ttl {
		padding-top: 60px;
		font-size: 3.0rem;
	}
}

@media(max-width: 460px) {
	.inner {
		max-width: 340px;
	}

}

.posts-wrap {
	background: #fff;
	padding: 60px 60px 45px;
}
.posts-span {
	display: block;
}
.posts-detail-btn {
	width: 135px;
	font-size: 1.2rem;
	padding: 12px 25px !important;
	white-space: nowrap;
	margin-top: 15px;
	margin-right: 0;
	margin-left: auto;
}
.posts-detail-btn.ly-detail-arrow-right:after {
	width: 17px;
	height: 17px;
	right: 25px !important;
}
.posts-ul li {
	padding: 24px 30px;
	border-top: 1px solid #BABABA;
	border-bottom: 1px solid #BABABA;
	background: #F2F5F4;
	margin-bottom: 30px;
}
.posts-ul li a {
	display: block;
}
.posts-ul li:last-child {
	margin-bottom: 0;
}
.posts-date {
	color: #A3A3A3;
}
.posts-ttl {
	font-size: 2.4rem;
	font-weight: 700;
	padding-bottom: 15px;
	line-height: 1.2;
}
@media (max-width: 767px) {
	.posts-wrap {
		padding: 30px 25px 10px;
	}
	.posts-ul li {
		padding: 15px;
	}
	.posts-ttl {
		font-size:  1.8rem;
		padding-bottom: 12px;
	}
	.posts-date {
		font-size: 1rem;
	}
	.posts-detail-btn {
		font-size: 1rem;
		width: 105px;
		padding: 8px 15px !important;
		margin-top: 5px;
	}
	.posts-detail-btn.ly-detail-arrow-right:after {
		width: 10px;
		height: 10px;
		right: 15px !important;
	}
}
.sec-top-wrap {
	padding-top: 35px;
}
@media (max-width: 460px) {
	.sec-top-wrap {
		padding-top: 25px;
	}
	.posts-wrap {
		padding: 25px 15px 10px;
	}
}

.grecaptcha-badge {
	visibility: hidden;
}
.recruit__wrap {
	border-radius: 6px;
}
.recruit__wrap h2 {
	border-radius: 6px 6px 0 0;
	background: #2d6cae;
	color: #fff;
}
.recruit__wrap .wp-block-group {
	padding: 0 2.5em 2.5em;
}
.recruit__wrap .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
	background: #ecf4f5;
	border-radius: 6px;
}
.recruit__wrap .wp-block-table.is-style-stripes tbody tr td {
	padding: 1em .5em;
}
.recruit__wrap .wp-block-table.is-style-stripes tbody tr td:first-child {
	width: 120px;
	text-align: right;
	font-weight: bold;
}
.recruit__wrap .wp-block-table.is-style-stripes tbody tr td:last-child {
	padding-left: 1.5em;
}
.recruit__wrap .wp-block-table.is-style-stripes {
	border: 1px solid #5f9399;
	border-radius: 6px;
}
.recruit__contact-btn a {
	font-weight: inherit;
}
.recruit__enabled {
	margin: 1.5em ;
	padding-bottom: 1.5em !important;
	border-radius: 6px;

}
@media(max-width: 460px) {
	.recruit__wrap .wp-block-table.is-style-stripes tbody tr td {
		padding: 1em !important;
		display: block;
		text-align: left !important;
	}
	.recruit__wrap .wp-block-table.is-style-stripes tbody tr td:first-child {
		width: 100%;
		padding-bottom: 0 !important;
	}
	.recruit__wrap .wp-block-table.is-style-stripes tbody tr td:last-child {
		padding-top: 0 !important;
	}
	
}
