@charset "UTF-8";

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	font-family: platelet, fot-tsukubrdgothic-std, sans-serif;
	font-weight: 700;
	font-style: normal;
	color: #B17059;
	min-width: 1280px;
	margin: 0;
	line-height: normal;
}


@media (max-width:767px) {
	body {
		min-width: 0;
	}
}

@media (min-width:768px) {
	.visible-sp {
		display: none;
	}
}

@media (max-width:767px) {
	.visible-pc {
		display: none;
	}
}

.fadeout::after {
	opacity: 1;
	border-radius: 0;
}

body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* 背景カラー */
	z-index: 10002;
	/* 一番手前に */
	pointer-events: none;
	/* 他の要素にアクセス可能にするためにポインターイベントは無効に */
	opacity: 0;
	/* 初期値では非表示 */
	-webkit-transition: opacity .8s ease;
	/* アニメーション時間は 0.8秒 */
	-ms- transition: opacity .8s ease;
	-moz- transition: opacity .8s ease;
	transition: opacity .8s ease;
}

main {
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
}

img {
	max-width: 100%;
	height: auto;
}

#main img {
	width: 70%;
	max-width: none;
}

a {
	color: #c84e0e;
	text-decoration: none;
}

.wrapper {
	width: 1280px;
	margin: 0 auto;
	padding:0 80px
}

@media (max-width:767px) {
	.wrapper {
		width: 100%;
		padding:0 10px;
	}

	main .wrapper {
		display: block !important;
	}
}

table {
	border-collapse: collapse;
}

th,
td {
	padding: 15px 30px;
}

table tr+tr th,
table tr+tr td {
	border-top: dashed 1px #b17059;
}

@media (max-width:767px) {
	th,
	td {
		padding: 15px 10px;
	}

	table th,
	table td {
		border-top: dashed 1px #b17059;
	}

	table tr:last-child th,
	table tr:last-child td {
		border-bottom: dashed 1px #b17059;
	}
}

.cols {
	display: flex;
	flex-wrap: wrap;
}

.col2 {
	width: calc(100%/2 - 33px);
	margin: 0 16px 33px;
}

.col3 {
	width: calc(100%/3 - 33px);
	margin: 0 16px 33px;
}

.col4 {
	width: calc(100%/4 - 33px);
	margin: 0 16px 33px;
}

@media (max-width:767px) {
	.col2 {
		width: calc(50% - 16px);
		margin: 0 8px 33px;
	}	
	
	.col3 {
		width: 100%;
		margin: 0 0 30px;
	}

	.col4 {
		width: calc(100% - 16px);
		margin: 0 8px 33px;
	}
}

@media (min-width:768px) {
	.sp_menu,
	.sp_nav_btn {
		display: none;
	}
}

.sp_menu {
	height: 100vh;
	width: 260px;
	position: fixed;
	left: -280px;
	top: 0;
	z-index: 9999;
	background: rgba(200, 78, 14, 0.9);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all .5s;
	padding: 0 40px;
}

@media (max-width:767px) {
	.sp_nav_btn_wrap {
		display: block;
		height: 50px;
		width: 50px;
		position: absolute;
		right: 15px;
		top: 15px;
		z-index: 10001;
		transition: all .5s;
	}

	.sp_nav_btn_wrap::after {
		content: "MENU";
		display: block;
		font-size: 20px;
		font-weight: normal;
		margin-top: 25px;
		width: 100%;
		text-align: center;
		color: #C84E0E;
	}

	.sp_nav_btn {
		width: 40px;
		display: block;
		position: relative;
		z-index: 999;
		right: -5px;
		transition: all .5s;
		top: 12px;
	}

	.open.sp_nav_btn_wrap {}

	.sp_nav_btn span,
	.sp_nav_btn span::before,
	.sp_nav_btn span::after {
		display: block;
		background: #C84E0E;
		width: 100%;
		height: 5px;
		position: relative;
		transition: all .5s;
		border-radius: 5px;
	}

	.sp_nav_btn span {
		background: #C84E0E;
	}

	.open .sp_nav_btn span {
		background: transparent;
	}

	.sp_nav_btn span::before {
		content: "";
		top: -10px;
	}

	.sp_nav_btn span::after {
		content: "";
		margin-top: 5px;
	}

	.open .sp_nav_btn span::before {
		transform: rotate(-45deg);
		width: 100%;
		top: 2px;
		margin-left: -2px;
	}

	.open .sp_nav_btn span::after {
		transform: rotate(45deg);
		width: 100%;
		margin-top: -3px;
		margin-left: -2px;
	}
}


.sp_menu.open {
	left: 0;
}

.sp_menu ul {
	list-style: none;
	padding: 0;
	width: 100%;
}

.sp_menu li {
	text-align: center;
}

.sp_menu li+li {
	border-top: solid 1px #fff;
}

.sp_menu a {
	color: #fff;
	text-decoration: none;
	display: block;
	padding: 10px 0;
}

header {
	background: rgba(255, 255, 255, 0.8);
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	padding: 20px 0;
	z-index: 1000;
}

@media (max-width:767px) {
	header {
		padding: 10px 15px;
	}
}

header .wrapper {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

@media (max-width:767px) {
	header .wrapper {
		justify-content: flex-start;
	}
}

.header_logo {
	width: 250px;
}

.header_logo img {
	width: 100%;
	height: auto;
}


@media (max-width:767px) {
	.header_logo img {
		width: auto;
		height: 50px;
	}
	.header_menu {
		display: none;
	}
}

.header_menu ul {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
}

.header_menu li {
	padding: 0 20px;
}

.header_menu li a {
	text-align: center;
	display: block;
	padding: 5px 0;
	border-bottom: solid 5px transparent;
	transition: all .25s;
	font-size:13px;
	letter-spacing: -0.25px;
}

.header_menu li a:hover {
	border-color: #c84e0e;
}

header a {
	text-decoration: none;
	color: #707070;
}

header a span {
	display: block;
}

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

.header_contact a {
	display: block;
	background: #C84E0E;
	color: #fff;
	padding: 10px 40px;
	text-align: center;
}


#main{
 padding: 0px;	
}

.bg-switcher {
    width: 100vw;
    height: 100vh;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bg-title {
color: #fff;
font-size: 5vw;
text-align: center;
background: rgba(255,255,255,0.2);
margin-top: 80px;
max-width: 500px;
padding: 30px 20px;
}
 

@media (max-width:767px) {
	.top_main {
		margin-top: 0px;
		background: url(../images/top_img_sp.jpg) center no-repeat;
		background-size: contain;
	}
.bg-title {
	padding: 20px;
	margin-left: 20px;
	margin-right: 20px;
}
}

.top_main .wrapper {
	height: 100vh;
	display: flex;
	align-items: center;
	z-index: 100;
	opacity: 1;
	transition: all .5s;
	transform: translate(0, 5%);
}

.top_main .wrapper img {
	width: 460px;
	height: auto;
	opacity: 0;
}
@media (min-width:768px) {
	.top_main .wrapper img {
		margin-left: 8vw;
		margin-top: -5vh;
	}
}

.loaded .top_main .wrapper img {
	animation: main13 8s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s forwards;
}
@keyframes main13 {
	60% {
		opacity: 0;
	}

	65% {
		opacity: 1;
		transform: translate(0, 0);
	}

	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}


@media (max-width:767px) {
	.top_main .wrapper {
		padding: 0 40px;
	}

	.top_main .wrapper img {
		width: 100%;
		margin-top: 130px;
	}
}

.top_main>img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 125vh;
	opacity: 0;
	transition: all .5s;
}

@media (max-width:767px) {
	.top_main>img {
		position: absolute;
		top: 70%;
		left: 50%;
		transform: translate(-50%, -50%);
		height: 70vh;
		opacity: 0;
		transition: all .5s;
	}
}

#main1 {
	z-index: 2;
	transform: translate(-50%, -50%);
	opacity: 0;
}
.loaded #main1 {
	animation: main1 8s ease-in-out 0s forwards;
}

@keyframes main1 {
	15% {
		opacity: 0;
	}

	25% {
		opacity: 1;
	}

	100% {
		opacity: 1;
	}
}

#main2 {
	z-index: 1;
	opacity: 1;
}

#main3 {
	z-index: 3;
}
.loaded #main3 {
	animation: main3 8s ease-in-out 0s forwards;
}

@keyframes main3 {
	25% {
		opacity: 0;
	}

	30% {
		opacity: 1;
	}

	100% {
		opacity: 1;
	}
}

#main4 {
	z-index: 4;
}
.loaded #main4 {
	animation: main4 8s ease-in-out 0s forwards;
}

@keyframes main4 {
	30% {
		opacity: 0;
	}

	35% {
		opacity: 1;
	}

	100% {
		opacity: 1;
	}
}

#main5 {
	z-index: 5;
}
.loaded #main5 {
	animation: main5 8s ease-in-out 0s forwards;
}

@keyframes main5 {
	35% {
		opacity: 0;
	}

	40% {
		opacity: 1;
	}

	100% {
		opacity: 1;
	}
}

#main6 {
	z-index: 6;
}
.loaded #main6 {
	animation: main6 8s ease-in-out 0s forwards;
}


@keyframes main6 {
	40% {
		opacity: 0;
	}

	45% {
		opacity: 1;
	}

	100% {
		opacity: 1;
	}
}

#main7 {
	z-index: 7;
}
.loaded #main7 {
	animation: main7 8s ease-in-out 0s forwards;
}

@keyframes main7 {
	45% {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 1;
	}
}

#main8 {
	z-index: 8;
}
.loaded #main8 {
	animation: main8 8s ease-in-out 0s forwards;
}

@keyframes main8 {
	50% {
		opacity: 0;
	}

	55% {
		opacity: 1;
	}

	100% {
		opacity: 1;
	}
}

#main9 {
	z-index: 11;
}
.loaded #main9 {
	animation: main9 8s ease-in-out 0s forwards;
}

@keyframes main9 {
	65% {
		opacity: 0;
	}

	70% {
		opacity: 1;
	}

	100% {
		opacity: 1;
	}
}

#main10 {
	z-index: 11;
	transform: translate(-50%, -45%);
}
.loaded #main10 {
	animation: main10 8s ease-in-out 0s forwards;
}

@keyframes main10 {
	0% {
		opacity: 0;
	}

	5% {
		opacity: 1;
		transform: translate(-50%, -50%);
	}

	100% {
		opacity: 1;
		transform: translate(-50%, -50%);
	}
}

#main11 {
	z-index: 10;
	transform: translate(-45%, -45%);
}
.loaded #main11 {
	animation: main11 8s ease-in-out 0s forwards;
}

@keyframes main11 {
	5% {
		opacity: 0;
	}

	10% {
		opacity: 1;
		transform: translate(-50%, -50%);
	}

	100% {
		transform: translate(-50%, -50%);
		opacity: 1;
	}
}

#main12 {
	z-index: 12;
}
.loaded #main12 {
	animation: main12 8s ease-in-out 0s forwards;
}

@keyframes main12 {
	55% {
		opacity: 0;
	}

	60% {
		opacity: 1;
	}

	100% {
		opacity: 1;
	}
}

#main14 {
	z-index: 10;
	transform: translate(-45%, -45%);
}
.loaded #main14 {
	animation: main14 8s ease-in-out 0s forwards;
}

@keyframes main14 {
	55% {
		opacity: 0;
	}

	60% {
		opacity: 1;
		transform: translate(-50%, -50%);
	}

	100% {
		transform: translate(-50%, -50%);
		opacity: 1;
	}
}

#main15 {
	z-index: 10;
	transform: translate(-45%, -45%);
}
.loaded #main15 {
	animation: main15 8s ease-in-out 0s forwards;
}

@keyframes main15 {
	60% {
		opacity: 0;
	}

	65% {
		opacity: 1;
		transform: translate(-50%, -50%);
	}

	100% {
		transform: translate(-50%, -50%);
		opacity: 1;
	}
}

.top_news {
	background: #fff;
	padding: 35px 0;
}

@media (max-width:767px) {
	.top_news {
		padding: 15px;
	}
}

.top_news .wrapper {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.top_news h1 {
	margin: 0;
	text-align: center;
	width: 33%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.top_news h1 img:last-child {
	margin-left: 30px;
	width: 88px;
}

.top_news ul {
	list-style: none;
	margin: 0;
	width: 580px;
	padding: 0;
}

@media (max-width:767px) {
	.top_news h1 {
		margin: 0 0 20px;
		text-align: center;
		width: 100%;
		flex-direction: column;
		padding-bottom: 10px;
	}

	.top_news h1 img {
		width: 58px;
		display:block;
	}

	.top_news h1 img:last-child {
		margin-left: 0px;
		margin-top: 20px;
		width: 88px;
	}

	.top_news ul {
		list-style: none;
		margin: 0;
		width: 100%;
	}
}

.top_news ul li {
	padding: 15px 10px;
	display: flex;
	align-items: center;
}

.top_news ul li+li {
	border-top: dotted 1px #707070;
}

.top_news ul li .date {
	display: inline-block;
}

.top_news ul li .cat {
	display: inline-block;
	background: #C84E0E;
	padding: 10px 0;
	color: #fff;
	margin: 0 30px;
	line-height: 1;
	width: 90px;
	text-align: center;
}

.top_news ul li a {
	display: inline-block;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	max-width:310px;
}

@media (max-width:767px) {
	.top_news ul li {
		display: block;

	}

	.top_news ul li .cat {
		padding: 5px 10px;
		margin: 0 20px;
	}

	.top_news ul li a {
		width: 100%;
		display: block;
		margin-top: 15px;
	}
}

.top_news ul li,
.top_news ul li a {
	color: #707070;
}

section {
	padding: 40px 0 200px;
}

@media (max-width:767px) {
	section {
		padding: 60px 15px;
	}
}

h1 {
	font-size: 70px;
	line-height: 1;
	padding: 30px 0px;
	color: #b17059;
	margin: 0 0 50px;
}


#main h1 span {
display: block;
font-size: 16px;
font-weight: 100;
text-align: left;
padding: 10px 40px;
line-height: 1.25;
}

h1 span {
	display: block;
	font-size: 20px;
}

@media (max-width:767px) {
	h1 {
		font-size: 50px;
	}

	h1 span {
		font-size: 24px;
	}
	#main h1 span {
font-weight: 100;
padding: 10px;
}
}

.top_about {
	background: #FFF9F0;
	color: #B17059;
}



.top_about h1 {
	text-align: center;
	color: #B17059;
	padding: 60px 0;
	background: url(../images/no01.png) center no-repeat;
}

.top_about h2{
	line-height: 1.25;
	text-align: center;
	padding: 50px 0 10px;
}

.top_about h3{
	text-align: center;
	font-size: 20px;
}

.top_about ul{
	padding: 0;
}

.about_top_li{
	max-width: 928px;
	margin: 0 auto;
}

.top_about .about_top_li .col2{
	border: 1px solid #B17059;
	background: #fff;
	padding: 10px 5px;
	display: block;
	margin-bottom: 15px;
	box-sizing: border-box;
	line-height: 1.25;
	list-style: none;
	text-align: center;
	position: relative;
}

.top_about .about_top_li .col2:nth-child(2n){
	border: 1px solid #C84E0E;
	color: #C84E0E;
}

.top_about .about_top_li .col2:nth-child(2):before{
	content: url(../images/icon_arrow.svg);
	position: absolute;
	left: -22px;
}





.top_about .wrapper .about_left {
	padding-left: 80px;
}

.top_about .wrapper .about_right {
	margin: 25px 0 0 32px;
	padding-right: 80px;
	position: relative;
	background-size: contain;
}

.top_about .wrapper .about_right .slider {
	display: none;
}

.top_about .wrapper .about_right .slider li {
	outline: none;
}

.top_about .wrapper .about_right .slider li img:focus {
	outline: none;
}

.top_about .wrapper .about_right img {
	width: 100%;
}

.top_about .wrapper .about_right::after {
	content: "";
	width: 410px;
	height: 136px;
	background: url(../images/about_0102.png) bottom right no-repeat;
	position: absolute;
	bottom: 15px;
	right: 80px;
}

.top_about .wrapper p {
	max-width: 700px;
	margin: 0 auto;
}


@media (max-width:767px) {
		.top_about .wrapper>div {
		width: 100%;
	}
.top_about .about_top_li .col2:nth-child(2):before{
	left: -15px;
	top:40%;
}
	
.top_about .about_top_li .col2 div span{
	height: 100px;
}

.top_about li:before{
	content: url(../images/icon_arrow.svg);
}

.top_about h1 {
	line-height: 1;
	font-size: 50px;
	position: relative;
	display: inline-block;
	margin-bottom: 0;
	text-align: center;
	width: 100%;
	background-size: 60%;
	}	
	
.top_about h2 {
	margin-bottom: 10px;
	font-size: 20px;
	text-align: center;
	}
	
	.top_about .wrapper .about_left {
		padding-left: 0;
	}

	.top_about .wrapper .about_right {
		padding-right: 0;
		margin: 0 0 40px;
	}

	.top_about .wrapper .about_right::after {
		content: "";
		width: 100%;
		height: 80px;
		background: url(../images/about_0102.png) bottom right no-repeat;
		background-size: contain;
		position: absolute;
		bottom: -30px;
		right: 0;
	}

	.top_about .wrapper .about_right ul {
		padding: 0;
	}
}


.top_works {
	background: #FFF;
	color: #B17059;
	position: relative;
}
@media (max-width:767px) {
	.top_works {
		padding-bottom: 140px;
	}
}

.top_works::before,
.top_works::after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	top: -100px;
}
/*

.top_works::before {
	left: -30vw;
	border-bottom: 100px solid #FFF;
	border-left: 60vw solid transparent;
	border-right: 60vw solid transparent;
}

.top_works::after {
	right: -0;
	top: -60px;
	border-left: 40vw solid transparent;
	border-bottom: 60px solid #FFF;
}
*/

.top_works h1 {
	text-align: center;
	background: url(../images/no03.png) 15px center no-repeat;
	background-position: center;
	padding: 80px 0;
	margin-bottom: 15px;
}

@media (max-width:767px) {
	
	.top_works h1 {
		background: url(../images/no03.png) center no-repeat;
		background-size: auto 120%;
		padding: 70px 0 10px;
		background-position-y: -25px;
	}
}

.top_works .kv {
	display: block;
	background: #FFD7C3 center no-repeat;
	padding: 10px;
	position: relative;
	background-size: cover;
}

.top_works p {
	word-break: break-word;
	margin-bottom: 20px;
}

@media (max-width:767px) {
	.top_works p {
		margin-bottom: 0;
	}
}

.top_works .kv::after {
	content: "";
	display: block;
	padding-top: 60%;

}

.top_works .kv span {
	position: absolute;
	bottom: 10px;
	left: 10px;
	padding: 8px 20px 4px;
	background: #fff;
	color: #C84E0E;
	font-weight: bold;
	line-height: 1;
}

.top_works .title {
	font-weight: bold;
}

.top_works .excerpt {
	line-height: 1.6;
	font-weight: normal;
	word-break: break-all;
}

.btn_link {
	background: #C84E0E;
	text-decoration: none;
	color: #fff;
	display: block;
	width: 300px;
	text-align: center;
	padding: 23px 20px 20px;
	border-radius: 40px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	/*box-shadow:0 0 10px -8px #000;*/
	box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
	transition: all .5s;
	line-height: 1;
}

.btn_link:hover {
	/*box-shadow:0 0 15px -5px #000;*/
	box-shadow: inherit;
}

@media (max-width:767px) {
.btn_link {
	width: 250px;
	}
}

.top_core {
	background: #FDF2ED;
	position: relative;
	padding: 40px 0 160px;
}

@media (max-width:767px) {
	.top_core {
		padding: 40px 10px;
	}
}


.top_core::before,
.top_core::after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	position: absolute;
}

.top_core::before {
	top: -100px;
	left: -30vw;
	border-bottom: 100px solid #fdf2ed;
	border-left: 60vw solid transparent;
	border-right: 60vw solid transparent;
}

.top_core::after {
	right: -0;
	top: -60px;
	border-left: 40vw solid transparent;
	border-bottom: 60px solid #fdf2ed;
}

.top_core .wrapper {
	position: relative;
}

.top_core .wrapper::before {
	content: "";
	display: block;
	position: absolute;
	top: -195px;
	z-index: 1;
	right: 0px;
	width: 235px;
	height: 220px;
	background: url(../images/works_01.png) center no-repeat;
}

@media (max-width:767px) {
	.top_core .wrapper::before {
		top: -110px;
		z-index: 1;
		right: 10px;
		width: 110px;
		height: 110px;
		background: url(../images/works_01.png) center no-repeat;
		background-size: cover;
	}
}

.top_core h1 {
	text-align: center;
	color: #B17059;
	padding: 60px 0;
	background: url(../images/no04.png) center no-repeat;
}

@media (max-width:767px) {
	.top_core h1 {
		padding: 40px 0 80px;
		background-size: 60%;
	}
}

.top_core .col4 {
	background: #fff;
	padding: 20px;
	border-radius: 20px;
	transition: all .5s;
	box-shadow: 0 0 0 -5px #000;
	position: relative;
	bottom: 0;
	margin-bottom: 50px;
}

.top_core .col4:hover {
	box-shadow: 0 0 20px -15px #000;
	cursor: pointer;
}

.top_core .kv {
	display: block;
	padding: 10px;
	position: relative;
	background: transparent center no-repeat;
}

.top_core .cols>div:nth-child(1) .kv {
	background-image: url(../images/core_01.png);
}

.top_core .cols>div:nth-child(2) .kv {
	background-image: url(../images/core_02.png);
}

.top_core .cols>div:nth-child(3) .kv {
	background-image: url(../images/core_03.png);
}

.top_core .cols>div:nth-child(4) .kv {
	background-image: url(../images/core_04.png);
}

.top_core .kv::after {
	content: "";
	display: block;
	padding-top: 110px;

}

.top_core .title {
	color: #B17059;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
	font-size: 18px;
}

@media (min-width:768px) {
	.top_core .cols>div:nth-child(4) .title {
		margin-top: calc(18px + 0.5em);
	}

	.top_core .cols>div:nth-child(4) .title span {
		margin-top: 0.5em;
	}
}

@media (max-width:767px) {
	.top_core .title {
		font-size: 20px;
		line-height: 1.25;
		display: block;
		width: calc(100% + 60px);
		margin: 0 -30px;
	}
	.top_core .col4{
		padding: 40px;
	}
}

.top_core .title span {
	display: block;
	color: #717171;
}

.top_core .desc {
	color: #B17059;
	line-height: 1.6;
	font-weight: normal;
	margin-bottom: 40px;
}

.top_core .more {
	font-size: 20px;
	display: block;
	text-decoration: none;
	color: #C84E0E;
	background: #FFD7C3;
	position: absolute;
	padding: 15px 0;
	border-radius: 25px;
	bottom: -25px;
	left: 50%;
	transform: translateX(-50%);
	width: 170px;
	text-align: center;
}

.top_service {
	background: #fff;
	max-width: 1120px;
	margin: 0 auto;
	padding-top: 100px;
}

@media (max-width:767px) {
	.top_service {
		padding: 60px 0 0;
	}
}

.top_service .service_header {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 100px;
}

.top_service h1 {
	text-align: center;
	padding: 60px 0;
	background: url(../images/no02.png) center no-repeat;
	margin: 0;
}

.top_service .service_header div {
	width: 60%;
	padding: 30px 40px;
	color: #b17059;
	background: #fdf2ed;
}


.top_service_skill{
	text-align: center;
	padding: 50px 0px
}

.top_service_skill span{
	border-radius: 20px;
	padding: 5px 5px;
	margin-bottom: 5px;
	border: 1px solid #B17059;
	font-size: 12px;
	color: #B17059;
	display: inline-block;
}
	
@media (max-width:767px) {
	.top_service h1 {
		width: 100%;
		background-size: 60%;
	}

	.top_service .service_header {
		display: block;
		margin-bottom: 60px;
	}

	.top_service .service_header div {
		width: calc(100% - 40px);
		margin: 0 auto;
		padding: 40px;
	}
	.top_service_skill{
	text-align: center;
	padding: 0px 25px 50px;
}
}

.service_items .col2{
	margin: 0 16px 25px;
}

.top_service .service_items .service_item,
.top_service .service_items .service_item2,
.top_service .service_items .service_item3{
	text-align: center;
	transition: all .5s;
}

.top_service .service_items .service_item,
.top_service .service_items .service_item2,
.top_service .service_items .service_item3{
	background: #FFF9F0;
}

.top_service .service_items .service_item:hover,
.top_service .service_items .service_item2:hover,
.top_service .service_items .service_item3:hover{
	box-shadow: 0 0 20px -15px #000;
}

.top_service .service_items .service_item .wrapper, 
.top_service .service_items .service_item2 .wrapper,
.top_service .service_items .service_item3 .wrapper{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 150px;
	padding-left: 35%;
	background-repeat: no-repeat;
	background-position: 2.5% center;
	flex-direction: column;
	background-size: auto 100%;
	transition: all .25s;
}

@media (min-width:768px) {
	.top_service .service_items .service_item .wrapper:hover,
	.top_service .service_items .service_item2 .wrapper:hover,
	.top_service .service_items .service_item3 .wrapper:hover
	{
		background-position: 80px center;
		cursor: pointer;
	}
}

@media (max-width:767px) {
	.top_service .service_items .service_item .wrapper,
	.top_service .service_items .service_item2 .wrapper,
	.top_service .service_items .service_item3 .wrapper{
		height: 140px;
		padding-left: 35%;
		background-position: -100px center;
		display: flex !important;
	}
}

.top_service .service_items .service_item .wrapper,
.top_service .service_items .service_item2 .wrapper,
.top_service .service_items .service_item3 .wrapper{
background-position: 150px center;
}


@media (max-width:767px) {
	.top_service .service_items .service_item .wrapper,
	.top_service .service_items .service_item2 .wrapper,
	.top_service .service_items .service_item3 .wrapper{
		background-position: -150px center;
	}
}


.top_service .service_items .service_item:nth-child(1) .wrapper,
.top_service .service_items .service_item:nth-child(2) .wrapper,
.top_service .service_items .service_item2:nth-child(1) .wrapper,
.top_service .service_items .service_item2:nth-child(2) .wrapper,
.top_service .service_items .service_item3:nth-child(1) .wrapper,
.top_service .service_items .service_item3:nth-child(2) .wrapper{
	position: relative;
}
.top_service .service_items .service_item:nth-child(1) .wrapper :before {
content: "";
width: 70%;
height: 100%;
position: absolute;
background-size: 100%;
background-image: url(../images/service_01.png);
background-position-x: -160px;
filter: grayscale(90%);
left: 0;
top: 0;
background-repeat: no-repeat;
transition: all .25s;
z-index: -1;
}

.top_service .service_items .service_item:nth-child(2) .wrapper :before {
content: "";
width: 70%;
height: 100%;
position: absolute;
background-size: 100%;
background-image: url(../images/service_02.png);
background-position-x: -160px;
filter: grayscale(90%);
left: 0;
top: 0;
background-repeat: no-repeat;
transition: all .25s;
z-index: -1;
}

.top_service .service_items .service_item2:nth-child(1) .wrapper :before {
content: "";
width: 70%;
height: 100%;
position: absolute;
background-size: 100%;
background-image: url(../images/service_03.png);
background-position-x: -160px;
filter: grayscale(90%);
left: 0;
top: 0;
background-repeat: no-repeat;
transition: all .25s;
z-index: -1;
}

.top_service .service_items .service_item2:nth-child(2) .wrapper :before {
content: "";
width: 70%;
height: 100%;
position: absolute;
background-size: 100%;
background-image: url(../images/service_04.png);
background-position-x: -160px;
filter: grayscale(90%);
left: 0;
top: 0;
background-repeat: no-repeat;
transition: all .25s;
z-index: -1;
}

.top_service .service_items .service_item3:nth-child(1) .wrapper :before {
content: "";
width: 70%;
height: 100%;
position: absolute;
background-size: 100%;
background-image: url(../images/service_05.png);
background-position-x: -160px;
filter: grayscale(90%);
left: 0;
top: 0;
background-repeat: no-repeat;
transition: all .25s;
z-index: -1;
}

.top_service .service_items .service_item3:nth-child(2) .wrapper :before {
content: "";
width: 70%;
height: 100%;
position: absolute;
background-size: 100%;
background-image: url(../images/service_06.png);
background-position-x: -160px;
filter: grayscale(90%);
left: 0;
top: 0;
background-repeat: no-repeat;
transition: all .25s;
z-index: -1;
}

.top_service .service_items .service_item:nth-child(1) .wrapper:hover :before,
.top_service .service_items .service_item:nth-child(2) .wrapper:hover :before,
.top_service .service_items .service_item2:nth-child(1) .wrapper:hover :before,
.top_service .service_items .service_item2:nth-child(2) .wrapper:hover :before,
.top_service .service_items .service_item3:nth-child(1) .wrapper:hover :before,
.top_service .service_items .service_item3:nth-child(2) .wrapper:hover :before{
filter: grayscale(0%);
}


.top_service .title {
	font-size: 20px;
	text-align: center;
	line-height: 1.25;
	color: #C84E0E;
	z-index: 1;
}


.top_service .title span {
	display: block;
	font-size: 16px;
	/*margin-bottom: 10px;*/
}

.top_service .desc {
	color: #B17059;
	line-height: 1.6;
	font-weight: normal;
}

.top_service .more {
	font-size: 24px;
	text-decoration: none;
	color: #C84E0E;
	display: block;
}


@media (max-width:767px) {
.top_service .col2{
	width: calc(100% - 16px);
	margin: 0 20px 20px;
	}
.top_service .title	{
	font-size: 15px;
	}
.top_service .service_items .service_item .wrapper, 
.top_service .service_items .service_item2 .wrapper, 
	.top_service .service_items .service_item3 .wrapper{
		height: 90px;
		padding-left: 25%;
	}
.top_service .service_items .service_item:nth-child(1) .wrapper :before,
.top_service .service_items .service_item:nth-child(2) .wrapper :before,
.top_service .service_items .service_item2:nth-child(1) .wrapper :before,
.top_service .service_items .service_item2:nth-child(2) .wrapper :before,
.top_service .service_items .service_item3:nth-child(1) .wrapper :before,
.top_service .service_items .service_item3:nth-child(2) .wrapper :before{
	background-position-x: -100px;
}
}

.flow_bx{
	background: #FFF9F0;
	padding: 80px 0;
}

.flow_bx .wrapper{
	max-width: 928px;
	padding: 0 25px;
}

.flow_bx h2{
	color: #B17059;
	text-align: center;
}

.msr_flow02 {
	color: #000000;
	list-style: none;
	overflow: hidden;
	padding-left: 0;
	margin-bottom: 32px;
	box-shadow: 0 0 20px -15px #000;
}
.msr_flow02 li {
  background-color: #fff;
  line-height: 60px;
  color: #B17059;
  display: block;
  float: left;
  font-size: 15px;
  min-width: 100px;
  padding: 0 10px 0 40px;
  text-align: center;
  text-decoration: none;
   width: 33.3333%
}
.msr_flow02 li:first-child {
  padding-left: 20px;
}

/* 三角形下部 */
.msr_flow02 li::after {
  background-color: #fff;
  border-right: 1px solid #B17059;
  content: " ";
  display: block;
  height: 30px;
  margin-left: auto;
  margin-right: -30px;
  margin-top: -30px;
  position: relative;
  transform: skew(-30deg);
  width: 30px;
}

/* 三角形上部 */
.msr_flow02 li::before {
  background-color: #fff;
  border-right: 1px solid #B17059;
  content: " ";
  display: block;
  float: right;
  height: 30px;
  margin-bottom: -30px;
  margin-left: auto;
  margin-right: -30px;
  transform: skew(30deg);
  width: 30px;
}

.msr_flow02 li:last-child:before{
  transform: skew(0deg);
}


.msr_flow02 li:last-child:after{
  transform: skew(0deg);
}

/* 右端の設定 */
.msr_flow02 .active {
  background-color: #fff;
  color: #B17059;
}
.msr_flow02 .active::before, .msr_flow02 .active::after {
  background-color: #fff;
}

@media (max-width:767px) {
	
.flow_bx {
margin-top: 40px;
padding: 40px 0 80px;
}
	
.msr_flow02 li {
line-height: 30px;
width: 100%;
padding: 10px 0;
	}
.msr_flow02 li:first-child {
padding-left: 0px;
}
.msr_flow02 li::before {
border-right:inherit;
content: " ";
display: inherit;
float: inherit;
height: inherit;
margin-bottom: inherit;
margin-left: inherit;
margin-right: inherit;
transform:inherit;
width: inherit;
}
.msr_flow02 li::after {
border-right: inherit;
content: url(../images/icon_arrow2.svg);
display: inherit;
height: inherit;
margin-left: inherit;
margin-right: inherit;
margin-top: inherit;
position: inherit;
transform: inherit;
width: inherit;
}		
}

.top_people {
	background: rgba(200, 78, 14, .3);
	padding: 140px 0 120px;
}

.top_people h1 {
	text-align: center;
	background: url(../images/no05.png) left center no-repeat,
		url(../images/people_01.png) center no-repeat;
	padding: 100px 0;
	margin-bottom: 200px;
}

@media (max-width:767px) {
	.top_people {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	.top_people h1 {
		background: url(../images/no05.png) center 0 no-repeat,
			url(../images/people_01.png) center bottom 10px no-repeat;
		background-size: 150px auto, 280px auto;
		padding: 240px 0 50px;
	}
}

.top_people .people_items {
	position: relative;
}

.top_people .people_items .people_item .wrapper {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	position: relative;
	top: -180px;
	margin-bottom: 40px;
}

@media (max-width:767px) {
	.top_people .people_items .people_item .wrapper {
		display: inline-block;	
	}
}

.top_people .people_items .people_item .wrapper::after {
	content: "";
	background: url(../images/people_04.png) center no-repeat;
	display: block;
	width: 755px;
	height: 455px;
	position: absolute;
	left: 375px;
	top: -100px;
}

@media (max-width:767px) {
	.top_people .people_items .people_item .wrapper::after {
		display: none;
	}
}

.top_people .people_items .people_item:nth-child(odd) {
	position: relative;
}

/*
.top_people .people_items .people_item:nth-child(odd)::after{
	content:"";
	background:url(../images/people_04.png) center no-repeat;
	display:block;
	width:755px;
	height: 455px;
	position:absolute;
	left:500px;
	bottom:100px;
}
@media (max-width:767px){
	.top_people .people_items .people_item:nth-child(odd)::after{
		display:none;
	}
}
*/
.top_people .people_items .people_item:nth-child(even) .wrapper {
	flex-direction: row-reverse;
}

.top_people .people_items .people_item .prof {
	background: rgba(255, 255, 255, 0.90);
	padding: 40px 60px;
	position: relative;
	box-shadow: 0 30px 20px rgba(0, 0, 0, 0.05);
	z-index: 1;
	color: #b17059;
	font-weight: normal;
	margin-top: 50px;
	width: calc(100% - 400px);
}

@media (max-width:767px) {
	.top_people .people_items .people_item .prof {
		width: 100%;
		box-shadow: 0 0px 20px rgba(0, 0, 0, 0.05);
	}
}

.top_people .people_items .people_item:nth-child(odd) .prof {
	margin-left: -20px;
}

.top_people .people_items .people_item:nth-child(even) .prof {
	margin-right: -20px;
}

.top_people .people_items .people_item .photo {
	position: relative;
	width: 300px;
}

@media (max-width:767px) {
	.top_people .people_items .people_item .photo {
		width: 200px;
		margin: 0 auto;
	}

	.top_people .people_items .people_item:nth-child(odd) .prof,
	.top_people .people_items .people_item:nth-child(even) .prof {
		margin: -70px 20px 20px;
		width: calc(100% - 40px);
		padding: 20px 30px;
	}
}

.top_people .people_items .people_item .photo img {
	width: 100%;
}

.top_people .people_items .people_item .photo::after {
	content: "";
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 45px 45px 0;
	border-color: transparent #c84f0e transparent transparent;
}

@media (max-width:767px) {
	.top_people .people_items .people_item .photo::after {
		display: none;
	}
}

.top_people .people_items .people_item:nth-child(odd) .photo::after {
	bottom: -10px;
	left: -10px;
	transform: rotate(180deg);
}

.top_people .people_items .people_item:nth-child(even) .photo::after {
	top: -10px;

	right: -10px;
}

.top_people .people_items .people_item .prof .name {
	font-weight: bold;
	font-size: 30px;
	margin-bottom: 10px;
}

.top_people .people_items .people_item .prof .name span {
	font-size: 0.6em;
	margin-right: 20px;
}

@media (max-width:767px) {
	.top_people .people_items .people_item .prof .name {
		margin-top:15px;
		font-size: 32px;
		text-align: center;
		line-height: 1.6;
	}

	.top_people .people_items .people_item .prof .name span {
		display: block;
		font-size: 16px;
		margin-right: 0;
	}
}

.top_people .people_items .people_item:last-child {
	margin-bottom: -140px;
}

@media (max-width:767px) {
	.top_people .people_items .people_item:last-child {
		margin-bottom: -180px;
	}
}

.top_people .people_items .add_info {
	font-weight: bold;
	margin-top: 40px;
}

.top_company {
	background: #fff;
	text-align: center;
	padding: 120px 0;
}

.top_company table th,
.top_company table td {
		width:1%;
}

.top_company .wrapper {
	background: url(../images/no06.png) top 20px right 150px no-repeat;
}

@media (max-width:767px) {
	.top_company {
		padding: 60px 0
	}

	.top_company .wrapper {
		background: url(../images/no06_1.png) top center no-repeat,
			url(../images/no06_2.png) top 80px right 20px no-repeat;
		background-size: 150px auto, 130px auto;
		padding: 40px 30px 0;
	}
}

.top_company table {
	text-align: left;
	margin: 0 auto;
	max-width: 740px;
	width: 100%;
	color: #b17059;
}

.top_company table tr td {
	line-height: 1.25;
}

@media (max-width:767px) {

	.top_company table th,
	.top_company table td {
		text-align: left;
	}

	.top_company table tr td {
		font-weight: normal;
	}
}

.top_contact {
	text-align: center;
	background: #FDF2ED;
	padding-bottom: 100px;
	padding-top: 80px;
}

.top_contact h1 {
	padding: 0 0 100px;
	background: url(../images/no07.png) center no-repeat;
	margin-bottom: 30px;
}

@media (max-width:767px) {
	.top_contact {
		padding-left: 0;
		padding-right: 0;
	}

	.top_contact h1 {
		padding: 30px 0 90px;
		background-position: top center;
		background-size: 60%;
		margin-bottom: 0;
	}
}

.top_contact .wrapper {
	background: url(../images/contact_01.png) top left no-repeat;
}

@media (max-width:767px) {
	.top_contact .wrapper {
		background-size: 300px auto;
		background-position: -110px 170px;
		padding: 0 30px;
	}
}

.top_contact .contact_form {
	text-align: left;
	margin: 0 auto;
	max-width: 600px;
	width: 100%;
	color: #b17059;
	display: flex;
	flex-wrap: wrap;
}

.top_contact .contact_form p {
	width: 100%;
	margin: 0;
}

.top_contact .contact_form table {
	border-collapse: collapse;
}

.top_contact .contact_form th,
.top_contact .contact_form td {
	padding: 0;
}


.top_contact .contact_form table tr+tr th,
.top_contact .contact_form table tr+tr td {
	border-top: none;
}

.top_contact .contact_form input:not([type="checkbox"]),
.top_contact .contact_form textarea,
.top_contact .contact_form select {
	background: rgba(255, 255, 255, 0.6);
	border: solid 1px #999;
	width: 268px;
	height: 50px;
	margin: 10px 16px;
	padding: 15px;
	font-size: 16px;
	line-height: 1;
	border-radius: 10px;
	font-family: sans-serif;
}

.top_contact .contact_form select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.top_contact .contact_form table select {
	width: 568px;
	color: #999;
	text-align: center;
}

@media (max-width:767px) {
	.top_contact .contact_form table {
		width: 90%;
		margin: 0 auto;
	}

	.top_contact .contact_form th,
	.top_contact .contact_form td {
		display: block;
		border: none;
	}

	.top_contact .contact_form td input:not([type="checkbox"]) {
		width: 100%;
		margin-right: 0;
		margin-left: 0;
	}

	.top_contact .contact_form table select {
		width: 100%;
		margin-right: 0;
		margin-left: 0;
	}
}

input::placeholder {
	color: #999;
}

/* IE */
input:-ms-input-placeholder {
	color: #999
}

/* Edge */
input::-ms-input-placeholder {
	color: #999
}

input::-webkit-input-placeholder {
	padding-top: .3em;
}



@media (max-width:767px) {

	.top_contact .contact_form input,
	.top_contact .contact_form textarea,
	.top_contact .contact_form select {
		width: 100%;
	}
}

.top_contact .contact_form select {
	width: 100%;
	padding: 11px;
}

.top_contact .contact_form textarea {
	width: calc(100% - 32px);
	height:200px;
}

.top_contact .contact_form input[type="submit"] {
	display: block;
	margin: 20px auto;
	border-radius: 0;
	border: none;
	background-color: #c84e0e;
	color: #fff;
	padding: 20px;
	background-repeat: no-repeat;
	background-image: url(../images/bg_submit.png);
	background-position: right center;
	font-size: 90%;
	cursor: pointer;
}

.top_contact .contact_form input[type="submit"][disabled] {
	background-color: rgba(200, 78, 14, .2);
	cursor: not-allowed;
}

.caution {
	width: 95%;
	margin: 10px auto;
	text-align: center;
	color: #919191;
	font-size: 80%;
}

.check {
	max-width: 20px;
	margin: 3px;
	padding: 0;
}

.cautionInner {
	width: 100%;
	margin: 30px 0 20px 0;
	border: solid 1px #919191;
	padding: 10px 20px;
	text-align: center;
	position: relative;
}

.cautionInner::before {
	content: "ご注意";
	width: 70px;
	margin: 0 0 0 -30px;
	padding: 0 10px;
	text-align: center;
	position: absolute;
	background: #FDF2ED;
	top: -15px;
	left: 50%;
}

.caution a:link,
.caution a:visited,
.caution a:active,
.caution a:hover {
	color: #919191;
}

.required {}

.required::after {
	content: "▲必須入力です";
	width: 150px;
	margin: 0;
	padding: 0 10px;
	text-align: center;
	position: absolute;
	background: #c84e0e;
	color: #fff;
}


@media (max-width:767px) {
	.top_contact .contact_form input[type="submit"] {
		width: 200px;
	}
}

footer {
	background: #FFD7C3;
	text-align: left;
	color: #919191;
	padding: 40px 0 30px;
}

@media (max-width:767px) {
	footer {
		text-align: center;
		padding: 20px 0 15px;
	}
}

.blocker {
	animation: bgfadeIn .5s;
	z-index: 10000;
}

@keyframes bgfadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.modal {
	max-width: 700px;
	overflow-y: scroll;
}

@media (min-width:768px) {
	.modal {
		padding: 40px 60px;
	}
}

.modal a.close-modal {
	position: absolute;
	top: 30px;
	right: 10px;
	display: block;
	width: 40px;
	height: 40px;
	background: none;
	font-size: 0;
}

.modal a.close-modal::before,
.modal a.close-modal::after {
	content: "";
	display: block;
	position: relative;
	width: 100%;
	height: 1px;
	background: #000;
}

.modal a.close-modal::before {
	transform: rotate(45deg);
}

.modal a.close-modal::after {
	margin-top: -1px;
	transform: rotate(-45deg);
}

.modal .kv img {
	display: block;
	margin: 0 auto 20px;
}

.modal .title {}

.modal .desc {
	font-weight: normal;
}