@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');
/* setting */
html {
	height: 100%;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
}
body {
	width: 100%;
	min-width: 1280px;
	font-family: 'roboto','Noto Sans JP', sans-serif;
	background: #fff;
	line-height: 1;
	font-size: 1rem;
	letter-spacing: 0.01em;
	color: #444;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	word-break: break-all;
	box-sizing: border-box;
}
.wrap {
	width: 100%;
	min-height: 100%;
	position: relative;
	overflow: hidden;
}
.page {
	width: 1180px;
	margin: 0 auto;
}
.small {
	width: 920px;
}
.small p {
	line-height: 1.8;
}
.single {
	width: 880px;
}
img {
	width: 100%;
	height: auto;
}
.btn {
	display: block;
	background: #B99759;
	border-radius: 8px;
	text-align: center;
	font-size: 0.875rem;
	font-weight: 700;
	color: #fff;
	position: relative;
	transition: .7s;
}
.main-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 210px;
	height: 48px;
	font-size: 0.875rem;
}
.small-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 160px;
	height: 46px;
}
.center-btn {
	margin: 0 auto;
}
.line {
	background-color: #00B900;
}
.mt {
	letter-spacing: 0.188rem;
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: bold;
}
.br {
	border-radius: 1.125rem;
}
@media screen and (max-width: 560px) {
	body {
		min-width: initial;
	}
	.page {
		width: 88%;
		margin: 0 auto;
	}
	.small,
	.single {
		width: 88%;
	}
	.btn {
		border-radius: 6px;
		font-size: 0.813rem;
	}
	.main-btn {
		width: 140px;
		height: 40px;
		font-size: 0.813rem;
	}
	.small-btn {
		width: 132px;
		height: 40px;
	}
	.br {
		border-radius: 12px;
	}
	.mt {
		letter-spacing: 0.063rem;
	}
}


/* loading */
.loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100dvh;
	z-index: 1000;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: fadeOut 1.5s 2.5s forwards;
}
@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		visibility: hidden;
	}
}
.loading-logo {
	opacity: 0;
	animation: logo_fade 2s 0.5s forwards;
	width: 120px;
}
@keyframes logo_fade {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	60% {
		opacity: 1;
		transform: translateY(0);
	}
	100% {
		opacity: 0;
	}
}
@media screen and (max-width: 560px) {
	.loading-logo {
		width: 96px;
}
}

/* header */
.header {
	width: 100%;
	min-width: 1280px;
	margin-top: 24px;
}
.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
.logo {
	position: absolute;
	top: 24px;
	left: 56px;
}
.logo > a > img {
	width: 233px;
	height: auto;
}
.pc-nav {
	position: absolute;
	top: 40px;
	right: 56px;
}
.pc-nav > ul {
	display: flex;
}
.pc-nav > ul > li {
	margin-left: 24px;
	font-size: 0.938rem;
	font-weight: 600;
}
.pc-nav > ul > li:first-of-type {
	margin-left: 0;
}
.pc-nav > ul > li > a {
	text-decoration: none;
	color: #fff;
	position: relative;
}
.menu-trigger-wrap {
	display: none;
}
#sticky.fixed {
	display: flex;
	justify-content: center;
	width: 100%;
	height: 70px;
	background-color: rgba(51,51,51,.9);
	border-radius: 0;
	position: fixed;
	top: 0;
	z-index: 999;
}
#sticky.fixed .logo {
	top: 14px;
	left: 40px;
}
#sticky.fixed .logo > a > img {
	width: 200px;
}
#sticky.fixed .pc-nav {
	top: 27px;
	right: 40px;
}
.sp-nav {
	display: none;
}
@media screen and (max-width: 560px) {
	.header {
		max-width: initial;
		margin-top: 16px;
	}
	.logo {
		top: 18px;
		left: 36px;
	}
	.logo > a > img {
		width: 144px;
	}
	.pc-nav {
		display: none;
	}
	.menu-trigger-wrap {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 38px;
		height: 38px;
		background: rgba(0,0,0,.3);
		border: 1px solid #ddd;
		border-radius: 6px;
		position: fixed;
		top: 29px;
		right: 30px;
		cursor: pointer;
		z-index: 999;
	}
	.menu-trigger {
		width: 18px;
		height: 6px;
		margin: 0 auto;
		position: relative;
		z-index: 999;
	}
	.menu-trigger span {
		width: 100%;
		height: 1px;
		background-color: #fff;
		position: absolute;
		left: 0;
		transition: transform .5s, opacity .5s;
	}
	.menu-trigger > span:nth-of-type(1) {
		top: 0px;
	}
	.menu-trigger > span:nth-of-type(2) {
		bottom: 0px;
	}
	.menu-trigger.show > span:nth-of-type(1) {
		-webkit-transform: translateY(2.5px) rotate(-45deg);
		transform: translateY(2.5px) rotate(-45deg);
		background: #fff;
	}
	.menu-trigger.show > span:nth-of-type(2) {
		-webkit-transform: translateY(-2.5px) rotate(45deg);
		transform: translateY(-2.5px) rotate(45deg);
		background: #fff;
	}
	.sp-nav {
		display: none;
		width: 100%;
		height: 100svh;
		background: #333;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 997;
	}
	.sp-nav > .sp-nav-inner {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		height: 100%;
	}
	.sp-menu > li {
		margin-bottom: 24px;
		text-align: center;
		font-size: 1rem;
	}
	.sp-menu > li:last-of-type {
		margin-bottom: 40px;
	}
	.sp-menu > li > a {
		color: #fff;
	}
	.h-sns {
		display: flex;
		justify-content: center;
	}
	.h-sns > li {
		margin: 0 8px;
	}
	body.fixed {
		width: 100%;
		height: 100%;
		position: fixed;
		z-index: -10;
	}
	#sticky.fixed {
		display: none;
	}
}



/* top */
.top-swiper-wrap {
	position: relative;
	z-index: -1;
}
.swiper-container-top {
	width: calc(100% - 48px);
	height: calc(100vh - 48px);
	margin: 0 auto;
	border-radius: 18px;
	overflow: hidden;
	position: relative;
}
@keyframes zoom-in {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.15);
	}
}
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img{
	animation: zoom-in 10s linear 0s 1 normal both;  
}
.slide-img {
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	overflow: hidden;
}
.slide-img:before {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.5);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.slide-img01 {
	background-image: url(../images/top-slide01.jpg);
}
.slide-img02 {
	background-image: url(../images/top-slide02.jpg);
}
.slide-img03 {
	background-image: url(../images/top-slide03.jpg);
}
.main-copy {
	color: #fff;
	position: absolute;
	left: 88px;
	bottom: 64px;
	z-index: 2;
}
.main-copy > p {
	font-size: 1.125rem;s
}
.main-copy > h2 {
	margin-top: 24px;
	line-height: 1.5;
	font-size: 2.125rem;
	font-weight: 700;
}
.scrollbar-wrap {
	position: absolute;
	right: 88px;
	bottom: 10px;
	z-index: 2;
}
.scrollbar-text {
	display: inline-block;
	position: absolute;
	bottom: 0;
	padding: 10px 10px 70px;
	letter-spacing: 1;
	color: #fff;
	font-size: 0.625rem;
	line-height: 1;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	writing-mode: vertical-lr;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
}
.scrollbar {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 1px;
}
.scrollbar::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 1px;
	height: 60px;
	background: #fff;
}
.scrollbar::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: -4px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #fff;
	animation: circlemove 2s ease-in-out infinite,
		cirlemovehide 2s ease-out infinite;
}
@keyframes circlemove {
	0% {
		bottom: 55px;
	}
	100% {
		bottom: 0px;
	}
}
@keyframes cirlemovehide {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	80% {
		opacity: 0.9;
	}
	100% {
		opacity: 0;
	}
}
.mission {
	margin-top: 96px;
	margin-bottom: 120px;
}
.mission-inner {
	display: flex;
	justify-content: space-between;
	width: 1100px;
	margin: 0 auto;
	background-image: url(../images/mission.svg);
	background-position: top left;
	background-repeat: no-repeat;
	background-size: 178px 165px;
	padding: 64px 0 0 64px;
}
.mission-head {
	width: 500px;
}
.mission-head > h2 {
	margin-top: 20px;
	line-height: 1.5;
	font-size: 1.875rem;
	font-weight: 700;
	color: #333;
}
.mission-head > p {
	color: #555;
}
.mission-cont {
	width: 600px;
}
.mission-cont > p {
	margin-bottom: 24px;
	line-height: 1.8;
	font-size: 1.125rem;
}
.top-works {
	width: 100%;
	height: 100%;
	padding: 140px 0 120px;
	position: relative;
	z-index: 0
}
.top-works:before {
	display: block;
	content: '';
	width: 82vw;
	height: 100%;
	margin-left: calc(50% - 50vw);
	background: #f8f8f8;
	border-radius: 0 18px 18px 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.top-works-inner {
	width: 1180px;
	margin: 0 auto;
}
.works-swiper-container {
	margin-top: 48px;
}
.top-works-head {
	display: flex;
	justify-content: space-between;
	align-items: start;
}
.top-works-arrow {
	position: relative;
}
.works-arrow {
	display: flex;
	justify-content: space-between;
	width: 118px;
	position: absolute;
	top: 22px;
	right: 180px;
}
.swiper-button-prev,
.swiper-button-next {
	height: 44px;
	width: 44px;
}
.swiper-button-prev:after,
.swiper-button-next:after {
	content: "";
	background-repeat: no-repeat;
	background-size: contain;
	height: 44px;
	width: 44px;
	margin: auto;
}
.swiper-button-prev:after {
	background-image: url(../images/arrow-left.svg);
}
.swiper-button-next:after {
	background-image: url(../images/arrow-right.svg);
}
.works-slide {
	width: 340px;
	margin-left: 44px;
}
.works-slide > a {
	transition: all .7s;
}
.works-slide > a > img {
	border-radius: 18px;
}
.works-slide > a > h3 {
	margin: 24px 0 12px;
	line-height: 1.5;
	font-size: 1.125rem;
	font-weight: 700;
	color: #333;
}
.works-slide > a > p {
	line-height: 1.5;
	font-size: 0.875rem;
}
.works-slide:first-of-type {
	margin-left: 0;
}
.strengths {
	margin-top: 140px;
}
.strengths-cont {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 48px;
}
.strengths-cont:nth-of-type(odd) {
	flex-direction: row-reverse;
}
.strengths-cont:nth-of-type(2) {
	margin: 64px 0;
}
.strengths-text {
	width: 540px;
	padding: 0 56px;
}
.strengths-text > span {
	letter-spacing: 0;
	font-size: 0.813rem;
	color: #717644;
}
.strengths-text > h3 {
	margin: 20px 0 24px;
	font-size: 1.563rem;
	font-weight: 700;
	color: #333;
}
.strengths-text > p {
	line-height: 1.8;
}
.strengths-img {
	width: 580px;
}
.pickup-inner {
	display: flex;
	justify-content: space-between;
	margin-top: 140px;
}
.pickup-left,
.pickup-right {
	width: 580px;
}
.pickup-reform,
.pickup-right-cont {
	width: 100%;
	position: relative;
	overflow: hidden;
	z-index: 0;
}
.pickup-reform:after,
.pickup-right-cont:after {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	background-image: url(../images/reform-back.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: rgba(0,0,0,.5);
	border-radius: 18px;
	transition: all .7s;
}
.pickup-reform > a {
	display: block;
	width: 100%;
	height: 420px;
	transition: .7s;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.pickup-reform > a:after,
.pickup-right-cont > a:after {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.6);
	border-radius: 18px;
	z-index: 2;
}
.pickup-reform-head {
	position: absolute;
	left: 44px;
	bottom: 44px;
	color: #fff;
}
.pickup-reform-head > h4,
.pickup-right-head > h4 {
	display: inline-block;
	margin-bottom: 20px;
	font-size: 1.5rem;
	font-weight: 700;
	position: relative;
}
.pickup-reform-head > P,
.pickup-right-head > P {
	line-height: 1.5;
	font-size: 0.938rem;
}
.pickup-right-cont > a {
	display: block;
	width: 100%;
	height: 200px;
	transition: .7s;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.pickup-carpenter {
	margin-bottom: 20px;
}
.pickup-carpenter:after {
	background-image: url(../images/carpenter-back.jpg);
}
.pickup-company:after {
	background-image: url(../images/company-back.jpg);
}
.pickup-right-head {
	position: absolute;
	top: 50%;
	left: 44px;
	color: #fff;
	transform: translateY(-50%);
}
.top-news {
	width: 100%;
	height: 100%;
	margin-top: 140px;
	padding: 140px 0;
	position: relative;
}
.top-news:before {
	display: block;
	content: '';
	width: 82vw;
	height: 100%;
	margin-right: calc(50% - 50vw);
	background: #f8f8f8;
	border-radius: 18px 0 0 18px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}
.top-news-inner {
	display: flex;
	justify-content: space-between;
}
.top-news-cont {
	width: 880px;
}
.top-news-post {
	margin-top: 24px;
}
.top-news-post:first-of-type {
	margin-top: 0;
}
.top-news-post > a {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 32px;
	background: #fff;
	transition: all .7s;
}
.top-news-btn {
	margin-top: 48px;
}
.ig {
	margin-top: 140px;
}
.ig-inner {
	margin-top: 44px;
}
.sbi_photo img {
	border-radius: 18px !important;
}
@media screen and (max-width: 560px) {
	.top-swiper-wrap {
		height: 560px;
	}
	.swiper-container-top {
		width: calc(100% - 32px);
		height: calc(592px - 32px);
		border-radius: 12px;
	}
	.slide-img01 {
		background-image: url(../images/top-slide01-sp.jpg);
	}
	.slide-img02 {
		background-image: url(../images/top-slide02-sp.jpg);
	}
	.slide-img03 {
		background-image: url(../images/top-slide03-sp.jpg);
	}
	.main-copy {
		left: 40px;
		bottom: 32px;
	}
	.main-copy > p {
		font-size: 1rem;
	}
	.main-copy > h2 {
		margin-top: 14px;
		line-height: 1.5;
		font-size: 1.5rem;
	}
	.scrollbar-wrap {
		display: none;
	}
	.mission {
		margin-top: 56px;
		margin-bottom: 72px;
	}
	.mission-inner {
		display: block;
		width: 96%;
		background-size: 89px 83px;
		padding: 40px 0 0;
	}
	.mission-head {
		width: 100%;
	}
	.mission-head > h2 {
		margin-top: 12px;
		font-size: 1.5rem;
	}
	.mission-cont {
		width: 100%;
		margin-top: 18px;
	}
	.mission-cont > p {
		margin-bottom: 28px;
		line-height: 1.6;
		font-size: 1rem;
	}
	.mission-cont > p > br {
		display: none;
	}
	.top-works {
		padding: 72px 0 56px;
	}
	.top-works:before {
		display: block;
		content: '';
		width: 82vw;
		height: 100%;
		margin-left: calc(50% - 50vw);
		background: #f8f8f8;
		border-radius: 0 12px 12px 0;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}
	.top-works-inner {
		width: 100%;
		margin: 0 auto;
	}
	.works-swiper-container {
		margin-top: 36px;
	}
	.top-works-head {
		display: flex;
		justify-content: space-between;
		align-items: start;
	}
	.top-works-arrow {
		position: relative;
	}
	.works-arrow {
		display: none;
	}
	.works-slide {
		width: 290px;
		margin-left: 32px;
	}
	.works-slide > a {
		transition: none;
	}
	.works-slide > a > img {
		border-radius: 12px;
	}
	.works-slide > a > h3 {
		margin: 24px 0 12px;
	}
	.works-slide > a > p {
		line-height: 1.5;
		font-size: 0.875rem;
	}
	.strengths {
		margin-top: 72px;
	}
	.strengths-cont {
		display: block;
		margin-top: 36px;
	}
	.strengths-cont:nth-of-type(2) {
		margin: 40px 0;
	}
	.strengths-text {
		width: 100%;
		margin-top: 24px;
		padding: 0;
	}
	.strengths-text > span {
		font-size: 0.75rem;
	}
	.strengths-text > h3 {
		margin: 16px 0 20px;
		font-size: 1.125rem;
	}
	.strengths-text > p {
		line-height: 1.7;
	}
	.strengths-img {
		width: 100%;
	}
	.pickup-inner {
		display: block;
		margin-top: 72px;
	}
	.pickup-left,
	.pickup-right {
		width: 100%;
	}
	.pickup-reform,
	.pickup-right-cont {
		width: 100%;
	}
	.pickup-reform:after,
	.pickup-right-cont:after {
		border-radius: 12px;
	}
	.pickup-reform > a {
		height: 245px;
		transition: none;
	}
	.pickup-reform > a:after,
	.pickup-right-cont > a:after {
		border-radius: 12px;
	}
	.pickup-reform-head {
		left: 28px;
		bottom: 32px;
	}
	.pickup-reform-head > h4,
	.pickup-right-head > h4 {
		margin-bottom: 14px;
		font-size: 1.25rem;
	}
	.pickup-reform-head > P,
	.pickup-right-head > P {
		line-height: 1.5;
		font-size: 0.938rem;
	}
	.pickup-right-cont > a {
		height: 140px;
		transition: none;
	}
	.pickup-carpenter {
		margin: 16px 0;
	}
	.pickup-right-head {
		left: 28px;
	}
	.top-news {
		margin-top: 72px;
		padding: 72px 0;
		position: relative;
	}
	.top-news:before {
		width: 100vw;
		border-radius: 0;
	}
	.top-news-inner {
		display: block;
		position: relative;
	}
	.top-news-cont {
		width: 100%;
	}
	.top-news-post {
		margin-top: 23px;
	}
	.top-news-post:first-of-type {
		margin-top: 36px;
	}
	.top-news-post > a {
		display: block;
		width: 100%;
		padding: 24px;
		transition: none;
	}
	.top-news-post > a > h3 {
		margin-top: 16px;
		line-height: 1.5;
		font-size: 1rem;
		font-weight: 600;
		color: #333;
	}
	.top-news-btn {
		margin-top: 0;
		position: absolute;
		top: 0;
		right: 0;
	}
	.ig {
		margin-top: 72px;
	}
	.ig-inner {
		margin-top: 28px;
	}
	.sbi_photo img {
		border-radius: 12px !important;
	}

}



/* page head */
.page-head {
	width: calc(100% - 48px);
	height: 440px;
	margin: 0 auto 1.5rem;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
	position: relative;
	z-index: -1;
}
.page-head:after {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.6);
	border-radius: 18px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
.page-head-inner {
	padding-top: 240px;
	text-align: center;
	position: relative;
	z-index: 1;
}
.service-head {
	background-image: url(../images/service-head.jpg);
}
.company-head {
	background-image: url(../images/company-head.jpg);
}
.works-head {
	background-image: url(../images/works-head.jpg);
}
.reform-head {
	background-image: url(../images/reform-head.jpg);
}
.staff-head {
	background-image: url(../images/staff-head.jpg);
}
.news-head {
	background-image: url(../images/news-head.jpg);
}
.page-head-inner > p {
	margin-bottom: 24px;
	font-size: 2.5rem;
}
.page-head-inner > h2 {
	font-size: 1.125rem;
	font-weight: 700;
	color: #fff;
}
.small-head {
	width: calc(100% - 48px);
	height: 340px;
	margin: 0 auto 1.5rem;
	background-color:#717644;
	color: #fff;
	position: relative;
	z-index: -1;
}
.small-head-inner {
	padding-top: 184px;
}
.breadcrumbs {
	width: 92%;
	margin: 0 auto 120px;
	font-size: 0.813rem;
}
.breadcrumbs a {
	text-decoration: underline;
	color: #B99759;
}
.breadcrumbs a:hover {
	text-decoration: none;
}
@media screen and (max-width: 1024px) {
	.breadcrumbs {
		margin: 0 auto 80px;
	}
}
@media screen and (max-width: 560px) {
	.page-head {
		width: calc(100% - 32px);
		height: 360px;
	}
	.service-head {
		background-image: url(../images/service-head-sp.jpg);
	}
	.company-head {
		background-image: url(../images/company-head-sp.jpg);
	}
	.works-head {
		background-image: url(../images/works-head-sp.jpg);
	}
	.reform-head {
		background-image: url(../images/reform-head-sp.jpg);
	}
	.staff-head {
		background-image: url(../images/staff-head-sp.jpg);
	}
	.news-head {
		background-image: url(../images/news-head-sp.jpg);
	}
	.page-head-inner {
		padding-top: 174px;
	}
	.page-head-inner > p {
		margin-bottom: 18px;
		font-size: 1.625rem;
	}
	.page-head-inner > h2 {
		font-size: 1rem;
		font-weight: 700;
	}
	.small-head {
		width: calc(100% - 32px);
		height: 286px;
	}
	.small-head-inner {
		padding-top: 135px;
	}
	.breadcrumbs {
		width: 88%;
		margin: 0 auto 64px;
		font-size: 0.75rem;
	}
}


/* page common */
.cont-head > p {
	margin-bottom: 18px;
	font-size: 2rem;
	color: #333;
}
.cont-head > h3 {
	font-size: 0.875rem;
	font-weight: 600;
	color: #555;
}
table {
	width: 100%;
	margin-top: -20px;
}
table > tbody > tr {
	border-bottom: 1px solid #ddd;
}
table > tbody > tr > th,
table > tbody > tr > td {
	padding: 32px 0;
}
table > tbody > tr > th {
	width: 18%;
	position: relative;
}
table > tbody > tr > th:after {
	content: '';
	width: 1px;
	height: 50%;
	background: #ddd;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
table > tbody > tr > td {
	width: 82%;
	padding-left: 5%;
}
@media screen and (max-width: 560px) {
	.cont-head > p {
		margin-bottom: 14px;
		font-size: 1.625rem;
	}
	.cont-head > h3 {
		font-size: 0.813rem;
	}
	table {
		display: block;
	}
	table > tbody > tr {
		border-bottom: 1px solid #ddd;
	}
	table > tbody > tr > th,
	table > tbody > tr > td {
		display: block;
		padding: 28px;
	}
	table > tbody > tr > th {
		width: 100%;
		padding: 28px 0 14px;
	}
	table > tbody > tr > th:after {
		display: none;
	}
	table > tbody > tr > td {
		width: 100%;
		padding: 0 0 28px;
		line-height: 1.5;
	}
}



/* service */
.concept-inner {
	display: flex;
	justify-content: space-between;
	margin-top: 72px;
}
.concept-head {
	width: 450px;
	margin-right: 10%;
}
.concept-head > h3 {
	line-height: 1.5;
	font-size: 2rem;
	font-weight: 700;
	color: #333;
}
.concept-cont {
	flex: 1;
}
.concept-cont > p {
	margin-bottom: 24px;
	line-height: 1.8;
}
.scroll {
	display: flex;
	margin: 132px calc(50% - 50vw) 140px;
	overflow: hidden;
}
.scroll-slider {
	display: flex;
	animation: scroll-left 26s infinite linear .5s both;
}
.scroll-slider > li {
	width: calc(100vw / 3);
}
.scroll-slider > li > img {
	display: block;
}
@keyframes scroll-left {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}
.service-cont-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.service-cont-head-inner {
	display: flex;
	align-items: center;
}
.service-cont-head-inner > p {
	margin-left: 64px;
}
.service-cont-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 80px;
}
.service-cont-wrap:nth-of-type(even) {
	flex-direction: row-reverse;
}
.service-img {
	width: 520px;
}
.service-cont {
	flex: 1;
	padding: 0 8%;
}
.servie-number {
	letter-spacing: 0;
	font-size: 0.813rem;
	color: #717644;
}
.servie-number > span {
	margin-left: 6px;
}
.service-cont > h4 {
	margin: 24px 0 32px;
	font-size: 2rem;
	font-weight: 700;
	color: #333;
}
.service-cont > p {
	line-height: 2;
}
.service-menu {
	margin-top: 40px;
	padding: 18px;
	line-height: 1.6;
	background: rgba(113,118,68,.13);
	border: 1px solid #717644;
	font-size: 0.938rem;
	font-weight: 600;
}
@media screen and (max-width: 560px) {
	.concept-inner {
		display: block;
		margin-top: 40px;
	}
	.concept-head {
		width: 100%;
		margin: 0;
	}
	.concept-head > h3 {
		margin-bottom: 32px;
		font-size: 1.5rem;
	}
	.concept-cont {
		flex: 1;
	}
	.concept-cont > p {
		margin-bottom: 22px;
		line-height: 1.7;
	}
	.message-cont > P:first-of-type {
		margin-top: 24px;
	}
	.scroll {
		margin: 72px calc(50% - 50vw);
		overflow: hidden;
	}
	.scroll-slider > li {
		width: calc(100vw / 1.4);
	}
	@keyframes scroll-left {
		from {
			transform: translateX(0);
		}
		to {
			transform: translateX(-100%);
		}
	}
	.service-cont-head {
		display: block;
		position: relative;
	}
	.service-cont-head-inner {
		display: block;
		width: 100%;
	}
	.service-cont-head-inner > p {
		width: 100%;
		margin: 32px 0 0 0;
		padding: 0;
		line-height: 1.7;
	}
	.service-btn {
		position: absolute;
		top: 0;
		right: 0;
	}
	.service-cont-wrap {
		display: block;
		margin-top: 56px;
	}
	.service-cont-wrap:first-of-type {
		margin-top: 40px;
	}
	.service-cont-wrap:nth-of-type(even) {
		flex-direction: row;
	}
	.service-img {
		width: 100%;
		margin-bottom: 32px;
	}
	.service-cont {
		padding: 0;
	}
	.servie-number {
		font-size: 0.75rem;
	}
	.servie-number > span {
		margin-left: 4px;
	}
	.service-cont > h4 {
		margin: 18px 0 22px;
		font-size: 1.5rem;
	}
	.service-cont > p {
		line-height: 1.7;
	}
	.service-menu {
		margin-top: 28px;
		padding: 18px;
		line-height: 1.5;
	}
}



/* company */
.message {
	margin-bottom: 140px;
}
.message-inner {
	display: flex;
	justify-content: space-between;
	margin-top: 72px;
}
.message-cont {
	width: 580px;
}
.message-cont > h4 {
	line-height: 1.5;
	font-size: 2rem;
	font-weight: 700;
	color: #333;
}
.message-cont > P {
	margin-top: 24px;
	line-height: 1.8;
	font-size: 1rem;
}
.message-cont > P:first-of-type {
	margin-top: 36px;
}
.message-cont > dl {
	margin-top: 40px;
	font-weight: 600;
	color: #333;
}
.message-cont > dl > dt {
	margin-bottom: 18px;
}
.message-cont > dl > dd {
	font-size: 1.25rem;
}
.message-img {
	width: 500px;
}
.message-img > img {
	border-radius: 18px;
}
.outline {
	display: flex;
	justify-content: space-between;
}
.outline-data {
	width: 100%;
	max-width: 860px;
}
.map {
	width: 100%;
	height: 0;
	margin-top: 64px;
	padding-top: 56.25%;
	position: relative;
}
.map > iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (max-width: 560px) {
	.message {
		margin-bottom: 72px;
	}
	.message-inner {
		display: block;
		margin-top: 40px;
	}
	.message-cont {
		width: 100%;
		margin-bottom: 56px;
	}
	.message-cont > h4 {
		font-size: 1.5rem;
	}
	.message-cont > P {
		margin-top: 22px;
		line-height: 1.7;
	}
	.message-cont > P:first-of-type {
		margin-top: 24px;
	}
	.message-cont > dl {
		margin-top: 38px;
	}
	.message-cont > dl > dt {
		margin-bottom: 18px;
		font-size: 1.25rm;
	}
	.message-cont > dl > dd {
		font-size: 1.375rem;
	}
	.message-img {
		width: 100%;
	}
	.message-img > img {
		border-radius: 12px;
	}
	.outline {
		display: block;
	}
	.outline-data {
		max-width: initial;
		margin-top: 40px;
	}
	.map {
		margin-top: 48px;
		padding-top: 80%;
	}
}



/* reform */
.flow {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 48px;
	padding: 48px 48px 48px 0;
	background: #f8f8f8;
	position: relative;
}
.flow:after {
	display: block;
	content: '';
	width: 39px;
	height: 36px;
	background-image: url(../images/flow-arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	left: 50%;
	bottom: -26px;
	transform: translateX(-50%);
}
.flow:last-of-type {
	margin-bottom: 0;
}
.flow:last-of-type:after {
	display: none;
}
.step {
	display: flex;
	align-items: center;
	flex-direction: column;
	width: 18%;
	border-right: 1px solid #ddd;
	text-align: center;
}
.step > span {
	display: block;
	margin-top: 8px;
	font-size: 2.75rem;
}
.flow-cont {
	display: flex;
	align-items: center;
	flex: 1;
}
.flow-text {
	flex: 1;
	padding: 0 6%;
}
.flow-text > h3 {
	margin-bottom: 20px;
	font-size: 1.375rem;
	font-weight: 700;
	color: #333;
}
.flow-text > p {
	line-height: 1.8;
}
.flow-text > p > a {
	text-decoration: underline;
	color: #B99759;
}
.flow-text > p > a:hover {
	text-decoration: none;
}
.flow-img {
	width: 280px;
}
@media screen and (max-width: 560px) {
	.flow {
		display: block;
		width: 100%;
		margin-bottom: 32px;
		padding: 40px 24px;
	}
	.flow:after {
		bottom: -22px;
	}
	.step {
		width: 100%;
		margin-bottom: 28px;
		border-right: none;
	}
	.step > span {
		display: block;
		margin-top: 6px;
		font-size: 2.5rem;
	}
	.flow-cont {
		display: block;
		text-align: center;
	}
	.flow-text {
		margin-bottom: 32px;
		padding: 0;
	}
	.flow-text > h3 {
		margin-bottom: 20px;
		font-size: 1.25rem;
	}
	.flow-text > p {
		line-height: 1.7;
	}
	.flow-img {
		width: 100%;
	}
}



/* staff */
.staff {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 80px;
}
.staff:nth-of-type(even) {
	flex-direction: row-reverse;
}
.staff:last-of-type {
	margin-bottom: 0;
} 
.staff-img {
	width: 460px;
}
.staff-cont {
	flex: 1;
	padding: 0 8%;
}
.staff-cont-inner > span {
	font-size: 0.725rem;
	color: #717644;
}
.staff-cont-inner > h3 {
	display: flex;
	align-items: center;
	margin: 24px 0 32px;
	font-size: 1.75rem;
	font-weight: 700;
	color: #333;
}
.staff-cont-inner > h3 > span {
	display: inline-block;
	margin-left: 24px;
	letter-spacing: 1;
	font-size: 0.688rem;
	color: #777;
}
.staff-cont-inner > ul {
	margin-bottom: 40px;
}
.staff-cont-inner > ul > li {
	margin-top: 14px;
}
.staff-cont-inner > p {
	line-height: 2.4;
}
@media screen and (max-width: 560px) {
	.staff {
		display: block;
		margin-bottom: 48px;
	}
	.staff:nth-of-type(even) {
		flex-direction: row;
	}
	.staff:last-of-type {
		margin-bottom: 0;
	} 
	.staff-img {
		width: 100%;
		margin-bottom: 32px;
	}
	.staff-cont {
		padding: 0;
		text-align: center;
	}
	.staff-cont-inner > h3 {
		display: block;
		margin: 20px 0 28px;
		font-size: 1.5rem;
	}
	.staff-cont-inner > h3 > span {
		display: block;
		margin: 16px 0 0;
		font-size: 0.688rem;
	}
	.staff-cont-inner > ul {
		margin-bottom: 32px;
		font-size: 0.938rem;
	}
	.staff-cont-inner > ul > li {
		margin-top: 12px;
	}
	.staff-cont-inner > p {
		line-height: 1.8;
	}
}



/* column */
.column {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}
.works-column {
	flex-direction: row;
}
.main {
	width: 880px;
}
.side {
	width: 230px;
}
ul.page-numbers {
	display: flex;
	justify-content: center !important;
	margin-top: 48px;
}
.page-numbers > li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 38px;
	height: 38px;
	margin: 0 6px;
	border-radius: 19px;
	background: #717644;
	font-size: 0.875rem;
	color: #fff;
}
.page-numbers > li > a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 38px;
	height: 38px;
	background: #ddd;
	border-radius: 19px;
	color: #333;
	transition: .7s;
}
.page-numbers > li > .current {
	background: #717644;
	color: #fff;
}
@media screen and (max-width: 560px) {
	.column {
		display: block;
		width: 88%;
	}
	.main {
		width: 100%;
	}
	.side {
		width: 100%;
		margin: 72px 0 0;
	}
	ul.page-numbers {
		margin-top: 28px;
	}
}



/* works */
.works {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.works-post {
	width: 415px;
	margin-top: 56px;
}
.works-post:nth-of-type(1),
.works-post:nth-of-type(2) {
	margin: 0;
}
.works-post > a {
	display: block;
	transition: .7s;
}
.works-post > a > img {
	border-radius: 18px;
}
.works-post > a > h3 {
	margin: 24px 0 14px;
	line-height: 1.5;
	text-decoration: underline;
	font-size: 1.25rem;
	font-weight: 600;
	color: #333;
}
.works-post > a > p {
	margin-bottom: 18px;
	line-height: 1.5;
	font-size: 0.938rem;
}
.works-post > a > ul {
	display: flex;
	flex-wrap: wrap;
}
.works-post > a > ul > li {
	margin: 0 8px 8px 0;
	padding: 5px 14px 5.5px;
	background: #717644;
	border-radius: 18px;
	font-size: 0.688rem;
	font-weight: 500;
	color: #fff;
}
.works-post > a > ul > li:last-of-type {
	margin: 0 0 8px;
}
@media screen and (max-width: 560px) {
	.works {
		display: block;
	}
	.works-post {
		max-width: 100%;
		margin-top: 48px;
	}
	.works-post:nth-of-type(2) {
		margin-top: 48px;
	}
	.works-post > a > img {
		border-radius: 12px;
	}
	.works-post > a > h3 {
		margin: 24px 0 14px;
		font-size: 1.125rem;
	}
	.works-post > a > p {
		margin-bottom: 16px;
		font-size: 0.874rem;
	}
	.works-post > a > ul > li {
		margin: 0 6px 6px 0;
	}
	.works-post > a > ul > li:last-of-type {
		margin: 0 0 6px;
	}
}


/* works single */
.single-work-header {
	margin-bottom: 24px;
}
.single-work-header > h3 {
	margin-top: 16px;
	line-height: 1.5;
	text-decoration: underline;
	font-size: 1.75rem;
	font-weight: 700;
}
.single-term {
	display: flex;
}
.single-term > li {
	margin-left: 8px;
	font-size: 0.875rem;
}
.single-term > li:first-of-type {
	margin-left: 0;
}
.single-term > li > a {
	color: #717644;
	transition: .7s;
	position: relative;
}
.works-thumb {
	margin-top: -24px;
	box-sizing: border-box;
}
.works-thumb .swiper-slide {
	margin: 0 6px;
	opacity: 0.7;
	cursor: pointer;
	transition: all .7s;
}
.works-thumb .swiper-slide > img {
	border-radius: 6px;
}
.works-thumb .swiper-slide-thumb-active {
	opacity: 1;
}
.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.works-cont-head {
	display: flex;
	align-items: center;
}
.works-cont-head > h4 {
	margin-right: 20px;
	font-size: 1.75rem;
}
.works-cont-head > p {
	font-size: 0.875rem;
}
.point {
	margin-top: 44px;
}
.point > h5 {
	margin-top: 26px;
	line-height: 1.5;
	font-size: 1.375rem;
	font-weight: 700;
	color: #333;
}
.point > p {
	margin-top: 12px;
	line-height: 2;
}
.data {
	margin-top: 56px;
}
.works-table {
	margin-top: 36px;
	border-top: 1px solid #ddd;
}
.works-table > tbody > tr > th {
	width: 24%;
	text-align: center;
}
.user {
	margin-top: 68px;
}
.user-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 12px;
}
.user-img {
	width: 320px;
}
.user-cont {
	width: 510px;
}
.user-cont > h5 {
	margin-bottom: 18px;
	line-height: 1.5;
	font-size: 1.375rem;
	font-weight: 600;
	color: #333;
}
.user-cont > p {
	line-height: 1.8;
}
@media screen and (max-width: 560px) {
	.single-work-header {
		margin-bottom: 12px;
	}
	.single-work-header > h3 {
		margin-top: 12px;
		line-height: 1.5;
		font-size: 1.25rem;
	}
	.single-term {
		display: flex;
	}
	.single-term > li {
		margin-left: 6px;
		font-size: 0.813rem;
	}
	.works-thumb {
		margin-top: -24px;
		box-sizing: border-box;
	}
	.works-thumb .swiper-slide {
		margin: 0 4px;
	}
	.works-cont-head {
		display: flex;
		align-items: center;
	}
	.works-cont-head > h4 {
		margin-right: 16px;
		font-size: 1.5rem;
	}
	.works-cont-head > p {
		font-size: 0.75rem;
	}
	.point {
		margin-top: 32px;
	}
	.point > h5 {
		margin-top: 16px;
		font-size: 1.125rem;
	}
	.point > p {
		margin-top: 12px;
		line-height: 1.7;
	}
	.data {
		margin-top: 48px;
	}
	.works-table {
		display: table;
		width: 100%;
		margin-top: 26px;
	}
	.works-table > tbody > tr > th,
	.works-table > tbody > tr > td {
		width: 100%;
		text-align: left;
	}
	.user {
		margin-top: 56px;
	}
	.user-inner {
		display: block;
		margin-top: 12px;
	}
	.user-img {
		width: 100%;
		margin-bottom: 4px;
	}
	.user-cont {
		width: 100%;
	}
	.user-cont > h5 {
		margin-bottom: 12px;
		font-size: 1.125rem;
	}
	.user-cont > p {
		line-height: 1.7;
	}
}



/* category */
.cat-post {
	margin-top: 24px;
}
.cat-post:first-of-type {
	margin-top: 0;
}
.cat-post > a {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 32px;
	background: #f8f8f8;
	transition: .7s;
}
.cat-post-data {
	display: flex;
	align-items: center;
	width: 200px;
}
.cat-post-data > time {
	font-size: 0.875rem;
}
.cat-post-data > span {
	margin: 0 0 0 22px;
	padding: 5px 18px 6px;
	background: #717644;
	border-radius: 18px;
	font-size: 0.688rem;
	font-weight: 500;
	color: #fff;
}
.cat-post > a > h3 {
	flex: 1;
	line-height: 1.6;
	font-weight: 600;
	color: #333;
}
.side-cont > h3 {
	font-size: 1.25rem;
}
.side-cont:first-of-type {
	margin-bottom: 64px;
}
.side-cont > ul {
	margin-top: 28px;
}
.side-cont > ul > li {
	margin-bottom: 12px;
}
.side-cont > ul > li > a {
	display: inline-block;
	padding: 7px 20px 6.5px;
	background-color: #fff;
	border: 1px solid #717644;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	color: #717644;
	transition: .7s;
}
.side-cont > ul > li > a.current {
	background: #717644;
	color: #fff;
}
.side-select {
	width: 230px;
	height: 52px;
	margin-top: 28px;
	padding-left: 18px;
	background: #eee;
	border-radius: 8px;
	font-size: 0.75rem;
}
@media screen and (max-width: 560px) {
	.cat-post {
		margin-bottom: 20px;
	}
	.cat-post > a {
		display: block;
		padding: 24px;
		transition: none;
	}
	.cat-post-data {
		width: 100%;
	}
	.cat-post-data > time {
		font-size: 0.813rem;
	}
	.cat-post-data > span {
		margin: 0 0 0 20px;
		padding: 5px 16px 6px;
		border-radius: 12px;
		font-size: 0.688rem;
	}
	.cat-post > a > h3 {
		margin-top: 12px;
		font-size: 0.938rem;
	}
	.side-cont:first-of-type {
		margin-bottom: 48px;
	}
	.side-select {
		width: 100%;
		margin-top: 24px;
	}
}



/* single */
.single-header {
	margin-bottom: 40px;
}
.single-header > time{
	font-size: 0.875rem;
	color: #777;
}
.single-header > span {
	margin-left: 16px;
	padding: 5px 18px 6px;
	background: #717644;
	border-radius: 18px;
	font-size: 0.688rem;
	font-weight: 500;
	color: #fff;
}
.single-header > h3 {
	margin-top: 32px;
	line-height: 1.5;
	font-size: 1.75rem;
	font-weight: 700;
}
.single-cont {
	margin-bottom: 48px;
	padding-bottom: 56px;
	border-bottom: 1px solid #ddd;
}
.single-works-cont {
	padding-bottom: 64px;
}
.single-cont > P {
	margin-bottom: 24px;
	line-height: 1.8;
}
.single-cont img {
	margin: 24px 0;
	border-radius: 18px;
}
.single-cont figcaption {
	margin-top: -4px;
	text-align: center;
	font-size: 0.813rem;
}
@media screen and (max-width: 560px) {
	.single-header {
		margin-bottom: 28px;
	}
	.single-header > time{
		font-size: 0.813rem;
	}
	.single-header > span {
		margin-left: 12px;
		padding: 4px 14px 5px;
		border-radius: 12px;
	}
	.single-header > h3 {
		margin-top: 24px;
		line-height: 1.5;
		font-size: 1.375rem;
	}
	.single-cont {
		margin-bottom: 32px;
		padding-bottom: 36px;
	}
	.single-works-cont {
		padding-bottom: 48px;
	}
	.single-cont > P {
		margin-bottom: 20px;
		line-height: 1.7;
	}
	.single-cont img {
		margin: 20px 0;
		border-radius: 12px;
	}
	.single-cont figcaption {
		font-size: 0.75rem;
	}
}


/* contact */
.contact-description {
	text-align: center;
}
.form-cont {
	display: flex;
	justify-content: center;
	margin-top: 36px;
}
.form-cont:first-of-type {
	margin-top: 56px;
}
.form-cont > dt {
	width: 26%;
	padding-top: 17px;
	color: #333;
}
.form-cont > dt span {
	display: inline-block;
	margin-left: 14px;
	color: #FF0000;
}
.form-cont > dd {
	width: 68%;
}
.form-cont > dd input,
.form-cont > dd select,
.form-cont > dd textarea {
	width: 100%;
	padding: 18px;
	background: #f8f8f8;
	border: 1px solid #ddd;
	border-radius: 18px;
}
.form-cont > dd textarea {
	height: 280px;
}
.form-policy {
	margin-top: 48px;
	padding: 24px 0;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	text-align: center;
}
.form-policy label input {
	margin: -3px 3px 0 0;
}
.wpcf7-not-valid-tip {
	margin-top: 12px;
	font-size: 0.75rem;
}
input[type="submit"] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 260px;
	padding: 16px;
	margin: 48px auto 0;
	border-radius: 18px;
	text-align: center;
	font-size: 1.125rem;
	font-weight: 600;
	cursor: pointer;
}
span.wpcf7-spinner {
	display: none;
}
@media screen and (max-width: 560px) {
	.contact-description > br {
		display: none;
	}
	.form-cont {
		display: block;
		margin-top: 28px;
	}
	.form-cont:first-of-type {
		margin-top: 36px;
	}
	.form-cont > dt {
		width: 100%;
		margin-bottom: 12px;
		padding: 0;
	}
	.form-cont > dt span {
		margin-left: 10px;
	}
	.form-cont > dd {
		width: 100%;
	}
	.form-cont > dd input,
	.form-cont > dd select,
	.form-cont > dd textarea {
		padding: 12px;
		border-radius: 12px;
	}
	.form-cont > dd textarea {
		height: 220px;
	}
	.form-policy {
		margin-top: 40px;
		padding: 18px 0;
		font-size: 0.938rem;
	}
	.form-policy label input {
		margin: -3px 3px 0 0;
	}
	input[type="submit"] {
		width: 220px;
		padding: 13px;
		margin: 40px auto 0;
		border-radius: 12px;
		font-size: 1rem;
	}
}


/* plivacypolicy */
.policy-cont {
	margin-top: 48px;
	padding-bottom: 40px;
	border-bottom: 1px solid #ddd;
}
.policy-cont > h3 {
	margin-bottom: 20px;
	line-height: 1.4;
	font-size: 1.25rem;
	font-weight: 600;
}
.policy-cont > ul {
	margin: 20px 0 0 20px;
	list-style-type: circle;
}
.policy-cont > ul > li {
	margin-top: 8px;
	line-height: 1.5;
}
@media screen and (max-width: 560px) {
	.policy-cont {
		margin-top: 40px;
		padding-bottom: 36px;
	}
	.policy-cont > h3 {
		margin-bottom: 14px;
		font-size: 1.25rem;
	}
	.policy-cont > ul {
		margin-top: 16px;
	}
	.policy-cont > ul > li {
		margin-top: 6px;
		line-height: 1.5;
	}
}


/* cta */
.cta {
	width: 1180px;
	margin: 180px auto -100px;
	padding: 48px 64px;
	background-image: url(../images/cta-back.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 1;
}
.cta:after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.6);
	border-radius: 18px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}
.cta-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 2;
}
.cta-head {
	color: #fff;
}
.cta-head > p {
	margin-bottom: 20px;
	font-size: 2rem;
}
.cta-head > h3 {
	font-size: 1.125rem;
}
.cta-cont {
	width: 720px;
	padding: 40px;
	background: #fff;
	text-align: center;
}
.cta-cont > p {
	margin-bottom: 24px;
	line-height: 2;
	font-size: 0.875rem;
	font-weight: 500;
}
.cta-cont > p > br {
	display: none;
}
.cta-cont-inner {
	display: flex;
	justify-content: center;
	align-items: center;
}
.cta-tel > p {
	font-size: 0.875rem;
	font-weight: 700;
	color: #333;
}
.cta-tel > div {
	margin: 14px 0 6px;
	font-size: 1.875rem;
	color: #717644;
	font-weight: 900;
}
.cta-tel > div > span {
	margin-right: 8px;
	font-size: 1.3rem;
}
.cta-tel > span {
	font-size: 0.813rem;
}
.cta-hr {
	width: 1px;
	height: 40px;
	margin: 0 48px;
	background-color: #ddd;
}
.cta-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 240px;
	height: 2.5rem;
	border-radius: 8px;
	text-align: center;
	font-size: 0.875rem;
	font-weight: 600;
}
.cta-btn:first-of-type {
	margin-bottom: 10px;
}
.btn-arrow {
	width: 12px;
	height: auto;
	position: absolute;
	right: 5%;
}
.btn-arrow::before {
	content: '';
	width: 1px;
	height: 20px;
	background-color: #fff;
	position: absolute;
	right: 5%;
}
@media screen and (max-width: 560px) {
	.cta {
		width: 88%;
		margin: 88px auto -100px;
		padding: 56px 20px;
	}
	.cta-inner {
		display: block;
		width: 96%;
		margin: 0 auto;
	}
	.cta-head {
		margin-bottom: 32px;
		text-align: center;
	}
	.cta-head > p {
		margin-bottom: 18px;
		font-size: 1.5rem;
	}
	.cta-head > h3 {
		font-size: 0.875rem;
	}
	.cta-cont {
		width: 100%;
		margin: 0 auto;
		padding: 32px 16px;
	}
	.cta-cont > p {
		line-height: 1.5;
	}
	.cta-cont > p > br {
		display: block;
	}
	.cta-cont-inner {
		display: block;
	}
	.cta-tel > p {
		font-size: 0.875rem;
		font-weight: 700;
		color: #333;
	}
	.cta-tel > div {
		margin: 14px 0 6px;
		font-size: 1.75rem;
	}
	.cta-tel > div > span {
		margin-right: 8px;
		font-size: 1.3rem;
	}
	.cta-tel > span {
		font-size: 0.813rem;
	}
	.cta-hr {
		width: 32px;
		height: 1px;
		margin: 24px auto;
	}
	.cta-btn {
		width: 94%;
		margin: 0 auto;
		height: 2.5rem;
		border-radius: 6px;
	}
}



/* footer */
.footer {
	width: calc(100% - 48px);
	margin: 0 auto 24px;
	padding: 160px 5% 40px;
	background: #333;
	border-radius: 1.125rem;
	color: #fff;
	position: relative;
	z-index: 0;
}
.f-info {
	display: flex;
	align-items: center;
	margin-bottom: 96px;
}
.f-logo > a > img {
	width: 138px;
	height: auto;
}
.f-address {
	display: flex;
}
.f-address:before {
	display: block;
	content: '';
	width: 1px;
	height: 48px;
	margin: 0 72px;
	background: #fff;
}
.f-address > dl:first-of-type {
	margin-right: 56px;
}
.f-address > dl > dt {
	margin-bottom: 18px;
	font-size: 1rem;
}
.f-address > dl > dd {
	font-size: 0.938rem;
}
.f-address > dl > dd > span {
	margin-right: 10px;
}
.f-address > dl > dd > a {
	display: inline-block;
	margin-top: 20px;
	letter-spacing: 0;
	text-decoration: none;
	font-size: 0.813rem;
	font-weight: 400;
	color: #B99759;
	position: relative;
}
.f-cont {
	display: flex;
	justify-content: space-between;
	margin-bottom: 64px;
}
.f-map {
	display: flex;
	align-items: center;
	width: 500px;
}
.f-map > img {
	width: 220px;
	height: auto;
	margin-right: 40px;
}
.f-map > dl > dt {
	margin-bottom: 20px;
	font-size: 1rem;
}
.f-map > dl > dd {
	line-height: 1.6;
	font-size: 0.875rem;
}
.f-nav {
	display: flex;
	margin-bottom: 48px;
	font-size: 0.875rem;
}
.f-nav > ul {
	margin-left: 48px;
}
.f-nav > ul > li {
	margin-bottom: 40px;
}
.f-nav > ul:first-of-type,
.f-nav > ul > li:last-of-type {
	margin: 0;
}
.f-nav > ul > li > a {
	text-decoration: none;
	position: relative;
}
.f-sns {
	display: flex;
	align-items: center;
}
.f-sns > p {
	letter-spacing: 0;
	font-size: 0.75rem;
	font-weight: 400;
}
.f-sns > ul {
	display: flex;
	margin-left: 24px;
}
.f-sns > ul > li:first-of-type {
	margin-right: 10px;
}
.f-sns > ul > li > a {
	transition: .7s;
}
.f-sns > ul > li > a > img {
	width: 36px;
	height: auto;
}
.copy {
	text-align: center;
	font-size: 0.688rem;
}
@media screen and (max-width: 560px) {
	.footer {
		width: 100%;
		margin: 0 auto;
		padding: 160px 5% 40px;
		border-radius: 1rem 1rem 0 0;
	}
	.f-info {
		display: block;
		margin-bottom: 48px;
	}
	.f-logo > a > img {
		display: block;
		margin: 0 auto 48px;
	}
	.f-address {
		display: block;
		text-align: center;
		margin-bottom: 56px;
	}
	.f-address:before {
		display: none;
	}
	.f-address > dl:first-of-type {
		margin: 0 0 32px;
	}
	.f-address > dl > dt {
		margin-bottom: 14px;
		font-size: 1rem;
	}
	.f-address > dl > dd {
		line-height: 1.5;
		font-size: 0.938rem;
	}
	.f-address > dl > dd > span {
		display: block;
		margin-right: 0;
	}
	.f-address > dl > dd > a {
		display: inline-block;
		margin-top: 12px;
		font-size: 0.813rem;
	}
	.f-cont {
		display: block;
		margin-bottom: 56px;
	}
	.f-map {
		display: block;
		width: 82%;
		margin: 0 auto 56px;
		text-align: center;
	}
	.f-map > img {
		display: block;
		width: 260px;
		margin: 0 auto 24px;
	}
	.f-link {
		display: block;

	}
	.f-nav {
		flex-wrap: wrap;
		width: 82%;
		margin: 0 auto 16px;
	}
	.f-nav > ul {
		width: 50%;
		margin: 0 0 24px;
	}
	.f-nav > ul > li {
		margin-bottom: 24px;
	}
	.f-sns {
		justify-content: center;
	}
	.f-sns > p {
		font-size: 0.688rem;
	}
}


@media (hover: hover) {
	.btn:hover {
		opacity: .7;
	}
	.news-button-prev:hover,
	.news-button-next:hover {
		opacity: 7;
	}
	.pickup-reform:hover::after,
	.pickup-right-cont:hover::after {
		transform: scale(1.1);
	}
	.works-post > a:hover {
		opacity: .7;
	}
	.top-news-post > a:hover,
	.cat-post > a:hover {
		background: #eee;
	}
	.side-cont > ul > li > a:hover {
		background-color: #717644;
		color: #fff;
	}
	.page-numbers > li > a:hover {
		background: #717644;
		color: #fff;
	}
	.cta-btn:hover {
		opacity: .7;
	}
	.pickup-reform a .pickup-reform-head > h4::after,
	.pickup-right-cont a .pickup-right-head > h4::after {
		content: '';
		width: 100%;
		height: .5px;
		background: #fff;
		position: absolute;
		left: 0;
		bottom: -1px;
		transform: scale(1, 1);
		transform-origin: right top;
		transition: transform 0.5s;
	}
	.pc-nav > ul > li > a::after,
	.f-nav > ul > li > a::after {
		position: absolute;
		left: 0;
		content: '';
		width: 100%;
		height: .5px;
		background: #fff;
		bottom: -1px;
		transform: scale(0, 1);
		transform-origin: right top;
		transition: transform 0.5s;
	}
	.single-term > li > a::after {
		position: absolute;
		left: 0;
		content: '';
		width: 100%;
		height: .5px;
		background: #717644;
		bottom: -1px;
		transform: scale(0, 1);
		transform-origin: right top;
		transition: transform 0.5s;
	}
	.f-address > dl > dd > a::after {
		position: absolute;
		left: 0;
		content: '';
		width: 100%;
		height: .5px;
		background: #B99759;
		bottom: -1px;
		transform: scale(0, 1);
		transform-origin: right top;
		transition: transform 0.5s;
	}
	.pickup-reform a:hover .pickup-reform-head > h4::after,
	.pickup-right-cont a:hover .pickup-right-head > h4::after {
		transform: scale(0, 1);
		transform-origin: left top;
	}
	.pc-nav > ul > li > a:hover::after,
	.single-term > li > a:hover::after,
	.f-address > dl > dd > a:hover::after,
	.f-nav > ul > li > a:hover::after {
		transform: scale(1, 1);
		transform-origin: left top;
	}
	.f-sns > ul > li > a:hover {
		opacity: .7;
	}
}

