@charset "utf-8";
/*------------------------------------
汎用
------------------------------------*/
html,body {min-width: 1170px; min-height: calc(100vh - 100px); max-height: 100%;}
body {padding-top: 100px;}

/*コンティナ*/
.container {width: 970px; margin: 0 auto;}

.tb,.sp {display: none!important;}
.pc.tb, .pc.sp {display: block;}

/*ページ内スクロール*/
#scroll {right: 64px; bottom: 32px;}

/*パララックス*/
.js-parallax {width: 100%; height: 100vh; background: center/cover no-repeat; background-attachment: fixed;}
@media screen and (max-width: 750px) {.js-parallax {background-size: contain; background-attachment: scroll;}}

/*固定ページ見出し*/
.page-heading {position: relative; height: 434px; margin-top: 90px;}
.page-heading h1 {position: absolute; top: -24px; left: 34px; font-size: 42px; z-index: 2;}
.page-heading .suninaru {position: absolute; top: 52px; left: 57px; z-index: 2;}
.page-heading .img {width: 100%; height: 100%;}
.page-heading .img img {display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50%; font-family: 'object-fit: cover; object-position: 50%;';}

/*固定ページ見出し文章*/
.headline_txt {padding: 0 0 50px;}
.headline_txt h1 {text-align: center; font-size: 55px; line-height: 1; margin: 90px 0;}
.headline_txt p {font-size: 18px; margin: 0 auto 50px;}

/*英語と日本語タイトル*/
.en-jp {padding: 0 0 50px; text-align: center;}
.en-jp span {display: block;}
.en-jp span.en{font-size: 41px; margin-bottom: 5px;}
.en-jp span.jp{font-size: 15px; letter-spacing: 0.5rem;}

/*archiveページのnotfound*/
.archive-notfound {margin: 0 auto 0; font-size: 20px;}

/*post-link*/
.post-link {justify-content: space-between;}

/*post-link previous*/
.post-link .previous {font-size: 20px;}
.post-link .previous a {display: inline-flex; width: 130px; color: #21201b; position: relative; justify-content: flex-end;}
.post-link .previous a:before,
.post-link .previous a:after {content: ''; transition: .5s ease; position: absolute; display: inline-block; height: 1px; background-color: #21201b;}
.post-link .previous a:before {top: 36px; left: 0px; width: 130px;}
.post-link .previous a:after {top: 30px; left: -2px; width: 20px; transform: rotate(-40deg);}
.post-link .previous a:hover:before {transform: translate(-15px,0);}
.post-link .previous a:hover:after {transform: translate(-15px,0) rotate(-40deg);}

/*post-link next*/
.post-link .next {font-size: 20px;}
.post-link .next a {display: inline-flex; width: 130px; color: #21201b; position: relative;}
.post-link .next a:before,
.post-link .next a:after {content: ''; transition: .5s ease; position: absolute; display: inline-block; height: 1px; background-color: #21201b;}
.post-link .next a:before {top: 36px; left: 0px; width: 130px;}
.post-link .next a:after {top: 30px; left: 113px; width: 20px; transform: rotate(40deg);}
.post-link .next a:hover:before {transform: translate(15px,0);}
.post-link .next a:hover:after {transform: translate(15px,0) rotate(40deg);}

/* ローディング画面の背景 */
#loading {position: fixed; width: 100vw; height: 100vh; top: 0; left: 0; background: #fff; z-index: 9999;}
#loading .animation {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #fff; animation: loadinganimation 2500ms ease-out forwards;}
#loading .animation img{width: 100px; height: auto;}
@keyframes loadinganimation {0% {opacity: 0;} 100% {opacity: 1;}}

/*------------------------------------
共通
------------------------------------*/
/*header*/
header {position: fixed; top: 0; width: 100%; min-width: 1170px; height: 100px; justify-content: space-between; align-items: center; background: #fff; border-bottom: 1px solid #21201b; transition: all .3s ease; z-index: 9000;}

header .logo {margin: -10px 0 0 100px; position: relative;}
header .logo .flex {align-items: flex-end;}
header .logo img {transform: translate3d(0,0,0); transform-origin: center left; transition: .3s ease;}
header .logo .icon {width: 47px; margin-right: 15px;}
header .logo .name {width: 138px; margin-bottom: 3px;}
header .logo .catch {width: 83px; height: 11px; position: absolute; left: 88px; margin-top: 5px; visibility: visible; opacity: 1;}

header #g-nav {margin-right: 55px; min-height: auto; max-height: auto;}
header #g-nav .info {height: 50px; justify-content: flex-end; align-items: center; font-size: 13px; transform: translateY(2px); transition: .3s ease;}
header #g-nav .info .icon a {display: inline-block; margin-left: 30px;}
header #g-nav .info .icon span {display: inline-block; font-size: 13px; line-height: 1;}
header #g-nav .info .icon i {margin-right: 5px;}
header #g-nav .info .request {align-items: center; margin-left: 25px;}
header #g-nav .info .request span {display: inline-block; margin-right: 15px; padding: 0 12px; border: 1px solid #21201b; text-align: center;}
header #g-nav .info .request a {font-size: 20px; line-height: 1;}
header #g-nav .main-nav {height: 55px; transform: translateY(-3px); transition: .3s ease;}
header #g-nav .main-nav a {margin-right: 35px; position: relative; display: inline-flex; justify-content: center; align-items: center; line-height: 1; padding: 0 5px;}
header #g-nav .main-nav a:last-child {margin-right: 0;}
header #g-nav .main-nav a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 48px;
	height: 4px;
	background: #333;
	transform: scale(1,0) translate(-50%,0);
	transform-origin: center bottom;
	transition: transform .3s;
}
header #g-nav .main-nav a:hover:after,
header #g-nav .main-nav a.current:after {transform: scale(1,1) translate(-50%,0);}

header.fixed {height: 50px;}
header.fixed .logo {margin: 0 0 0 100px;}
header.fixed .logo img {transform: scale(.75);}
header.fixed .logo .icon {margin-right: 0;}
header.fixed .logo .catch {visibility: hidden; opacity: 0;}
header.fixed #g-nav .info {transform: translateY(-45px);}
header.fixed #g-nav .main-nav {height: 50px; transform: translateY(-25px);}

/*footer*/
footer {padding: 100px 0; text-align: center;}
footer .consultation {margin-bottom: 120px;}
footer .consultation h2 {display: inline-block; margin-bottom: 50px; font-size: 36px;}
footer .consultation h2 .segoe {font-size: 42px; margin-right: 10px;}
footer .consultation p {font-size: 16px;}
footer address {margin-bottom: 80px;}
footer address .logo {display: inline-flex; align-items: baseline; margin: 0 auto 25px;}
footer address .logo .icon {width: 47px; margin-right: 20px;}
footer address .logo .name {width: 138px; margin-top: -2px;}
footer address .add {margin-bottom: 70px;}
footer address .info-box {justify-content: center; align-items: center;}
footer address .info-box .left {line-height: 1; margin-right: 90px;}
footer address .info-box .left a {align-items: flex-end;}
footer address .info-box .left span {font-size: 32px; font-weight: 700; line-height: 1; letter-spacing: 2px; margin-left: 15px;}
footer address .info-box .left img.free {width: 42px; height: 28px; opacity: 1;}
footer address .info-box .left span.fax {font-size: 24px; margin: 0;}
footer address .info-box .left p {margin: 3px 0 12px;}
footer address .info-box .right {font-size: 16px; border: 1px solid #21201b; padding: 20px 30px 20px 90px; align-items: center; justify-content: center; background:url(../img/letter.png) no-repeat 30px 50%/44px 27px;}
footer address .info-box .right:hover {background: #21201b url(../img/letter-hover.png) no-repeat 30px 50%/44px 27px; color: #fff; opacity: 1;}
footer .copy {font-size: 14px;}

/*fixed-nav*/
.fixed-nav {position: fixed; right: 0; display: inline-flex; justify-content: center; align-items: center; flex-direction: column; background: #ff901e; padding-right: 30px; width: 50px; height: 147px; transform: translate(30px,0); z-index: 101;}
.fixed-nav span {color: #fff; line-height: 1.2; font-size: 15px; -webkit-writing-mode: vertical-rl; -ms-writing-mode: tb-rl; writing-mode: vertical-rl;}
.fixed-nav i {margin-bottom: 10px;}
.fixed-nav:hover {transform: translate(0,0); opacity: 1;}
.fixed-nav.examples {top: 140px;}
.fixed-nav.reserve {top: 297px;}
.fixed-nav.event {top: 454px;}

/*------------------------------------
トップページ
------------------------------------*/
#front .container {width: 1170px; margin: 0 auto;}

/*main-img*/
#front .main-img {position: relative; width: 100%;}
#front .main-img #top-slider {width: 100%; height: 47vw; max-height: calc(100vh - 100px); overflow: hidden!important; margin: 0;}
#front .main-img #top-slider .slick-track {display: flex; justify-content: space-between; width: 100%;}
#front .main-img #top-slider .slick-slide {width: 100%; height: 47vw; max-height: 100vh;}
#front .main-img #top-slider li {width: 100%; height: 47vw; max-height: 100vh; overflow: hidden;}
#front .main-img #top-slider li a {display: block; width: 100%; height: 100%;}
#front .main-img #top-slider li img {display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50%; font-family: 'object-fit: cover; object-position: 50%;';}
#front .main-img #top-slider .slide-dots {display: flex; justify-content: center; position: absolute; bottom: 20px; left: 0; width: 100%; height: auto; z-index: 100;}
#front .main-img #top-slider .slide-dots li {width: 24px; height: 24px; margin: 0 4px;}
#front .main-img #top-slider .slide-dots li button {width: 100%; height: 100%; text-indent: -9999px; background: rgba(0,0,0, .3);}
#front .main-img #top-slider .slide-dots li.slick-active button {background: rgba(0,0,0, .6);}
#front .main-img .suninaru {position: absolute; top: 25%; right: 150px; width: 311px; z-index: 100;}

@media only screen and (min-width:1400px) {
	#front .main-img .suninaru {width: 400px;}
	#front .main-img .suninaru img {width: 100%; height: auto;}
}

/*concept*/
#front .concept {background: #21201b; padding: 105px 0; text-align: center;}
#front .concept a,
#front .concept p,
#front .concept h1,
#front .concept h1 span,
#front .concept .concept-box li p span {color: #fff;}
#front .concept h1 {font-size: 65px; line-height: 1;}
#front .concept h1 span {font-size: 75px; line-height: 1;}
#front .concept .goal {margin-bottom: 85px;}
#front .concept .goal p {margin: 45px 0; font-size: 21px;}
#front .concept .goal .button {display: inline-block; font-size: 17px; margin: 0 auto; padding: 9px 68px; border: 1px solid #fff;}
#front .concept .goal .button i {color:#FF901E; margin-left: 5px;}
#front .concept .goal .button:hover {color: #21201b; background: #fff; opacity: 1;}
#front .concept .concept-box {justify-content: space-between;}
#front .concept .concept-box li {width: 370px;}
#front .concept .concept-box li h3 {margin-bottom: 15px;}
#front .concept .concept-box li h3 a {position: relative; display: block; width: 100%; height: 258px; overflow: hidden;}
#front .concept .concept-box li h3 a:before {content: ''; position: absolute; top: 0; right: 0; left: 0; bottom: 0; background-color: rgba(0,0,0,0.5); z-index: 2;}
#front .concept .concept-box li h3 a img {position: absolute; display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50%; font-family: 'object-fit: cover; object-position: 50%;'; translate: .5s ease; z-index: 1;}
#front .concept .concept-box li h3:hover a img {transform: scale(1.1); opacity: 1;}
#front .concept .concept-box li h3 a span {
	text-align: center;
	font-size: 32px;
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	white-space: nowrap;
	z-index: 3;
	line-height: 1.4;
}
#front .concept .concept-box li p {line-height: 1.5; display: inline-block; text-align: left; font-size: 16px;}
#front .concept .concept-box li p:after {font-family: "Font Awesome 5 Free"; content: '\f0a9'; font-weight: 700; font-size: 0.9rem; color:#FF901E;}

#front .js-parallax {background-image: url(../img/top/js-parallax.jpg);}

/*gallery*/
#front .gallery {padding: 0 0 75px;}
#front .gallery h2 {margin: 75px 0; text-align: center;}
#front .gallery h2 .suninaru {width: 112px; height: auto; margin-right: 28px; display: inline-block; vertical-align: middle;}
#front .gallery h2 .segoe {font-size: 42px; vertical-align: middle;}
#front .gallery .gallery-cont {display: flex; flex-wrap: wrap;}
#front .gallery .gallery-cont .item {position: relative; display: block; width: 370px; height: 258px; margin:0 30px 50px 0; overflow: hidden;}
#front .gallery .gallery-cont .item:nth-child(3n) {margin-right: 0;}
#front .gallery .gallery-cont .item a > img {position: absolute; display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50%; font-family: 'object-fit: cover; object-position: 50% 50%;';}
#front .gallery .gallery-cont .item a:hover img{transform: scale(1.1);}
#front .gallery .gallery-cont .item a .text {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	opacity: 0;
	z-index: 2;
	transition:all .5s ease;
}
#front .gallery .gallery-cont .item a:hover div {opacity: 1;}
#front .gallery .gallery-cont .item a div h2 {text-align: center; line-height: 1.4; font-size: 22px; color: #fff; opacity: 0; transform: scale(.7); transition:all .5s ease;}
#front .gallery .gallery-cont .item a div h2:before {display: block; font-family: "Font Awesome 5 Free"; content: '\f00e'; font-weight: 700; font-size: 22px; color:#fff;}
#front .gallery .gallery-cont .item a:hover div h2 {opacity: 1; transform: scale(1);}
#front .gallery .more {float: right; font-size: 14px; margin-right: 50px;}

/*news-blog*/
#front .news-blog {background: #21201b; padding-top: 55px;}
#front .news-blog h2,
#front .news-blog a,
#front .news-blog time,
#front .news-blog h3,
#front .news-blog .notfound {color: #fff;}
#front .news-blog .post-list {width: 50%; padding-bottom: 130px;}
#front .news-blog .post-list:nth-child(1) {border-right: 1px #fff solid; margin-right: 80px; padding-right: 30px;}
#front .news-blog .heading {margin-bottom: 30px; justify-content: space-between; align-items: flex-end;}
#front .news-blog .heading h2 {font-size: 28px; letter-spacing: 3px; width: 152px; height: 96px; border: 1px solid #fff; display: flex; justify-content: center;align-items: center;}
#front .news-blog .heading .more {margin-right: 50px;}
#front .news-blog .entry-list li {display: block; margin-bottom: 10px;}
#front .news-blog .entry-list li a {display: inline-flex; max-width: 100%;}
#front .news-blog .entry-list li a time,
#front .news-blog .entry-list li a h3 {line-height: 1.1;}
#front .news-blog .entry-list li a h3 {overflow: hidden; text-overflow: ellipsis; white-space: nowrap;}
#front .news-blog .entry-list li a time {margin-right: 20px;}

/*------------------------------------
先輩ファミリーのお宅拝見 (archive-case.php)
------------------------------------*/
#case-arc .headline_txt p {width: 600px;}

#case-arc .case-list {width: 830px; flex-wrap: wrap; margin: 0 auto;}
#case-arc .case-list .entry {width: 400px; border: 1px solid #21201b; margin-bottom: 80px; box-sizing: border-box;}
#case-arc .case-list .entry:nth-child(odd) {margin-right: 30px;}
#case-arc .case-list .entry .img {position: relative; display: block; width: 100%; height: 256px; border-bottom: 1px solid #21201b; overflow: hidden;}
#case-arc .case-list .entry .img .thumb {width: 100%; height: 100%;}
#case-arc .case-list .entry .img .thumb img {display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50%; font-family: 'object-fit: cover; object-position: 50%;';}
#case-arc .case-list .entry .img .number {position: absolute; bottom: 0; display: block; width: 44px; height: 44px; font-size: 24px; color: #fff; line-height: 44px; text-align: center; background: #21201b; z-index: 2;}
#case-arc .case-list .entry .state {display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start; height: 256px; padding: 24px; box-sizing: border-box;}
#case-arc .case-list .entry .state h2 {font-size: 1.85rem; line-height: 1.75; width: 100%;}
#case-arc .case-list .entry .state a {display: inline-block; font-size: 1.2rem; line-height: 1.1;}
#case-arc .case-list .entry .state a i {margin-left: 5px;}

#case-arc .load {display: block; width: 200px; font-size: 1rem; text-align: center; margin: 0 auto; padding: 14px 0; border: 1px solid #21201b;}
#case-arc .load i {margin-left: 5px;}
#case-arc .load:hover {color: #fff; background: #21201b;}
#case-arc .load:hover span,
#case-arc .load:hover i {color: #fff;}

/*------------------------------------
先輩ファミリーのお宅拝見 (single-case.php)
------------------------------------*/
#case-single .container {width: 820px;}

#case-single .case-heading {margin: 145px auto 90px;}
#case-single .case-heading .suninaru {width: 370px; height: auto; margin: 0 auto;}
#case-single .case-heading h1 {text-align: center; font-size: 55px; line-height: 1; margin: 65px 0 0;}

#case-single #case-slider {width: 1024px; height: 550px; margin: 0 auto 200px; padding: 0;}
#case-single #case-slider .slick-list {overflow: visible;}
#case-single #case-slider .slick-slide {padding: 0; opacity: .75; transition: ease 0.3s;}
#case-single #case-slider .slick-slide.slick-current {opacity: 1;}
#case-single #case-slider li {width: 1024px!important; height: 550px; overflow: hidden;}
#case-single #case-slider li picture {display: block; width: 1024px; height: 550px; overflow: hidden;}
#case-single #case-slider li img {width: 100%; height: 100%; object-fit: cover; object-position: 50%; font-family: 'object-fit: cover; object-position: 50%;';}

#case-single .intro {margin: 0 auto 100px;}
#case-single .intro .eyecatch img {width: 100%; height: auto;}
#case-single .intro h2 {font-size: 48px; line-height: 1.5; margin: 56px 0 96px;}
#case-single .intro .name {display: block; font-size: 18px; text-align: right; margin-bottom: 50px;}
#case-single .intro .explanation {font-size: 18px;}

#case-single .img-set {flex-wrap: wrap; justify-content: space-between; align-items: flex-start; margin: 0 auto 135px;}
#case-single .img-set figure {margin-bottom: 20px;}
#case-single .img-set figure.full {width: 100%;}
#case-single .img-set figure.half,
#case-single .img-set figure.width {width: 394px;}
#case-single .img-set figure img {display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50%; font-family: 'object-fit: cover; object-position: 50%;';}
#case-single .img-set figure.full img {max-height: 554px;}
#case-single .img-set figure.half img {max-height: 600px;}
#case-single .img-set figure figcaption {font-size: 15px; padding: 10px 5px;}

#case-single .details {background: #f9f9f6; padding: 96px 0; text-align: center;}
#case-single .details h2 {display: block; font-size: 42px; text-align: center; margin-bottom: 52px;}
#case-single .details .plan {width: 800px; margin-bottom: 120px;}
#case-single .details .plan p {font-size: 18px; text-align: left;}
#case-single .details .date {display: inline-block;}
#case-single .details .floor {max-width: 820px; text-align: center;}
#case-single .details .floor figure {display: inline-block; text-align: center; margin: 20px 20px 42px;}
#case-single .details .floor figure figcaption {display: inline-block; font-size: 18px; line-height: 1.5; margin-bottom: 40px; padding: 8px 12px; border: 1px solid #21201b;}
#case-single .details .specification {font-size: 16px; text-align: left; margin: 40px 25px 0;}

#case-single .backtoarc {text-align: center; border-bottom: 1px solid #f9f9f6; background: #f9f9f6;}
#case-single .backtoarc a {display: inline-block; font-size: 16px; border: 1px solid #21201b; margin: 0 0 140px; padding: 20px 30px 20px 80px; align-items: center; justify-content: center; background:url(../img/return.png) no-repeat 30px 50%/34px 26px;}
#case-single .backtoarc a:hover {background: #21201b url(../img/return-hover.png) no-repeat 30px 50%/34px 26px; color: #fff; opacity: 1;}

/*------------------------------------
Wizhouseの思い
------------------------------------*/
#concept h2 {display: block; text-align: center; font-size: 55px; margin: 0 auto 50px;}

/*headline_txt*/
#concept .headline_txt {padding: 0 0 150px;}
#concept .headline_txt .container {width: 574px;}
#concept .headline_txt h1 {margin: 100px 0;}
#concept .headline_txt img {display: block; width: 100%; height: 340px; object-fit: cover; object-position: 50%; font-family: 'object-fit: cover; object-position: 50%;';}
#concept .headline_txt p {margin-bottom: 100px;}

/*message*/
#concept .message {padding: 80px 0; background: #f9f9f6;}
#concept .message .container {width: 828px;}
#concept .message .flex {justify-content: space-between;}
#concept .message .left {width: 400px;}
#concept .message .left img {display: block; width: 100%; height: auto; object-fit: cover; object-position: 50%; font-family: 'object-fit: cover; object-position: 50%;';}
#concept .message .right {width: 373px;}
#concept .message .right p {font-size: 16px; margin-bottom: 40px;}
#concept .message .right .architect {text-align: right;}

/*committed*/
#concept .committed {padding: 80px 0;}
#concept .committed .container {width: 590px;}
#concept .committed p {font-size: 18px; margin-bottom: 40px;}
#concept .committed p:last-child {margin-bottom: 0;}

/*features*/
#concept .features {padding: 80px 0; background: #f9f9f6;}
#concept .features h2 {width: 252px; height: auto;}
#concept .features h3 {text-align: left; font-size: 38px; margin-bottom: 40px;}
#concept .features h3 .chara {font-size: 26px; margin-right: 50px; position: relative;}
#concept .features h3 .chara:before,
#concept .features h3 .chara:after {content: ''; position: absolute; display: inline-block; height: 5px; background-color: #717071;}
#concept .features h3 .chara:before {top: 15px; left: 70px; width: 40px; transform:rotate(90deg)}
#concept .features h3 .chara:after {top: -12px; left: 64px; width: 30px; transform:rotate(40deg);}
#concept .features .flex {justify-content: space-between; margin-bottom: 100px;}
#concept .features .left,
#concept .features .right {width: 470px;}
#concept .features .right p {font-size: 18px; margin-bottom: 40px;}
#concept .features .right p:last-child {margin-bottom: 0;}
#concept .features .left div {width: 470px; height: 396px; border: 1px solid #666; margin-bottom: 40px;}
#concept .features .left div:last-child {margin-bottom: 0;}
#concept .features .left img {display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50%; font-family: 'object-fit: cover; object-position: 50%;';}
#concept .features .detail {background:#21201b; color: #fff; border: 1px #21201b solid; display: block; text-align: center; font-size: 16px; padding: 5px 0; margin-top: 30px;}
#concept .features .detail:hover {background:#fff; color: #21201b; opacity: 1;}
#concept .features .zeh.flex {flex-wrap: wrap; margin-bottom: 50px;}
#concept .features .zeh li {width: 50%; display: flex; justify-content: center; align-items: center; outline: 1px solid #aaa; box-sizing: border-box; height: 56px; margin-bottom: 1px;}
#concept .features .zeh li:nth-child(even) {margin-right: -1px;}
#concept .features .zeh li ,
#concept .features .zeh li .orange,
#concept .features .zeh li .blue {font-size: 20px;}
#concept .features .zeh li span {margin-left: 10px;}
#concept .features .zeh li .orange {color: #ee5a24;}
#concept .features .zeh li .blue {color: #0098dc;}
#concept .js-parallax {background-image: url(../img/concept/js-parallax.jpg);}

/*------------------------------------
家づくりのながれ
------------------------------------*/
#flow .headline_txt .container,
#flow .chart .container {width: 770px;}

#flow .chart {background: #f2f2eC; padding: 120px 0;}
#flow .chart .start {display: block; width: 186px; margin: 0 auto 60px;}
#flow .chart .start img {width: 100%; height: auto;}
#flow .chart section {background: #fff; padding: 30px 30px 0; border: 1px solid #666;}
#flow .chart h2,
#flow .chart strong {font-size: 32px; font-weight: 700; line-height: 1; color: #6a3906;}
#flow .chart h2 {text-align: center; margin-bottom: 30px;}
#flow .chart h2 span {font-size: 18px; color: #6a3906;}
#flow .chart dl {display: flex; justify-content: space-between; align-items: center; margin: 30px 0;}
#flow .chart dl dt {width: 50px; margin-right: 25px;}
#flow .chart dl dt img {width: 35px; margin: 0 auto;}
#flow .chart dl dt span {display: block; line-height: 1.25; text-align: center; margin-top: 6px;}
#flow .chart dl dt.client span {font-size: 17px;}
#flow .chart dl dt.wiz span {font-size: 12px;}
#flow .chart dl dd {width: calc(100% - 75px); font-size: 18px;}
#flow .chart p.notice {font-size: 18px; background: #ff0; margin-bottom: 30px; padding: 5px 20px;}
#flow .chart p.notice.center {text-align: center;}
#flow .chart .arrow {display: flex; justify-content: center; align-items: center;}
#flow .chart .arrow p {margin: 0 0 0 14px;}
#flow .chart .arrow img {width: 36px;}
#flow .chart .arrow.up img {width: 36px; transform: scale(1,-1);}
#flow .chart .exchange {display: flex; justify-content: center; align-items: center; margin: 10px 0;}
#flow .chart .exchange .arrow {margin-right: 40px;}
#flow .chart .exchange .arrow:last-child {margin-right: 0;}
#flow .chart .arrow-next {position: relative; width: 44px; height: 44px; margin: 24px auto;}
#flow .chart .arrow-next:before,
#flow .chart .arrow-next:after {content: ""; position: absolute;}
#flow .chart .arrow-next:before {top: 0; left: 50%; transform: translate(-50%,0); width: 2px; height: 44px; background: #666;}
#flow .chart .arrow-next:after {bottom: 5px; left: 50%; transform: translate(-50%,0) rotate(-45deg); width: 30px; height: 30px; border-bottom: 2px solid #666; border-left: 2px solid #666;}

/*------------------------------------
施工実績(archive-gallery.php)
------------------------------------*/
#gallery-arc .gallery-heading {text-align: center;}
#gallery-arc .gallery-heading .suninaru {display: block;  margin: 90px auto 45px; width: 174px; height: 150px;}
#gallery-arc .gallery-heading h1 {font-size: 42px;}
#gallery-arc .gallery-heading p {font-size: 20px; margin-bottom: 80px;}
#gallery-arc .details {background: #21201b; padding: 90px 0;}
#gallery-arc .details .text {color: #fff; text-align: center; font-size: 18px; margin-bottom: 90px;}
#gallery-arc .details .read{margin: auto 150px 150px;}
#gallery-arc .details .gallery-list {flex-wrap: wrap;}
#gallery-arc .details .gallery-list li {position: relative; width: calc((100% - 1px) / 2); height: 362px; margin-bottom: 1px;}

#gallery-arc .details .gallery-list li:nth-child(odd) {margin-right: 1px;}
#gallery-arc .details .gallery-list li a {position: relative; display: block; width: 100%; height: 362px; overflow: hidden;}
#gallery-arc .details .gallery-list li a > img {position: absolute; display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50%; font-family: 'object-fit: cover; object-position: 50% 50%;';}
#gallery-arc .details .gallery-list li a:hover img{transform: scale(1.1);}
#gallery-arc .details .gallery-list li a .text {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	opacity: 0;
	z-index: 2;
	transition:all .5s ease;
}
#gallery-arc .details .gallery-list li a:hover div {opacity: 1;}
#gallery-arc .details .gallery-list li a div h2 {text-align: center; line-height: 1.2; font-size: 28px; color: #fff; opacity: 0; transform: scale(.7); transition:all .5s ease;}
#gallery-arc .details .gallery-list li a:hover div h2 {opacity: 1; transform: scale(1);}

/*------------------------------------
施工実績(single-gallery.php)
------------------------------------*/
#gallery-single .gallery-heading {text-align: center; padding: 100px 0 90px;}
#gallery-single .gallery-heading .flex {justify-content: center; align-items: center; margin-bottom: 75px}
#gallery-single .gallery-heading .suninaru {display: block; width: 125px; height: auto; margin-right: 20px;}
#gallery-single .gallery-heading h1 {font-size: 42px;}
#gallery-single .gallery-heading h2 {font-size: 30px; line-height: 1.5;}
#gallery-single .gallery-heading .container {width: 600px;}
#gallery-single .gallery-heading .container p {font-size: 16px; margin-top: 40px; text-align: left;}
#gallery-single .details {background: #f2f2ec; padding:135px 0 100px;}
#gallery-single .details.after {background:#fff;}

#gallery-single .img-set {flex-wrap: wrap; justify-content: space-between; align-items: flex-start; padding: 0 0 50px;}
#gallery-single .img-set figure {box-shadow: 0 0 0 1px #21201b;}
#gallery-single .img-set figure img {display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50%; font-family: 'object-fit: cover; object-position: 50%;';}
#gallery-single .img-set figure.half,
#gallery-single .img-set div.width {width: 50%;}
#gallery-single .img-set figure.full {width: 100%;}
#gallery-single .img-set figure.full img {max-height: 554px;}
#gallery-single .img-set figure.half img,
#gallery-single .img-set div.width {max-height: 600px;}
#gallery-single .img-set figure figcaption {font-size: 15px; padding: 8px 16px; background:#fff;}

/*------------------------------------
Renovation(single-Renovation.php)
------------------------------------*/
#reno-single .reno-heading {text-align: center; padding: 100px 0 90px;}
#reno-single .reno-heading .flex {justify-content: center; align-items: center; margin-bottom: 75px}
#reno-single .reno-heading .suninaru {display: block; width: 125px; height: auto; margin-right: 20px;}
#reno-single .reno-heading h1 {font-size: 42px;}
#reno-single .reno-heading h2 {font-size: 30px; line-height: 1.5;}
#reno-single .reno-heading .container {width: 600px;}
#reno-single .reno-heading .container p {display: inline-block; font-size: 16px; margin-top: 40px; text-align: left;}
#reno-single .details {background: #f2f2ec; padding: 100px 0;}
#reno-single .details.after {background:#fff; border-bottom: 1px solid #000;}

#reno-single .img-set {flex-wrap: wrap; justify-content: space-between; align-items: flex-start; padding: 0 0 50px;}
#reno-single .img-set img {display: block; width: 100%; box-shadow: 0 0 0 1px #21201b; object-fit: cover; object-position: 50%; font-family: 'object-fit: cover; object-position: 50%;';}
#reno-single .img-set .half,
#reno-single .img-set .width {width: 50%;}
#reno-single .img-set .full {width: 100%;}
#reno-single .img-set .full img {max-height: 554px;}
#reno-single .img-set .half img,
#reno-single .img-set .width {max-height: 600px;}

/*------------------------------------
会社案内
------------------------------------*/
/*テーブル*/
#company table tr {border-bottom: 1px solid #c7c7c7;}
#company table tr th {width: 180px; text-align: left; font-size: 18px; padding: 9px 3px; box-sizing: border-box;}
#company table tr td {width: 790px; font-size: 18px; padding: 9px 3px; box-sizing: border-box; }

/*headline_txt*/
#company .headline_txt {padding: 0 0 150px;}
#company .headline_txt .container {width: 800px;}
#company .headline_txt h1 {margin: 100px 0;}
#company .headline_txt img {display: block; width: 100%; height: 340px; object-fit: cover; object-position: 50%; font-family: 'object-fit: cover; object-position: 50%;';}
#company .headline_txt .text p {margin-bottom: 0;}
#company .headline_txt .text .comment {margin-bottom: 50px;}
#company .headline_txt .text .right {text-align: right;}
#company .headline_txt .text .right .position{font-size: 18px; margin-right: 5px;}
#company .headline_txt .text .right .name{font-size: 24px;}

/*profile*/
#company .profile {padding: 80px 0; background: #f9f9f6;}
#company .profile .container {width: 970px;}

/*access*/
#company .access {padding: 80px 0;}
#company .access .container {width: 970px;}
#company .access .flex {margin-bottom: 150px; justify-content: center; align-items: center;}
#company .access .flex .left {margin-right: 80px; display: block; width: 420px; height: auto;}
#company .access .flex .left img {display: block; width: 100%; height: 100%;}
#company .access .flex .right i {margin-right: 15px; font-size: 20px;}
#company .access .flex .right p {font-size: 18px; margin-bottom: 5px;}
#company .access .flex .right p:last-child {margin-bottom: 0;}
#company .access .map {width: 100%; height: 500px; background: #fff; margin-bottom: 40px;}

/*history*/
#company .history {padding: 80px 0; background: #f9f9f6;}
#company .history .container {width: 970px;}
#company .history p {font-size: 15px; margin-top: 10px; text-align: right;}

/*-------------------------------------
アーカイブページ
--------------------------------------*/
#archive .headline_txt p {text-align: center;}
#archive .arc-list {margin: 0 auto; background: #f9f9f6; padding: 40px 0;}
#archive .arc-list .container {width: 830px; padding: 100px 0 10px; flex-wrap: wrap;}
#archive .arc-list .entry {width: 400px; background: #fff; border: 1px solid #21201b; margin-bottom: 80px; box-sizing: border-box;}
#archive .arc-list .entry:nth-child(odd) {margin-right: 30px;}
#archive .arc-list .entry .img {display: block; width: 100%; height: 256px; border-bottom: 1px solid #21201b;}
#archive .arc-list .entry .img .thumb {width: 100%; height: 100%;}
#archive .arc-list .entry .img .thumb img {display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50%; font-family: 'object-fit: cover; object-position: 50%;';}
#archive .arc-list .entry .state {padding: 24px; box-sizing: border-box;}
#archive .arc-list .entry .state h2 {font-size: 1.85rem; line-height: 1.5; margin-bottom: 6px;}
#archive .arc-list .entry .state time {align-items: center; margin: 0 0 14px 3px;}
#archive .arc-list .entry .state time i {margin-right: 6px;}
#archive .arc-list .entry .state p {font-size: 1.05rem; line-height: 1.5; margin-bottom: 14px;}
#archive .arc-list .entry .state a {display: inline-block; font-size: 1rem; line-height: 1.1;}
#archive .arc-list .entry .state a i {margin-left: 5px;}
#archive .pager {margin-bottom: 90px; justify-content: center;}
#archive .pager span,
#archive .pager a {margin: 0 5px;}
#archive .pager a {display: block;}
#archive .pager a:hover {background: #333; color: #fff; opacity: 1;}
#archive .pager .current {background: #333; color: #fff;}
#archive .pager .page-numbers {border: 1px solid #333; padding: 6px 12px;}

/*-------------------------------------
シングルページ
--------------------------------------*/
#post {border-bottom: 1px solid #21201b; background: #f9f9f6;}
#post #single {padding: 80px 0 0;}
#post #single .container {padding: 0 0 50px;}

#post #single h1 {font-size: 40px; text-align: center; line-height: 1.5; border-bottom: 1px solid #21201b; padding-bottom: 80px; margin-bottom: 30px; font-weight: 700; font-family: "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Helvetica Neue", HelveticaNeue, Helvetica, Arial, "Segoe UI", sans-serif;}
#post #single .state {margin: 10px 5px 30px;}
#post #single .state time {align-items: center;}
#post #single .state time i {margin-right: 6px;}
#post #single .state ul.post-categories{list-style-type: none; margin-bottom: 0; padding-left: 10px;}
#post #single .state ul.post-categories a{text-decoration: none;}

#post #single .class {justify-content: flex-end; margin-bottom: 30px;}
#post #single .class ul li {list-style-type: none;}
#post #single .class ul li a{text-decoration: none;}
#post #single .single-item .single-img {margin-bottom: 30px; width: 100%; height: 400px;}
#post #single .single-item .single-img img {width: 100%; height: 100%;  object-fit: cover; object-position: center; font-family: 'object-fit: cover; object-position: center;'}

#post .pos-link {display: flex; justify-content: center; margin-top: 80px; list-style-type: none;}
#post .pos-link {padding: 0 0 90px;}
#post .pos-link a {position: relative; display: inline-block; background-color: #333; border: 1px solid #333; color: #fff; text-align: center; text-decoration: none; transition: all .3s;}
#post .pos-link .previous a:after {position: absolute; top: 50%; left: 4em; content: ''; margin-top: -5px; border: 5px solid transparent; border-top-width: 5px; border-bottom-width: 5px; border-left-color: #fff; transition: all .3s; transform: rotate(180deg); }
#post .pos-link .home a {margin: 0 -1px; padding: .8em 5em}
#post .pos-link .previous a {padding: .8em 4em .8em 6em;}
#post .pos-link .next a {padding: .8em 6em .8em 4em;}

#post .pos-link .next a:after {position: absolute; top: 50%; right: 4em; content: ''; margin-top: -5px; border: 5px solid transparent; border-top-width: 5px; border-bottom-width: 5px; border-left-color: #fff; transition: all .3s;}
#post .pos-link a:hover {background-color: #fff; color: #000;}
#post .pos-link a:hover:after {border-left-color: #333;}

#post #single p {margin-bottom: 30px;}
#post #single h2 {font-size: 26px; font-weight: 700; line-height: 1.5; margin: 50px 0 25px;}
#post #single h3 {font-size: 22px; font-weight: 700; line-height: 1.5; margin: 40px 0 20px;}
#post #single h4 {font-size: 18px; font-weight: 700; line-height: 1.5; margin: 30px 0 15px;}

#post #single a {text-decoration: underline;}
#post #single a:hover {text-decoration: none;}
#post #single strong {font-weight: 700;}
#post #single em {font-style: italic;}
#post #single ul,
#post #single ol {margin-bottom: 30px; padding-left: 1.5rem;}
#post #single ul {list-style-type: disc;}
#post #single ul li {list-style-type: inherit;}
#post #single ol {list-style-type: decimal;}
#post #single ol li {list-style-type: inherit;}
#post #single blockquote {background: #eee; padding: 1.25rem 1.75rem; margin-bottom: 30px;}
#post #single blockquote p:last-child {margin-bottom: 0;}
#post #single hr {border-color: #21201b; margin: 30px 0;}

#post #single img {display: block; margin: 30px;}
#post #single p img {margin: 0;}
#post #single .alignleft {margin-right: auto; float: none;}
#post #single .aligncenter {margin: 0 auto; float: none;}
#post #single .alignright {margin-left: auto; float: none;}
#post #single .wp-caption {max-width: 100%; margin: 0 0 30px; float: none;}
#post #single .wp-caption img {width: 100%; height: auto; margin: 0;}
#post #single .wp-caption .wp-caption-text {background: #fff; margin: 0; padding: 5px 10px; box-sizing: border-box;}

#post #single .scrollable-table {margin: 30px 0; overflow-x: auto;}
#post #single table {width: auto;}
#post #single table tr {border-bottom: solid 1px #21201b;}
#post #single table tr:last-child {border-bottom: none;}
#post #single table th,
#post #single table td {padding: 6px 16px; white-space: nowrap;}
#post #single table th {text-align: left;}
#post #single table thead {border-bottom: solid 2px #21201b;}
#post #single table tfoot {border-top: solid 2px #21201b;}
#post #single table thead th,
#post #single table thead td,
#post #single table tfoot th,
#post #single table tfoot td {font-weight: 700;}

/*------------------------------------
お問い合わせ・ご相談
------------------------------------*/
#contact .headline_txt {margin: 0 0 50px; padding: 0;}
#contact .headline_txt p {margin: 0;}
#contact .headline_txt .container {width: 570px;}
#contact .circle {justify-content: center; margin:0 0 50px;}
#contact .circle div {width: 8px; height: 8px; border-radius: 50%; margin-right: 28px;}
#contact .circle div:last-child {margin-right: 0;}
#contact .circle .color-1 {background: #c85b6c;}
#contact .circle .color-2 {background: #fe7568;}
#contact .circle .color-3 {background: #fcca6c;}
#contact .circle .color-4 {background: #548ecc;}
#contact .tel {justify-content: center; margin-bottom: 75px;}
#contact .tel .left {margin-right: 50px; font-size: 35px;}
#contact .tel .right {line-height: 1;}
#contact .tel .right a {align-items: flex-end;}
#contact .tel .right span {font-size: 32px; font-weight: 700; line-height: 1; letter-spacing: 2px; margin-left: 15px;}
#contact .tel .right img.free {width: 42px; height: 28px; opacity: 1;}
#contact .tel .right p {text-align: center; margin: 3px 0 12px; font-size: 14px;}

/*--フォーム--*/
#contact .form {width: 970px; margin: 0 auto; border: #ff901e 1px solid; box-sizing: border-box;background: #F9F9F6;}
#contact .form .container {width: 770px; margin: 50px auto;}
#contact .form .container dl {display: flex; flex-wrap: wrap; justify-content: center; border-bottom: 1px solid #b0b0b0; box-sizing: border-box;}
#contact .form .container dl:last-of-type {border-bottom: none;}
#contact .form .container dl dt {width:220px; font-size: 18px; display: flex; text-align: left; justify-content: space-between; align-items: flex-start; margin-right: 30px; padding: 30px 0;}
#contact .form .container dl dt span {display: inline-block; font-size: 16px; background: #ff4a65; color: #fff; padding: 1px 17px; border-radius: 3px;}
#contact .form .container dl dd {padding: 30px 0; color:#666; width: 500px}

/*--線・高さ・横幅--*/
#contact .checkbox label {display: block!important; width: 500px; margin: 0!important;}
#contact .checkbox p  {width: 500px; margin-bottom: 30px;}
#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact textarea {border: 1px solid #b0b0b0; width: 465px; padding: 10px; background: #fff;}
#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"] {height: 27px;}

/*--お問い合せ内容チェックボックス--*/
#contact .checkbox .mwform-checkbox-field-text {font-family: fot-tsukuardgothic-std, sans-serif; font-weight: 700; font-style: normal;}
#contact .checkbox input[type=checkbox] {display: none;} 
#contact .checkbox input[type=checkbox] + span {display: inline-block; font-size: 18px; font-weight: 700; cursor: pointer; font-style: normal;}
#contact .checkbox input[type=checkbox] + span:before {
	position: relative;
	top: -2px;
	left: 0;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 19px;
	height: 19px;
	font-family: "Font Awesome 5 Free";
	font-size: 13px;
	content: "\f00c";
	font-weight: 900;
	border: 1px solid #b0b0b0;
	border-radius: 3px;
	background: #fff;
	color: #fff;
	margin-right: 10px;
}
#contact .checkbox input[type=checkbox]:checked + span:before {content: "\f00c"; color: #000;}

/*--textareaのサイズ固定--*/
#contact textarea {resize: vertical;}

/*--プライバシーポリシーに同意--*/
#contact .consent h2 {font-size:20px; font-weight: 700; margin-bottom: 20px; padding-bottom: 5px; border-bottom: 1px solid #000;}
#contact .consent .text {margin-bottom: 15px;}
#contact .consent .text .u-line {color: #ff901e;}
#contact .consent .text .u-line i {color: #ff901e; margin-right: 3px;}
#contact .consent .mwform-checkbox-field {display: flex; justify-content: center;}

/*--入力内容を確認--*/
#contact input[type="submit"] {width: 370px; height: 55px; font-size: 23px; border-radius: 45px; margin: 55px auto 0; border: 1px solid #333; background: #333; color: #fff; display: flex; justify-content: center; transition: all .3s ease;font-family: fot-tsukuardgothic-std, sans-serif; font-weight: 700; font-style: normal;}
#contact input[type="submit"]:hover {background: #fff; color:#333;}

#contact .form p.notice {font-size: 18px; text-align: center; margin: 0 0 75px;}

/*------------------------------------
お問い合わせ・ご相談 確認画面
------------------------------------*/
#contact-check .check .check-none {display:none;}
#contact-check .check .checkbox p,
#contact-check .check dl dd,
#contact-check .check dl dt{font-size: 18px;}

/*--フォーム--*/
#contact-check .check {width: 970px; margin: 0 auto; border: #ff901e 1px solid; box-sizing: border-box; background: #F9F9F6;}
#contact-check .check .container {width: 770px; margin: 50px auto; }
#contact-check .check p.sans {font-size: 20px; text-align: center; font-weight: 700; padding: 30px 0; white-space: nowrap; margin: 0px -30px;}
#contact-check .check dl {display: flex; flex-wrap: wrap; justify-content: center; border-bottom: 1px solid #b0b0b0; box-sizing: border-box;}
#contact-check .check dl:last-of-type {border-bottom: none;}
#contact-check .check dl dt {width: 220px; color: #666; display: flex; text-align: left; justify-content: space-between; align-items: flex-start; margin-right: 30px; padding: 30px 0;}
#contact-check .check dl dd {padding: 30px 0; color:#666; width: 500px;}

/*--線・高さ・横幅--*/
#contact-check .check .checkbox label {display: block!important; width: 500px; margin: 0!important;}
#contact-check .check .checkbox p {color: #666; width: 500px; margin: 30px 0; display: flex; align-items: center;}
#contact-check .check input[type="text"],
#contact-check .check input[type="email"],
#contact-check .check input[type="tel"],
#contact-check .check textarea {border: 1px solid #b0b0b0; width: 465px; padding: 10px; background: #fff;}
#contact-check .check input[type="text"],
#contact-check .check input[type="email"],
#contact-check .check input[type="tel"] {height: 27px;}

/*--プライバシーポリシーに同意--*/
#contact-check .check .consent {display: none}

/*--入力内容を確認--*/
#contact-check .check .submit {margin: 55px auto 0; padding-bottom: 30px;}
#contact-check .check .submit input {width: 370px; height: 55px; font-size: 23px; border-radius: 45px; margin: 10px auto 0; border: 1px solid #333; background: #333; color: #fff; display: flex; justify-content: center; transition: all .3s ease;font-family: fot-tsukuardgothic-std, sans-serif; font-weight: 700; font-style: normal;}
#contact-check .check .submit input:hover {background: #fff; color:#333;}

/*------------------------------------
お問い合わせ・ご相談 送信完了
------------------------------------*/
/*--トップページへ--*/
#contact-check .check .home {width: 370px; height: 55px; font-size: 23px; border-radius: 45px; margin: 55px auto 0; border: 1px solid #333; background: #333; color: #fff; display: flex; justify-content: center; align-items: center; transition: all .3s ease; font-family: fot-tsukuardgothic-std, sans-serif; font-weight: 700; font-style: normal;}
#contact-check .check .home:hover {background: #fff; color:#333;}
