@charset "UTF-8";
/* ==================== reset ==================== */
*, *::before, *::after {
	background: transparent;
	border: 0;
	box-sizing: border-box;
	font-style: normal;
	line-height: 1.8em;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
/* ==================== body =================cim=== */
body {
	background-color: #FFF;
	color: #000;
	font-feature-settings: 'palt' 1;
	font-size: 17px;
	font-weight: 300;
	overflow-x: hidden;
	position: relative;
	margin: 0;
	padding: 0;
}

@media screen and (max-width: 767px) {
	section.w-smaller body {
		font-size: 14px;
	}
}
/* ==================== .clearfix ==================== */
.clearfix {
	min-height: 1px;
}
.clearfix:after, header:after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
}
/* ==================== font ==================== */
main :where(h1, h2, h3, h4, h5, h6) {
	font-weight: 700;
	line-height: 1.4em;
	margin-bottom: 1.5em;
}
main h1 {
	font-size: 2.0rem;
}
main h2 {
	font-size: 1.5rem;
}
main h3 {
	font-size: 1.3rem;
}
main h4 {
	font-size: 1.15rem;
}
main h5 {
	font-size: 1.0rem;
}
main h6 {
	font-size: 1.0rem;
}
main p, main iframe {
	margin-bottom: 1.5em;
}
main strong {
	font-weight: 700;
}
main small {
	font-size: smaller;
}
main :where(ol, ul) {
	list-style-position: inside;
}
.text-left {
	text-align: left !important;
}
.text-right {
	text-align: right !important;
}
.text-center {
	text-align: center !important;
}
.catchphrase {
	font-weight: 500;
	line-height: 3.0em;
}

@media screen and (max-width: 767px) {
.catchphrase {
	line-height: 2.5em;
}
}
.sp-only {
	display: none;
}

@media screen and (max-width: 767px) {
.sp-only {
	display: inline;
}
.pc-only {
	display: none;
}
}
/* ==================== img ==================== */
main img {
	height: auto;
	max-width: 100%;
	vertical-align: bottom;
}
main img.alignleft {
	float: left;
}
main img.alignright {
	float: right;
}
main img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
main section .wp-block-image, main section .wp-block-video {
	margin-left: auto;
	margin-right: auto;
}
/* ==================== iframe ==================== */
main iframe {
	display: block;
	max-width: 100%;
}
/* ==================== a ==================== */
main a {
	color: #000;
	transition-duration: 1.0s;
}
main a:hover {
	color: #666;
}
main a:hover img {
	opacity: 0.75;
	transition-duration: 1.0s;
}
main a.button {
	background-color: #000;
	color: #FFF;
	display: inline-block;
	font-size: 0.8rem;
	font-weight: bold;
	max-width: 50%;
	min-width: 180px;
	padding: 10px;
	text-align: center;
	text-decoration: none;
}
main a.button:hover {
	opacity: .3;
}
main a.button.white {
	background-color: #FFF;
	border: 1px solid #000;
	color: #000;
}
main a.button.transparent {
	background-color: transparent;
	border: 1px solid #000;
	color: #000;
}
main a.button.white.transparent {
	border: 1px solid #FFF;
	color: #FFF;
}
/* ==================== リスト ==================== */
main :where(ol, ul) {
	list-style-position: inside;
}
.two, .three, .four, .five {
	align-items: stretch;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-bottom: 0;
}
.two > *, .three > *, .four > *, .five > * {
	margin-bottom: 30px;
}
.space {
	justify-content: space-between;
}
.flex-center {
	align-items: center;
}
/* ==================== dl ==================== */
main dl {
	display: flex;
	align-items: stretch;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
}
main dl > * {
	font-size: 0.9rem;
	margin-bottom: 8px;
	padding: 20px;
}
main dt {
	background-color: #E6E6E6;
	font-weight: 700;
	margin-right: 8px;
	width: 20%;
}
main dd {
	background-color: #F2F2F2;
	width: calc(80% - 8px);
}

@media screen and (max-width: 767px) {
main dl > * {
	margin-bottom: 5px;
	padding: 10px;
}
main dt {
	margin-right: 5px;
	width: 30%;
}
main dd {
	width: calc(70% - 5px);
}
}
/* ==================== .two .three ==================== */
.two > * {
	width: 50%;
}
.two.space > * {
	width: 48%;
}
.three > * {
	width: calc(100%/3);
}
.three.space > * {
	width: calc(92%/3);
}
.three.space::before {
	content: "";
	display: block;
	width: calc(92%/3);
	order: 1;
}
.three.space::after {
	content: "";
	display: block;
	width: calc(92%/3);
}
.two.space.imgleft > *:nth-child(odd) {
	width: 52%;
}
.two.space.imgleft > *:nth-child(even) {
	width: 44%;
}
.two.space.imgright > *:nth-child(odd) {
	width: 44%;
}
.two.space.imgright > *:nth-child(even) {
	width: 52%;
}

@media screen and (max-width: 767px) {
.two > *, .two.space > *, .three > *, .three.space > *, .two.space.imgleft > *:nth-child(odd), .two.space.imgleft > *:nth-child(even), .two.space.imgright > *:nth-child(odd), .two.space.imgright > *:nth-child(even) {
	width: 100%;
}
}
/* ==================== .four .five ==================== */
.four > * {
	width: 25%;
}
.four.space > * {
	width: 22%;
}
.four.space::before {
	content: "";
	display: block;
	width: 22%;
	order: 1;
}
.four.space::after {
	content: "";
	display: block;
	width: 22%;
}
.five > * {
	width: 20%;
}
.five.space > * {
	width: calc(88%/5);
}

@media screen and (max-width: 767px) {
.four > *, .five > * {
	width: 50%;
}
.four.space > *, .five.space > * {
	width: 48%;
}
}
/* ==================== main ==================== */
main section {
	margin: 0 auto;
	padding: 120px 0 90px;
}
main section.image {
	background-color: #999;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
main section.flow {
	background-image: url(img/back_flow_more_01.jpg);
}
main section.quality {
	background-image: url(img/back_flow_quality_01.jpg);
}
main section.coordination {
	background-image: url(img/back_flow_coordination_01.jpg);
}
main section > *, main .wp-pagenavi {
	margin-left: auto;
	margin-right: auto;
	max-width: 80%;
	width: 1080px;
}
main section .wpcf7 {
	margin-left: auto;
	margin-right: auto;
	max-width: 80%;
	width: 1080px;
}
main section > .wp-block-image {
	margin-left: auto;
	margin-right: auto;
	max-width: 80%;
	width: 1080px;
}
main section > .wp-block-image {
	max-width: 80%;
}
main section.w-smaller > *, main div.w-smaller > * {
	width: 680px;
}
main section h2, main section h3 {
	text-align: center;
}
main section h2 {
	background-image: url(img/heading_circle_black_01.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 30px;
	padding-top: 50px;
}
main section h2.en{
	line-height: 1em;
}
main section h2.en small {
	font-size: 0.8rem;
	font-weight: 300;
	opacity: 0.5;
}
main section h2.mincho, main section h3.mincho {
	background-image: none;
	font-family: "Sawarabi Minchof", serif;
	font-weight: normal;
}
main section h2.mincho {
	font-size: 2.5rem;
}
main section h3.mincho {
	font-size: 1.5rem;
	padding-top: 0;
}
main section h2.border-bottom {
	padding-bottom: 60px;
	position: relative;
}
main section h2.border-bottom::after {
	background: #000;
	bottom: 0;
	content: '';
	display: block;
	height: 1px;
	left: 0;
	margin: auto;
	max-width: 100%;
	position: absolute;
	width: 300px;
}
main section h2.border-bottom::after {
	right: 0;
}
main section h2.circle-bottom {
	background-image: url(img/heading_circle_black_01.png);
	background-position: center bottom;
	background-size: 60px;
	padding-bottom: 120px;
}
.mainvisual {
	background-color: #EEE;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.mainvisual h2 {
	padding: 100px 0;
	text-align: center;
}
.mainvisual h2 small {
	font-size: 0.8rem;
	font-weight: 300;
	opacity: 0.5;
}
/* ==================== .sns ==================== */
.sns {
	display:-webkit-box; display:-ms-flexbox; display:-webkit-flex; display:flex;
	box-orient:vertical; -webkit-box-direction:normal; -webkit-flex-direction:column; flex-direction:column;
	-webkit-box-pack:justify; -ms-flex-pack:justify; -webkit-justify-content:space-between; justify-content:space-between;
	position: fixed;
    right: 20px;
    bottom: 50%;
	transform: translateY(50px);
    z-index: 2;
}
.sns img {
	transition: .8s;
	width: 40px;
}
.sns img:first-of-type {
	position: absolute;
	opacity: 1;
}
.sns img:last-of-type {
	opacity: 0;
}
.sns a {
	margin-bottom: 10px;
}
.sns a:last-of-type {
	margin-bottom: 0;
}
.sns a:hover {
	opacity: 1;
}
.sns a:hover img {
	transform: scale(1.2) translateX(-10px);
}
.sns a:hover img:first-of-type {
	opacity: 0;
}
.sns a:hover img:last-of-type {
	opacity: 1;
}
@media screen and (max-width: 767px) {
.sns img {
	width: 30px;
}
}
/* ==================== #post_link ==================== */
#post_link {
	max-width: 640px;
	margin: 0 auto;
	padding: 30px 0;
	width: 100%;
}
#post_link ul {
	align-items: stretch;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	justify-content: space-between;
	list-style: none;
}
#post_link ul li {
	text-align: center;
}
#post_link ul li a {
	background-color: transparent;
	border: 1px solid #000;
	color: #000;
	display: inline-block;
	font-size: 0.8rem;
	font-weight: bold;
	max-width: 50%;
	min-width: 120px;
	padding: 10px;
	text-decoration: none;
}
/* ====================#list ==================== */
#list h3 {
	font-size: 1rem;
	text-align: left;
}
.category-day.category-day {
    font-size: small;
    margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
.category-day.category-day {
	margin-bottom: 0;
}
}
.category-day a {
	background-color: #000;
	display: inline-block;
	color: #FFF;
    margin-bottom: 0.5em;
	margin-right: 0.5em;
	padding: 0 1em;
	text-decoration: none;
}
/* ====================#list（お知らせ） ==================== */
#list.gray > div {
	display: flex;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	flex-direction: row;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	margin-bottom: 60px;
}
#list.gray .thumbnail {
	margin-bottom: 0;
	width: 240px;
}
#list.gray .text {
	background-color: #F2F2F2;
	width: calc(100% - 240px);
	padding: 1.5em;
}

@media screen and (max-width: 767px) {
#list.gray > div {
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-wrap: wrap;
}
#list.gray .thumbnail, #list.gray .thumbnail img, #list.gray .text {
	width: 100%;
}
}
/* ==================== swiper ==================== */
.swiper-pagination-bullet-active {
	background: #FFF;
}
.swiper-button-next, .swiper-button-prev, .swiper-pagination {
	z-index: 2;
}
/* ==================== #information ==================== */
#information h3 {
	font-size: 1rem;
	text-align: left;
}
#information h3 a{
	text-decoration: underline;
}
/* ==================== #concept ==================== */
#concept .catchphrase {
	margin-bottom: 60px;
}
#concept h3 {
	margin-bottom: 90px;
}
#concept .three {
	margin-bottom: 60px;
	table-layout: fixed;/*IE対策*/
	width: 840px;
}
#concept .three > * {
	max-width: 220px;
}
#concept .three a {
	display: inline-block;
	position: relative;
	overflow: hidden;/*IEで効かない？*/
	table-layout: fixed;/*IE対策*/
}
#concept .three a:before {
	content: "";
	position: absolute;
	width: 0px;
	height: 0px;
	left: 19%;
    bottom: 9.5%;
	background: rgba(0, 0, 0, 0.2);
	border-radius: 50%;
	-moz-transition: 1.0s;
	-webkit-transition: 1.0s;
	transition: 1.0s;
}
#concept .three a img {
	opacity: 1;
	position: relative;
	width: 220px;
}
#concept .three a:hover:before, #concept .three a:focus:before {
	width: 500px;
	height: 500px;
    left: -100%;
    bottom: -50%;
}

@media screen and (max-width: 767px) {
#concept .three > *, #concept .three.space > * {
	width: calc(92%/3);
}
#concept .three a img {
	width: 140px;
}
}
/* ==================== #rokuwanoie ==================== */
#rokuwanoie .four.space > * {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	display: table;
	height: 255px;
	margin-bottom: 0;
	position: relative;
	text-align: center;
	width: 23.6%;
}
#rokuwanoie .four.space > *:last-child {
	margin-right: 0;
}

@media screen and (max-width: 1349px) {
#rokuwanoie .four.space > * {
	height: 19vmin;
}
}

@media screen and (max-width: 767px) {
#rokuwanoie .four.space > * {
	margin-bottom: 5%;
	height: 38vmin;
	width: 47.5%;
}
}
#rokuwanoie .four.space > * a {
	background-color: rgba(0,0,0,0.35);
	color: #FFF;
	display: table-cell;
	font-weight: bold;
	height: 100%;
	text-decoration: none;
	vertical-align: middle;
	width: 100%;
}
#rokuwanoie .four.space > * a:hover {
	background-color: rgba(0,0,0,0);
}
#rokuwanoie .realestate {
	background-image: url("img/back_front-page_realestate_01.jpg");
}
#rokuwanoie .quality {
	background-image: url("img/back_front-page_quality_01.jpg");
}
#rokuwanoie .flow {
	background-image: url("img/back_front-page_flow_01.jpg");
}
#rokuwanoie .coordination {
	background-image: url("img/back_front-page_coordination_01.jpg");
}
/* ==================== .table_footer ==================== */
.table_footer{
	margin: -40px auto 0;
    max-width: min(600px, 80%);
}
.table_footer table {
    border-collapse: collapse;
    width: 100%;
}
.table_footer td{
    border: 1px solid #000;
}
/* ==================== #company ==================== */
#company .two > * {
	display: table;
	height: 100px;
	position: relative;
	text-align: center;
}
#company .two > *:last-child {
	margin-right: 0;
    width: 100%;
}
#company .two > *:last-child a {
    background: url(img/back_company_sdgs_01.jpg) no-repeat center /cover;
    line-height: 1.4em;
    padding: 30px;
}
#company .two > * a {
	background-color: #000;
	color: #FFF;
	display: table-cell;
	font-weight: bold;
	height: 100%;
	text-decoration: none;
	vertical-align: middle;
	width: 100%;
}
#company .two > * a:hover {
	background-color: #666;
}
#company .two > *:last-child a:hover {
    opacity: 0.8;
}
/* ==================== ふたつ並びの文字重ね（未使用） ==================== */
.image_layer > div {
	margin-bottom: 60px;
	position: relative;
}
.image_layer > div * {
	text-align: left;
}
.image_layer > div .text {
	position: absolute;
	top: 100px;
	width: 55%;
	z-index: 2;
}
.image_layer > div:nth-of-type(even) .text {
	left: 45%;
}
.image_layer > div .image {
	margin-left: 45%;
	position: relative;
	text-align: right;
	width: 55%;
	z-index: 1;
}
.image_layer > div:nth-of-type(even) .image {
	margin-left: 0;
	text-align: left;
}
.image_layer > div h3 {
	margin-bottom: 15px;
}
.image_layer > div .image img {
	width: 100%;
}

@media screen and (max-width: 1349px) {
.image_layer > div .text {
	top: 60px;
}
}

@media screen and (max-width: 959px) {
.image_layer > div .text {
	top: 0;
}
}

@media screen and (max-width: 767px) {
.image_layer > div .text {
	position: static;
	top: auto;
	width: 100%;
}
.image_layer > div .image {
	margin-left: auto;
	text-align: center;
	width: 100%;
}
}
