@charset "utf-8";

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

	.upper { padding-top: 60px;}
}

#slide {
	position: relative;
	overflow: hidden;
	list-style: none;
	margin: 0 0 40px;
}

#slide .slide--item {
	width: 100%;
	margin: 0;
	padding: 0;
	position: relative;
}

#slide .slide--item:not(:first-child) {
	position: absolute;
	top: 0;
	left: 0;
}

#slide .slide--item.show_ {
	opacity: 1;
}

#slide .slide--item.zoom_ {
	transform: scale(1.1);
}

#slide .slide--item img {
	display: block;
	max-width: none;
	width: 100%;
	height: 100vh;
	object-fit: cover;
	-webkit-animation: slider 10s infinite linear alternate;
	animation: slider 10s infinite linear alternate;
}

@-webkit-keyframes slider {
	0% { -webkit-transform: scale(1);}
	50% { -webkit-transform: scale(1.1);}
	100% { -webkit-transform: scale(1);}
}

@keyframes slider {
	0% { transform: scale(1);}
	50% { transform: scale(1.1);}
	100% { transform: scale(1);}
}

.slide-wrap {
	position: relative;
}

.slide-logo {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateY(-50%) translateX(-50%);
}

@media screen and (max-width: 1200px) {
	
	#slide .slide--item img {
		height: 70vh;
	}
	
}

@media screen and (max-width: 767px) {
	
	#slide .slide--item img {
		height: 320px;
	}
	
	.slide-logo img {
		width: 140px;
		height: auto;
	}
	
}

.top-philosophy {
	margin: 0 0 60px;
	padding: 60px 0 72px;
	background: url("../images/top/top-philosophy.jpg") no-repeat center;
	background-size: cover;
}

.top-group__photo {
	position: relative;
	z-index: 1;
}

.top-philosophy__body {}

.top-philosophy__title {
	margin: 0 0 28px;
	padding: 0;
	border-bottom: none;
	font-size: 25px;
	line-height: 1.4;
	font-weight: bold;
	text-align: center;
	color: #6B4E1B;
}

.top-philosophy__title:after {
	display: none;
}

.top-philosophy__sup {
	margin: 0;
	font-size: 20px;
	color: #6B4E1B;
	text-align: center;
}

.top-philosophy__badge-wrap {
	margin: 40px 0 0;
}

.top-philosophy__badge-row {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.top-philosophy__badge-row:before,
.top-philosophy__badge-row:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	display: block;
	width: 84px;
	height: 1px;
	background-color: #CAA846;
}

.top-philosophy__badge-row:before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.top-philosophy__badge-row:after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.top-philosophy__badge {
	padding: 0 30px;
}

.top-philosophy__badge > div {
	position: relative;
	z-index: 2;
	width: 300px;
	height: 80px;
	background-color: #fff;
	border: 1px solid #CAA846;
	font-size: 25px;
	color: #CAA846;
	font-weight: bold;
	line-height: 78px;
	letter-spacing: 5px;
	text-align: center;
}

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

	.top-philosophy {
		margin: 0 0 40px;
		padding: 40px 0 20px;
	}

	.top-philosophy__title {
		margin-bottom: 16px;
		font-size: 20px;
	}

	.top-philosophy__sup {
		font-size: 15px;
	}

	.top-philosophy__badge-wrap {
		margin-top: 0;
	}

	.top-philosophy__badge-row {
		flex-direction: column;
	}

	.top-philosophy__badge-row:before {
		transform: translate(-50%, -50%) rotate(32deg);
	}

	.top-philosophy__badge-row:after {
		transform: translate(-50%, -50%) rotate(-32deg);
	}

	.top-philosophy__badge {
		padding: 20px 0;
	}

	.top-philosophy__badge > div {
		height: 60px;
		font-size: 20px;
		line-height: 58px;
	}
	
}


.top-group {
	position: relative;
	margin-bottom: 80px;
}

.top-group__photo {
	padding: 144px 0 82px;
	text-align: center;
}

.top-group-box {
	position: absolute;
}

.top-group-box--01 {
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.top-group-box--02 {
	top: 230px;
	left: 0;
}

.top-group-box--03 {
	top: 230px;
	right: 0;
}

.top-group-box--04 {
	bottom: 0;
	left: 0;
}

.top-group-box--05 {
	bottom: 0;
	right: 0;
}

.top-group-box:after {
	content: '';
	position: absolute;
	display: block;
}

.top-group-box--01:after {
	top: 100%;
	left: 50%;
	width: 1px;
	height: 64px;
	border-right: 1px dotted #707070;
}

.top-group-box--02:after {
	top: 100%;
	left: 50%;
	width: 116px;
	height: 164px;
	border-bottom: 1px dotted #707070;
	border-left: 1px dotted #707070;
}

.top-group-box--03:after {
	top: 100%;
	right: 50%;
	width: 116px;
	height: 164px;
	border-bottom: 1px dotted #707070;
	border-right: 1px dotted #707070;
}

.top-group-box--04:after {
	bottom: 100%;
	left: 50%;
	width: 176px;
	height: 116px;
	border-top: 1px dotted #707070;
	border-left: 1px dotted #707070;
}

.top-group-box--05:after {
	bottom: 100%;
	right: 50%;
	width: 176px;
	height: 116px;
	border-top: 1px dotted #707070;
	border-right: 1px dotted #707070;
}

@media screen and (max-width: 767px) {
	
	.top-group {
		margin-bottom: 40px;
	}
	
	.top-group__photo {
		margin-bottom: 30px;
		padding: 0;
	}

	.top-group-box {
		position: static;
	}
	
	.top-group-box + .top-group-box {
		margin-top: 16px;
	}

	.top-group-box--01 {
		transform: translateX(0);
	}

	.top-group-box:after {
		display: none;
	}
	
}


.top-group-box dl {
	display: block;
	width: 280px;
	max-width: 100%;
	padding: 16px 0;
	background-color: #FFF9E8;
	border: 1px solid #CAA846;
	text-align: center;
	color: #6B4E1B;
}

.top-group-box dt {
	font-size: 18px;
	font-weight: bold;
}

.top-group-box dd {
	font-size: 14px;
}

@media screen and (max-width: 767px) {
	
	.top-group-box dl {
		width: 100%;
	}
	
}