@charset "utf-8";

/*====================================

	/ Ver 1.0 /

  ----------------------------------
    Structure
  ----------------------------------

  0. Header
  1. Footer
	2. Top
	3. Contact
		3.1 contactform7

====================================*/


/*-------------------------------

	0. Header

-------------------------------*/
.video_wrap {
  height: 100%; /* 高さを画面いっぱいに指定する。(vhが効かない場合の対策) */
  height: 100vh; /* 高さを画面いっぱいに指定する。 */
  position: relative;  /*横幅がウィンドウズサイズの縦幅よりもはみ出てしまう場合に、左にずらすために指定。 */
  width: 100%; /* 横幅もいっぱいに。 */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}
#video {
  background: url(../video/video_bg.jpg) no-repeat center; /* 動画が再生を始めるまで、cssのほうでも背景を設定します。
  background-attachment: fixed; /* 中央揃えになるように、fixed。 */
  background-position: center center; /* positionも中央に。 */
  background-size: cover; /* 画面サイズに応じてサイズを可変するように設定。 */
  left: 0;
  /* 以下、画面いっぱいにするためのCSS設定 */
  min-height: 100%;
  min-height: 100vh;
  min-width: 100%;
  min-width: 100vw;
  /* wrapperのサイズに応じて、leftの位置をjQueryで指定するため、positionはabsoluteにします。 */
  position: absolute;
  top: 0;
  /* z-indexは調整してください。 */
  z-index: 1;
}
.topCatch {
	font-size: 5.3rem;
	line-height: 12rem;
	letter-spacing: 1.5rem;
	text-align: center;
	color: #fff;
	position: relative;
	z-index: 10;
	margin-bottom: 5%;
}
.topStory {
	margin-bottom: 5%;
}
.topStory > a {
	font-size: 2.3rem;
	letter-spacing: 0.3rem;
	color: #fff;
	text-align: center;
	position: relative;
	z-index: 10;
}
.topStory > a::after {
	content: '';
  display: block;
  background: #fff;
  width: 100%;
  height: 2px;
  margin: 8px auto;
	position: relative;
	z-index: 10;
}
.topStory > a:hover::after {
  filter:alpha(opacity=70);
	opacity:0.7;
	transition: 0.3s;
}
.scrollBtn > a {
  display: block;
	position: relative;
	top: 36px;
	z-index: 10;
	font-size: 1.2rem;
	letter-spacing: 0.2rem;
	color: #fff;
}
.scrollBtn > a span {
  position: absolute;
  top: -38px;
  left: 50%;
  width: 30px;
  height: 30px;
  margin-left: -17px;
  border: 1px solid #fff;
  border-radius: 100%;
  box-sizing: border-box;
}
.scrollBtn > a span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: '';
  width: 12px;
  height: 12px;
  margin: -9px 0 0 -6px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  box-sizing: border-box;
}
.scrollBtn > a span::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: '';
  width: 28px;
  height: 28px;
  box-shadow: 0 0 0 0 rgba(255,255,255,.1);
  border-radius: 100%;
  opacity: 0;
  -webkit-animation: scrollbtn 3s infinite;
  animation: scrollbtn 3s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes scrollbtn {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    box-shadow: 0 0 0 35px rgba(255,255,255,.1);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes scrollbtn {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    box-shadow: 0 0 0 35px rgba(255,255,255,.1);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media screen and ( max-width:1080px ) {
	.topStory {
		margin-bottom: 10%;
	}
}

@media screen and ( max-width:600px ) {
	.topCatch {
		font-size: 4rem;
		line-height: 9rem;
		letter-spacing: 1.5rem;
	}
	.topStory > a {
		font-size: 1.8rem;
		letter-spacing: 0.3rem;
	}
	.topStory > a::after {
	  margin: 5px auto;
	}
	.topStory {
		margin-bottom: 18%;
	}
}


/*-------------------------------

	2. Top

-------------------------------*/
.top_wrap {
	margin-bottom: 120px;
}
.topConts1 {
	background: url(../img/top_img01.jpg) no-repeat center;
	background-size: cover;
	padding: 120px 0 105px 0;
	box-sizing: border-box;
	text-align: center;
}
.topConts1 > .inner > ul > li {
	padding: 0 15px;
	box-sizing: border-box;
}
.topConts2,
.topConts3,
.topConts4,
.topConts5 {
	margin-top: 120px;
}
.topConts2_title,
.topConts3_title {
	display: flex;
}
.topConts2_title > div:nth-child(1),
.topConts3_title > div:nth-child(1) {
	flex-basis: 20%;
	align-self: center;
	display: flex;
	justify-content: center;
}
.topConts2_title > div:nth-child(1),
.topConts5_title > div:nth-child(1) {
	height: auto;
	max-height: 180px;
}
.topConts3_title > div:nth-child(1),
.topConts2_event > .topConts2_title > div:nth-child(1) {
	border-right: 2px solid #595757;
}
.topConts2_title > div:nth-child(2),
.topConts3_title > div:nth-child(2) {
	flex-basis: 60%;
	align-self: center;
}
.topConts3_title > div:nth-child(2),
.topConts2_event > .topConts2_title > div:nth-child(2) {
	padding-left: 40px;
	box-sizing: border-box;
}
.topConts2_title > div:nth-child(3),
.topConts3_title > div:nth-child(3) {
	flex-basis: 20%;
	align-self: flex-end;
	text-align: right;
}
.topConts2_column {
	margin-top: 80px;
}
.topConts2_column > ul > li {
	width: 520px;
	border-bottom: 1px solid #f2eee4;
	margin: 0 10px;
	padding: 20px 15px;
	box-sizing: border-box;
}
.worksCal_title {
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
}
.worksCal_title > a {
	font-size: 1.6rem;
	line-height: 1.8rem;
	font-weight: normal;
	letter-spacing: 0.26rem;
	color: #fff;
}
.worksCal_title > a::after {
	content:'';
	display: block;
	background: url(../img/arrow01.svg)no-repeat center;
	background-size: contain;
	width: 25px;
	height: 13px;
	margin: 15px auto 10px auto;
}
.hoverParent {
	position: relative;
	overflow: hidden;
}
.hoverMask {
	position: absolute;
	opacity: 0;
}
.hoverParent:hover .hoverMask {
	opacity: 1;
	transition: 0.3s ease;
}
.topConts4 > div {
	padding: 0 10px;
	box-sizing: border-box;
}
.topConts5 > .inner > div:nth-child(2) {
	margin-top: 90px;
}
.topConts5_title::before {
	content: '';
	width: 59%;
	height: 330px;
	position: absolute;
	top: 60px;
	left: 0;
	z-index: -10;
	background: rgba(75, 115, 85, 0.1);
}
.topConts5_title > div:nth-child(1) {
	margin-left: 90px;
}
.topConts5_title > div:nth-child(2) {
	display: flex;
	justify-content: center;
	padding: 50px 0;
	box-sizing: border-box;
}
.topConts5_title > div:nth-child(3) {
	text-align: right;
	padding-right: 20px;
	box-sizing: border-box;
}
.topConts5_title > .verticalTitle > .vertical-side {
	top: 40px;
	left: -10px;
}
.lifeColumn {
	padding-left: 20px;
	box-sizing: border-box;
}
.lifeColumn > li:nth-child(n+2) {
	margin-top: 20px;
}
.lifeColumn > li > div:nth-child(1) {
	width: 100%;
	max-width: 150px;
	border: 1px solid #595757;
	box-sizing: border-box;
}
.lifeColumn > li > div:nth-child(1) > a > img {
	width: 100%;
	height: auto;
	border: 5px solid #fff;
	box-sizing: border-box;
}
.lifeColumn > li > div:nth-child(2) {
	padding-left: 20px;
	box-sizing: border-box;
}

/* top news */
.top-news {
  margin-top: 50px;
}
.top-news_title {
  display: flex;
}
.top-news_title > div:nth-child(1) {
	flex-basis: 20%;
	align-self: center;
	display: flex;
	justify-content: center;
  height: auto;
	max-height: 180px;
}
.top-news_title > div:nth-child(1) {
	border-right: 2px solid #595757;
}
.top-news_title > div:nth-child(2) {
	flex-basis: 60%;
	align-self: center;
  padding-left: 40px;
	box-sizing: border-box;
}
.top-news_title > div:nth-child(3) {
	flex-basis: 20%;
	align-self: flex-end;
	text-align: right;
}
.top-news__get__box {
	border-bottom: 1px solid #f2eee4;
	padding: 20px 0;
}
.top-news__get__box > .date::after {
	content: '|';
	margin: 0 10px 0 15px;
}
.top-news__get__box .date {
  display: inline-block;
}
.top-news-txt {
	line-height: 1.7;
	margin-top: 0;
	display: inline;
}

@media screen and ( max-width:1080px ) {
	.topConts1 > .inner > ul > li {
		padding: 0 10px;
	}
	.topConts2_column > ul > li {
		width: 100%;
		margin: 0;
	}
	.topConts2_title,
	.topConts3_title {
		display: block;
		text-align: center;
	}
	.topConts2_title > div:nth-child(2),
	.topConts3_title > div:nth-child(2) {
		margin: 20px auto;
	}
	.topConts2_title > div:nth-child(1),
	.topConts5_title > div:nth-child(1) {
		max-height: none;
	}
	.topConts2_title > div:nth-child(3),
	.topConts3_title > div:nth-child(3) {
		text-align: center;
	}
	.topConts3_title > div:nth-child(1),
	.topConts2_event > .topConts2_title > div:nth-child(1) {
		border-right: none;
	}
	.topConts3_title > div:nth-child(2),
	.topConts2_event > .topConts2_title > div:nth-child(2) {
		padding-left: 0;
	}
	.worksCal_title > a {
		font-size: 1.4rem;
		line-height: 1.6rem;
		letter-spacing: 0.1rem;
	}
	.topConts5 {
		width: 100%;
		height: auto;
		background: rgba(75, 115, 85, 0.1);
		padding: 100px 0;
		box-sizing: border-box;
		}
	.topConts5_title::before {
		display: none;
	}
	.topConts5_title > div:nth-child(1) {
		margin-left: 0;
		text-align: center;
	}
	.topConts5_title > div:nth-child(2) {
		display: block;
		text-align: center;
		padding: 0;
		margin: 20px auto;
	}
	.topConts5_title > div:nth-child(3) {
		text-align: center;
		padding-right: 0;
	}
	.lifeColumn > li > div:nth-child(1) {
		width: 28%;
		max-width: 28%;
	}
	.lifeColumn > li > div:nth-child(2) {
		width: 72%;
	}

  /* top news */
  .top-news_title {
		display: block;
		text-align: center;
	}
	.top-news_title > div:nth-child(2) {
		margin: 20px auto;
    padding-left: 0;
	}
	.top-news_title > div:nth-child(1) {
		max-height: none;
	}
	.top-news_title > div:nth-child(3) {
		text-align: center;
	}
	.top-news_title > div:nth-child(1) {
		border-right: none;
	}
  .top-news__get__box .date {
    display: block;
  }
  .top-news-txt {
  	line-height: 1.4;
  	margin-top: 5px;
  	display: inline-block;
  }
}

@media screen and ( max-width:600px ) {
	.top_wrap {
		margin-bottom: 50px;
	}
	.topConts1 {
		padding: 70px 0;
	}
	.topConts2_column > ul > li {
		padding: 20px 0;
	}
	.topConts2,
	.topConts3,
	.topConts4,
	.topConts5 {
		margin-top: 50px;
	}
	.topConts2_column {
		margin-top: 50px;
	}
	.worksCal_title > a::after {
		width: 13px;
		height: 7px;
	}
	.hoverMask {
		opacity: 1;
	}
	.topConts4 > div {
		padding: 0;
	}
	.topConts5 {
		padding: 50px 0;
		}
	.topConts5 > .inner > div:nth-child(2) {
		margin-top: 50px;
	}
	.lifeColumn {
		padding-left: 0;
	}
	.lifeColumn > li > div:nth-child(1),
	.lifeColumn > li > div:nth-child(2) {
		width: 100%;
		max-width: 100%;
	}
	.lifeColumn > li > div:nth-child(1),
	.lifeColumn > li > div:nth-child(1) > a > img {
		max-width: none;
	}
	.lifeColumn .date {
		margin-top: 10px !important;
	}
	.lifeColumn > li > div:nth-child(2) {
		padding-left: 0;
		width: 100%;
	}
}


/*-------------------------------

	3. Story

-------------------------------*/
.storyTitle {
	margin-top: 70px;
}
.storyTitle > h2 {
	color: #8e6446;
	font-size: 3rem;
	font-weight: normal;
	letter-spacing: 0.2rem;
}
.storyTitle > p {
	font-size: 1.2rem;
	margin-top: 5px;
}
.storyTitle > p::before {
	content: '';
	position: absolute;
	top: 15px;
	left: 0;
	z-index: -10;
	background: #f2eee4;
	display: inline-block;
	width: 100%;
	height: 50px;
}
.storyConts1,
.storyConts2,
.storyConts3,
.storyConts4,
.storyConts5 {
	margin-top: 100px;
}
.storyTitle2 > p,
.storyTitle3 > p {
	display: inline-block;
}
.storyTitle2 > p > span:nth-child(1) {
	color: #8e6446;
	letter-spacing: 0.2rem;
	position: relative;
	z-index: 10;
}
.storyTitle3 > p > span:nth-child(1) {
	color: #fff;
	letter-spacing: 0.2rem;
	position: relative;
	z-index: 10;
}
.storyTitle2 > p > span:nth-child(2) {
	font-size: 5rem;
	color: #f2eee4;
	letter-spacing: 0.04rem;
	position: absolute;
	top: -5px;
	right: -56px;
}
.storyTitle3 > p > span:nth-child(2) {
	font-size: 5rem;
	color: rgba(242,238,228,.5);
	letter-spacing: 0.04rem;
	position: absolute;
	top: -5px;
	right: -56px;
}
.storyTitle2 > h3,
.storyTitle3 > h3 {
	font-size: 2.4rem;
	font-weight: normal;
	line-height: 3rem;
	letter-spacing: 0.2rem;
}
.storyConts1_box {
  width: 100%;
  max-width: 600px;
  padding-left: 20px;
  box-sizing: border-box;
}
.storyConts1_box > p {
  padding: 35px 0;
  box-sizing: border-box;
}
.storyConts1_box > .plinkBtn01 > a {
  max-width: 500px;
}
.storyConts1_img {
  position: absolute;
  top: 0;
  right: -100px;
  z-index: -10;
}
.storyConts1_img::before {
  content: '';
  position: absolute;
  left: -115px;
  bottom: -60px;
  z-index: -20;
  background: #f2eee4;
  width: 470px;
  height: 280px;
}
.storyConts1_box2 {
  margin-top: 180px;
}
.storyConts1_box2 > div {
  padding: 0 20px;
  box-sizing: border-box;
}
.storyConts1_box2 > div:nth-child(1) > p {
	padding: 20px 0 25px 0;
	box-sizing: border-box;
}
.storyConts1_box2 > div:nth-child(2)::before {
	content: '';
  position: absolute;
  right: 0;
  bottom: -40px;
  z-index: -20;
  background: #f2eee4;
  width: 460px;
  height: 80px;
}
.storyConts2 {
	background: url(../img/storyConts2_bg.jpg) no-repeat center;
	background-size: cover;
	padding: 100px 0;
	box-sizing: border-box;
}
.storyConts2 > .inner > p {
	width: 100%;
	max-width: 600px;
	margin-top: 260px;
	margin-left: 20px;
}
.storyConts2 > .inner > ul > li,
.storyConts4 > .inner > ul > li {
	padding: 0 20px;
	box-sizing: border-box;
}
.storyConts3 > .storyTitle2 > h3::after {
	content: '';
	background: #595757;
	width: 100px;
	height: 1px;
	display: block;
	margin: 35px auto;
}
.storyConts3 > p,
.storyConts5 > p {
	width: 100%;
	max-width: 840px;
	margin: 30px auto 35px auto;
}
.storyConts3 > .plinkBtn01 > a,
.storyConts5 > .plinkBtn01 > a {
	max-width: 500px;
	margin: 0 auto;
}
.storyConts4 {
	background: #f2eee4;
	padding: 60px 0;
	box-sizing: border-box;
}
.storyConts4 > .inner > p {
	width: 100%;
	max-width: 600px;
	margin: 30px 0 35px 20px;
	position: relative;
	z-index: 10;
}
.storyConts4_img {
	position: absolute;
	top: -100px;
	right: -100px;
}
.storyConts5_box {
	width: 100%;
	max-width: 840px;
	margin: 0 auto 50px auto;
	display: flex;
	justify-content: center;
}
.storyConts5_box > .left {
	flex-basis: 38%;
	align-self: center;
}
.storyConts5_box > .right {
	flex-basis: 60%;
	padding-left: 40px;
	box-sizing: border-box;
}
.storyConts5_box > .right > p {
	letter-spacing: 0.5rem;
	color: #fff;
	text-align: center;
	background: #231815;
	width: 100%;
	display: none;
}
.storyConts5_box > .right > .inner {
	background: url(../img/storyConts5_img02.svg) no-repeat;
	padding: 30px 25px 30px 45px;
	box-sizing: border-box;
}
.storyConts5_box > .right > .inner > p:nth-child(1) {
	font-size: 1.2rem;
	letter-spacing: 0.1rem;
	display: inline-block;
}
.storyConts5_box > .right > .inner > p:nth-child(1)::after {
	content: '';
	background: #f2eee4;
	width: 100%;
	height: 9px;
	display: inline-block;
	position: absolute;
	top: 12px;
	left: 0;
	z-index: -10;
}
.storyConts5_box > .right > .inner > h4 {
	font-size: 1.8rem;
	font-weight: normal;
	letter-spacing: 0.26rem;
	color: #8e6446;
}
.storyConts5_box > .right > .inner > p:nth-child(3) {
	font-size: 1.2rem;
	line-height: 2.4rem;
}

@media screen and ( max-width:1080px ) {
	.storyConts1_box {
	  max-width: none;
	  padding-left: 0;
	}
	.storyConts1_box > p {
	  padding: 20px 0 25px 0;
	}
	.storyConts1_box > .plinkBtn01 > a {
	  max-width: 500px;
		margin: 0 auto;
	}
	.storyConts1_img {
	  position: static;
		margin-top: 30px;
	}
	.storyConts1_img > img {
		width: 100%;
	}
	.storyConts1_img::before,
	.storyConts1_box2 > div:nth-child(2)::before {
	  display: none;
	}
	.storyConts1_box2 {
	  margin-top: 50px;
	}
	.storyConts1_box2 > div {
	  padding: 0;
	}
	.storyConts1_box2 > div:nth-child(2) {
		margin-top: 30px;
	}
	.storyConts2 > .inner > p {
		margin-left: 0;
	}
	.storyConts4 > .inner > p {
		max-width: none;
		margin: 30px 0 35px 0;
	}
	.storyConts4_img {
		position: static;
		margin-top: 30px;
	}
	.storyConts4_img > img {
		width: 100%;
	}
	.storyConts5_box > .right > p {
		letter-spacing: 0.5rem;
		color: #fff;
		text-align: center;
		background: #231815;
		width: 100%;
		display: block;
	}
	.storyConts5_box > .right > .inner {
		background: none;
		padding: 30px;
		border: 1px solid #231815;
	}
}

@media screen and ( max-width:600px ) {
	.storyTitle {
		margin-top: 50px;
	}
	.storyTitle > h2 {
		font-size: 2rem;
	}
	.storyTitle2 > p > span:nth-child(2),
	.storyTitle3 > p > span:nth-child(2) {
		font-size: 3rem;
		top: -2px;
		right: -35px;
	}
	.storyTitle2 > h3,
	.storyTitle3 > h3 {
		font-size: 1.8rem;
		line-height: 2.6rem;
	}
	.storyConts1,
	.storyConts2,
	.storyConts3,
	.storyConts4,
	.storyConts5,
	.storyConts6 {
		margin-top: 50px;
	}
	.storyConts2 {
		padding: 50px 0;
	}
	.storyConts2 > .inner > p {
		max-width: none;
		margin-top: 130px;
	}
	.storyConts2 > .inner > ul > li,
	.storyConts4 > .inner > ul > li {
		padding: 5px 0;
	}
	.storyConts5_box {
		max-width: none;
		display: block;
	}
	.storyConts5_box > .right {
		padding-left: 0;
		margin-top: 30px;
	}
	.storyConts5_box > .right > .inner {
		padding: 25px;
	}
}


/*-------------------------------

	3. Totsukawa

-------------------------------*/
.totsukawaMv {
	background: url(../img/mv_totsukawa.jpg) no-repeat center;
	background-size: cover;
	height: 410px;
	display: block;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.totsukawaMv > .pTitle04::after {
	content: '';
	background: #fff;
	width: 100px;
	height: 1px;
	display: block;
	margin: 30px auto;
}
.totsukawaConts1,.totsukawaConts2,.totsukawaConts3,
.totsukawaConts4,.totsukawaConts5,.totsukawaConts6 {
	margin-top: 100px;
}
.totsukawaConts1 > p {
	width: 100%;
	max-width: 600px;
	margin-left: 20px;
}
.totsukawaConts1_box1 {
	margin-top: 100px;
}
.totsukawaConts1_box1 > p:nth-child(1) {
	position: relative;
	top: 0;
	left: -100px;
}
.totsukawaConts1_box1 > p:nth-child(2) {
	width: 100%;
	max-width: 500px;
	position: absolute;
	top: 77px;
	right: 0;
}
.totsukawaConts1_box2::before {
	content: '';
	background: #f2eee4;
	width: 1180px;
	height: 420px;
	position: absolute;
	top: -120px;
	left: -100px;
	z-index: -10;
}
.totsukawaConts1_box2 > div:nth-child(2) > div {
	padding: 0 15px;
	box-sizing: border-box;
}
.totsukawaConts1_box2 > div:nth-child(2) > div > h3 {
	font-size: 2rem;
	line-height: 2.6rem;
	font-weight: normal;
	color: #8e6446;
	letter-spacing: 0.2rem;
	padding: 30px 0;
	box-sizing: border-box;
	background-size: contain;
}
.totsukawaConts1_box2 > div:nth-child(2) > div:nth-child(1) > h3 {
	background: url(../img/totsukawaConts1_img02.svg) no-repeat;
}
.totsukawaConts1_box2 > div:nth-child(2) > div:nth-child(2) > h3 {
	background: url(../img/totsukawaConts1_img03.svg) no-repeat;
}
.totsukawaConts1_box2 > div:nth-child(2) > div:nth-child(3) > h3 {
	background: url(../img/totsukawaConts1_img04.svg) no-repeat;
}
.totsukawaConts1_box2 > div:nth-child(2) > div:nth-child(4) > h3 {
	background: url(../img/totsukawaConts1_img05.svg) no-repeat;
}
.totsukawaConts2::before {
	content: '';
	background: #e9edea;
	width: 100%;
	height: 440px;
	position: absolute;
	top: 13px;
	left: 0;
	z-index: -10;
}
.totsukawaTitle > h2 {
	color: #8e6446;
	font-size: 3rem;
	font-weight: normal;
	letter-spacing: 0.2rem;
}
.totsukawaTitle > p {
	font-size: 1.2rem;
	margin-top: 5px;
}
.totsukawaConts2_txt {
	width: 100%;
	max-width: 840px;
	margin: 50px auto;
	text-align: center;
}
.totsukawaConts2_box1 > div:nth-child(1) {
	margin-top: 45px;
}
.totsukawaConts2_box1 > div:nth-child(1) > p {
	padding: 0 40px 0 20px;
	box-sizing: border-box;
}
.totsukawaConts2_box2 > div:nth-child(1) {
	padding: 20px 20px 0 20px;
	box-sizing: border-box;
}
.totsukawaConts3 {
	background: url(../img/totsukawaConts3_img01.jpg) no-repeat center;
	background-size: cover;
	height: 480px;
	box-sizing: border-box;
}
.totsukawaConts3 > .inner {
	height: inherit;
}
.totsukawaConts3 > .inner > .pTitle05 {
	position: absolute;
	left: 0;
	bottom: 100px;
}
.totsukawaConts3 > .inner > p {
	width: 100%;
	max-width: 600px;
	position: absolute;
	right: 0;
	bottom: 60px;
}
.totsukawaConts4_box > div {
	padding: 20px;
	box-sizing: border-box;
}

.totsukawaConts5 {
	background: url(../img/totsukawaConts5_img01.jpg) no-repeat center;
	background-size: cover;
	height: 480px;
	box-sizing: border-box;
}
.totsukawaConts5 > .inner {
	height: inherit;
}
.totsukawaConts5 > .inner > .pTitle05 {
	position: absolute;
	left: 0;
	bottom: 100px;
}
.totsukawaConts5 > .inner > p {
	width: 100%;
	max-width: 600px;
	position: absolute;
	right: 0;
	top: 60px;
}
.totsukawaConts6 > div {
	padding: 0 20px;
	box-sizing: border-box;
}

@media screen and ( max-width:1080px ) {
	.totsukawaMv {
		height: 350px;
	}
	.totsukawaConts1 > p {
		max-width: none;
		margin-left: 0;
	}
	.totsukawaConts1_box1 > p:nth-child(1) {
		position: static;
	}
	.totsukawaConts1_box1 > p:nth-child(1) > img {
		width: 100%;
		height: auto;
	}
	.totsukawaConts1_box1 > p:nth-child(2) {
		max-width: none;
		position: static;
		margin-top: 20px;
	}
	.totsukawaConts1_box2::before {
    content: '';
    background: #f2eee4;
    width: 200%;
    height: 420px;
    position: absolute;
    top: -25px;
    left: -50%;
    z-index: -10;
    right: 0;
    overflow: hidden;
	}
	.totsukawaConts1_box2 > div:nth-child(2) > div {
		padding: 0 10px;
	}
	.totsukawaConts1_box2 > div:nth-child(2) > div > h3 {
		font-size: 1.8rem;
		line-height: 2.3rem;
		padding: 20px 0;
	}
	.totsukawaConts2::before {
		height: 480px;
	}
	.totsukawaConts2_box1 > div:nth-child(1) > p {
		padding: 0;
	}
	.totsukawaConts2_box2 > div:nth-child(1) {
		padding: 0;
		margin-bottom: 40px;
	}
	.totsukawaConts3,
	.totsukawaConts5 {
		height: auto;
		padding: 100px 0;
		box-sizing: border-box;
	}
	.totsukawaConts3 > .inner > .pTitle05,
	.totsukawaConts5 > .inner > .pTitle05 {
		position: static;
	}
	.totsukawaConts3 > .inner > p,
	.totsukawaConts5 > .inner > p {
		max-width: none;
		position: static;
	}
	.totsukawaConts6 > div {
		padding: 0;
	}
	.totsukawaConts6 > div:nth-child(2) {
		margin-top: 40px;
	}
}

@media screen and ( max-width:600px ) {
	.totsukawaMv {
		height: 250px;
	}
	.totsukawaConts1,.totsukawaConts2,.totsukawaConts3,
	.totsukawaConts4,.totsukawaConts5,.totsukawaConts6 {
		margin-top: 50px;
	}
	.totsukawaTitle > h2 {
		font-size: 2rem;
	}
	.totsukawaConts1_box1 {
		margin-top: 50px;
	}
	.totsukawaConts1_box2::before {
    height: 600px;
	}
	.totsukawaConts1_box2 > div:nth-child(2) > div > h3 {
		font-size: 1.6rem;
		line-height: 2rem;
		padding: 15px 0;
	}
	.totsukawaConts2::before {
		height: 700px;
	}
	.totsukawaConts2_txt {
		max-width: none;
	}
	.totsukawaConts3,
	.totsukawaConts5 {
		padding: 50px 0;
	}
	.totsukawaConts4_box > div {
		padding: 20px 0;
		box-sizing: border-box;
	}
}


/*-------------------------------

	3. Architecture

-------------------------------*/
.architectureConts1,.architectureConts2,
.architectureConts3,.architectureConts4 {
	margin-top: 100px;
}
.architectureConts2 > div > div:nth-child(1) > p {
	width: 100%;
	max-width: 460px;
	margin-left: 20px;
}
.architectureConts2 > div > div:nth-child(1) {
	margin-top: 20px;
}
.architectureConts2 > div:nth-child(2) > div:nth-child(1) {
	width: 33%;
	padding-left: 40px;
	box-sizing: border-box;
}
.architectureConts2 > div:nth-child(2) > div:nth-child(2) {
	width: 67%;
}
.architectureConts3 {
	background: #e9edea;
	padding: 35px 0 100px 0;
	box-sizing: border-box;
	margin-top: 150px;
}
.architectureConts3 > .inner > div:nth-child(1) > p {
	padding: 0 20px;
	box-sizing: border-box;
}
.architectureConts3 > .inner > div:nth-child(2) {
	margin-top: -100px;
	padding-left: 20px;
	box-sizing: border-box;
}

@media screen and ( max-width:1080px ) {
	.architectureConts2 > div > div:nth-child(1) > p {
		max-width: none;
		margin-left: 0;
	}
	.architectureConts2 > div:nth-child(1) > div:nth-child(2) {
		margin-top: 30px;
	}
	.architectureConts2 > div:nth-child(2) > div:nth-child(1) {
		width: 100%;
		padding-left: 0;
	}
	.architectureConts2 > div:nth-child(2) > div:nth-child(2) {
		width: 100%;
		margin-top: 30px;
	}
	.architectureConts3 {
		padding: 50px 0;
		margin-top: 100px;
	}
	.architectureConts3 > .inner > div:nth-child(1) > p {
		padding: 0;
	}
	.architectureConts3 > .inner > div:nth-child(2) {
		margin-top: 30px;
		padding-left: 0;
	}
}

@media screen and ( max-width:600px ) {
	.architectureConts1,.architectureConts2,
	.architectureConts3,.architectureConts4 {
		margin-top: 50px;
	}
}


/*-------------------------------

	3. Furniture

-------------------------------*/
.furnitureConts1,.furnitureConts2,.furnitureConts3 {
	margin-top: 100px;
}
.furnitureConts1 > ul {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin: 100px 0;
}
.furnitureConts1 > ul > li img {
	width: 100%;
	height: auto;
}
.furnitureConts1 > ul > li:nth-child(1),
.furnitureConts1 > ul > li:nth-child(3) {
	flex-basis: 47%;
}
.furnitureConts1 > ul > li:nth-child(2) {
	flex-basis: 6%;
	text-align: center;
}
.furnitureConts1 > ul > li:nth-child(2) > img {
	max-width: 18px;
}

.furnitureConts2 > div > div:nth-child(1) > p {
	width: 100%;
	max-width: 460px;
	margin-left: 20px;
}
.furnitureConts2 > div > div:nth-child(1) {
	margin-top: 20px;
}
.furnitureConts2 > div:nth-child(2) > div:nth-child(1) {
	width: 33%;
	padding-left: 40px;
	box-sizing: border-box;
}
.furnitureConts2 > div:nth-child(2) > div:nth-child(2) {
	width: 67%;
}
.furnitureConts3 {
	margin-top: 150px;
}
.furnitureConts3::before {
	content: '';
	background: #e9edea;
	width: 200%;
	height: 290px;
	position: absolute;
	top: -50px;
	left: -50%;
	z-index: -10;
	right: 0;
	overflow: hidden;
}
.furnitureConts3 > .inner > div:nth-child(1) > p,
.furnitureConts3 > .inner > div:nth-child(2) {
	padding: 0 20px;
	box-sizing: border-box;
}

@media screen and ( max-width:1080px ) {
	.furnitureConts2 > div > div:nth-child(1) > p {
		max-width: none;
		margin-left: 0;
	}
	.furnitureConts2 > div:nth-child(1) > div:nth-child(2) {
		margin-top: 30px;
	}
	.furnitureConts2 > div:nth-child(2) > div:nth-child(1) {
		width: 100%;
		padding-left: 0;
	}
	.furnitureConts2 > div:nth-child(2) > div:nth-child(2) {
		width: 100%;
		margin-top: 30px;
	}
}

@media screen and ( max-width:600px ) {
	.furnitureConts1,.furnitureConts2,.furnitureConts3 {
		margin-top: 50px;
	}
	.furnitureConts1 > ul {
		display: block;
		margin: 50px 0;
	}
	.furnitureConts1 > ul > li:nth-child(2) {
		margin: 10px 0;
	}
	.furnitureConts3 {
		background: #e9edea;
		padding: 50px 0;
		box-sizing: border-box;
	}
	.furnitureConts3::before {
		display: none;
	}
	.furnitureConts3 > .inner > div:nth-child(1) > p,
	.furnitureConts3 > .inner > div:nth-child(2) {
		padding: 0;
	}
}


/*-------------------------------

	3. Staff

-------------------------------*/
.staffConts1,.staffConts2,.staffConts3 {
	margin-top: 100px;
}
.staffConts1::before {
	content: '';
	background: #dae5d3;
	width: 86%;
	height: 205px;
	position: absolute;
	top: 25%;
	left: 0;
	z-index: -10;
	right: 0;
	overflow: hidden;
}
.staffConts1 > .inner {
	display: flex;
	align-items: center;
}
.staffConts1 > .inner > .ceo_img {
	flex-basis: 41%;
	padding: 0 20px;
	box-sizing: border-box;
}
.staffConts1 > .inner > .ceo_txt {
	flex-basis: 59%;
	padding: 0 20px;
	box-sizing: border-box;
}
.staffConts1 > .inner .position {
	font-size: 1.4rem;
	padding-right: 10px;
	box-sizing: border-box;
}
.staffConts2 > div {
	padding: 20px;
	box-sizing: border-box;
}
.staff_sns > li:nth-child(1) {
  padding-right: 10px;
  box-sizing: border-box;
}
.staff_sns > li:nth-child(2) {
  padding-left: 10px;
  box-sizing: border-box;
}
.staffConts_icon {
  margin-top: 50px;
}
.staffConts_icon .boxicon {
  line-height: inherit;
  vertical-align: middle;
  vertical-align: -webkit-baseline-middle;
  margin-right: 10px;
}
.staffConts_icon .boxicon img {
  width: 100%;
  max-width: 140px;
  height: auto;
}
.staffConts_icon .icontext {
  font-size: 1.2rem;
}
.roundIcon > span {
  margin-right: 4px;
}
.roundIcon > span > img {
  width: 100%;
  max-width: 30px;
  height: auto;
}

@media screen and ( max-width:1080px ) {
	.staffConts1::before {
		top: 6%;
		height: 250px;
	}
	.staffConts1 > .inner {
		align-items: flex-start;
	}
	.staffConts2 > div {
		padding: 10px;
		box-sizing: border-box;
	}
  .staffConts_icon .boxicon {
    margin-top: 10px;
  }
  .staffConts_icon > div > p > span {
    display: block;
  }
}

@media screen and ( max-width:600px ) {
	.staffConts1,.staffConts2,.staffConts3 {
		margin-top: 50px;
	}
	.staffConts1::before {
		display: none;
	}
	.staffConts1 > .inner {
		display: block;
	}
	.staffConts1 > .inner > .ceo_img {
		padding: 0;
	}
	.staffConts1 > .inner > .ceo_txt {
		padding: 0;
		margin-top: 30px;
	}
  .roundIcon > span > img {
    max-width: 20px;
  }
}


/*-------------------------------

	3. Land

-------------------------------*/
.landConts1,.landConts2,.landConts3 {
	margin-top: 100px;
}
.land_flow {
	width: 100%;
	max-width: 840px;
	margin: 40px auto 0 auto;
}
.land_flow > ul {
	display: flex;
	align-items: center;
	justify-content: center;
}
.land_flow > ul > li {
	flex-basis: 8%;
	text-align: center;
	display: flex;
  justify-content: center;
  align-items: center;
	height: 300px;
}
.land_flow > ul > li:nth-child(odd) {
	background: #8e6446;
	font-size: 1.8rem;
	font-weight: normal;
}
.land_flow > ul > li:nth-child(even) {
	font-size: 3.5rem;
	color: #8e6446;
}
.landConts2 {
	height: 690px;
}
.landConts2_box {
	position: absolute;
	top: 230px;
	right: -100px;
	z-index: 10;
	background: #e9edea;
	width: 100%;
	max-width: 740px;
	padding: 100px;
	box-sizing: border-box;
}
.landConts2_img {
	position: absolute;
	top: 0;
	left: -100px;
}
.landConts3_list > div {
	padding: 10px 20px;
	box-sizing: border-box;
}
.landConts3_list > div > .txt {
	font-size: 1.2rem;
	line-height: 2.4rem;
	letter-spacing: 0.08rem;
}
.landConts3_link {
	max-width: 500px;
	margin: auto;
}
.landConts3_contact {
	margin-top: 60px;
	padding: 0 20px;
	display: flex;
	box-sizing: border-box;
	height: 150px;
}
.landConts3_contact > .landConts3_contact_img1 {
	flex-basis: 62%;
}
.landConts3_contact > .landConts3_contact_img2 {
	flex-basis: 38%;
}
.landConts3_contact > .landConts3_contact_img2 img {
	background: #8e6446;
}

@media screen and ( max-width:1080px ) {
	.land_flow {
		max-width: none;
	}
	.land_flow > ul {
		display: block;
	}
	.land_flow > ul > li {
		display: block;
		height: auto;
		padding: 0 20px;
		box-sizing: border-box;
	}
	.land_flow > ul > li:nth-child(odd) {
		letter-spacing: 0.2rem;
	}
	.land_flow > ul > li:nth-child(even) {
		font-size: 3rem;
		-webkit-transform: rotate(90deg);
	  transform: rotate(90deg);
	}
	.landConts2 {
		height: auto;
	}
	.landConts2_box {
		position: static;
		max-width: none;
		padding: 100px;
		box-sizing: border-box;
	}
	.landConts2_img {
		position: static;
	}
	.landConts3_contact {
		padding: 0;
		height: auto;
	}
}

@media screen and ( max-width:600px ) {
	.landConts1,.landConts2,.landConts3 {
		margin-top: 50px;
	}
	.land_flow > ul > li {
		padding: 10px 20px;
	}
	.land_flow > ul > li:nth-child(odd) {
		font-size: 1.4rem;
	}
	.land_flow > ul > li:nth-child(even) {
		font-size: 1.8rem;
	}
	.landConts2_box {
		padding: 30px;
	}
	.landConts3_list > div {
		padding: 10px;
		box-sizing: border-box;
	}
	.landConts3_contact {
		margin-top: 40px;
		display: block;
	}
	.landConts3_contact > .landConts3_contact_img2 {
		margin-top: 20px;
	}
}


/*-------------------------------

	3. Health

-------------------------------*/
.healthConts1 {
	margin-top: 100px;
}
.healthConts1_title {
	background: url(../img/healthConts1_img01.jpg) no-repeat center;
	background-size: cover;
	height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.healthConts2 > .anchor > li {
	padding: 0 20px;
	box-sizing: border-box;
}
.healthConts3,.healthConts4,.healthConts5,
.healthConts6,.healthConts7,.healthConts8 {
	margin-top: 90px;
}
.health_box::before {
	content: '';
	width: 60%;
	height: 125px;
	position: absolute;
	top: 60px;
	left: 0;
	z-index: -10;
	right: 0;
	overflow: hidden;
}
.health_box2::before {
	content: '';
	width: 60%;
	height: 125px;
	position: absolute;
	top: 60px;
	right: 0;
	z-index: -10;
	right: 0;
	overflow: hidden;
}
.healthConts3::before {
	background: #83aa6e;
}
.healthConts4::before {
	background: #ddd08c;
}
.healthConts5::before {
	background: #6e91aa;
}
.healthConts6::before {
	background: #aa7c6e;
}
.health_box > .inner > .box_wrap > .box1,
.health_box2 > .inner > .box_wrap > .box1 {
	margin-top: 100px;
}
.health_box > .inner > .box_wrap > .box1 > p,
.health_box2 > .inner > .box_wrap > .box1 > p {
	padding: 20px;
	box-sizing: border-box;
}
.health_box > .inner > .health_list > div,
.health_box2 > .inner > .health_list > div {
	padding: 0 20px;
	box-sizing: border-box;
}
.health_box2 > .inner > .health_list > div > h4 {
	line-height: 1.8rem;
}
.healthConts7 {
	padding: 0 20px;
	box-sizing: border-box;
}
.healthConts7_bnr {
	background: #4b7355;
	padding: 5px;
	box-sizing: border-box;
}
.healthConts7_bnr > .inner {
	border: 1px solid #fff;
	padding: 20px 0;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
}
.healthConts7_bnr > .inner > .box1 {
	flex-basis: 60%;
}
.healthConts7_bnr > .inner > .box2 {
	flex-basis: 40%;
	border-left: 1px solid #fff;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: left;
}
.healthConts7_bnr > .inner > .box2 > .box2_child > p:nth-child(3) > a {
	font-size: 3rem;
	letter-spacing: 0.16rem;
}

@media screen and ( max-width:1080px ) {
	.healthConts2 > .anchor > li {
		padding: 0 10px;
	}
	.healthConts3::before,
	.healthConts4::before,
	.healthConts5::before,
	.healthConts6::before {
		display: none;
	}
	.health_box > .inner > .box_wrap > .box1,
	.health_box2 > .inner > .box_wrap > .box1 {
		padding: 50px;
		box-sizing: border-box;
		margin-top: 0;
	}
	.healthConts3 > .inner > .box_wrap > .box1 {
		background: #83aa6e;
	}
	.healthConts4 > .inner > .box_wrap > .box1 {
		background: #ddd08c;
	}
	.healthConts5 > .inner > .box_wrap > .box1 {
		background: #6e91aa;
	}
	.healthConts6 > .inner > .box_wrap > .box1 {
		background: #aa7c6e;
	}
	.health_box > .inner > .box_wrap > .box1 > p,
	.health_box2 > .inner > .box_wrap > .box1 > p {
		padding: 0;
		color: #fff;
	}
	.health_box > .inner > .box_wrap > .box2,
	.health_box2 > .inner > .box_wrap > .box2 {
		margin-top: 0;
	}
	.healthConts7_bnr > .inner {
		border: 1px solid #fff;
		display: block;
		padding: 20px;
	}
	.healthConts7_bnr > .inner > .box2 {
		border-left: none;
		margin-top: 30px;
		text-align: center;
	}
	.healthConts7_bnr > .inner > .box2 > .box2_child > p:nth-child(3) > a {
		font-size: 2rem;
	}
}

@media screen and ( max-width:600px ) {
	.healthConts1,.healthConts2,.healthConts3,
	.healthConts4,.healthConts5,.healthConts6,
	.healthConts7,.healthConts8 {
		margin-top: 50px;
	}
	.health_box > .inner > .box_wrap > .box1,
	.health_box2 > .inner > .box_wrap > .box1 {
		padding: 30px;
	}
	.health_box > .inner > .health_list > div,
	.health_box2 > .inner > .health_list > div {
		padding: 0 10px;
		box-sizing: border-box;
	}
}


/*-------------------------------

	3. Long

-------------------------------*/
.longConts1,.longConts2,.longConts3,.longConts4 {
	margin-top: 100px;
}
.longConts1_title {
	background: url(../img/longConts1_img01.jpg) no-repeat center;
	background-size: cover;
	height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.longConts2 {
	margin-top: 180px;
}
.longConts2 > ul > li {
	padding: 20px;
	box-sizing: border-box;
}
.longConts3_box {
	height: 460px;
}
.longConts3_box_img {
	position: absolute;
	top: 0;
	right: -100px;
	z-index: -10;
}
.longConts3_box > .pTitle04 {
	padding-top: 40px;
	box-sizing: border-box;
}
.longConts3_list > div {
	padding: 30px 20px;
	box-sizing: border-box;
}
.longConts3_list > div > h3 {
	font-size: 1.8rem;
	line-height: 3rem;
	letter-spacing: 0.1rem;
	font-weight: normal;
}
.number_img {
	width: 100%;
	max-width: 170px;
	margin: 0 auto;
}
.number_img > .txt1 {
	display: inline-block;
	position: absolute;
	top: 30px;
	left: -35px;
}
.number_img > .txt1 > span:nth-child(1) {
	letter-spacing: 0.2rem;
	position: relative;
	z-index: 10;
}
.number_img > .txt1 > span:nth-child(2) {
	font-size: 5rem;
	letter-spacing: 0.04rem;
	position: absolute;
	top: -5px;
	right: -56px;
}

@media screen and ( max-width:1080px ) {
	.longConts2 {
		margin-top: 100px;
	}
	.longConts2 > ul > li {
		padding: 10px;
	}
	.longConts3_box {
		height: auto;
	}
	.longConts3_box_img {
		position: static;
		margin-top: 20px;
	}
}

@media screen and ( max-width:600px ) {
	.longConts1,.longConts2,.longConts3,.longConts4 {
		margin-top: 50px;
	}
	.longConts2 > ul > li {
		padding: 0;
	}
	.longConts3_box > .pTitle04 {
		padding-top: 0;
	}
	.number_img > .txt1 {
		top: 25px;
		left: -10px;
	}
	.number_img > .txt1 > span:nth-child(2) {
		font-size: 3rem;
		top: -2px;
		right: -35px;
	}
	.longConts3_list > div {
		padding: 20px 10px;
	}
	.longConts3_list > div > h3 {
		font-size: 1.6rem;
		line-height: 2.4rem;
	}
}


/*-------------------------------

	3. Nature

-------------------------------*/
.natureConts1,.natureConts2,.natureConts3,.natureConts4,
.natureConts5,.natureConts6,.natureConts7,.natureConts8 {
	margin-top: 100px;
}
.natureConts1_title {
	background: url(../img/natureConts1_img01.jpg) no-repeat center;
	background-size: cover;
	height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.natureConts2 {
	margin-top: 180px;
}
.natureConts2_img > div {
	padding: 0 20px;
	box-sizing: border-box;
}
.natureConts4 {
	height: 440px;
}
.natureConts4 > .pTitle04 {
	padding-top: 170px;
	box-sizing: border-box;
}
.natureConts4_img {
	position: absolute;
	top: 0;
	right: -100px;
	z-index: -10;
}
.natureConts5 {
	background: url(../img/natureConts5_img01.jpg) no-repeat center;
	background-size: cover;
	height: 480px;
	box-sizing: border-box;
}
.natureConts5 > .inner {
	height: inherit;
}
.natureConts5 > .inner > .pTitle04 {
	position: absolute;
	left: 0;
	bottom: 105px;
}
.natureConts5 > .inner > p {
	width: 100%;
	max-width: 600px;
	position: absolute;
	right: 0;
	bottom: 60px;
}
.natureConts6 {
	display: flex;
	align-items: center;
}
.natureConts6 >div:nth-child(1) {
	flex-basis: 69%;
}
.natureConts6 >div:nth-child(2) {
	flex-basis: 31%;
	padding-left: 50px;
	box-sizing: border-box;
}
.natureConts7 {
	margin-top: 150px;
}
.natureConts7::before {
	content: '';
	background: #e9edea;
	width: 200%;
	height: 290px;
	position: absolute;
	top: -50px;
	left: -50%;
	z-index: -10;
	right: 0;
	overflow: hidden;
}
.natureConts7 > .inner > div:nth-child(1) > p,
.natureConts7 > .inner > div:nth-child(2) {
	padding: 0 20px;
	box-sizing: border-box;
}

@media screen and ( max-width:1080px ) {
	.natureConts2 {
		margin-top: 100px;
	}
	.natureConts4 {
		height: auto;
	}
	.natureConts4 > .pTitle04 {
		padding-top: 0;
	}
	.natureConts4_img {
		position: static;
		margin-top: 20px;
	}
	.natureConts5 {
		height: auto;
		padding: 100px 0;
		box-sizing: border-box;
	}
	.natureConts5 > .inner > .pTitle04 {
		position: static;
	}
	.natureConts5 > .inner > p {
		max-width: none;
		position: static;
	}
	.natureConts6 >div:nth-child(1) {
		flex-basis: 62%;
	}
	.natureConts6 >div:nth-child(2) {
		flex-basis: 38%;
		padding-left: 40px;
		box-sizing: border-box;
	}
}

@media screen and ( max-width:600px ) {
	.natureConts1,.natureConts2,.natureConts3,.natureConts4,
	.natureConts5,.natureConts6,.natureConts7,.natureConts8 {
		margin-top: 50px;
	}
	.natureConts2_img > div {
		padding: 0;
	}
	.natureConts5 {
		padding: 50px 0;
	}
	.natureConts6 {
		display: block;
	}
	.natureConts6 >div:nth-child(2) {
		padding-left: 0;
		margin-top: 30px;
	}
	.natureConts7 {
		background: #e9edea;
		padding: 50px 0;
		box-sizing: border-box;
	}
	.natureConts7::before {
		display: none;
	}
	.natureConts7 > .inner > div:nth-child(1) > p,
	.natureConts7 > .inner > div:nth-child(2) {
		padding: 0;
	}
}


/*-------------------------------

	3. Inspection

-------------------------------*/
.inspectionConts1,.inspectionConts2,.inspectionConts3,.inspectionConts4,
.inspectionConts5,.inspectionConts6,.inspectionConts7 {
	margin-top: 100px;
}
.inspectionConts1_title {
	background: url(../img/inspectionConts1_img01.jpg) no-repeat center;
	background-size: cover;
	height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.inspectionConts2,
.inspectionConts3 {
	margin-top: 180px;
}
.inspectionConts2_title {
	font-size: 3rem;
  line-height: 4.6rem;
  letter-spacing: 0.2rem;
  font-weight: normal;
}
.inspectionConts2_box {
	width: 100%;
	max-width: 770px;
	position: absolute;
	top: 135px;
	right: 0;
	z-index: 10;
}
.inspectionConts2_box > p:nth-child(n+2) {
	margin-top: 40px;
}
.inspectionConts3 {
	height: 440px;
}
.inspectionConts3 > .pTitle04 {
	padding-top: 150px;
	box-sizing: border-box;
}
.inspectionConts3_img {
	position: absolute;
	top: 0;
	right: -100px;
	z-index: -10;
}
.inspectionConts4 {
	background: url(../img/inspectionConts4_img01.jpg) no-repeat center;
	background-size: cover;
	height: 480px;
	box-sizing: border-box;
}
.inspectionConts4 > .inner {
	height: inherit;
}
.inspectionConts4 > .inner > .pTitle04 {
	position: absolute;
	left: 0;
	bottom: 105px;
}
.inspectionConts4 > .inner > .box {
	width: 100%;
	max-width: 600px;
	position: absolute;
	right: 0;
	bottom: 60px;
}
.inspectionConts4 > .inner > .box > p:nth-child(1)::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: #595757;
	margin: 15px 0;
}
.inspectionConts4 > .inner > .box > p:nth-child(2) {
	font-size: 1.6rem;
}
.inspectionConts4 > .inner > .box > p:nth-child(2) > span {
	font-size: 2rem;
}
.inspectionConts5_img {
	width: 100%;
	max-width: 670px;
	margin: 35px auto;
}
.inspectionConts5_boxWrap > div {
	padding: 10px 20px;
	box-sizing: border-box;
}
.inspectionConts5_boxWrap > div:nth-child(n+3) {
	margin-top: 15px;
}
.inspectionConts5_boxWrap > div > .inner {
	padding: 20px 35px 35px 35px;
	box-sizing: border-box;
}
.inspectionConts5_boxWrap > div:nth-child(1) > .inner {
	border: 1px solid #43712f;
}
.inspectionConts5_boxWrap > div:nth-child(2) > .inner {
	border: 1px solid #c0aa4d;
}
.inspectionConts5_boxWrap > div:nth-child(3) > .inner {
	border: 1px solid #2f5271;
}
.inspectionConts5_boxWrap > div:nth-child(4) > .inner {
	border: 1px solid #713c2f;
}
.inspectionConts5_boxWrap > div > .inner > h3 {
	font-size: 1.8rem;
	font-weight: normal;
	line-height: 2.6rem;
	letter-spacing: 0.1rem;
	background: #fff;
	padding: 0 15px;
	box-sizing: border-box;
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	max-width: 170px;
  margin: 0 auto;
}
.inspectionConts6 {
	background: #e9edea;
	padding: 100px 0;
	box-sizing: border-box;
}
.inspectionConts6_box > li {
	padding: 20px;
	box-sizing: border-box;
}
.inspectionConts6 > .inner > .under_txt {
	font-size: 1.8rem;
	line-height: 3rem;
	letter-spacing: 0.1rem;
	margin-top: 50px;
}
.inspectionConts6 > .inner > .under_txt::before {
	content: '';
	display: block;
	background: #595757;
	width: 100px;
	height: 1px;
	margin: auto;
	margin-bottom: 40px;
}

@media screen and ( max-width:1080px ) {
	.inspectionConts2,
	.inspectionConts3 {
		margin-top: 100px;
	}
	.inspectionConts2_title {
		font-size: 2.8rem;
	}
	.inspectionConts2_box {
		max-width: none;
		position: static;
	}
	.inspectionConts2_box > p:nth-child(n+1) {
		margin-top: 20px;
	}
	.inspectionConts3 > .pTitle04 {
		padding-top: 0;
	}
	.inspectionConts3 {
		height: auto;
	}
	.inspectionConts3_img {
		position: static;
		margin-top: 20px;
	}
	.inspectionConts4 {
		height: auto;
		padding: 100px 0;
		box-sizing: border-box;
	}
	.inspectionConts4 > .inner > .pTitle04 {
		position: static;
	}
	.inspectionConts4 > .inner > .box {
		max-width: none;
		position: static;
	}
	.inspectionConts4 > .inner > .box > p:nth-child(2) > span {
		font-size: 1.8rem;
		display: block;
	}
	.inspectionConts5_boxWrap > div {
		padding: 10px;
		box-sizing: border-box;
	}
	.inspectionConts5_boxWrap > div > .inner {
		padding: 10px 20px 20px 25px;
		box-sizing: border-box;
	}
	.inspectionConts6_box > li {
		padding: 15px 10px;
	}
}

@media screen and ( max-width:600px ) {
	.inspectionConts1,.inspectionConts2,.inspectionConts3,.inspectionConts4,
	.inspectionConts5,.inspectionConts6,.inspectionConts7 {
		margin-top: 50px;
	}
	.inspectionConts2_title {
		font-size: 2.1rem;
    line-height: 3.4rem;
	}
	.inspectionConts4 {
		padding: 50px 0;
	}
	.inspectionConts5_boxWrap > div {
		padding: 10px 0;
		box-sizing: border-box;
	}
	.inspectionConts5_boxWrap > div > .inner > h3 {
		font-size: 1.6rem;
		top: -2px;
		max-width: 150px;
	}
	.inspectionConts6 {
		padding: 50px 0;
	}
	.inspectionConts6_box > li {
		padding: 10px;
	}
	.inspectionConts6 > .inner > .under_txt {
		font-size: 1.6rem;
		line-height: 2.6rem;
		margin-top: 40px;
	}
}


/*-------------------------------

	3. Insulation

-------------------------------*/
.insulationConts1,.insulationConts2,.insulationConts3,
.insulationConts4,.insulationConts5,.insulationConts8 {
	margin-top: 100px;
}
.insulationConts1_title {
	background: url(../img/insulationConts1_img01.jpg) no-repeat center;
	background-size: cover;
	height: 200px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.insulationConts2 {
	margin-top: 180px;
}
.insulationConts2_img > div {
	padding: 0 20px;
	box-sizing: border-box;
}
.insulationConts3 {
	height: 440px;
}
.insulationConts3 > .pTitle04 {
	padding-top: 150px;
	box-sizing: border-box;
}
.insulationConts3_img {
	position: absolute;
	top: 0;
	right: -100px;
	z-index: -10;
}
.insulationConts4 > .box1 > .inner > div,
.insulationConts4 > .box2 > .inner > div {
	padding: 0 20px;
	box-sizing: border-box;
}
.insulationConts4 > .box1 > .inner > div:nth-child(1) {
	margin-top: 25px;
}
.insulationConts4 > .box2 > .inner > div:nth-child(2) {
	position: relative;
	left: -120px;
}
.insulationConts4 > .box1 > .box_sub1 {
	display: flex;
	width: 100%;
	max-width: 810px;
	background: #f4f0e7;
	position: relative;
	top: -25px;
	z-index: 10;
}
.insulationConts4 > .box2 > .box_sub2 {
	display: flex;
	width: 100%;
	max-width: 810px;
	background: #f4f0e7;
	position: relative;
	top: -25px;
	right: -270px;
	z-index: 10;
}
.insulationConts4 > .box1 > .box_sub1 > li,
.insulationConts4 > .box2 > .box_sub2 > li {
	flex-basis: 33%;
	padding: 40px 20px;
	box-sizing: border-box;
}
.insulationConts4 > .box1 > .box_sub1 > li:nth-child(2),
.insulationConts4 > .box2 > .box_sub2 > li:nth-child(2) {
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
}
.insulationConts4 > .box1 > .box_sub1 > li .number,
.insulationConts4 > .box2 > .box_sub2 > li .number {
	font-size: 3rem;
}
.insulationConts4 > .box1 > .box_sub1 > li .txt20 {
	font-size: 2rem;
	line-height: 3rem;
}
.insulationConts5 {
	background: url(../img/insulationConts5_img01.jpg) no-repeat center;
	background-size: cover;
	height: 480px;
	box-sizing: border-box;
}
.insulationConts5 > .inner {
	height: inherit;
}
.insulationConts5 > .inner > .pTitle04 {
	position: absolute;
	left: 0;
	bottom: 105px;
}
.insulationConts5 > .inner > p {
	width: 100%;
	max-width: 600px;
	position: absolute;
	right: 0;
	bottom: 60px;
}
.insulationConts6 {
	background: #6e91aa;
	padding: 100px 0;
	box-sizing: border-box;
}
.insulationConts6 > .inner {
	background: #fff;
	padding: 40px 0;
	box-sizing: border-box;
}
.insulationConts6 > .inner > ul > li {
	background: url(../img/insulationConts6_img01.svg) no-repeat center;
	background-size: contain;
	padding: 20px;
	box-sizing: border-box;
}
.insulationConts6 > .inner > ul > li > p:nth-child(1) {
	font-size: 2rem;
}
.insulationConts7 {
	background: #e9edea;
	padding: 50px 0;
	box-sizing: border-box;
}
.insulationConts7 > .inner > div {
	padding: 0 20px;
	box-sizing: border-box;
}

@media screen and ( max-width:1080px ) {
	.insulationConts3 {
		height: auto;
	}
	.insulationConts3 > .pTitle04 {
		padding-top: 0;
	}
	.insulationConts3_img {
		position: static;
		margin-top: 20px;
	}
	.insulationConts4 > .box1 > .inner > div,
	.insulationConts4 > .box2 > .inner > div {
		padding: 0;
	}
	.insulationConts4 > .box1 > .inner > div:nth-child(1) {
		margin-top: 0;
	}
	.insulationConts4 > .box2 > .inner > div:nth-child(2) {
		position: static;
	}
	.insulationConts4 > .box1 > .box_sub1 {
		max-width: none;
		background: #f4f0e7;
		position: static;
		margin-top: 20px;
	}
	.insulationConts4 > .box2 > .box_sub2 {
		max-width: none;
		background: #f4f0e7;
		position: static;
		margin-top: 20px;
	}
	.insulationConts5 {
		height: auto;
		padding: 100px 0;
		box-sizing: border-box;
	}
	.insulationConts5 > .inner > .pTitle04 {
		position: static;
	}
	.insulationConts5 > .inner > p {
		max-width: none;
		position: static;
	}
	.insulationConts6 {
		padding: 100px 20px;
	}
	.insulationConts6 > .inner {
		padding: 40px 20px;
	}
	.insulationConts7 > .inner > div {
		padding: 10px 0;
	}
}

@media screen and ( max-width:600px ) {
	.insulationConts1,.insulationConts2,.insulationConts3,
	.insulationConts4,.insulationConts5,.insulationConts8 {
		margin-top: 50px;
	}
	.insulationConts2_img > div {
		padding: 0;
	}
	.insulationConts4 > .box1 > .box_sub1 {
		display: block;
	}
	.insulationConts4 > .box2 > .box_sub2 {
		display: block;
	}
	.insulationConts4 > .box1 > .box_sub1 > li,
	.insulationConts4 > .box2 > .box_sub2 > li {
		padding: 25px 20px;
	}
	.insulationConts4 > .box1 > .box_sub1 > li:nth-child(2),
	.insulationConts4 > .box2 > .box_sub2 > li:nth-child(2) {
		border-left: none;
		border-right: none;
		border-top: 1px solid #fff;
		border-bottom: 1px solid #fff;
	}
	.insulationConts5 {
		padding: 50px 0;
	}
	.insulationConts6 {
		padding: 50px 20px;
	}
}


/*-------------------------------

	3. Contact

-------------------------------*/
.contact_mv {
  background: url(../img/mv_contact.jpg)no-repeat center;
}
.event-contact_mv {
  background: url(../img/mv_event-contact.jpg)no-repeat center;
}
.contactConts_box {
	background: #f2eee4;
	padding: 45px 0 40px 0;
	box-sizing: border-box;
	margin-top: -24px;
}
.contactForm > .careful {
	text-align: right;
	margin: 30px 0;
	font-size: 1.2rem;
}
.formRound {
	font-size: 1rem;
	padding-right: 2px;
	box-sizing: border-box;
	display: inline-block;
}

/*---------- contactform7 ----------*/
.contactForm table {
	width: 90%;
	margin: 0 auto;
}
.contactForm tr {
	border-bottom: 1px solid #f2eee4;
}
.contactForm th {
	padding: 30px 25px;
	box-sizing: border-box;
	text-align: right;
	width: 20%;
	vertical-align: middle;
	font-weight: bold;
	letter-spacing: 0.1rem;
  line-height: 1.3;
}
.contactForm td {
	padding: 30px 25px;
	box-sizing: border-box;
	text-align: left;
	letter-spacing: 0.1rem;
	width: 80%;
}
.wpcf7 input {
	padding: 0 15px;
	box-sizing: border-box;
	border-radius: 5px;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="email"],
.wpcf7 input[type="date"] {
	background: #f1f1f1;
	height: 35px;
	width: 100%;
	border: none;
	border-radius: 5px;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="date"]:focus {
	box-shadow: 0 0 3px 0 rgba(100,102,30,1);
  outline: 0;
}
.wpcf7 textarea {
	background: #f1f1f1;
	width: 100%;
	border: none;
	border-radius: 5px;
	padding: 10px 15px;
	box-sizing: border-box;
}
.wpcf7 textarea:focus {
	box-shadow: 0 0 3px 0 rgba(100,102,30,1);
  outline: 0;
}
.wpcf7 select {
	width: 100%;
	height: 35px;
	border-radius: 0;
	background: #f1f1f1;
	border: none;
	-webkit-border-radius : 0;
	-webkit-appearance : none;
  padding: 0 15px;
	box-sizing: border-box;
	border-radius: 5px;
}
.wpcf7 select:focus {
	box-shadow: 0 0 3px 0 rgba(100,102,30,1);
  outline: 0;
}
.contact_submit {
  text-align: center;
  margin-top: 60px;
}
.wpcf7 .wpcf7-submit {
  height: inherit;
  background: #fff;
  color: #000;
	padding: 7px 50px;
}
.wpcf7 input[type=submit] {
	border: 1px solid #64661e;
	width: 100%;
	max-width: 250px;
	margin: 40px auto;
	padding: 10px;
	box-sizing: border-box;
}
.wpcf7 input[type=submit]:hover {
	background-color: #708a1e;
	color: #fff;
}

@media screen and ( max-width:1080px ) {
	.contactForm table {
		width: 100%;
	}
	.contactForm th {
		width: 35%;
	}
	.contactForm td {
		width: 65%;
	}
}

@media screen and ( max-width:600px ) {
	.contactForm th {
		padding: 20px 10px 20px 0;
		letter-spacing: 0;
	}
	.contactForm td {
		padding: 20px 0 20px 10px;
		letter-spacing: 0;
	}
}


/*-------------------------------

	4. COMPANY

-------------------------------*/
.company_mv {
  background: url(../img/mv_company.jpg)no-repeat center;
}
.companyConts1 {
	margin-top: 80px;
	padding: 40px 0;
	box-sizing: border-box;
}
.companyConts1::before {
	content: '';
	background: url(../img/companyConts1_bg.png)no-repeat center;
	display: inline-block;
	position: absolute;
	top: 380px;
	right: -530px;
	z-index: -10;
	width: 900px;
	height: 690px;
}
.companyConts1 > .pTitle01 {
	border-bottom: 1px solid #f2eee4;
	padding-bottom: 30px;
	box-sizing: border-box;
}
.companyConts1 > table {
	width: 100%;
}
.companyConts1 > table th {
	width: 31%;
	font-weight: bold;
	line-height: 2rem;
	letter-spacing: 0.1rem;
	text-align: right;
	vertical-align: middle;
	padding: 15px 35px;
	box-sizing: border-box;
	border-right: 1px solid #f2eee4;
}
.companyConts1 > table td {
	padding: 15px 35px;
	box-sizing: border-box;
	line-height: 2.3rem;
	letter-spacing: 0.1rem;
}
.companyConts1 > #Gmap > iframe {
	width: 100%;
	height: 340px;
}
.companyConts1 > .how > div {
	padding: 20px;
	box-sizing: border-box;
}
.companyConts1 > .how h3 {
	color: #8e6446;
	font-size: 1.8rem;
	font-weight: normal;
	letter-spacing: 0.1rem;
}
.companyConts2 > .box > .box_img > img {
	max-width: 500px;
}
.companyConts2 > .box > .box_bg {
	background: #f2eee4;
	width: 620px;
	height: auto;
	padding: 40px 60px;
	box-sizing: border-box;
}
.companyConts2 > .box > .box_bg > h3 {
	font-size: 2.4rem;
	letter-spacing: 0.2rem;
	font-weight: normal;
}
.companyConts2 > .box1 > .box1_child2 {
	position: absolute;
	top: 48px;
	right: 0;
	z-index: 10;
}
.companyConts2 > .box2 {
	margin-top: 100px;
	height: 300px;
}
.companyConts2 > .box2 > .box2_child1 {
	position: absolute;
	top: 0;
	right: 0;
}
.companyConts2 > .box2 > .box2_child2 {
	position: absolute;
	top: 22px;
	left: 0;
	z-index: 10;
}

@media screen and ( max-width:1080px ) {
	.companyConts1 {
		margin-top: 50px;
	}
	.companyConts1::before {
		top: 18%;
	}
	.companyConts2 {
		margin-top: 20px;
	}
	.companyConts2 > .box > .box_img > img {
		max-width: none;
	}
	.companyConts2 > .box > .box_bg {
		width: 100%;
	}
	.companyConts2 > .box1 > .box1_child2 {
		position: static;
	}
	.companyConts2 > .box2 {
		margin-top: 50px;
		height: auto;
	}
	.companyConts2 > .box2 > .box2_child1 {
		position: static;
	}
	.companyConts2 > .box2 > .box2_child2 {
		position: static;
	}
}

@media screen and ( max-width:600px ) {
	.companyConts1 > table th {
		width: 30%;
		padding: 10px 15px;
		font-size: 1.3rem;
	}
	.companyConts1 > table td {
		padding: 10px 15px;
		font-size: 1.3rem;
	}
	.companyConts1 > #Gmap > iframe {
		width: 100%;
		height: 200px;
	}
	.companyConts1 > .how > div {
		padding: 0;
	}
	.companyConts1 > .how > div:nth-child(2) {
		margin-top: 20px;
	}
	.companyConts1 > .how h3 {
		font-size: 1.6rem;
	}
	.companyConts2 > .box > .box_bg {
		padding: 30px 25px;
	}
	.companyConts2 > .box > .box_bg > h3 {
		font-size: 1.6rem;
	}
}

/*-------------------------------

	4. SINGLE

-------------------------------*/
.single_mv {
	height: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.column_mv > div:nth-child(1),
.event_mv > div:nth-child(1) {
	height: auto;
	max-height: 180px;
}
.single_archive {
	margin-top: 100px;
}
.single_archive > .box1,
.single_sec > .box1 {
	width: 75%;
	padding-right: 40px;
	box-sizing: border-box;
}
.single_archive > .box2,
.single_sec > .box2 {
	width: 25%;
}
.blog-archive-list {
	border-bottom: 1px solid #f2eee4;
  margin: 0 10px;
  padding: 20px 0;
  box-sizing: border-box;
}
.blog-archive-list > .blogs-images {
	width: 29%;
	border: 1px solid #595757;
	box-sizing: border-box;
}
.blog-archive-list > .blogs-images > a > img {
	width: 100%;
	height: auto;
	border: 5px solid #fff;
	box-sizing: border-box;
}
.blog-archive-list > .blogs-right {
	width: 71%;
	padding: 0 20px;
	box-sizing: border-box;
}
span.all {
	display: none !important;
}
.blog-archive-list span.category {
	display: inline-block;
  font-size: 1.1rem;
  letter-spacing: 0.1rem;
  color: #fff;
  background: #708a1e;
  border-radius: 10px;
  padding: 5px 15px;
  box-sizing: border-box;
  margin-right: 5px;
}
.blog-archive-list .blogs-title {
	font-size: 2rem;
	line-height: 3rem;
	letter-spacing: 0.1rem;
}
.single_category span.category {
	display: inline-block;
  font-size: 1.1rem;
  letter-spacing: 0.1rem;
  color: #fff;
  background: #708a1e;
  border-radius: 10px;
  padding: 5px 15px;
  box-sizing: border-box;
  margin-bottom: 20px;
}

/* column */
.column_mv {
	background: url(../img/mv_column.jpg) no-repeat center;
	background-size: cover;
}

/* event */
.event_mv {
	background: url(../img/mv_event.jpg) no-repeat center;
	background-size: cover;
}
span.event-all {
	display: none !important;
}
.blog-archive-list span.category-event {
  background: #8e6446;
}
.event_bnr {
	background: #708a1e;
	padding: 5px;
	box-sizing: border-box;
}
.event_bnr > .inner {
	border: 1px solid #fff;
	padding: 20px 0;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
}
.event_bnr > .inner > .box1 {
	flex-basis: 50%;
}
.event_bnr > .inner > .box2 {
	flex-basis: 50%;
	border-left: 1px solid #fff;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: left;
}
.event_bnr > .inner > .box2 > .box2_child > p:nth-child(3) > a {
	font-size: 3rem;
	letter-spacing: 0.16rem;
}
.single_eventTerm span.category {
	display: inline-block;
  font-size: 1.1rem;
  letter-spacing: 0.1rem;
  color: #fff;
  background: #8e6446;
  border-radius: 10px;
  padding: 5px 15px;
  box-sizing: border-box;
  margin-bottom: 20px;
}
/* calender */
.cal_wrapper {
max-width: 800px;
min-width: 300px;
margin: 2.0833% auto;
}
.googlecal {
position: relative;
padding-bottom: 75%;
height: 0;
}
.googlecal iframe {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
}

/* lifestyle */
.lifestyle_mv {
	background: url(../img/mv_lifestyle.jpg) no-repeat center;
	background-size: cover;
}
.lifestyle_mv > .pTitle04 {
	border: 1px solid #fff;
	padding: 40px 140px;
	box-sizing: border-box;
}
.lifestyle_archive {
	padding: 0 20px;
	box-sizing: border-box;
	margin-bottom: 70px;
}
.lifestyle-list_title {
	background: #fff;
	font-size: 1.6rem;
	font-weight: normal;
	line-height: 2.4rem;
	letter-spacing: 0.1rem;
	padding: 20px 30px;
	box-sizing: border-box;
	margin-top: -100px;
	position: relative;
	z-index: 10;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}
.lifestyle-list_title > a::before {
	content: 'ー';
	color: rgba(75, 115, 85, 0.1);
	padding-right: 5px;
	box-sizing: border-box;
}
.lifestyleTitle {
	background: #f4f0e7;
	padding: 15px;
	box-sizing: border-box;
	font-size: 1.8rem;
	font-weight: normal;
	line-height: 3.6rem;
	letter-spacing: 0.1rem;
}
.lifestyle_single img {
	max-width: 1080px;
	height: auto;
}
.lifestyle-single_wrap > .boxMv,
.lifestyle-single_wrap > .box > div,
.lifestyle-single_wrap p {
	padding: 20px;
	box-sizing: border-box;
}
.lifestyle-single_title {
	font-size: 1.8rem;
	font-weight: normal;
	line-height: 3rem;
	letter-spacing: 0.26rem;
}
.lifestyle-single_wrap ul::before,
.lifestyle-single_wrap ul::after {
	content: '';
	background: #231815;
	width: 100%;
	height: 1px;
	display: block;
	margin: 15px 0;
}
.lifestyle-single_title,
.lifestyle-single_wrap ul li {
	padding: 0 20px;
	box-sizing: border-box;
}

/* works */
.works_mv {
	background: url(../img/mv_works.jpg) no-repeat center;
	background-size: cover;
}
.works_mv > .pTitle04 {
	border: 1px solid #fff;
	padding: 40px 140px;
	box-sizing: border-box;
}
.works_archive {
	margin-bottom: 60px;
}
.works-list_title {
	background: #fff;
	font-size: 1.6rem;
	font-weight: normal;
	line-height: 2.4rem;
	letter-spacing: 0.1rem;
	padding: 20px 30px;
	box-sizing: border-box;
	margin-top: -64px;
	position: relative;
	z-index: 10;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}
.worksBtn > ul > li > a {
	padding: 20px;
	border: 1px solid #f2eee4;
	box-sizing: border-box;
	display: block;
}
.worksBtn > ul > li > a.active {
	border: 1px solid #231815;
}
.single_worksTerm span.category-works {
	display: inline-block;
  font-size: 1.1rem;
  letter-spacing: 0.1rem;
  padding: 5px 15px;
  box-sizing: border-box;
  margin-bottom: 20px;
	border: 1px solid #231815;
}

/* plan */
.planCom {
	margin-top: 100px;
}
.planCom2 > div {
	padding: 0 !important;
}
.plan-archive-list {
	border-bottom: 1px solid #231815;
  margin: 0 10px;
  padding: 20px 0;
  box-sizing: border-box;
}
.plan-archive-list > .plan-images {
	width: 21%;
	border: 1px solid #595757;
	box-sizing: border-box;
}
.plan-archive-list > .plan-images > a > img {
	width: 100%;
	height: auto;
	border: 5px solid #fff;
	box-sizing: border-box;
}
.plan-archive-list > .plan-right {
	width: 79%;
	padding: 0 20px;
	box-sizing: border-box;
}
.plan-archive-list span.category,
.single_planTerm span.category {
	display: inline-block;
  font-size: 1.1rem;
  letter-spacing: 0.1rem;
  color: #fff;
  background: #708a1e;
  border-radius: 10px;
  padding: 5px 15px;
  box-sizing: border-box;
  margin-right: 5px;
}
.plan-archive-list .plan-title {
	font-size: 2rem;
	line-height: 3rem;
	letter-spacing: 0.1rem;
}
.plan-archive-list span.room1,
.plan-archive-list span.room2,
.plan-archive-list span.room3,
.plan-archive-list span.room4,
.single_planTerm span.room1,
.single_planTerm span.room2,
.single_planTerm span.room3,
.single_planTerm span.room4 {
	background: #231815;
}
.plan-archive-list span.floor1,
.plan-archive-list span.floor2,
.plan-archive-list span.floor3,
.single_planTerm span.floor1,
.single_planTerm span.floor2,
.single_planTerm span.floor3 {
	background: #8e6446;
}
.plan-archive-list span.feature1,
.plan-archive-list span.feature2,
.plan-archive-list span.feature3,
.plan-archive-list span.feature4,
.plan-archive-list span.feature5,
.plan-archive-list span.feature6,
.plan-archive-list span.feature7,
.plan-archive-list span.feature8,
.plan-archive-list span.feature9,
.single_planTerm span.feature1,
.single_planTerm span.feature2,
.single_planTerm span.feature3,
.single_planTerm span.feature4,
.single_planTerm span.feature5,
.single_planTerm span.feature6,
.single_planTerm span.feature7,
.single_planTerm span.feature8,
.single_planTerm span.feature9 {
	background: #4b7355;
}
.planList {
	display: flex;
	border-bottom: 1px solid rgba(75,115,85,0.1);
	padding-bottom: 40px;
	box-sizing: border-box;
}
.planList > .area,
.planList > .room,
.planList > .floor {
	flex-basis: 21%;
	padding: 0 20px;
	box-sizing: border-box;
}
.planList > .feature {
	flex-basis: 37%;
	padding: 0 20px;
	box-sizing: border-box;
}
.planList_title {
	font-size: 1.6rem;
	font-weight: normal;
	line-height: 2.4rem;
	letter-spacing: 0.26rem;
	text-align: center;
}
.planList_title::after {
	content: '';
	display: block;
	background: #708a1e;
	width: 100%;
	height: 2px;
	margin: 15px auto;
}
.planList_title2::after {
	background: #231815;
}
.planList_title3::after {
	background: #8e6446;
}
.planList_title4::after {
	background: #4b7355;
}
.planList p {
	margin-top: 15px;
}
.planList p a {
	text-decoration: underline;
}
.planList > .feature > div > p:nth-child(even) {
	padding-left: 20px;
	box-sizing: border-box;
}
.planList_mobile {
	display: none;
}
.planList_mobile > .inner {
	display: none;
}
.planList_mobile > .toggleBtn {
	width: 60%;
	border: 1px solid #595757;
	border-radius: 10px;
	margin: 40px auto;
	padding: 15px 20px;
	box-sizing: border-box;
}
.planList_mobile > .toggleBtn::after {
	content: '';
	background: url(../img/arrow03.svg) center no-repeat;
	width: 12px;
	height: 7px;
	display: inline-block;
	position: absolute;
	top: 22px;
	right: 30px;
}
.planList_mobile > .toggleBtn.open::after {
	content: '';
	background: url(../img/arrow04.svg) center no-repeat;
	width: 12px;
	height: 7px;
	display: inline-block;
	position: absolute;
	top: 22px;
	right: 30px;
}
.single_planList_wrap {
	background: #f4f0e7;
	padding-top: 60px;
	box-sizing: border-box;
}
.single_planList_wrap > .planList {
	border-bottom: none;
}
.single_planList_wrap > .pTitle04 {
	margin-top: -100px;
	margin-bottom: 40px;
}
.plan-single_wrap > p,
.plan-single_wrap > .box,
.plan-single_wrap > h3 {
	padding: 0 20px;
	box-sizing: border-box;
}
.plan-single_title {
	font-size: 1.8rem;
	font-weight: normal;
	letter-spacing: 0.26rem;
	color: #4b7355;
	border: 1px solid #4b7355;
	padding: 10px 20px;
	box-sizing: border-box;
	width: 100%;
	max-width: 500px;
	text-align: center;
}
.plan-single_point h4 {
	font-size: 1.8rem;
	font-weight: normal;
	letter-spacing: 0.26rem;
	color: #708a1e;
}
.plan-single_point {
	display: flex;
}
.plan-single_point > .img {
	flex-basis: 33%;
	padding: 0 20px;
	box-sizing: border-box;
}
.plan-single_point > .txt {
	flex-basis: 67%;
	padding: 0 20px;
	box-sizing: border-box;
}

/* pagenavi */
.wp-pagenavi {
  clear: both;
  margin: 50px auto 0 auto;
  text-align: center;
}
.wp-pagenavi a, .wp-pagenavi span {
  border: none;
  margin: 2px 7px;
}
.wp-pagenavi span.current {
  border-bottom: 1px solid #808080;
}

@media screen and ( max-width:1080px ) {
	.column_mv > div:nth-child(1),
	.event_mv > div:nth-child(1) {
		max-height: none;
	}
	.single_archive > .box1,
	.single_archive > .box2,
	.single_sec > .box1,
	.single_sec > .box2 {
		width: 100%;
	}
	.single_archive > .box1,
	.single_sec > .box1 {
		padding-right: 0;
	}
	.event_bnr > .inner {
		border: 1px solid #fff;
		display: block;
		padding: 20px;
	}
	.event_bnr > .inner > .box2 {
		border-left: none;
		margin-top: 30px;
		text-align: center;
	}
	.event_bnr > .inner > .box2 > .box2_child > p:nth-child(3) > a {
		font-size: 2rem;
	}
	.lifestyle_archive {
		padding: 15px 10px;
		margin-bottom: 0;
	}
	.lifestyle-list_title {
		background: none;
		font-size: 1.5rem;
		padding: 15px 10px;
		margin-top: 0;
		width: 100%;
	}
	.lifestyle-list_title > a::before {
		display: none;
	}
	.lifestyle_single img {
		width: 100%;
	}
	.lifestyle-single_wrap > .boxMv,
	.lifestyle-single_wrap > .box > div,
	.lifestyle-single_wrap p {
		padding: 10px;
	}
	.lifestyle-single_title,
	.lifestyle-single_wrap ul li {
		padding: 0 10px;
	}
	.works_archive {
		margin-bottom: 30px;
	}
	.works-list_title {
		background: none;
		font-size: 1.5rem;
		padding: 15px 10px;
		margin-top: 0;
		width: 100%;
	}
	.plan-archive-list > .plan-images {
		width: 29%;
	}
	.plan-archive-list > .plan-right {
		width: 71%;
	}
	.planList_mobile {
		display: block;
	}
	.planList_mobile .planList_title2,
	.planList_mobile .planList_title3,
	.planList_mobile .planList_title4 {
		margin-top: 20px;
	}
	.single_planList_wrap {
		padding: 40px 0 30px 0;
	}
	.single_planList_wrap > .pTitle04 {
		margin-top: 0;
		margin-bottom: 40px;
	}
	.single_planList_wrap > .planList_mobile > .toggleBtn {
		background: #fff;
	}
	.plan-single_wrap > p,
	.plan-single_wrap > .box,
	.plan-single_wrap > h3 {
		padding: 0;
	}
	.plan-single_point {
		display: block;
	}
	.plan-single_point > .img {
		padding: 0;
	}
	.plan-single_point > .txt {
		padding: 0;
		margin-top: 30px;
	}
}

@media screen and ( max-width:600px ) {
	.single_mv {
		height: 200px;
	}
	.single_archive {
		margin-top: 50px;
	}
	.single_archive > .box1,
	.single_archive > .box2,
	.blog-archive-list > .blogs-images,
	.plan-archive-list > .plan-images {
		width: 100%;
	}
	.single_archive > .box2 {
		margin-top: 50px;
	}
	.blog-archive-list > .blogs-right,
	.plan-archive-list > .plan-right {
		width: 100%;
		padding: 0;
		margin-top: 20px;
	}
	.blog-archive-list .blogs-title {
		font-size: 1.8rem;
		line-height: 2.6rem;
	}
	.googlecal {
	padding-bottom: 100%;
	}
	.lifestyle_archive {
		padding: 10px 0;
	}
	.lifestyle_mv > .pTitle04,
	.works_mv > .pTitle04 {
		padding: 20px 50px;
	}
	.lifestyleTitle {
		padding: 10px 0;
		font-size: 1.6rem;
		line-height: 3.4rem;
	}
	.lifestyle-single_wrap > .boxMv,
	.lifestyle-single_wrap > .box > div,
	.lifestyle-single_wrap p {
		padding: 10px 0;
	}
	.lifestyle-single_title {
		font-size: 1.6rem;
		line-height: 2.8rem;
	}
	.lifestyle-single_title,
	.lifestyle-single_wrap ul li {
		padding: 0;
	}
	.worksBtn > ul > li {
		margin-top: 0 !important;
	}
	.works_archive {
		margin-bottom: 20px;
	}
	.planCom {
		margin-top: 50px;
	}
	.planList_mobile > .toggleBtn {
		width: 80%;
		padding: 10px 15px;
	}
	.planList_mobile > .toggleBtn::after {
		top: 18px;
		right: 25px;
	}
	.planList_mobile > .toggleBtn.open::after {
		top: 18px;
		right: 25px;
	}
	.plan-single_title {
		font-size: 1.6rem;
		line-height: 2.8rem;
	}
	.plan-single_point h4 {
		font-size: 1.6rem;
		line-height: 2.8rem;
	}
}


/*-------------------------------

	4. 404

-------------------------------*/
.wrap404 {
	text-align: center;
	margin: 150px auto;
}
