@charset "UTF-8";
@import url(reset.css);
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

* html body {
	background: url(null) fixed;
}
html, body {
	font-size: 10px;
	width: 100%;
}
body {
	position: relative;
	margin: 0;
	padding: 0;
	color: #191919;
	font-size: clamp(1.4rem, 1.362rem + 0.16vw, 1.6rem);
	background-color: #FFF;
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: 0.1em;
	font-feature-settings: "palt";
/*	animation: fadein 1s forwards;*/
}
/*
@keyframes fadein {
	0% {
		opacity: 0
	}
	100% {
		opacity: 1
	}
}
*/
a {
	color: #191919;
	text-decoration: none;
	-webkit-transition: all .4s;
	transition: all .4s;
}
a:hover {
	color: #191919;
	text-decoration: none;
}
*:focus {
	outline: none;
}
img {
	-webkit-backface-visibility: hidden;
}
input[type="submit"], input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus, input[type="button"]::focus {
	outline-offset: -2px;
}
input[type="text"], textarea, select {
	-webkit-appearance: none;
	border-radius: 0;
}
select {
  -webkit-appearance: none;
  appearance: none;
	color: #363636;
  box-shadow: none;
  background: #FFF url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E) no-repeat right 10px top 55%;
  background-size: 16px 16px;
  cursor: pointer;
}
br.cancel {
	display: block;
}
@media screen and (max-width: 896px) {
	br.cancel {
		display: none;
	}
}
.inview-text--up {
	-webkit-transition: 1s .2s cubic-bezier(.16, .43, .45, 1);
	transition: 1s .2s cubic-bezier(.16, .43, .45, 1);
	-webkit-transform: translate3d(0, 50px, 0);
	transform: translate3d(0, 50px, 0);
	opacity: 0;
	filter: blur(4px);
  will-change: transform, opacity, filter;
}
.inview-text--up.inview {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	opacity: 1;
  filter: blur(0);
}

main {
	background: url('../img/bg_chil_03.svg') center 440px fixed no-repeat;
	background-size: 110%;
}
section img {
	width: 100%;
}
@media screen and (max-width: 896px) {
	main {
		background: url('../img/bg_chil_03.svg') center center fixed no-repeat;
		background-size: 100%;
	}
}

.video-opening {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-opening video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.video-opening.fade-out {
  opacity: 0;
  transition: opacity 1s ease;
}

/*!------------------------------------------------------------------
[ハンバーガー]
*/
body.active {
	overflow: hidden;
}
#h_btn {
	cursor: pointer;
	position: fixed;
	z-index: 99998;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	width: 80px;
	height: 80px;
	pointer-events: auto;
	transition: .4s;
	box-sizing: border-box;
}
#h_btn .h_bar,
#h_btn .h_bar span {
	display: block;
	transition: all .4s;
	box-sizing: border-box;
}
#h_btn .h_bar {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column;
	gap: 8px;
	color: #191919;
	width: 80px;
	height: 80px;
	background-color: #5EB74F;
}
#h_btn .h_bar span {
	width: 40px;
	height: 2px;
	background-color: #191919;
	border-radius: .5px;
}
#h_btn.active .h_bar span:nth-child(1) {
	transform: translateY(10px) rotate(-145deg);
}
#h_btn.active .h_bar span:nth-child(2) {
	opacity: 0;
}
#h_btn.active .h_bar span:nth-child(3) {
	transform: translateY(-10px) rotate(145deg);
}
@media screen and (max-width: 896px) {
	#h_btn {
		width: 70px;
		height: 70px;
	}
	#h_btn .h_bar {
		width: 70px;
		height: 70px;
	}
}

#h_content {
	display: block;
	position: fixed;
	visibility: hidden;
	overflow: auto;
	opacity: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: auto;
	list-style: none;
	pointer-events: auto;
/*	background-color: rgba(0, 0, 0, 0.8);*/
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	transition: all 1s;
	z-index: 99997;
}
.active #h_content {
	visibility: visible;
	opacity: 1;
	transition: all .2s;
}
#h_content .inner {
	position: fixed;
	top: 0;
	right: 0;
	display: flex;
	justify-content: center;
	flex-flow: wrap;
	gap: 10%;
	padding: 120px 10%;
	width: 100%;
	height: 100%;
	color: #191919;
	background-color: #5EB74F;
	box-sizing: border-box;
	transition: all .8s;
	opacity: 0;
	z-index: 99999;
}
#h_content.active .inner {
	overflow-y: scroll;
	transform: translateX(0px);
	transition: all ６s;
	opacity: 1;
}
.compnay_logo {
	width: 30%;
}
.compnay_logo img {
	width: 100%;
}
.hb_inner__nav {
	display: flex;
	justify-content: space-between;
	flex-flow: wrap;
	width: 80%;
}
.hb_inner__nav li {
	margin-top: 30px;
}
.hb_inner__nav li:first-child {
	margin-top: 0;
}
.hb_inner__nav li.chilnav {
	margin-top: 15px;
	padding-left: 10px;
	font-size: clamp(1rem, 0.924rem + 0.31vw, 1.4rem);
	border-left: 1px solid #191919;
}
@media screen and (max-width: 896px) {
	#h_content .inner {
		gap: 10%;
		padding: 120px 5% 60px;
	}
	.compnay_logo {
		margin: 0;
		width: 50%;
	}
	.compnay_logo img {
		height: 100%;
	}
	.hb_inner__nav {
		width: 90%;
	}
	.hb_inner__nav li:first-child {
		margin-top: 30px;
	}
}

/*!------------------------------------------------------------------
[固定ボタン]
*/
.fixd_contact {
	cursor: pointer;
	position: fixed;
	z-index: 99998;
	top: 80px;
	right: 0;
	display: flex;
	align-items: center;
	width: 80px;
	height: 80px;
	box-sizing: border-box;
	transition: .8s;
}
.fixd_contact a {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column;
	gap: 5px;
	color: #191919;
	width: 80px;
	height: 80px;
	font-size: 14px;
	font-weight: 700;
	background-color: #C9CFC6;
	transition: .8s;
}
.fixd_contact a:hover {
	background-color: #5EB74F;
}
.fixd_event {
	cursor: pointer;
	position: fixed;
	z-index: 99998;
	top: 160px;
	right: 0;
	display: flex;
	align-items: center;
	width: 80px;
	height: 80px;
	box-sizing: border-box;
	transition: .8s;
}
.fixd_event a {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFF;
	width: 80px;
	height: 80px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	background-color: #191919;
	transition: .8s;
}
.fixd_event a:hover {
	color: #191919;
	background-color: #5EB74F;
}
@media screen and (max-width: 896px) {
	.fixd_contact {
		top: 0;
		right: 70px;
		width: 70px;
		height: 70px;
	}
	.fixd_contact a {
		width: 70px;
		height: 70px;
	}
	.fixd_event {
		top: 0;
		right: 140px;
		width: 70px;
		height: 70px;
	}
	.fixd_event a {
		width: 70px;
		height: 70px;
	}
}

/*!------------------------------------------------------------------
[フッター]
*/
.home_bg_footer {
	position: relative;
	padding: 60px 0  40px;
	background: url('../img/bg_footer.svg') center top no-repeat;
	background-size: cover;
}
.footer_contact_box {
	display: flex;
	flex-direction: column;
	margin: auto;
	padding-bottom: 20%;
	width: 90%;
}
.footer_contact_box h3 {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
	letter-spacing: 0.2em;
}
.footer_contact_box h3 span {
	font-size: clamp(1.4rem, 1.362rem + 0.16vw, 1.6rem);
	letter-spacing: 0.1em;
}
.footer_contact_box .contact_box__form a {
	position: relative;
	display: flex;
	margin-bottom: 20px;
	margin-right: 50%;
	padding-left: 20px;
	height: 50px;
	line-height: 50px;
	font-weight: 700;
	background-color: #FFF;
	border: 1px solid #191919;
	background-image: linear-gradient(-45deg, #191919 10px, transparent 0);
	box-sizing: border-box;
}
.footer_contact_box .contact_box__phone a {
	position: relative;
	display: flex;
	align-items: center;
	gap: 20px;
	margin-right: 50%;
	padding-left: 20px;
	height: 50px;
	line-height: 50px;
	font-weight: 700;
	text-align: center;
	background-color: #FFF;
	border: 1px solid #191919;
	background-image: linear-gradient(-45deg, #191919 10px, transparent 0);
	box-sizing: border-box;
}
.footer_contact_box .contact_box__phone a span {
	padding-left: 36px;
	font-size: clamp(2rem, 1.848rem + 0.62vw, 2.8rem);
	background: url('../img/contact_icon_01.svg') left 17px no-repeat;
}
.footer_access_box {
	display: flex;
	gap: 10%;
	margin: auto;
	padding-bottom: 80px;
	width: 90%;
}
.footer_access_box .compnay_logo {
	width: 25%;
}
.footer_access_box .compnay_access {
	width: 50%;
}
.footer_access_box .compnay_access h5 {
	margin-bottom: 10px;
	padding-left: 36px;
	line-height: 30px;
	background: url('../img/access_icon_01.svg') left 0 no-repeat;
}
.footer_access_box .compnay_access div {
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: clamp(1rem, 0.962rem + 0.16vw, 1.2rem);
}
.footer_access_box .compnay_access div span {
	padding-left: 36px;
	font-size: clamp(2rem, 1.848rem + 0.62vw, 2.8rem);
	background: url('../img/contact_icon_01.svg') left 6px no-repeat;
}
.footer_access_box .compnay_access iframe {
	margin-bottom: 20px;
	width: 100%;
	height: 180px;
	filter: grayscale(100%);
}
footer small {
	display: block;
	margin: auto;
	padding-top: 60px;
	width: 90%;
	color: #FFF;
	font-size: clamp(1rem, 0.962rem + 0.16vw, 1.2rem);
	text-align: right;
}
.footer_nav {
	display: flex;
	gap: 5%;
	margin: auto;
	width: 90%;
}
.footer_nav li {
	margin-top: 30px;
	font-size: clamp(1rem, 0.924rem + 0.31vw, 1.4rem);
}
.footer_nav li:first-child {
	margin-top: 0px;
}
.footer_nav li.chilnav {
	margin-top: 10px;
	padding-left: 10px;
	font-size: clamp(1rem, 0.962rem + 0.16vw, 1.2rem);
	border-left: 1px solid #191919;
}

li.facebook {
	padding-left: 30px;
	line-height: 24px;
	background: url('../img/sns_icon_01.svg') left center no-repeat;
}
li.instagram {
	padding-left: 30px;
	line-height: 24px;
	background: url('../img/sns_icon_02.svg') left center no-repeat;
}
li.line {
	padding-left: 30px;
	line-height: 24px;
	background: url('../img/sns_icon_03.svg') left center no-repeat;
}
@media screen and (max-width: 896px) {
.home_bg_footer {
	padding: 60px 0 0;
}
.footer_contact_box h3 {
	align-items: center;
	flex-direction: column;
	margin-bottom: 30px;
}
.footer_contact_box .contact_box__form a {
	margin: 0 auto 20px;
	width: 100%;
}
.footer_contact_box .contact_box__phone a {
	margin: 0 auto 20px;
	width: 100%;
	font-size: 8px;
}
.footer_contact_box .contact_box__phone a span {
	padding-left: 30px;
	font-size: 1.8rem;
}
.footer_access_box {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 30px;
	margin: auto;
	padding-bottom: 40px;
	width: 90%;
}
.footer_access_box .compnay_logo {
	width: 50%;
}
.footer_access_box .compnay_access {
	width: 100%;
	text-align: center;
}
.footer_access_box .compnay_access h5 {
	margin-bottom: 10px;
	padding-left: 30px;
	line-height: 30px;
	font-size: 11px;
	background: url('../img/access_icon_01.svg') left center no-repeat;
	background-size: 15px;
}
.footer_access_box .compnay_access div {
	flex-direction: column;
	gap: 10px;
}
.footer_access_box .compnay_access iframe {
	margin-bottom: 20px;
	width: 100%;
	height: 180px;
	filter: grayscale(100%);
}
footer small {
	display: block;
	margin: auto;
	padding: 30px 0;
	width: 100%;
	color: #FFF;
	font-size: clamp(1rem, 0.962rem + 0.16vw, 1.2rem);
	text-align: center;
	background-color: #191919;
}
.footer_nav {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: auto;
	width: 90%;
}
.footer_nav li {
	display: flex;
	align-items: center;
	margin: 0 0 20px;
	font-size: 1.6rem;
}
.footer_nav li::after {
	content: "";
	height: 1px;
	flex-grow: 1;
	background-color: #C9CFC6;
}
.footer_nav li::after {
    margin-left: 20px;
}
.footer_nav li:first-child {
	margin-top: 0px;
}
.footer_nav li.chilnav {
	margin-top: 0;
	padding-left: 10px;
	font-size: 1.3rem;
}
.footer_nav li.chilnav::after {
	height: 0;
}

.footer_nav ul.snslink {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 30px 0;
	padding-left: 10px;
}
.footer_nav ul.snslink li {
	display: flex;
	align-items: center;
	flex-grow: 1;
}
.footer_nav ul.snslink li::after {
	height: 0;
}
li.facebook {
	padding-left: 25px;
	line-height: 24px;
	background: url('../img/sns_icon_01.svg') left center no-repeat;
}
li.instagram {
	padding-left: 25px;
	line-height: 24px;
	background: url('../img/sns_icon_02.svg') left center no-repeat;
}
li.line {
	padding-left: 25px;
	line-height: 24px;
	background: url('../img/sns_icon_03.svg') left center no-repeat;
}
}


/*!------------------------------------------------------------------
[メインビジュアル]
*/
.mainvisual {
	position: relative;
	margin-bottom: -250px;
	width: 100%;
	background: url('../img/mainvisual_01.webp') center 0 no-repeat;
	background-size: 100%;
}
.mainvisual header {
	padding: 30px 0 0;
	height: 70vw;
}
.mainvisual h1 {
	padding-left: 5%;
	width: 150px;
}
.background_visual {
	display: none;
}
@media screen and (max-width: 896px) {
	.mainvisual {
		margin: 70px 0 0;
		width: 100%;
		background: none;
	}
	.mainvisual header {
		position: fixed;
		z-index: 888;
		top: 0;
		left: 0;
		display: flex;
		align-items: center;
		padding: 0;
		width: 100%;
		height: 70px;
		background-color: #5EB74F;
	}
	.mainvisual h1 {
		padding-left: 5%;
		width: 30%;
	}
	.background_visual {
		display: block;
	}
}

.mainvisual.chil, .mainvisual.tsumugu, .mainvisual.contact {
	margin: 0;
	width: 100%;
	background: url('../img/bg_chil_02.svg') center bottom no-repeat;
	background-size: cover;
}
.mainvisual.trip {
	margin: 0;
	width: 100%;
	height: 100vh;
	background: url('../img/trip_photo_01.webp') center bottom no-repeat;
	background-size: cover;
}
.mainvisual.none {
	margin: 0;
	width: 100%;
	background-image: none;
}
.mainvisual.chil header, .mainvisual.none header, .mainvisual.trip header, .mainvisual.tsumugu header, .mainvisual.contact header {
	padding: 30px 0 0;
	height: 80px;
}
.mainvisual.chil h2 {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
	padding-top: 80px;
	height: 300px;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
	letter-spacing: 0.2em;
	text-align: center;
	box-sizing: border-box;
}
.mainvisual.tsumugu h2 {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	height: 380px;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
	letter-spacing: 0.2em;
	text-align: center;
	box-sizing: border-box;
}
.mainvisual.tsumugu h2 img {
	width: 100px;
}
.mainvisual.contact h2 {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin-bottom: 40px;
	padding-top: 40px;
	height: 300px;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
	letter-spacing: 0.2em;
	text-align: center;
	box-sizing: border-box;
}
.mainvisual.contact h2 span {
	font-size: clamp(1.4rem, 1.324rem + 0.31vw, 1.8rem);
}
@media screen and (max-width: 896px) {
	.mainvisual.chil, .mainvisual.tsumugu, .mainvisual.contact {
		padding-top: 70px;
		width: 100%;
		background: url('../img/bg_chil_01.svg') left bottom no-repeat;
		background-size: auto 100%;
	}
	.mainvisual.trip {
		margin: 70px 0 0;
		height: 60vh;
	}
	.mainvisual.none {
		margin: 0;
		padding-top: 110px;
	}
	.mainvisual.chil header, .mainvisual.none header, .mainvisual.trip header, .mainvisual.tsumugu header, .mainvisual.contact header {
		padding: 0;
		height: 70px;
	}
	.mainvisual.chil h2 {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		margin: 0 0 40px;
		padding: 0;
		height: 180px;
		line-height: 1.6;
	}
	.mainvisual.tsumugu h2 {
		justify-content: center;
		gap: 10px;
		margin: 0 0 40px;
		padding: 0;
		height: 180px;
	}
	.mainvisual.tsumugu h2 img {
		width: 60px;
	}
	.mainvisual.contact h2 {
		justify-content: center;
		gap: 10px;
		margin: 0 0 40px;
		padding: 0;
		height: 180px;
	}
}

.home_bg_blvent {
	padding-top: 250px;
	background: url('../img/bg_blog_event.svg') center 0 no-repeat;
}
.home_pickup_box {
	margin: auto;
	width: 90%;
	max-width: 1200px;
	line-height: 1.6;
}
.home_pickup_box h3 {
	display: flex;
	flex-direction: column;
	margin-bottom: 60px;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
	letter-spacing: 0.2em;
}
.home_pickup_box h3 span {
	font-size: clamp(1.4rem, 1.324rem + 0.31vw, 1.8rem);
}
.home_pickup_box .photo {
	margin-bottom: 20px;
	overflow: hidden;
}
.home_pickup_box a img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.home_pickup_box a:hover img {
  transform: scale(1.05);
  filter: brightness(1.15);
}

.pickup-top {
  display: grid;
  grid-template-columns: 65% 33%;
  grid-template-rows: repeat(2, auto);
  gap: 30px;
  margin-bottom: 30px;
}
.pickup-top .big {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
	font-size: clamp(2.2rem, 2.01rem + 0.78vw, 3.2rem);
	font-weight: 700;
}
.pickup-top .small:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
	font-size: clamp(1.4rem, 1.324rem + 0.31vw, 1.8rem);
	font-weight: 700;
}
.pickup-top .small:nth-child(3) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
	font-size: clamp(1.4rem, 1.324rem + 0.31vw, 1.8rem);
	font-weight: 700;
}
.pickup-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
	margin-bottom: 60px;
	font-size: clamp(1.6rem, 1.486rem + 0.47vw, 2.2rem);
	font-weight: 700;
}
@media screen and (max-width: 896px) {
	.home_bg_blvent {
		padding-top: 0;
		background: url('../img/bg_blog_event.svg') center 0 no-repeat;
		background-size: auto 100%;
	}
	.home_pickup_box h3 {
		margin-bottom: 30px;
		text-align: center;
	}
	.pickup-top {
		display: block;
		margin-bottom: 0;
	}
}

/*!------------------------------------------------------------------
[新着コンテンツ（ブログ）]
*/
.home_blog_box {
	overflow: hidden;
	margin-bottom: 120px;
}
.home_blog__ttl {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto 40px;
	padding-top: 10px;
	width: 90%;
	max-width: 1200px;
	line-height: 1.6;
}
.home_blog_box h3 {
	color: #5EB74F;
	font-size: clamp(2rem, 1.848rem + 0.62vw, 2.8rem);
	font-weight: 700;
	letter-spacing: 0.2em;
}
.home_blog_box .link_item a {
	position: relative;
	display: inline-block;
	padding-left: 15px;
	color: #FFF;
	width: 270px;
	height: 38px;
	line-height: 38px;
	font-weight: 700;
	background-color: #191919;
}
.home_blog_box .link_item a:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  margin: auto;
	transition: all .4s;
}
.home_blog_box .link_item a:hover {
  background-color: #5EB74F;
}
.home_blog_box .link_item a:hover:before {
  right: 6px;
}
.slider-blog .slick-track {
	width: auto!important;
	transform: none!important;
}
.home_blog_box li {
	margin: 0 15px;
	border: 1px solid #191919;
	background-color: #FFF;
	background-image: linear-gradient(-45deg, #5EB74F 10px, transparent 0);
	box-sizing: border-box;
}
.home_blog_box li a h4 {
	padding: 5%;
	font-size: clamp(1.4rem, 1.324rem + 0.31vw, 1.8rem);
	font-weight: 700;
	line-height: 1.6;
}
.home_blog_box .photo {
	overflow: hidden;
}
.home_blog_box a img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.home_blog_box a:hover img {
  transform: scale(1.05);
  filter: brightness(1.15);
}
.home_blog_box .slick-prev, .home_blog_box .slick-next {
	z-index: +1;
	top: -55px!important;
}
.home_blog_box .slick-prev {
	left: auto!important;
	right: 500px;
}
.home_blog_box .slick-next {
	left: auto!important;
	right: 440px;
}
.home_blog_box .slick-prev::before {
  content: ""!important;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
	border: 1px solid #191919;
	transition: all .6s;
}
.home_blog_box .slick-prev::after {
  content: "";
  position: absolute;
	bottom: 15px;
  left: 18px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #191919;
  border-right: 1px solid #191919;
  transform: rotate(-135deg);
	transition: all .6s;
}
.home_blog_box .slick-next::before {
  content: ""!important;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
	border: 1px solid #191919;
	transition: all .6s;
}
.home_blog_box .slick-next::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 13px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #191919;
  border-right: 1px solid #191919;
  transform: rotate(45deg);
	transition: all .6s;
}
@media screen and (max-width: 896px) {
	.home_blog_box {
		margin-bottom: 60px;
	}
	.home_blog__ttl {
		padding-top: 0;
	}
	.home_blog__ttl h3 {
		font-size: 1.8rem;
	}
	.home_blog_box .link_item a {
		width: 150px;
	}
}

.chil_blog__item ul {
	display: flex;
	flex-flow: wrap;
	gap: 30px;
	margin: auto;
	padding-bottom: 120px;
	width: 90%;
	max-width: 1200px;
}
.chil_blog__item li {
	margin-bottom: 30px;
	width: calc(100%/3 - 30px);
	background-color: #FFF;
	border: 1px solid #191919;
	background-image: linear-gradient(-45deg, #5EB74F 10px, transparent 0);
	box-sizing: border-box;
}
.chil_blog__item li a h4 {
	padding: 5%;
	font-size: clamp(1.4rem, 1.324rem + 0.31vw, 1.8rem);
	font-weight: 700;
	line-height: 1.6;
}
.chil_blog__item .photo {
	overflow: hidden;
}
.chil_blog__item a img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.chil_blog__item a:hover img {
  transform: scale(1.05);
  filter: brightness(1.15);
}
@media screen and (max-width: 896px) {
	.chil_blog__item ul {
		padding-bottom: 60px;
	}
	.chil_blog__item li {
		margin-bottom: 30px;
		width: 100%;
	}
}

/*!------------------------------------------------------------------
[イベント情報）]
*/
.home_event_box {
	overflow: hidden;
	padding-bottom: 40px;
}
.home_event_box h3 {
	margin-bottom: 60px;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
	letter-spacing: 0.2em;
	text-align: center;
}
.home_event__item {
	margin-bottom: 60px;
}
.home_event_box li {
	margin: 0 15px;
	box-sizing: border-box;
}
.home_event_box .photo {
	overflow: hidden;
}
.home_event_box a img {
  display: block;
	margin-bottom: 20px;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.home_event_box a:hover img {
  transform: scale(1.05);
  filter: brightness(1.15);
}
.home_event_box li span {
	font-weight: 700;
}
.home_event_box li h4 {
	padding: 10px 0;
	font-size: clamp(1.4rem, 1.324rem + 0.31vw, 1.8rem);
	font-weight: 700;
	line-height: 1.6;
}
.home_event_box li p {
	font-size: clamp(1rem, 0.924rem + 0.31vw, 1.4rem);
}
.home_event_box .link_item {
	display: flex;
	justify-content: flex-end;
	margin: auto;
	width: 90%;
	max-width: 1200px;
}
.home_event_box .link_item a {
	position: relative;
	display: inline-block;
	padding-left: 15px;
	color: #FFF;
	width: 270px;
	height: 38px;
	line-height: 38px;
	font-weight: 700;
	background-color: #191919;
	box-sizing: border-box;
}
.home_event_box .link_item a:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  margin: auto;
	transition: all .4s;
}
.home_event_box .link_item a:hover {
  background-color: #5EB74F;
}
.home_event_box .link_item a:hover:before {
  right: 6px;
}
.home_event_box .slick-prev, .home_event_box .slick-next {
	z-index: +1;
	top: auto!important;
	bottom: -110px!important;
}
.home_event_box .slick-prev {
	left: auto!important;
	right: 500px;
}
.home_event_box .slick-next {
	left: auto!important;
	right: 440px;
}
.home_event_box .slick-prev::before {
  content: ""!important;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
	border: 1px solid #191919;
	transition: all .6s;
}
.home_event_box .slick-prev::after {
  content: "";
  position: absolute;
	bottom: 15px;
  left: 18px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #191919;
  border-right: 1px solid #191919;
  transform: rotate(-135deg);
	transition: all .6s;
}
.home_event_box .slick-next::before {
  content: ""!important;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
	border: 1px solid #191919;
	transition: all .6s;
}
.home_event_box .slick-next::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 13px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #191919;
  border-right: 1px solid #191919;
  transform: rotate(45deg);
	transition: all .6s;
}
@media screen and (max-width: 896px) {
	.home_event_box {
		overflow: hidden;
		padding-bottom: 40px;
	}
	.home_event_box h3 {
		margin-bottom: 20px;
	}
	.home_event__item {
		margin-bottom: 40px;
	}
	.home_event_box .link_item {
		display: block;
		justify-content: center;
	}
	.home_event_box .link_item a {
		width: 100%;
	}
}

.chil_event__item ul {
	display: flex;
	flex-flow: wrap;
	gap: 30px;
	margin: auto;
	padding-bottom: 120px;
	width: 90%;
	max-width: 1200px;
}
.chil_event__item li {
	margin-bottom: 30px;
	width: calc(100%/3 - 30px);
	box-sizing: border-box;
}
.chil_event__item .photo {
	overflow: hidden;
	aspect-ratio: 1 / 1;
	margin-bottom: 30px;
}
.chil_event__item a img {
	margin-bottom: 20px;
	width: 100%;
	height: 100%;
	object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.chil_event__item a:hover img {
  transform: scale(1.05);
  filter: brightness(1.15);
}
.chil_event__item li span {
	font-weight: 700;
}
.chil_event__item li h4 {
	padding: 10px 0;
	font-size: clamp(1.4rem, 1.324rem + 0.31vw, 1.8rem);
	font-weight: 700;
	line-height: 1.6;
}
.chil_event__item li p {
	font-size: clamp(1rem, 0.924rem + 0.31vw, 1.4rem);
}
@media screen and (max-width: 896px) {
	.chil_event__item ul {
		gap: 20px;
		padding-bottom: 60px;
	}
	.chil_event__item li {
		margin-bottom: 0;
		width: 100%;
	}
	.chil_event__item .photo {
		margin-bottom: 20px;
	}
	.chil_event__item a img {
		margin-bottom: 0;
	}
}

/*!------------------------------------------------------------------
[家造りについて]
*/
.home_bg_abouthome {
	position: relative;
	margin-bottom: -250px;
	background: url('../img/bg_abouthome.svg') center 0 no-repeat;
	background-size: 102%;
}
.home_abouthome__photo {
	position: absolute;
	top: 240px;
	right: 0;
	width: 70%;
}
.home_abouthome__text {
	margin: auto;
	padding: 180px 0;
	width: 90%;
	line-height: 1.8;
}
.home_abouthome__text h3 {
	margin-bottom: 30px;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
}
.home_abouthome__text p {
	margin-bottom: 50px;
	width: 55%;
}
.home_abouthome__text .link_item a {
	position: relative;
	display: inline-block;
	padding-left: 15px;
	color: #191919;
	width: 270px;
	height: 38px;
	line-height: 38px;
	font-weight: 700;
	background-color: #FFF;
	box-sizing: border-box;
}
.home_abouthome__text .link_item a:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #191919;
  border-right: solid 2px #191919;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  margin: auto;
	transition: all .4s;
}
.home_abouthome__text .link_item a:hover {
	color: #FFF;
  background-color: #5EB74F;
}
.home_abouthome__text .link_item a:hover:before {
  right: 6px;
	border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
}
.home_abouthome__text .link_item_about a {
	position: relative;
	display: inline-block;
	padding-left: 15px;
	color: #FFF;
	width: 270px;
	height: 38px;
	line-height: 38px;
	font-weight: 700;
	background-color: #5EB74F;
	box-sizing: border-box;
}
.home_abouthome__text .link_item_about a:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  margin: auto;
	transition: all .4s;
}
.home_abouthome__text .link_item_about a:hover {
  background-color: #191919;
}
.home_abouthome__text .link_item_about a:hover:before {
  right: 6px;
}
@media screen and (max-width: 896px) {
	.home_bg_abouthome {
		position: relative;
		margin-bottom: 0;
		background: url('../img/bg_abouthome_sp.svg') left 0 no-repeat;
		background-size: 100%;
	}
	.home_abouthome__photo {
		position: absolute;
		top: 0;
		right: 0;
		width: 90%;
	}
	.home_abouthome__text {
		margin: auto;
		padding: 100px 0 0;
	}
	.home_abouthome__text.second {
		margin: auto;
		padding: 400px 0 100px;
	}
	.home_abouthome__text h3 {
		margin-bottom: 20px;
	}
	.home_abouthome__text p {
		margin-bottom: 30px;
		width: 100%;
	}
	.home_abouthome__text .link_item a {
		width: 100%;
	}
	.home_abouthome__text .link_item_about a {
		width: 100%;
	}
}

.build_concept {
	display: flex;
	flex-direction: column;
	gap: 60px;
	padding-bottom: 120px;
}
.build_concept .build_concept_item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5%;
	margin-left: 5%;
}
.build_concept .build_concept_item.inverse {
	flex-flow: row-reverse;
	margin-left: 0;
	margin-right: 5%;
}
.build_concept .build_concept_item .build_concept__text {
	flex: 1;
}
.build_concept .build_concept_item h3 {
	margin-bottom: 40px;
	font-size: clamp(2.8rem, 2.648rem + 0.62vw, 3.6rem);
	font-weight: 700;
	line-height: 1.6;
}
.build_concept .build_concept_item p {
	line-height: 1.8;
}
.build_concept .build_concept_item .build_concept__photo {
	width: 45%;
}
@media screen and (max-width: 896px) {
	.build_concept {
		display: flex;
		flex-direction: column;
		gap: 60px;
		padding-bottom: 60px;
	}
	.build_concept .build_concept_item {
		flex-direction: column;
		gap: 20px;
		margin: 0 5%;
	}
	.build_concept .build_concept_item.inverse {
		flex-flow: row;
		flex-direction: column;
		margin: 0 5%;
	}
	.build_concept .build_concept_item h3 {
		margin-bottom: 10px;
		font-size: 2rem;
	}
	.build_concept .build_concept_item .build_concept__photo {
		width: 100%;
	}
}

.build_orderhousing {
	position: relative;
	margin: 100px 0 220px;
	background: linear-gradient(90deg, rgb(255, 255, 255), rgb(94, 183, 79));
}
.build_orderhousing li {
	margin: 0 15px;
}
.build_orderhousing .slider-build {
	position: relative;
	top: -100px;
}
.build_orderhousing .slider-build_rv {
	position: relative;
	bottom: -100px;
}
.build_orderhousing__text {
	margin: auto;
	width: 90%;
	max-width: 1200px;
}
.build_orderhousing__text h3 {
	margin-bottom: 20px;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
	line-height: 1.6;
}
.build_orderhousing__text h4 {
	margin-bottom: 40px;
	font-size: clamp(2.2rem, 2.048rem + 0.62vw, 3rem);
	font-weight: 700;
	line-height: 1.6;
}
.build_orderhousing__text p {
	line-height: 1.8;
}
@media screen and (max-width: 896px) {
	.build_orderhousing {
		margin: 50px 0 110px;
	}
	.build_orderhousing li {
		margin: 0 5px;
	}
	.build_orderhousing .slider-build {
		top: -50px;
	}
	.build_orderhousing .slider-build_rv {
		bottom: -50px;
	}
	.build_orderhousing__text h3 {
		margin-bottom: 20px;
		font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
		font-weight: 700;
		line-height: 1.6;
	}
	.build_orderhousing__text h4 {
		margin-bottom: 10px;
		font-size: 1.6rem;
	}
}

.build_regulations {
	position: relative;
	padding: 100px 0;
	background-color: #C9CFC6;
}
.build_regulations__text {
	margin: auto;
	padding-bottom: 40px;
	width: 90%;
	max-width: 1200px;
}
.build_regulations__text h3 {
	margin-bottom: 20px;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
	line-height: 1.6;
}
.build_regulations__text h4 {
	margin-bottom: 40px;
	font-size: clamp(2.2rem, 2.048rem + 0.62vw, 3rem);
	font-weight: 700;
	line-height: 1.6;
}
.build_regulations__text p {
	line-height: 1.8;
}
.build_regulations__photo {
	margin: auto;
	width: 90%;
	max-width: 1200px;
}
.build_regulations__photo ul {
	display: flex;
	justify-content: space-between;
	flex-flow: wrap;
	gap: 30px;
}
.build_regulations__photo ul li {
	width: calc(100%/4 - 45px);
}
@media screen and (max-width: 896px) {
	.build_regulations {
		padding: 40px 0;
	}
	.build_regulations__text {
		padding-bottom: 0;
	}
	.build_regulations__text h3 {
		margin-bottom: 20px;
	}
	.build_regulations__text h4 {
		margin-bottom: 10px;
		font-size: 1.6rem;
	}
}

.build_assurance {
	position: relative;
	padding: 100px 0;
/*	background: url('../img/bg_chil_01.svg') center center no-repeat;*/
	background-size: 102%;
}
.build_assurance__text {
	margin: auto;
	padding-bottom: 40px;
	width: 90%;
	max-width: 1200px;
}
.build_assurance__text h3 {
	margin-bottom: 20px;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
	line-height: 1.6;
}
.build_assurance__text h4 {
	margin-bottom: 40px;
	font-size: clamp(2.2rem, 2.048rem + 0.62vw, 3rem);
	font-weight: 700;
	line-height: 1.6;
}
.build_assurance__text p {
	line-height: 1.8;
}
.build_assurance__text img {
	margin-bottom: 30px;
}
@media screen and (max-width: 896px) {
	.build_assurance {
		padding: 60px 0;
	}
	.build_assurance__text {
		padding-bottom: 0;
	}
	.build_assurance__text h3 {
		margin-bottom: 20px;
	}
	.build_assurance__text h4 {
		margin-bottom: 10px;
		font-size: 1.6rem;
	}
}

.build_flow {
	position: relative;
	margin: auto;
	padding: 0 0 100px;
	width: 90%;
	max-width: 1200px;
}
.build_flow h3 {
	margin-bottom: 20px;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
	line-height: 1.6;
}
.build_flow h4 {
	margin-bottom: 40px;
	font-size: clamp(2.2rem, 2.048rem + 0.62vw, 3rem);
	font-weight: 700;
	line-height: 1.6;
}
.build_flow__list ul > li {
  display: flex;
}
.build_flow__list ul > li p { 
  position: relative;
	margin-right: 40px;
	width: 120px;
	color: #5EB74F;
	font-size: clamp(5rem, 4.62rem + 1.56vw, 7rem);
	font-weight: 700;
	text-align: center;
}
.build_flow__list ul > li p::before {
  content: 'STEP';
  display: block;
  margin-bottom: 3px;
	font-size: clamp(2rem, 1.81rem + 0.78vw, 3rem);
}
.build_flow__list ul > li p::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 120px;
	bottom: 10px;
  margin: auto;
	width: 2px;
  height: auto;
	background-color: #5EB74F;
}
.build_flow__list ul > li dl {
	margin-bottom: 20px;
	padding: 40px;
  width: calc(100% - 120px);
	background-color: #EFEFEF;
	box-sizing: border-box;
}
.build_flow__list ul > li dl dt {
  margin-bottom: 20px;
	font-size: clamp(2.2rem, 2.048rem + 0.62vw, 3rem);
	font-weight: 700;
	line-height: 1.6;
}
.build_flow__list ul > li dl dd {
	line-height: 1.8;
}
@media screen and (max-width: 896px) {
	.build_flow {
		padding: 0 0 60px;
	}
	.build_flow h3 {
		margin-bottom: 20px;
	}
	.build_flow h4 {
		margin-bottom: 40px;
		font-size: 1.6rem;
	}
	.build_flow__list ul > li {
		display: flex;
	}
	.build_flow__list ul > li p { 
		margin-right: 20px;
		width: 50px;
		font-size: 3rem;
	}
	.build_flow__list ul > li p::before {
		font-size: 1.6rem;
	}
	.build_flow__list ul > li p::after {
		top: 60px;
		bottom: 10px;
	}
	.build_flow__list ul > li dl {
		padding: 20px;
		width: calc(100% - 50px);
	}
	.build_flow__list ul > li dl dt {
		margin-bottom: 10px;
		font-size: 1.6rem;
	}
}

/*!------------------------------------------------------------------
[施工事例]
*/
.home_works_box {
	position: relative;
	z-index: 2;
	overflow: hidden;
	padding-bottom: 120px;
}
.home_works_box h3 {
	margin-bottom: 60px;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
	letter-spacing: 0.2em;
	text-align: center;
}
.home_works_box ul {
	margin-bottom: 60px;
}
.home_works_box li {
	margin: 0 15px;
	border: 1px solid #191919;
	background-color: #FFF;
	box-sizing: border-box;
}
.home_works_box .photo {
	overflow: hidden;
	aspect-ratio: 1 / 1;
	margin-bottom: 10px;
}
.home_works_box a img {
  display: block;
	margin-bottom: 20px;
	width: 100%;
	height: 100%;
	object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.home_works_box a:hover img {
  transform: scale(1.05);
  filter: brightness(1.15);
}
.home_works_box li h4 {
	margin-bottom: 20px;
	padding: 0 20px;
	font-size: clamp(1.4rem, 1.324rem + 0.31vw, 1.8rem);
	font-weight: 700;
	line-height: 1.6;
}
.home_works_box li p {
	margin-bottom: 10px;
	padding: 0 20px;
	font-size: clamp(1rem, 0.924rem + 0.31vw, 1.4rem);
}
.home_works_box li aside {
	padding: 0 20px 20px;
	line-height: 1.6;
}
.home_works_box li aside span {
	margin-right: 15px;
}
.home_works_box li aside a {
	position: relative;
	color: #5EB74F;
	font-size: clamp(1rem, 0.962rem + 0.16vw, 1.2rem);
}
.home_works_box li aside a::before {
	content: "#";
	position: relative;
	margin-right: 2px;
}
.home_works_box li aside a:hover {
	color: #191919;
}
.home_works_box .link_item {
	display: flex;
	justify-content: flex-end;
	margin: auto;
	width: 90%;
	max-width: 1200px;
}
.home_works_box .link_item a {
	position: relative;
	display: inline-block;
	padding-left: 15px;
	color: #FFF;
	width: 270px;
	height: 38px;
	line-height: 38px;
	font-weight: 700;
	background-color: #191919;
	box-sizing: border-box;
}
.home_works_box .link_item a:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  margin: auto;
	transition: all .4s;
}
.home_works_box .link_item a:hover {
  background-color: #5EB74F;
}
.home_works_box .link_item a:hover:before {
  right: 6px;
}
.home_works_box .slick-prev, .home_works_box .slick-next {
	z-index: +1;
	top: auto!important;
	bottom: -110px!important;
}
.home_works_box .slick-prev {
	left: auto!important;
	right: 500px;
}
.home_works_box .slick-next {
	left: auto!important;
	right: 440px;
}
.home_works_box .slick-prev::before {
  content: ""!important;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
	border: 1px solid #191919;
	transition: all .6s;
}
.home_works_box .slick-prev::after {
  content: "";
  position: absolute;
	bottom: 15px;
  left: 18px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #191919;
  border-right: 1px solid #191919;
  transform: rotate(-135deg);
	transition: all .6s;
}
.home_works_box .slick-next::before {
  content: ""!important;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
	border: 1px solid #191919;
	transition: all .6s;
}
.home_works_box .slick-next::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 13px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #191919;
  border-right: 1px solid #191919;
  transform: rotate(45deg);
	transition: all .6s;
}
@media screen and (max-width: 896px) {
	.home_works_box {
		padding-bottom: 60px;
	}
	.home_works_box h3 {
		margin-bottom: 40px;
	}
	.home_works_box ul {
		margin-bottom: 40px;
	}
	.home_works_box .link_item {
		justify-content: center;
	}
	.home_works_box .link_item a {
		width: 100%;
	}
}

.chil_works_box ul {
	display: flex;
	flex-flow: wrap;
	gap: 30px;
	margin: auto;
	padding-bottom: 120px;
	width: 90%;
	max-width: 1200px;
}
.chil_works_box li {
	width: calc(100%/3 - 30px);
	border: 1px solid #191919;
	background-color: #FFF;
	box-sizing: border-box;
}
.chil_works_box .photo {
	overflow: hidden;
	aspect-ratio: 1 / 1;
	margin-bottom: 30px;
}
.chil_works_box a img {
  margin-bottom: 20px;
	width: 100%;
	height: 100%;
	object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.chil_works_box a:hover img {
  transform: scale(1.05);
  filter: brightness(1.15);
}
.chil_works_box li h4 {
	margin-bottom: 20px;
	padding: 0 20px;
	font-size: clamp(1.4rem, 1.324rem + 0.31vw, 1.8rem);
	font-weight: 700;
	line-height: 1.6;
}
.chil_works_box li p {
	margin-bottom: 10px;
	padding: 0 20px;
	font-size: clamp(1rem, 0.924rem + 0.31vw, 1.4rem);
}
.chil_works_box li aside {
	padding: 0 20px 20px;
	line-height: 1.6;
}
.chil_works_box li aside a {
	position: relative;
	color: #5EB74F;
	font-size: clamp(1rem, 0.962rem + 0.16vw, 1.2rem);
}
.chil_works_box li aside span {
	margin-right: 15px;
}
.chil_works_box li aside a::before {
	content: "#";
	position: relative;
	margin-right: 2px;
}
.chil_works_box li aside a:hover {
	color: #191919;
}
@media screen and (max-width: 896px) {
	.chil_works_box ul {
		gap: 40px;
		padding-bottom: 60px;
	}
	.chil_works_box li {
		width: 100%;
	}
	.chil_works_box .photo {
		margin-bottom: 20px;
	}
	.chil_works_box a img {
		margin-bottom: 0;
	}
	.chil_works_box li h4 {
		line-height: 1.6rem;
	}
}

.chil_works__post {
	margin: auto;
	width: 90%;
	max-width: 1200px;
	box-sizing: border-box;
}
.chil_works__post .post_deta {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-bottom: 40px;
}
.chil_works__post .post_deta span {
	padding: 5px 0 6px;
	color: #FFF;
	width: 120px;
	text-align: center;
	font-weight: 700;
	background-color: #191919;
}
.chil_works__post p {
	line-height: 1.8;
}
@media screen and (max-width: 896px) {
}

ul.original-lightbox-gallery {
	display: flex;
	flex-flow: wrap;
	gap: 20px;
	margin: 0 auto 40px;
	width: 90%;
	max-width: 1200px;
}
ul.original-lightbox-gallery li {
	overflow: hidden;
	aspect-ratio: 1 / 1;
	width: calc(100%/4 - 20px);
}
ul.original-lightbox-gallery li img {
  display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}
ul.original-lightbox-gallery li a:hover img {
  transform: scale(1.05);
  filter: brightness(1.15);
}
@media screen and (max-width: 896px) {
	ul.original-lightbox-gallery {
		gap: 20px;
	}
	ul.original-lightbox-gallery li {
		width: calc(100%/2 - 10px);
	}
}

/*!------------------------------------------------------------------
[モデルハウス・注文住宅]
*/
.home_bg_build {
	position: relative;
	padding: 250px 0 0;
}
.home_modelhouse_box img {
	position: absolute;
	z-index: 0;
	top: 0;
}
.home_modelhouse_01, .home_modelhouse_03 {
	padding: 80px 0 0;
	color: #FFF;
	background: linear-gradient(180deg, rgba(25,25,25,1) 80%, rgba(255,255,255,0) 20%);
}
.home_modelhouse_02 {
	padding: 80px 0 0;
	color: #FFF;
	background: linear-gradient(180deg, rgba(201,207,198,1) 80%, rgba(255,255,255,0) 20%);
}
.home_modelhouse__item {
	position: relative;
	z-index: 1;
	display: flex;
	gap: 50px;
	margin-left: auto;
	margin-bottom: 120px;
	width: 95%;
}
.home_modelhouse_03 .home_modelhouse__item {
	flex-flow: row-reverse;
	margin-right: 5%;
}
.home_modelhouse__item .modelhouse_text {
	position: relative;
	z-index: 10;
	width: 30%;
	line-height: 1.8;
}
.home_modelhouse__item .modelhouse_photo {
	width: 70%;
}
.home_modelhouse_01 h3, .home_modelhouse_03 h3 {
	margin-bottom: 30px;
	color: #5EB74F;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
	letter-spacing: 0.2em;
}
.home_modelhouse_01 h3 span, .home_modelhouse_03 h3 span {
	font-size: clamp(1.4rem, 1.324rem + 0.31vw, 1.8rem);
}
.home_modelhouse_02 h3 {
	margin-bottom: 30px;
	width: 150px;
}
.home_modelhouse_02 h4 {
	display: flex;
	flex-direction: column;
	color: #191919;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
}
.home_modelhouse_02 h4 span {
	font-size: clamp(1.4rem, 1.324rem + 0.31vw, 1.8rem);
}
.home_modelhouse_01 p, .home_modelhouse_03 p {
	margin-bottom: 50px;
}
.home_modelhouse_01 .link_item, .home_modelhouse_03 .link_item {
	position: absolute;
	bottom: 0;
}
.home_modelhouse_01 .link_item a, .home_modelhouse_03 .link_item a {
	position: relative;
	display: inline-block;
	padding-left: 15px;
	color: #FFF;
	width: 270px;
	height: 38px;
	line-height: 38px;
	font-weight: 700;
	background-color: #5EB74F;
	box-sizing: border-box;
}
.home_modelhouse_01 .link_item a:before, .home_modelhouse_03 .link_item a:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  margin: auto;
	transition: all .4s;
}
.home_modelhouse_01 .link_item a:hover, .home_modelhouse_03 .link_item a:hover {
  background-color: #191919;
}
.home_modelhouse_01 .link_item a:hover:before, .home_modelhouse_03 .link_item a:hover:before {
  right: 6px;
}
.home_modelhouse_02 .link_item {
	position: absolute;
	bottom: 0;
}
.home_modelhouse_02 .link_item a {
	position: relative;
	display: inline-block;
	padding-left: 15px;
	color: #FFF;
	width: 270px;
	height: 38px;
	line-height: 38px;
	font-weight: 700;
	background-color: #191919;
	box-sizing: border-box;
}
.home_modelhouse_02 .link_item a:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  margin: auto;
	transition: all .4s;
}
.home_modelhouse_02 .link_item a:hover {
  background-color: #5EB74F;
}
.home_modelhouse_02 .link_item a:hover:before {
  right: 6px;
}
@media screen and (max-width: 896px) {
	.home_bg_build {
		padding: 0;
	}
	.home_modelhouse_box img {
		display: none;
	}
	.home_modelhouse_01, .home_modelhouse_03 {
		padding: 60px 0 0;
		color: #FFF;
		background: linear-gradient(180deg, rgba(25,25,25,1) 80%, rgba(255,255,255,0) 20%);
	}
	.home_modelhouse_02 {
		padding: 80px 0 0;
		color: #FFF;
		background: linear-gradient(180deg, rgba(201,207,198,1) 80%, rgba(255,255,255,0) 20%);
	}
	.home_modelhouse__item {
		flex-direction: column;
		margin: 0 auto 60px;
		width: 90%;
	}
	.home_modelhouse_03 .home_modelhouse__item {
		flex-flow: column;
		margin: 0 auto 60px;
		width: 90%;
	}
	.home_modelhouse__item .modelhouse_text {
		width: 100%;
	}
	.home_modelhouse__item .modelhouse_photo {
		width: 100%;
	}
	.home_modelhouse_01 h3, .home_modelhouse_03 h3 {
		margin-bottom: 20px;
	}
	.home_modelhouse_02 h3 {
		margin: 0 auto 20px;
		text-align: center;
	}
	.home_modelhouse_02 h3 img {
		width: 120px;
		height: auto;
	}
	.home_modelhouse_02 h4 {
		margin-bottom: 40px;
		text-align: center;
	}
	.home_modelhouse_01 p, .home_modelhouse_03 p {
		margin-bottom: 50px;
	}
	.home_modelhouse_01 .link_item, .home_modelhouse_03 .link_item {
		position: relative;
		bottom: 0;
	}
	.home_modelhouse_01 .link_item a, .home_modelhouse_03 .link_item a {
		width: 100%;
	}
	.home_modelhouse_02 .link_item {
		position: relative;
		bottom: 0;
	}
	.home_modelhouse_02 .link_item a {
		width: 100%;
	}
}

/*!------------------------------------------------------------------
[サービス]
*/
.home_bg_service {
	position: relative;
	padding: 200px 0 120px;
	background: url('../img/bg_service.svg') center 0 no-repeat;
	background-size: 102%;
}
.home_service_01 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-flow: row-reverse;
	margin-bottom: 150px;
}
.home_service_02 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-flow: row;
	margin-bottom: 200px;
}
.home_service_01 .home_service__text {
	margin-right: 5%;
	width: 40%;
}
.home_service_02 .home_service__text {
	margin-left: 5%;
	width: 40%;
}
.home_service__text h3 {
	display: flex;
	flex-direction: column;
	margin-bottom: 30px;
	color: #191919;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
	letter-spacing: 0.2em;
}
.home_service__text h3 span {
	margin-bottom: 10px;
	font-size: clamp(1.4rem, 1.324rem + 0.31vw, 1.8rem);
}
.home_service__text p {
	margin-bottom: 50px;
	line-height: 1.8;
}
.home_service__photo {
	display: flex;
	flex-direction: column;
	width: 50%;
}
.home_service__photo .slider-service {
	margin-bottom: 10px;
}
.home_service__photo li {
	margin: 0 5px;
}
.home_service__text .link_item a {
	position: relative;
	display: inline-block;
	padding-left: 15px;
	color: #FFF;
	width: 270px;
	height: 38px;
	line-height: 38px;
	font-weight: 700;
	background-color: #191919;
}
.home_service__text .link_item a:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  margin: auto;
	transition: all .4s;
}
.home_service__text .link_item a:hover {
	color: #FFF;
  background-color: #5EB74F;
}
.home_service__text .link_item a:hover:before {
  right: 6px;
	border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
}
@media screen and (max-width: 896px) {
	.home_bg_service {
		padding: 40px 0 0;
		background: url('../img/bg_service.svg') center 0 no-repeat;
		background-size: auto 100%;
	}
	.home_service_01 {
		flex-direction: column;
		margin-bottom: 60px;
	}
	.home_service_02 {
		flex-direction: column;
		margin-bottom: 60px;
	}
	.home_service_01 .home_service__text {
		margin: auto;
		width: 90%;
	}
	.home_service_02 .home_service__text {
		margin: auto;
		width: 90%;
	}
	.home_service__text h3 {
		margin-bottom: 20px;
	}
	.home_service__text p {
		margin-bottom: 40px;
	}
	.home_service__photo {
		display: flex;
		flex-direction: column;
		width: 100%;
	}
	.home_service__photo .slider-service {
		margin: 40px 0 0;
	}
}

.home_service_03 {
	margin: auto;
	width: 90%;
	max-width: 1200px;
}
.home_service_03 .service_nav_01 {
	display: flex;
	gap: 30px;
	margin-bottom: 30px;
}
.home_service_03 .service_nav_01 div h4 {
	margin-bottom: 70px;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
}
.home_service_03 .service_nav_01 div p {
	margin-bottom: 30px;
	font-size: clamp(1.4rem, 1.324rem + 0.31vw, 1.8rem);
}
.home_service_03 .service_nav_01 .service_nav__item_01 {
	position: relative;
	flex: 1;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	flex-direction: column;
	padding: 8% 5%;
	color: #FFF;
	box-sizing: border-box;
	background: url('../img/service_photo_05.webp') center center no-repeat;
	background-size: cover;
}
.home_service_03 .service_nav_01 .service_nav__item_02 {
	position: relative;
	flex: 1;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding: 8% 5%;
	color: #FFF;
	box-sizing: border-box;
	background: url('../img/service_photo_06.webp') center center no-repeat;
	background-size: cover;
}
.home_service_03 .service_nav_01 div .link_item a {
	position: relative;
	display: inline-block;
	padding-left: 15px;
	color: #191919;
	width: 270px;
	height: 38px;
	line-height: 38px;
	font-weight: 700;
	background-color: #FFF;
	box-sizing: border-box;
}
.home_service_03 .service_nav_01 div .link_item a:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #191919;
  border-right: solid 2px #191919;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  margin: auto;
	transition: all .4s;
}
.home_service_03 .service_nav_01 div .link_item a:hover {
	color: #FFF;
  background-color: #191919;
}
.home_service_03 .service_nav_01 div .link_item a:hover:before {
  right: 6px;
	border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
}
.home_service_03 .service_nav_02 {
	display: flex;
	gap: 30px;
}
.home_service_03 .service_nav_02__item {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	padding-bottom: 30px;
	background-color: #FFF;
	border: 1px solid #191919;
	background-image: linear-gradient(-45deg, #5EB74F 10px, transparent 0);
	box-sizing: border-box;
}
.home_service_03 .service_nav_02__item div {
	overflow: hidden;
}
.home_service_03 .service_nav_02__item a img {
  display: block;
	margin-bottom: 20px;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.home_service_03 .service_nav_02__item a:hover img {
  transform: scale(1.05);
  filter: brightness(1.15);
}
.home_service_03 .service_nav_02__item p {
	padding: 0 20px 10px;
}
.home_service_03 .service_nav_02__item h4 {
	padding: 0 20px;
	font-size: clamp(1.8rem, 1.724rem + 0.31vw, 2.2rem);
	font-weight: 700;
}
@media screen and (max-width: 896px) {
	.home_service_03 {
		margin: auto;
		width: 90%;
		max-width: 1200px;
	}
	.home_service_03 .service_nav_01 {
		flex-direction: column;
		gap: 20px;
		margin-bottom: 20px;
	}
	.home_service_03 .service_nav_01 div h4 {
		margin-bottom: 50px;
	}
	.home_service_03 .service_nav_01 div p {
		margin-bottom: 20px;
	}
	.home_service_03 .service_nav_01 .service_nav__item_01 {
		align-items: flex-start;
		padding: 20px;
	}
	.home_service_03 .service_nav_01 .service_nav__item_02 {
		align-items: flex-start;
		padding: 20px;
	}
	.home_service_03 .service_nav_01 div .link_item a {
		width: 240px;
	}
	.home_service_03 .service_nav_02 {
		flex-direction: column;
		gap: 20px;
		margin-bottom: 60px;
	}
	.home_service_03 .service_nav_02__item {
		padding-bottom: 20px;
	}
}

.service_item .service_item__text {
	margin: auto;
	padding: 50px 0 100px;
	width: 90%;
	max-width: 1200px;
}
.service_item h3 {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
	line-height: 1.6;
}
.service_item h4 {
	margin-bottom: 40px;
	font-size: clamp(2.2rem, 2.048rem + 0.62vw, 3rem);
	font-weight: 700;
	line-height: 1.6;
}
.service_item p {
	margin-bottom: 40px;
	line-height: 1.8;
}
.service_item img {
	margin-bottom: 40px;
}
.service_item .link_item {
	display: flex;
	justify-content: flex-end;
}
.service_item .link_item a {
	position: relative;
	display: inline-block;
	padding-left: 15px;
	color: #FFF;
	width: 270px;
	height: 38px;
	line-height: 38px;
	font-weight: 700;
	font-size: clamp(1.4rem, 1.362rem + 0.16vw, 1.6rem);
	font-weight: 400;
	background-color: #191919;
	box-sizing: border-box;
}
.service_item .link_item a:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  margin: auto;
	transition: all .4s;
}
.service_item .link_item a:hover {
  background-color: #5EB74F;
}
.service_item .link_item a:hover:before {
  right: 6px;
}
@media screen and (max-width: 896px) {
	.service_item .service_item__text {
		padding: 30px 0 60px;
	}
	.service_item h3 {
		margin-bottom: 20px;
	}
	.service_item h4 {
		margin-bottom: 10px;
		font-size: 1.6rem;
	}
	.service_item p {
		margin-bottom: 0;
	}
	.service_item img {
		margin-bottom: 0;
	}
	.service_item .link_item {
		justify-content: center;
		margin-top: 30px;
	}
	.service_item .link_item a {
		width: 100%;
	}
}

/*!------------------------------------------------------------------
[スタッフ]
*/
.home_bg_staff {
	position: relative;
	padding: 120px 0 200px;
	background: url('../img/bg_staff.svg') center 0 no-repeat;
	background-size: 102%;
}
.home_staff__ttl {
	display: flex;
	justify-content: space-between;
	margin: 0 auto 60px;
	padding-top: 10px;
	width: 90%;
	max-width: 1200px;
	line-height: 1.6;
}
.home_staff_box h3 {
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
	letter-spacing: 0.2em;
}
.home_staff_box .link_item a {
	position: relative;
	display: inline-block;
	padding-left: 15px;
	color: #FFF;
	width: 270px;
	height: 38px;
	line-height: 38px;
	font-weight: 700;
	background-color: #191919;
}
.home_staff_box .link_item a:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  margin: auto;
	transition: all .4s;
}
.home_staff_box .link_item a:hover {
  background-color: #5EB74F;
}
.home_staff_box .link_item a:hover:before {
  right: 6px;
}
.home_staff__item li {
	margin: 0 5px;
	text-align: center;
	box-sizing: border-box;
}
.home_staff__item a {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap:20px;
}
.home_staff__item li:nth-child(even) a {
	display: flex;
	align-items: center;
	flex-direction: column-reverse;
}
.home_staff__item .photo {
	overflow: hidden;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
}
.home_staff__item a img {
  display: block;
  width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
  transition: transform 0.4s ease, filter 0.4s ease;
	object-fit: cover;
}
.home_staff__item a:hover img {
  transform: scale(1.05);
  filter: brightness(1.15);
}
.home_staff__item li span {
	font-size: clamp(1rem, 0.924rem + 0.31vw, 1.4rem);
}
.home_staff__item li h4 {
	font-size: clamp(1.4rem, 1.324rem + 0.31vw, 1.8rem);
	font-weight: 700;
	line-height: 1.6;
}
.home_staff__item .link_item {
	display: flex;
	justify-content: flex-end;
	margin: auto;
	width: 90%;
	max-width: 1200px;
}
.home_staff__item .link_item a {
	position: relative;
	display: inline-block;
	padding-left: 15px;
	color: #FFF;
	width: 270px;
	height: 38px;
	line-height: 38px;
	font-weight: 700;
	background-color: #191919;
}
.home_staff__item .link_item a:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  margin: auto;
	transition: all .4s;
}
.home_staff__item .link_item a:hover {
  background-color: #5EB74F;
}
.home_staff__item .link_item a:hover:before {
  right: 6px;
}
.home_staff__item .slick-prev, .home_staff__item .slick-next {
	z-index: +1;
	top: -90px!important;
}
.home_staff__item .slick-prev {
	left: auto!important;
	right: 500px;
}
.home_staff__item .slick-next {
	left: auto!important;
	right: 440px;
}
.home_staff__item .slick-prev::before {
  content: ""!important;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
	border: 1px solid #191919;
	transition: all .6s;
}
.home_staff__item .slick-prev::after {
  content: "";
  position: absolute;
	bottom: 15px;
  left: 18px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #191919;
  border-right: 1px solid #191919;
  transform: rotate(-135deg);
	transition: all .6s;
}
.home_staff__item .slick-next::before {
  content: ""!important;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
	border: 1px solid #191919;
	transition: all .6s;
}
.home_staff__item .slick-next::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 13px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #191919;
  border-right: 1px solid #191919;
  transform: rotate(45deg);
	transition: all .6s;
}

/*!------------------------------------------------------------------
[お知らせ]
*/
.home_bg_topicks {
	position: relative;
	padding: 120px 0;
	background: url('../img/bg_topicks.webp') center 0 no-repeat;
	background-size: cover;
}
.home_bg_topicks h3 {
	margin: auto;
  width: 90%;
	max-width: 1200px;
	color: #FFF;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
	letter-spacing: 0.2em;
}
.topicks_tab {
	display: flex;
	justify-content: flex-end;
	flex-flow: wrap;
	margin: auto;
  width: 90%;
	max-width: 1200px;
}
.tab_menu {
	cursor: pointer;
  display: block;
	width: 180px;
	height: 45px;
	text-align: center;
	line-height: 45px;
	font-weight: 700;
	background-color: #C9CFC6;
  transition: all 0.2s ease;
}
.tab_menu:hover {
	color: #FFF;
  background-color: #5EB74F;
}
input[name="tab_menu"] {
  display: none;
}
#nav_01:checked ~ #nav_01, #nav_02:checked ~ #nav_02, #nav_03:checked ~ #nav_03, #nav_04:checked ~ #nav_04 {
  display: block;
}
.topicks_tab input:checked + .tab_menu {
	color: #FFF;
  background-color: #5EB74F;
}
.tab_contents {
  display: none;
  padding: 5%;
  clear: both;
  overflow: hidden;
	width: 100%;
	background-color: #FFF;
	box-sizing: border-box;
  transition: .5s opacity;
}
.tab_contents ul {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.tab_contents ul li {
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 0 15px 20px;
	font-size: clamp(1rem, 0.924rem + 0.31vw, 1.4rem);
	border-bottom: 1px solid #D5D5D5;
}
.tab_contents ul li:last-child {
	padding-bottom: 0;
	border-bottom: none;
}
.tab_contents ul li span {
	padding: 5px 0 6px;
	color: #FFF;
	width: 120px;
	text-align: center;
	font-weight: 700;
	background-color: #191919;
	box-sizing: border-box;
}
.home_bg_topicks .link_item {
	display: flex;
	justify-content: flex-end;
	margin: auto;
	width: 90%;
	max-width: 1200px;
}
.home_bg_topicks .link_item a {
	position: relative;
	display: inline-block;
	padding-left: 15px;
	color: #FFF;
	width: 270px;
	height: 38px;
	line-height: 38px;
	font-weight: 700;
	background-color: #5EB74F;
	box-sizing: border-box;
}
.home_bg_topicks .link_item a:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  margin: auto;
	transition: all .4s;
}
.home_bg_topicks .link_item a:hover {
  background-color: #191919;
}
.home_bg_topicks .link_item a:hover:before {
  right: 6px;
}
@media screen and (max-width: 896px) {
	.home_bg_topicks {
		padding: 80px 0;
	}
	.home_bg_topicks h3 {
		margin-bottom: 30px;
		text-align: center;
	}
	.topicks_tab {
		justify-content: center;
		gap: 10px;
		width: 90%;
	}
	.tab_menu {
		width: calc(100%/2 - 5px);
		height: 40px;
		line-height: 40px;
	}
	.tab_contents ul {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}
	.tab_contents ul li {
		flex-flow: wrap;
		gap: 0 20px;
	}
	.tab_contents ul li a {
		margin-top: 10px;
		width: 100%;
	}
	.home_bg_topicks .link_item {
		margin-top: 10px;
		width: 90%;
	}
	.home_bg_topicks .link_item a {
		width: 100%;
	}
}

.chil_topicks__nav {
	display: flex;
	gap: 5px;
	margin: auto;
	padding-bottom: 60px;
	width: 90%;
	max-width: 1200px;
}
.chil_topicks__nav > div {
	cursor: pointer;
  display: block;
	width: 180px;
	height: 45px;
	text-align: center;
	line-height: 45px;
	font-weight: 700;
	background-color: #C9CFC6;
  transition: all 0.2s ease;
}
.chil_topicks__nav > div:hover {
	color: #FFF;
  background-color: #5EB74F;
}
.chil_topicks__nav .current {
	color: #FFF;
  background-color: #5EB74F;
}
@media screen and (max-width: 896px) {
	.chil_topicks__nav {
		flex-flow: wrap;
		gap: 10px;
		margin: auto;
		padding-bottom: 40px;
	}
	.chil_topicks__nav > div {
		width: calc(100%/2 - 5px);
		height: 40px;
		line-height: 40px;
	}
}

.chil_topicks__item ul {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: auto;
	padding-bottom: 120px;
	width: 90%;
	max-width: 1200px;
}
.chil_topicks__item ul li {
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 0 15px 20px;
	font-size: clamp(1rem, 0.924rem + 0.31vw, 1.4rem);
	border-bottom: 1px solid #D5D5D5;
}
.chil_topicks__item ul li:last-child {
	padding-bottom: 0;
	border-bottom: none;
}
.chil_topicks__item ul li span {
	padding: 5px 0 6px;
	color: #FFF;
	width: 120px;
	text-align: center;
	font-weight: 700;
	background-color: #191919;
}
@media screen and (max-width: 896px) {
	.chil_topicks__item ul {
		padding-bottom: 60px;
	}
	.chil_topicks__item ul li {
		flex-flow: wrap;
		gap: 20px;
		padding: 0 0 20px;
	}
	.chil_topicks__item ul li a {
		width: 100%;
		font-size: 1.4rem;
	}
}

.chil_topicks__photo {
	margin: auto;
	width: 90%;
	max-width: 1200px;
	background-color: #EFEFEF;
	box-sizing: border-box;
}
.chil_topicks__photo img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.chil_topicks__post {
	margin: auto;
	padding: 5%;
	width: 90%;
	max-width: 1200px;
	background-color: #EFEFEF;
	box-sizing: border-box;
}
.chil_topicks__post .post_deta {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-bottom: 40px;
}
.chil_topicks__post .post_deta span {
	padding: 5px 0 6px;
	color: #FFF;
	width: 120px;
	text-align: center;
	font-weight: 700;
	background-color: #191919;
}
.chil_topicks__post h4 {
	margin-bottom: 20px;
	font-size: clamp(1.8rem, 1.686rem + 0.47vw, 2.4rem);
	font-weight: 700;
	line-height: 1.8;
}
.chil_topicks__post h5 {
	margin-bottom: 20px;
	font-size: clamp(1.4rem, 1.324rem + 0.31vw, 1.8rem);
	font-weight: 700;
	line-height: 1.8;
}
.chil_topicks__post strong {
	font-weight: 700;
}
.chil_topicks__post p {
	margin-bottom: 40px;
	line-height: 1.8;
}
.chil_topicks__post img {
	display: block;
	margin: auto;
}
.chil_topicks__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: auto;
	padding: 60px 0 120px;
	width: 90%;
	max-width: 1200px;
}
.chil_topicks__link div {
	width: 15%;
}
.chil_topicks__link div.list_prev {
	width: 38%;
}
.chil_topicks__link div.list_next {
	width: 38%;
}
.chil_topicks__link div a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFF;
	height: 30px;
	background-color: #191919;
}
.chil_topicks__link div.list_prev a {
	justify-content: flex-start;
	padding-left: 30px;
}
.chil_topicks__link div.list_prev a:after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
  transform: rotate(-135deg);
  position: absolute;
  top: 0;
  left: 12px;
  bottom: 0;
  margin: auto;
	transition: all .4s;
}
.chil_topicks__link div.list_prev a:hover {
  background-color: #191919;
}
.chil_topicks__link div.list_prev a:hover:after {
  left: 6px;
}
.chil_topicks__link div.list_next a {
	justify-content: flex-end;
	padding-right: 30px;
}
.chil_topicks__link div.list_next a:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  margin: auto;
	transition: all .4s;
}
.chil_topicks__link div.list_next a:hover {
  background-color: #191919;
}
.chil_topicks__link div.list_next a:hover:before {
  right: 6px;
}
@media screen and (max-width: 896px) {
	.chil_topicks__link {
		flex-direction: column;
		gap: 10px;
		padding: 0 0 60px;
	}
	.chil_topicks__link div {
		width: 100%;
	}
	.chil_topicks__link div.list_prev {
		width: 100%;
	}
	.chil_topicks__link div.list_next {
		width: 100%;
	}
}

/*!------------------------------------------------------------------
[分譲地]
*/
.bunjo_photo_box {
	margin: auto;
	padding-top: 100px;
	width: 80%;
	max-width: 1000px;
}
.bunjo_photo_box div {
	margin-bottom: 60px;
}
.bunjo_photo_box div p {
	margin-top: 20px;
}
.bunjo_photo_box iframe {
	margin-bottom: 60px;
	width: 100%;
	height: 400px;
}
@media screen and (max-width: 896px) {
	.bunjo_photo_box {
		padding: 40px 0 0;
		width: 90%;
	}
	.bunjo_photo_box div {
		margin-bottom: 30px;
	}
	.bunjo_photo_box div p {
		font-size: 1rem;
		text-align: center;
	}
	.bunjo_photo_box iframe {
		margin-bottom: 40px;
		width: 100%;
		height: 300px;
	}
}

.performance_resistant {
	position: relative;
	margin-bottom: 120px;
	padding: 100px 0 40px;
	background-color: #C9CFC6;
}
.performance_resistant__ttl {
	margin: auto;
	padding-bottom: 60px;
	width: 90%;
	max-width: 1200px;
}
.performance_resistant__ttl h3 {
	margin-bottom: 20px;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
}

.performance_resistant_item {
	display: flex;
	justify-content: space-between;
	gap: 5%;
	margin: auto;
	padding-bottom: 60px;
	width: 90%;
	max-width: 1200px;
}
.performance_resistant_item.inverse {
	align-items: center;
	flex-flow: row-reverse;
}
.performance_resistant_item .performance_resistant__text {
	flex: 1;
}
.performance_resistant_item h3 {
	margin-bottom: 40px;
	font-size: clamp(2.2rem, 2.048rem + 0.62vw, 3rem);
	font-weight: 700;
	line-height: 1.6;
}
.performance_resistant_item p {
	line-height: 1.8;
}
.performance_resistant_item .performance_resistant__photo {
	width: 40%;
}
@media screen and (max-width: 896px) {
	.performance_resistant {
		margin-bottom: 60px;
		padding: 60px 0 0;
	}
	.performance_resistant__ttl {
		margin: auto;
		padding-bottom: 40px;
	}
	.performance_resistant__ttl h3 {
		margin-bottom: 20px;
	}
	.performance_resistant_item {
		flex-direction: column;
		gap: 20px;
	}
	.performance_resistant_item.inverse {
		flex-flow: column;
	}
	.performance_resistant_item h3 {
		margin-bottom: 10px;
		font-size: 1.6rem;
	}
	.performance_resistant_item .performance_resistant__photo {
		width: 100%;
	}
}

.performance_insulation {
	position: relative;
	padding: 100px 0;
	background: url('../img/bg_chil_01.svg') center top no-repeat;
	background-size: 102%;
}
.performance_insulation__ttl {
	margin: auto;
	padding-bottom: 40px;
	width: 90%;
	max-width: 1200px;
}
.performance_insulation__ttl h3 {
	margin-bottom: 20px;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
	line-height: 1.6;
}
.performance_insulation__ttl h4 {
	margin-bottom: 40px;
	font-size: clamp(2.2rem, 2.048rem + 0.62vw, 3rem);
	font-weight: 700;
	line-height: 1.6;
}
.performance_insulation__ttl p {
	margin-bottom: 40px;
	line-height: 1.8;
}
@media screen and (max-width: 896px) {
	.performance_insulation {
		padding: 60px 0;
		background: url('../img/bg_chil_01.svg') center top no-repeat;
		background-size: auto 70%;
	}
	.performance_insulation__ttl {
		padding-bottom: 20px;
	}
	.performance_insulation__ttl h3 {
		margin-bottom: 20px;
	}
	.performance_insulation__ttl h4 {
		margin-bottom: 10px;
		font-size: 1.6rem;
	}
	.performance_insulation__ttl p {
		margin-bottom: 20px;
	}
}

/*!------------------------------------------------------------------
[規格住宅　trip]
*/
body.trip h2 {
	position: absolute;
	left: 50%;
	bottom: 0;
	transform : translateX(-50%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 60px;
	height: 160px;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
	line-height: 1.6;
	background-color: #FFF;
}
body.trip h2 span {
	font-size: clamp(1.8rem, 1.686rem + 0.47vw, 2.4rem);
	font-weight: 400;
}
@media screen and (max-width: 896px) {
	body.trip h2 {
		padding: 0;
		width: 70%;
		height: 80px;
	}
}

.trip_concept_box {
	position: relative;
	top: 120px;
	margin-bottom: 120px;
	padding-bottom: 60px;
	background: linear-gradient(-90deg, rgba(201,207,198,1) 80%, rgba(255,255,255,0) 20%);
}
.trip_concept_box h3 {
	position: relative;
	top: -40px;
	margin-left: 25%;
	margin-bottom: 30px;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: .2em;
}
.trip_concept_box_photo {
	overflow: hidden;
	margin-bottom: 40px;
}
.trip_concept_box ul {
	margin-right: auto;
	width: 80%;
}
.trip_concept_box_photo .slick-prev, .trip_concept_box_photo .slick-next {
	z-index: +1;
	top: auto!important;
	bottom: 0;
}
.trip_concept_box_photo .slick-prev {
	left: auto!important;
	right: -80px;
}
.trip_concept_box_photo .slick-next {
	left: auto!important;
	right: -140px;
}
.trip_concept_box_photo .slick-prev::before {
  content: ""!important;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
	border: 1px solid #191919;
	transition: all .6s;
}
.trip_concept_box_photo .slick-prev::after {
  content: "";
  position: absolute;
	bottom: 15px;
  left: 18px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #191919;
  border-right: 1px solid #191919;
  transform: rotate(-135deg);
	transition: all .6s;
}
.trip_concept_box_photo .slick-next::before {
  content: ""!important;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
	border: 1px solid #191919;
	transition: all .6s;
}
.trip_concept_box_photo .slick-next::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 13px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #191919;
  border-right: 1px solid #191919;
  transform: rotate(45deg);
	transition: all .6s;
}
.trip_concept_box h4 {
	margin-left: 25%;
	margin-bottom: 40px;
	width: 50%;
	font-size: clamp(1.8rem, 1.686rem + 0.47vw, 2.4rem);
	font-weight: 700;
	line-height: 1.6;
}
.trip_concept_box p {
	margin-left: 25%;
	width: 50%;
	line-height: 1.8;
}
@media screen and (max-width: 896px) {
	.trip_concept_box {
		top: 0;
		margin: 60px 0;
		padding-bottom: 40px;
		background: rgba(201,207,198,1);
	}
	.trip_concept_box h3 {
		top: -15px;
		margin: 0 5%;
		margin-bottom: 10px;
		font-size: 2.2rem;
		text-align: center;
	}
	.trip_concept_box_photo {
		margin-bottom: 30px;
	}
	.trip_concept_box ul {
		margin: auto;
		padding-bottom: 60px;
		width: 100%;
	}
	.trip_concept_box_photo .slick-prev {
		right: 70px;
	}
	.trip_concept_box_photo .slick-next {
		right: 30px;
	}
	.trip_concept_box_photo .slick-prev::before {
		width: 30px;
		height: 30px;
	}
	.trip_concept_box_photo .slick-prev::after {
		bottom: 12px;
		left: 13px;
		width: 8px;
		height: 8px;
	}
	.trip_concept_box_photo .slick-next::before {
		width: 30px;
		height: 30px;
	}
	.trip_concept_box_photo .slick-next::after {
		bottom: 12px;
		left: 10px;
		width: 8px;
		height: 8px;
	}
	.trip_concept_box h4 {
		margin: 0 auto 20px;
		width: 90%;
	}
	.trip_concept_box p {
		margin: auto;
		width: 90%;
	}
}

.trip_news_box {
	margin: auto;
	padding: 120px 0 0;
	width: 90%;
	max-width: 1200px;
}
.trip_news_box h3 {
	margin-bottom: 40px;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
	letter-spacing: .2em;
}
.trip_news_box ul {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.trip_news_box ul li {
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 0 15px 20px;
	font-size: clamp(1rem, 0.924rem + 0.31vw, 1.4rem);
	border-bottom: 1px solid #D5D5D5;
}
.trip_news_box ul li span {
	padding: 5px 0 6px;
	color: #FFF;
	width: 120px;
	text-align: center;
	font-weight: 700;
	background-color: #191919;
}
@media screen and (max-width: 896px) {
	.trip_news_box {
		margin: auto;
		padding: 0 0 20px;
	}
	.trip_news_box h3 {
		margin-bottom: 30px;
	}
	.trip_news_box ul {
		gap: 20px;
	}
	.trip_news_box ul li {
		flex-flow: wrap;
		gap: 10px;
		padding: 0 0 20px;
	}
	.trip_news_box ul li b {
		width: 100%;
		font-size: 1.4rem;
		line-height: 1.6;
	}
}

.trip_point__item {
	background-color: #5EB74F;
}
.trip_point__item h3 {
	margin-bottom: 80px;
	color: #FFF;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
}
.trip_point__item h3 span {
	display: block;
	font-size: clamp(1.4rem, 1.286rem + 0.47vw, 2rem);
}
.trip_point__item ul {
	display: flex;
	flex-flow: wrap;
	gap: 80px;
	margin: auto;
	width: 90%;
	max-width: 1200px;
}
.trip_point__item ul li {
	position: relative;
	padding: 60px;
	width: calc(100%/2 - 40px);
	background-color: #FFF;
	box-sizing: border-box;
}
.trip_point__item ul li b {
  position: absolute;
	top: -40px;
	left: 20px;
	font-size: clamp(4.8rem, 4.572rem + 0.94vw, 6rem);
	font-weight: 700;
	text-align: center;
}
.trip_point__item ul li b::before {
  content: 'POINT';
  display: block;
	font-size: clamp(1.4rem, 1.324rem + 0.31vw, 1.8rem);
}
.trip_point__item ul li h4 {
  margin-bottom: 30px;
	font-size: clamp(2.2rem, 2.048rem + 0.62vw, 3rem);
	font-weight: 700;
	line-height: 1.6;
}
.trip_point__item ul li p {
  margin-bottom: 40px;
	line-height: 1.8;
}
@media screen and (max-width: 896px) {
	.trip_point__item h3 {
		margin-bottom: 60px;
	}
	.trip_point__item ul {
		flex-direction: column;
		gap: 60px;
	}
	.trip_point__item ul li {
		padding: 60px 30px 30px;
		width: 100%;
	}
	.trip_point__item ul li b {
		top: -30px;
		left: 10px;
	}
	.trip_point__item ul li h4 {
		margin-bottom: 10px;
		font-size: 2rem;
	}
	.trip_point__item ul li p {
		margin-bottom: 20px;
	}
}

.trip_modelhouse_box h3 {
	margin-bottom: 40px;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
	text-align: center;
}
.trip_modelhouse_box h3 span {
	display: block;
	margin-top: 20px;
	font-size: clamp(1.4rem, 1.324rem + 0.31vw, 1.8rem);
}
.trip_modelhouse_box .mainphoto {
	position: relative;
	z-index: 0;
	margin: auto;
	width: 50%;
}
.trip_modelhouse_box .mainphoto img {
	position: relative;
	bottom: -5px;
}
.trip_modelhouse_box .trip_modelhouse__deta {
	position: relative;
	z-index: 1;
	margin-bottom: 120px;
	padding: 80px 0;
	background-color: #C9CFC6;
}
.trip_modelhouse_info {
	margin: auto;
	width: 90%;
	max-width: 1200px;
}
.trip_modelhouse_info h4 {
	margin-bottom: 40px;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
	letter-spacing: .2em;
}
.trip_modelhouse_info .room_layout {
	margin: 0 auto 40px;
	width: 80%;
}
.trip_modelhouse_info p {
	line-height: 1.8;
}
.trip_modelhouse_box iframe {
	width: 100%;
	height: 380px;
	filter: grayscale(100%);
}
@media screen and (max-width: 896px) {
	.trip_modelhouse_box h3 {
		margin-bottom: 20px;
	}
	.trip_modelhouse_box h3 span {
		margin-top: 10px;
	}
	.trip_modelhouse_box .mainphoto {
		width: 80%;
	}
	.trip_modelhouse_box .trip_modelhouse__deta {
		position: relative;
		z-index: 1;
		margin-bottom: 60px;
		padding: 40px 0;
	}
	.trip_modelhouse_info h4 {
		margin-bottom: 20px;
	}
	.trip_modelhouse_info .room_layout {
		margin: 0 auto 20px;
		width: 100%;
	}
	.trip_modelhouse_box iframe {
		height: 280px;
	}
}

/*!------------------------------------------------------------------
[会社概要]
*/
.company_message {
	display: flex;
	flex-direction: column;
	gap: 60px;
	padding-bottom: 120px;
}
.company_message h3 {
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
}
.company_message_item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5%;
	margin-left: 5%;
}
.company_message_item.inverse {
	flex-flow: row-reverse;
	margin-left: 0;
	margin-right: 5%;
}
.company_message_item .company_message__text {
	flex: 1;
}
.company_message_item h4 {
	margin-bottom: 40px;
	font-size: clamp(2.2rem, 2.048rem + 0.62vw, 3rem);
	font-weight: 700;
	line-height: 1.6;
}
.company_message_item p {
	line-height: 1.8;
}
.company_message_item .company_message__photo {
	width: 45%;
}
@media screen and (max-width: 896px) {
	.company_message {
		gap: 30px;
		padding-bottom: 0;
	}
	.company_message_item {
		flex-direction: column;
		gap: 0;
		margin: 0 auto 60px;
		width: 90%;
	}
	.company_message_item.inverse {
		flex-direction: column;
		flex-flow: column;
		margin: 0 auto 60px;
	}
	.company_message_item h4 {
		margin-bottom: 10px;
		font-size: 1.8rem;
	}
	.company_message_item p {
		margin-bottom: 30px;
	}
	.company_message_item .company_message__photo {
		width: 100%;
	}
}

.company_philosophy {
	padding-top: 100px;
	background-color: #C9CFC6;
	box-sizing: border-box;
}
.company_philosophy_item {
	margin: auto;
	width: 90%;
	max-width: 1200px;
}
.company_philosophy h3 {
	margin-bottom: 40px;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
}
.company_philosophy h4 {
	margin-bottom: 20px;
	font-size: clamp(2.2rem, 2.048rem + 0.62vw, 3rem);
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
}
.company_philosophy dt {
	margin: 60px 0 20px;
	font-size: clamp(2.2rem, 2.048rem + 0.62vw, 3rem);
	font-weight: 700;
}
.company_philosophy dd {
}
.company_philosophy dd h5 {
	margin-bottom: 20px;
	font-size: clamp(1.8rem, 1.686rem + 0.47vw, 2.4rem);
	font-weight: 700;
	line-height: 1.6;
}
.company_philosophy dd p {
	line-height: 1.8;
}
@media screen and (max-width: 896px) {
	.company_philosophy {
		padding: 60px 0 0;
	}
	.company_philosophy h3 {
		margin-bottom: 20px;
	}
	.company_philosophy h4 {
		margin-bottom: 10px;
		font-size: 2rem;
	}
	.company_philosophy dd h5 {
		margin-bottom: 10px;
		font-size: 1.6rem;
	}
}

.company_environmental {
	overflow: hidden;
	background-color: #C9CFC6;
}
.company_environmental_item {
	padding-bottom: 40px;
	color: #FFF;
	background-color: #5EB74F;
	box-sizing: border-box;
}
.company_environmental_item .inner {
	margin: auto;
	width: 90%;
	max-width: 1200px;
}
.company_environmental_item h3 {
	margin-bottom: 40px;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
}
.company_environmental_item dt {
	margin-bottom: 20px;
	font-size: clamp(2.2rem, 2.048rem + 0.62vw, 3rem);
	font-weight: 700;
	line-height: 1.6;
}
.company_environmental_item dd {
	padding-bottom: 60px;
	line-height: 1.8;
}
@media screen and (max-width: 896px) {
	.company_environmental_item {
		padding-bottom: 0;
	}
	.company_environmental_item .inner {
		margin: auto;
		width: 90%;
		max-width: 1200px;
	}
	.company_environmental_item h3 {
		margin-bottom: 20px;
	}
	.company_environmental_item dt {
		margin-bottom: 10px;
	}
}

.company_overview {
	padding-top: 100px;
}
.company_overview h3 {
	margin-bottom: 40px;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
}
.company_overview dl {
	display: flex;
	flex-flow: wrap;
	margin: auto;
	padding-bottom: 40px;
	width: 90%;
	max-width: 1200px;
	border-top: 1px solid #B4B4B4;
}
.company_overview dt {
	padding: 30px;
	width: 20%;
	line-height: 1.6;
	box-sizing: border-box;
	border-bottom: 1px solid #B4B4B4;
}
.company_overview dd {
	flex-grow: 1;
	padding: 30px;
	width: 80%;
	line-height: 1.8;
	box-sizing: border-box;
	border-bottom: 1px solid #B4B4B4;
}
.company_overview iframe {
	width: 100%;
	height: 380px;
	filter: grayscale(100%);
}
@media screen and (max-width: 896px) {
	.company_overview {
		padding: 60px 0 0;
	}
	.company_overview h3 {
		margin-bottom: 20px;
	}
	.company_overview dl {
		padding-bottom: 40px;
	}
	.company_overview dt {
		padding: 20px 0;
		width: 100%;
		border-bottom: 1px dotted #B4B4B4;
	}
	.company_overview dd {
		padding: 20px 0;
		width: 100%;
	}
	.company_overview iframe {
		height: 300px;
	}
}

/*!------------------------------------------------------------------
[紡]
*/
.tsumugu_main_ttl {
	position: relative;
	overflow: hidden;
}
.tsumugu_main_ttl h3 {
	padding-top: 40px;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
	letter-spacing: .2em;
	text-align: center;
}
.tsumugu_main_ttl .slick-img img {
  height: auto;
  opacity: .7;
  transform: scale(.8);
  transition: opacity .5s, transform .5s;
  width: 100%;
}
.tsumugu_main_ttl .slider-tsumugu .slick-center img {
  opacity: 1;
  transform: scale(1);
}
@media screen and (max-width: 896px) {
	.tsumugu_main_ttl {
		position: relative;
		overflow: hidden;
	}
	.tsumugu_main_ttl h3 {
		padding: 40px 5%;
		line-height: 1.6;
	}
}

.tsumugu_works {
	padding: 120px 0;
}
.tsumugu_works h3 {
	margin-bottom: 40px;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
	letter-spacing: .2em;
	text-align: center;
}
.tsumugu_works .slider-tsumugu-works {
	overflow: hidden;
}
.tsumugu_works .slider-tsumugu-works li {
	margin: 0 10px;
}
@media screen and (max-width: 896px) {
	.tsumugu_works {
		padding: 0 0 60px;
	}
	.tsumugu_works h3 {
		margin-bottom: 20px;
	}
	.tsumugu_works .slider-tsumugu-works li {
		margin: 0 5px;
	}
}

.contact_box {
	margin: 0 auto 120px;
	padding: 10%;
	width: 90%;
	background-color: #C9CFC6;
	box-sizing: border-box;
}
.contact_box h3 {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 40px;
	font-size: clamp(2.4rem, 2.096rem + 1.25vw, 4rem);
	font-weight: 700;
	letter-spacing: .2em;
	text-align: center;
}
.contact_box h3 span {
	font-size: clamp(1.8rem, 1.686rem + 0.47vw, 2.4rem);
}
.contact_box__text {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 30px;
	line-height: 1.8;
}
.contact_box__text b {
	color: #FFF;
	width: 30px;
	height: 18px;
	font-size: 10px;
	text-align: center;
	line-height: 18px;
	background-color: #FF0000;
}
.contact_box .required {
	display: flex;
	justify-content: space-between;
}
.contact_box .required:after {
	content: "必須";
	margin-top: 5px;
	color: #FFF;
	width: 30px!important;
	height: 18px;
	font-size: 10px;
	text-align: center;
	line-height: 18px;
	background-color: #FF0000;
}
.contact_box dl {
	display: flex;
	flex-flow: wrap;
	border-top: 1px solid #B4B4B4;
}
.contact_box dt {
	padding: 30px;
	width: 30%;
	line-height: 1.6;
	box-sizing: border-box;
	border-bottom: 1px solid #B4B4B4;
}
.contact_box dd {
	flex-grow: 1;
	padding: 30px;
	width: 70%;
	box-sizing: border-box;
	border-bottom: 1px solid #B4B4B4;
}
.contact_box .form_text {
	padding: 0 10px;
	width: 100%;
	height: 40px;
	color: #231815;
	font-size: 14px;
	border: none;
	background-color: #FFF;
	box-sizing: border-box;
}
.contact_box .form_select {
	padding: 0 10px;
	width: 100%;
	height: 40px;
	color: #231815;
	font-size: 14px;
	border: none;
	background-color: #FFF;
	box-sizing: border-box;
}
.contact_box .form_textarea {
	padding: 10px;
	width: 100%;
	height: 150px;
	color: #231815;
	font-size: 14px;
	border: none;
	background-color: #FFF;
	box-sizing: border-box;
}
.contact_box .form_textarea::placeholder {
  color: #A5A5A5;
}
.contact_box .link_item {
	display: block;
	margin-bottom: 40px;
}
.contact_box .link_item a {
	position: relative;
	display: inline-block;
	padding-left: 15px;
	color: #FFF;
	width: 50%;
	height: 38px;
	line-height: 38px;
	font-weight: 700;
	font-size: clamp(1.4rem, 1.362rem + 0.16vw, 1.6rem);
	background-color: #191919;
	box-sizing: border-box;
}
.contact_box .link_item a:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #FFF;
  border-right: solid 2px #FFF;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  margin: auto;
	transition: all .4s;
}
.contact_box .link_item a:hover {
  background-color: #5EB74F;
}
.contact_box .link_item a:hover:before {
  right: 6px;
}
@media screen and (max-width: 896px) {
	.contact_box {
		margin: 0 auto 60px;
		padding: 40px 5%;
		width: 100%;
	}
	.contact_box h3 {
		margin-bottom: 20px;
	}
	.contact_box .required {
		display: flex;
		justify-content: flex-start;
		gap: 10px;
	}
	.contact_box dl {
		display: flex;
		flex-flow: wrap;
		border-top: 1px solid #B4B4B4;
	}
	.contact_box dt {
		gap: 10px;
		padding: 20px 0 10px;
		width: 100%;
		border-bottom: none;
	}
	.contact_box dd {
		padding: 10px 0 20px;
		width: 100%;
	}
	.contact_box .link_item a {
		width: 100%;
	}
}

.form-button {
	width: 100%;
}
.contact_form-wrap {
	cursor: pointer;
}
.contact_form-button {
	display: block;
	margin: auto;
	color: #FFF;
	width: 280px;
	height: 50px;
	font-size: 16px;
	font-weight: 700;
	background-color: #5EB74F;
}
.contact_form-check {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 50px 0;
	text-align: center;
}
.contact_form-check a {
	text-decoration: underline;
}
.wpcf7-validates-as-required label {
	top: 5px;
	margin-right: 0!important;
}
.wpcf7-list-item {
	margin: 0!important;
	line-height: 2.2;
}
.wpcf7-list-item input {
	margin: 0 10px 0 0;
	width: 20px;
	height: 20px;
}
.wpcf7-radio label {
	display: flex;
	align-items: center;
	margin-right: 30px;
}
.wpcf7-radio, .wpcf7-checkbox {
	display: flex;
	flex-direction: column;
}
.wpcf7-checkbox label, .wpcf7-radio label {
	display: flex;
	align-items: center;
	margin-right: 30px;
}
.wpcf7-not-valid-tip {
	margin-top: 10px;
	color: #B94A48;
	font-size: 12px;
}
.wpcf7-response-output {
	display: block;
	margin: 0 auto 40px!important;
	padding: 15px!important;
	width: 100%;
	font-size: 14px;
	text-align: center;
	line-height: 1.4em;
	background:#f7d7da!important;
	color:#711d26!important;
	border:1px solid #f4c6cb!important;
	box-sizing: border-box;
}
.wpcf7 form.sent .wpcf7-response-output {
	display: block;
	margin: 0 auto 40px!important;
	padding: 15px!important;
	width: 100%;
	font-size: 14px;
	text-align: center;
	line-height: 1.4em;
	background:#d5edda!important;
	color:#185626!important;
	border:1px solid #c4e5cc!important;
	box-sizing: border-box;
}
.wpcf7-spinner {
	position: relative;
	visibility: hidden;
	display: block;
	margin: 10px auto 0;
	padding: 0;
	opacity: 0.75;
	width: 24px;
	height: 24px;
	border: none;
	background-color: #23282d;
	border-radius: 100%;
}
@media screen and (max-width: 896px) {
	.wpcf7-checkbox label, .wpcf7-radio label {
		font-size: 1.3rem;
	}
}

/*!------------------------------------------------------------------
[プライバシーポリシー]
*/
.privacypolicy_box {
	margin: auto;
	width: 70%;
}
.privacypolicy_box h3 {
	margin-bottom: 10px;
	font-size: clamp(1.4rem, 1.324rem + 0.31vw, 1.8rem);
	font-weight: 700;
	line-height: 1.6;
}
.privacypolicy_box p {
	padding-bottom: 60px;
	line-height: 1.8;
	overflow-wrap: break-word;
}
@media screen and (max-width: 896px) {
.privacypolicy_box {
	width: 90%;
}
}