@charset "utf-8";

/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 Body
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
body {
	position: relative;
	overflow: hidden;
	font-size: 100%;
	word-wrap: break-word;
	-webkit-overflow-scrolling: touch;
	-webkit-text-size-adjust: none;
}
a {
	color: #000;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	opacity: 1;
	filter: alpha(opacity=100);
	-moz-opacity: 1;
}
.sp, .nobr {
	display: none!important;
}

/*reCAPTCHAタグ配置場所設定*/
.grecaptcha-badge {
  /*left: 0 !important;
  right: auto !important;*/
  bottom: 90px !important;
  z-index: 90000;
  /*display: none !important;
  position: fixed !important;*/
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 Header
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
header {
	position: fixed;
    width: 100%;
	height: 120px;
	display: flex;
		justify-content: flex-start;
        align-content: center;
		align-items: center;
    z-index: 10000;
}
header .header_bg {
	position: absolute;
	width: 100%;
	height: 120px;
    top: -120px;
    left: 0;
	display: block;
    background: rgba(255,255,255,1);
    transition: all 0.2s ease;
    opacity: 1;
}
header .header_bg.appear {
    width: 100%;
    height: 120px;
    top: 0!important;
    transition: all 0.4s ease;
    opacity: 1;
}
header a.headerLogo {
	position: absolute;
    width: 18%;
    max-width: 276px;
    height: 65px;
    left: 20px;
	display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
    z-index: 20000;
    background: url("../images/logo.svg") no-repeat left center;
    background-size: contain;
}
header a.btnContact {
	position: absolute;
    width: 120px;
    height: 140px;
    top: 0;
    right: 20px;
    display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
        flex-wrap: wrap;
    background: #a7ce1f;
}
header a.btnContact::before {
	content: '';
    width: 100%;
    height: 60px;
    display: block;
    background: url("../images/icon_mail.svg") no-repeat center center;
    background-size: 36px 36px;
	filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(355deg) brightness(122%) contrast(116%);
}
header a.btnContact::after {
    content: 'CONTACT';
    width: 80%;
    height: 40px;
    display: flex;
		justify-content: center;
        align-content: center;
		align-items: center;
    margin: 5px auto 0;
	padding-top: 5px;
    font: 300 1.4em/1em "futura-pt", Arial, "sans-serif";
    color: #fff;
    border-top: solid 1px #fff;
}
header a.btnContact:hover {
	opacity: 0.7;
	transition: all 200ms;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【ヘッダー】グローバルナビ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.openMenu {
	position: absolute;
    width: calc(80% - 120px);
    max-width: 960px;
    height: 50px;
    top: 35px;
    right: 120px;
    display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
    box-sizing: border-box;
}
.btn_nav {
	display: none;
}
.open_nav,
.close_nav {
	display: none;
}
.sp_nav_wrap {
	width: 100%;
	display: block;
}
.sp_nav {
	width: 100%;
	height: 50px;
	display: block;
}
.sp_nav ul.sp_nav_menu {
	width: 100%;
	height: 50px;
    display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		/*flex-wrap: wrap;*/
    padding: 0 20px;
    box-sizing: border-box;
}
.sp_nav ul.sp_nav_menu li {
	position: relative;
    width: 20%;
    height: 50px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
}
.sp_nav ul.sp_nav_menu li:nth-of-type(1) {
	width: 16%;
}
.sp_nav ul.sp_nav_menu li:nth-of-type(2) {
	width: 24%;
}
.sp_nav ul.sp_nav_menu li+li::before {
	position: absolute;
    content: '/';
    left: 0;
    font-size: 1.6em;
    color: #ccc;
}
.sp_nav ul.sp_nav_menu li.nopc {
	display: none;
}
.sp_nav ul.sp_nav_menu li a {
	width: 100%;
    height: 50px;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
    font-size: 1.5em;
    line-height: 1em;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
}
.sp_nav ul.sp_nav_menu li a:nth-of-type(1) {
	font-family: Arial, "sans-serif";
}
.sp_nav ul.sp_nav_menu li a:hover {
	transition: all 200ms;
    opacity: 0.5;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 Common
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
main {
	position: relative;
	width: 100%;
	display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
    padding-top: 120px;
	background: url("../images/title_bg.webp") no-repeat top right;

}
.wrap {
    width: 100%;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
}
.block {
    position: relative;
    width: 90%;
    max-width: 1400px;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
    margin: 0 auto;
}
.reverse {
	flex-direction: row-reverse;
}

/*ページタイトル*/
.pageTitle {
    position: relative;
    width: 100%;
    height: 240px;
	display: flex;
		justify-content: space-between;
        align-content: center;
        align-items: center;
		flex-wrap: wrap;
    margin-bottom: 40px;
    box-sizing: border-box;
}
.pageTitle h2 {
    width: 30%;
    height: 160px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
	z-index: 1000;
    margin: 0 0 -80px;
    padding: 0 5%;
    font-size: 1.8em;
	line-height: 1em;
    color: #fff;
    background: #443e3c;
    box-sizing: border-box;
}
.pageTitle h2 span {
    width: 100%;
	display: block;
	margin-bottom: 10px;
    font: 300 3.6em/1em futura-pt, Arial, "sans-serif";
    color: #a7ce1f;
}
.pageTitle .pageBack {
    width: 80%;
    height: 100px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
    padding: 0 0 0 32%;
    color: #fff;
	background: linear-gradient(to right, rgba(167,206,31,1) 30%, rgba(167,206,31,0));
    box-sizing: border-box;
}
.pageTitle .pageBack a {
    width: auto;
    height: 20px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
    font: 300 1.8em/1em futura-pt, Arial, "sans-serif";
    color: #fff;
    box-sizing: border-box;
}
.pageTitle .pageBack a::before {
    content: '';
	width: 16px;
    height: 16px;
	display: inline-block;
    margin-right: 10px;
    background: url("../images/arrow.svg") no-repeat center center;
    background-size: contain;
	transform: rotate(180deg);
	filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(355deg) brightness(122%) contrast(116%);
}
.pageTitle .pageBack a:hover {
    text-decoration: underline;
}

/*【共通】ボタンデザイン*/
.btnBlock {
	width: 100%;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
}
a.btnDetail {
	width: 240px;
	height: 60px;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
	font: 200 1.4em/1em futura-pt, Arial, "sans-serif";
    letter-spacing: 0.05em;
    color: #fff;
    border-radius: 2px;
    background: #a7ce1f;
	box-sizing: border-box;
}
a.btnDetail::before {
	content: '';
    width: 16px;
	height: 16px;
	display: inline-block;
    margin-right: 10px;
    background: url("../images/arrow.svg") no-repeat center center;
    background-size: contain;
	filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(355deg) brightness(122%) contrast(116%);
}
a.btnDetail:hover {
	transition: all 200ms;
    opacity: 0.7;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home {
	padding-top: 0;
	background: none;
}
#home .title {
	position: relative;
    width: 100%;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
    font-size: 1.6em;
	line-height: 1em;
}
#home .title::before {
	position: absolute;
    content: '';
    width: 50px;
    height: 4px;
    bottom: 40px;
	display: block;
	border-radius: 2px;
    background: #a7ce1f;
}
#home .title::after {
	position: absolute;
    content: '';
    width: 8px;
    height: 4px;
    bottom: 40px;
	left: 54px;
	display: block;
	border-radius: 2px;
    background: #a7ce1f;
}
#home .title span {
	width: 100%;
	display: block;
    margin-bottom: 20px;
    padding-bottom: 20px;
    font: 300 3.2em/1em futura-pt, Arial, "sans-serif";
    color: #a7ce1f;
}
#ab,
#se,
#co {
	position: absolute;
	width: 1px;
	left: 0;
    display: block;
}
#ab {
	height: 60px;
	top: -60px;
}
#se {
	height: 120px;
	top: -120px;
}
#co {
	height: 80px;
	top: -80px;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】メインビジュアル
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .mainVisual {
	position: relative;
	width: 100%;
	max-height: 1080px;
	display: flex;
		justify-content: space-between;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
	padding-top: 400px;
    background: url("../images/top/main_model_bg.webp") no-repeat right top 20px;
	background-size: 62.5%;
    box-sizing: border-box;
	transition: all 200ms;
}
@media screen and (max-width: 1600px) {
#home .mainVisual {
	max-height: 960px;
}
}
@media screen and (max-width: 1400px) {
#home .mainVisual {
	max-height: 800px;
}
}
@media screen and (max-width: 1200px) {
#home .mainVisual {
	max-height: 640px;
}
}
#home .mainVisual .main_copy {
	position: absolute;
	width: 480px;
	top: calc(50% - 30%);
	left: 5%;
	display: block;
	z-index: 4000;
	transition: all 200ms;
}
#home .mainVisual .main_copy p {
	position: absolute;
	width: auto;
	bottom: 8px;
	right: -130px;
	display: block;
	font-size: 1.6em;
	font-weight: bold;
	line-height: 1.7em;
	color: #a7ce1f;
    box-sizing: border-box;
}
@media screen and (max-width: 1280px) {
#home .mainVisual .main_copy {
	width: 400px;
	left: 2%;
}
#home .mainVisual .main_copy p {
	font-size: 1.5em;
	line-height: 1.6em;
}
}
#home .mainVisual img.main_photo {
	width: 62.5%;
	max-height: 560px;
	display: block;
    z-index: 1000;
	object-fit: cover;
	object-position: 100% 50%;
}
#home .mainVisual img.main_model {
	position: absolute;
    width: 62.5%;
	top: 20px;
    right: 0;
	display: block;
    z-index: 3000;
	object-fit: contain;
	object-position: 50% 50%;
}
@media screen and (min-width: 1920px) {
#home .mainVisual {
	background-size: 1200px;
}
#home .mainVisual img.main_model {
	width: 1200px;
}
}

/*-- 【Home】お知らせ --*/
#home .homeNews_bg {
    position: absolute;
    width: 50%;
	min-height: 240px;
	bottom: -40px;
	right: 0;
	display: block;
	z-index: 2000;
	background: #443e3c;
}
#home .homeNews {
    position: absolute;
    width: 50%;
	bottom: -40px;
	right: 0;
	display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
	z-index: 4000;
	padding: 0 40px;
    box-sizing: border-box;
}
#home .homeNews .homeNews_title {
	width: 100%;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
    margin-bottom: 20px;
    font: 300 3.4em/1em futura-pt, Arial, "sans-serif";
    color: #a7ce1f;
}
#home .homeNews a.news_btn {
	position: absolute;
    width: auto;
    height: 30px;
    top: 10px;
    right: 20px;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	font: 300 1.6em/1em futura-pt, Arial, "sans-serif";
	color: #fff;
	box-sizing: border-box;
}
#home .homeNews a.news_btn::before {
	content: '';
	width: 16px;
    height: 16px;
	display: inline-block;
	background: url("../images/arrow.svg") no-repeat center center;
	background-size: contain;
	filter: invert(87%) sepia(41%) saturate(858%) hue-rotate(16deg) brightness(87%) contrast(88%);
}
#home .homeNews .inner {
	position: relative;
    width: calc(100%);
	min-height: 140px;
	display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		flex-wrap: wrap;
    padding: 0 20px;
	z-index: 5000;
    box-sizing: border-box;
}
#home .homeNews a.news_btn:hover {
	text-decoration: underline;
    color: #a7ce1f;
}
#home .homeNews dl.list {
	width: 100%;
	display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	padding: 15px 0;
	font-size: 1.3em;
	line-height: 1.4em;
	color: #fff;
    box-sizing: border-box;
}
#home .homeNews dl.list dt {
	position: relative;
    width: 140px;
	display: inline-block;
}
#home .homeNews dl.list dd {
	width: calc(100% - 140px);
	display: inline-block;
}
#home .homeNews dl.list dd a {
	color: #fff;
}
#home .homeNews dl.list dd a:hover {
	text-decoration: underline;
    color: #a7ce1f;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】当社について
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .homeAbout {
	position: relative;
	width: 100%;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
    padding: 120px 0;
    background: url("../images/top/about_bg.webp") no-repeat right top;
	background-size: 53.125%;
}
#home .homeAbout section {
	position: relative;
    width: 90%;
    max-width: 1400px;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 0 auto;
    box-sizing: border-box;
}
#home .homeAbout .title {
	width: 100%;
    display: block;
	margin-bottom: 80px;
}
#home .homeAbout dl {
	width: 70%;
    display: flex;
		justify-content: space-between;
		align-content: space-around;
		align-items: center;
        flex-wrap: wrap;
}
#home .homeAbout dl dt {
	width: 100%;
    display: block;
	font-size: 2.8em;
    font-weight: 700;
    line-height: 1.4em;
	font: 700 2.8em/1.6em "source-han-serif-jp-subset","游明朝","Yu Mincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ＭＳ Ｐ明朝","MS PMincho",serif;
}
#home .homeAbout dl dd {
	width: 100%;
    display: block;
    margin-top: 20px;
	font-size: 1.6em;
    line-height: 1.8em;
    text-align: justify;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】事業内容
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .homeService {
	position: relative;
	width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin: 40px 0 320px;
    box-sizing: border-box;
}
#home .homeService .title {
	width: 90%;
	max-width: 1400px;
    display: block;
	margin: 0 auto;
}
#home .homeService section {
	position: relative;
	width: 83.333%;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	margin-top: 80px;
    padding: 80px;
	background: url("../images/top/service_grid.webp") repeat center center #a7ce1f;
    box-sizing: border-box;
}
#home .homeService section:nth-of-type(odd) {
	margin-left: auto;
}
#home .homeService section:nth-of-type(even) {
	flex-direction: row-reverse;
	margin-right: auto;
}
#home .homeService section::after {
	position: absolute;
	content: '';
	aspect-ratio: 1/1;
	bottom: 20px;
	right: 20px;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
    box-sizing: border-box;
	opacity: 0.2;
}
#home .homeService section:nth-of-type(1)::after {
	width: 300px;
	bottom: 20px;
	right: 20px;
	background: url("../images/top/service_01_icon.svg") no-repeat center center;
	background-size: contain;
}
#home .homeService section:nth-of-type(2)::after {
	width: 240px;
	bottom: 0;
	left: 20px;
	background: url("../images/top/service_02_icon.svg") no-repeat center center;
	background-size: contain;
}
#home .homeService section:nth-of-type(3)::after {
	width: 240px;
	bottom: 20px;
	right: 20px;
	background: url("../images/top/service_03_icon.svg") no-repeat center center;
	background-size: contain;
}
#home .homeService section img.photo {
	width: 45%;
    display: block;
	margin-left: -15%;
	box-shadow: 10px 10px 0 0 rgba(0,0,0,0.2);
}
#home .homeService section:nth-of-type(even) img.photo {
	margin-right: -15%;
	box-shadow: -10px 10px 0 0 rgba(0,0,0,0.2);
}
#home .homeService .textBox {
	position: relative;
	width: 62%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
	align-self: stretch;
    box-sizing: border-box;
}
#home .homeService section:nth-of-type(even) .textBox {
	justify-content: flex-end;
}
#home .homeService .textBox::before {
	position: absolute;
	content: '';
	width: 2px;
	height: 240px;
	top: -160px;
	left: -5%;
	right: inherit;
    display: block;
	background: #006837;
}
#home .homeService section:nth-of-type(even) .textBox::before {
	left: inherit;
	right: -5%;
}
#home .homeService .textBox .number {
	position: absolute;
	width: auto;
	top: -60px;
	right: -60px;
	left: inherit;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
    font: 300 12em/1em futura-pt, Arial, "sans-serif";
    color: #fff;
}
#home .homeService section:nth-of-type(even) .textBox .number {
	left: -60px;
	right: inherit;
}
#home .homeService .textBox h3 {
	width: 100%;
    display: block;
    margin: 20px 0;
	font-size: 2.4em;
	font-weight: 700;
    line-height: 1.2em;
	color: #006837;
}
#home .homeService section:nth-of-type(even) .textBox h3 {
	text-align: right;
}
#home .homeService .textBox dl {
	width: 85%;
    display: flex;
		justify-content: space-between;
		align-content: space-around;
		align-items: center;
        flex-wrap: wrap;
	margin-top: 80px;
}
#home .homeService .textBox dt {
	width: 100%;
    display: block;
	font: 700 2.8em/1.6em "source-han-serif-jp-subset","游明朝","Yu Mincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ＭＳ Ｐ明朝","MS PMincho",serif;
	letter-spacing: 0.1em;
}
#home .homeService .textBox dd {
	width: 100%;
    display: block;
    margin-top: 20px;
	font-size: 1.6em;
    line-height: 1.8em;
    text-align: justify;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】施工実績
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .homeProject {
	position: relative;
    width: 100%;
	min-height: 360px;
	display: flex;
		justify-content: center;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
    padding: 80px 0;
	background: #443e3c;
    box-sizing: border-box;
}
#home .homeProject .inner {
	position: absolute;
    width: 90%;
    max-width: 1400px;
    display: flex;
		justify-content: space-between;
        align-content: center;
        align-items: center;
		flex-wrap: wrap;
    align-self: stretch;
    margin: 0 auto;
}
#home .homeProject .homeProject_text {
	width: 30%;
    height: 420px;
    display: flex;
		justify-content: flex-start;
		align-content: space-between;
		align-items: flex-start;
        flex-wrap: wrap;
	align-self: stretch;
    margin: -240px 0 0 0;
    box-sizing: border-box;
}
#home .homeProject .homeProject_text p {
	width: 100%;
    display: block;
	margin-top: 40px;
	font: 400 2.8em/1.6em "source-han-serif-jp-subset","游明朝","Yu Mincho","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ＭＳ Ｐ明朝","MS PMincho",serif;
	letter-spacing: 0.1em;
	color: #fff;
}
@media screen and (max-width: 1440px) {
#home .homeProject .homeProject_text p {
	font-size: 2.4em;
    line-height: 1.6em;
}
}
@media screen and (max-width: 1280px) {
#home .homeProject .homeProject_text p {
	font-size: 2.2em;
    line-height: 1.4em;
}
}
#home .homeProject a.btnDetail {
	margin: 0;
}

/*スライド*/
#home .homeProject .slideBlock {
	position: relative;
    width: 60%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
    /*overflow: hidden;*/
    margin: -280px 0 0 auto;
}
@media screen and (max-width: 1600px) {

}
#home .homeProject .slideBlock ul.slider {
    position: relative;
    width: 120%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
}
#home .homeProject .slideBlock ul.slider li {
    width: 300px;
    display: block;
	align-self: stretch;
    margin: 0 15px;
    background: #fff;
    box-sizing: border-box;
	box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);
}
#home .homeProject .slideBlock ul.slider li img {
    width: 100%;
    aspect-ratio: 5/6;
	display: block;
	object-fit: cover;
	object-position: 50% 50%;
}
#home .homeProject .slideBlock ul.slider li div {
	width: 100%;
    display: block;
    padding: 20px;
	box-sizing: border-box;
}
#home .homeProject .slideBlock ul.slider li div h3 {
	width: 100%;
	height: 2.8em;
    display: block;
	overflow: hidden;
	font-size: 1.5em;
    line-height: 1.4em;
}
#home .homeProject .slideBlock ul.slider li div span {
	width: 100%;
    display: block;
    margin-top: 10px;
	font-size: 1.2em;
    line-height: 1.2em;
}

/* Arrows */
#home .homeProject .slick-prev,
#home .homeProject .slick-next {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: 0;
    display: block;
    z-index: 1000;
    padding: 0;
    font-size: 0;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 20px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
#home .homeProject .slick-prev {
    left: -120px;
    background: #a7ce1f;
}
#home .homeProject .slick-prev::before {
    content: '';
	width: 40px;
    height: 40px;
	display: block;
    background: url("../images/arrow.svg") no-repeat center center;
    background-size: 16px 16px;
	transform: rotate(180deg);
	filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(355deg) brightness(122%) contrast(116%);
}
[dir="rtl"] .slick-prev {
    left: -120px;
    right: auto;
}
#home .homeProject .slick-next {
    left: -60px;
    background: #a7ce1f;
}
#home .homeProject .slick-next::before {
    content: '';
	width: 40px;
    height: 40px;
	display: block;
    background: url("../images/arrow.svg") no-repeat center center;
    background-size: 16px 16px;
	filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(355deg) brightness(122%) contrast(116%);
}
[dir="rtl"] .slick-next {
    left: -60px;
    right: auto;
}
#home .homeProject .slick-prev:hover,
#home .homeProject .slick-next:hover {
    transition: all 200ms;
    opacity: 0.7;
}
#home .homeProject .slick-prev:focus,
#home .homeProject .slick-next:focus {
    /*outline: none;
    background: transparent;
    color: transparent;*/
}
#home .homeProject .slick-prev:hover:before,
#home .homeProject .slick-prev:focus:before,
#home .homeProject .slick-next:hover:before,
#home .homeProject .slick-next:focus:before {
    opacity: 1;
}
#home .homeProject .slick-prev.slick-disabled:before,
#home .homeProject .slick-next.slick-disabled:before {
    opacity: 0.25;
}
#home .homeProject .slick-prev:before,
#home .homeProject .slick-next:before {
    outline: none;
    font-family: "slick";
    font-size: 0;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Dots */
#home .homeProject .slick-dotted.slick-slider {
    
}
#home .homeProject .slick-dots {
    position: absolute;
    width: 100%;
	bottom: -60px;
	left: 0;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
    z-index: 1000;
    padding: 0 10px;
    list-style: none;
    box-sizing: border-box;
}
#home .homeProject .slick-dots li {
    position: relative;
    width: 60px;
	height: 3px;
    display: block;
    margin: 0 0 0 10px!important;
    cursor: pointer;
}
#home .homeProject .slick-dots li button {
    width: 60px;
	height: 3px;
	display: block;
    margin: 0;
	font-size: 0;
    cursor: pointer;
    border: 0;
    outline: none;
	background: #fff;
	opacity: 1;
}
#home .homeProject .slick-dots li button:hover,
#home .homeProject .slick-dots li button:focus {
    outline: none;
	background: #FFF;
	opacity: 1;
}
#home .homeProject .slick-dots li button:hover::before {
    background: #0074be;
	opacity: 1;
}
#home .homeProject .slick-dots li button:focus::before {
    background: #0074be;
	opacity: 0;
}
#home .homeProject .slick-dots li button::before {
    position: absolute;
	width: 60px;
    height: 3px;
	top: 0;
    left: 0;
    margin: 0;
	font-family: 'slick';
    content: '';
    opacity: 0.3;
	background: #0074be;
}
#home .homeProject .slick-dots li.slick-active button:before {
    opacity: 1;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
施工実績
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#project {
	margin: 0 0 120px;
}
#project ul.projectList {
	width: 90%;
    max-width: 1400px;
    display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
    margin: 0 auto;
}
#project ul.projectList li {
    width: 30%;
    display: block;
	align-self: stretch;
    margin: 0 0 60px;
	border-bottom: solid 1px #aaa;
    background: #fff;
    box-sizing: border-box;
}
#project ul.projectList li img {
    width: 100%;
    aspect-ratio: 1/1;
	display: block;
	object-fit: cover;
	object-position: 50% 50%;
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
}
#project ul.projectList li div {
	width: 100%;
    display: flex;
		justify-content: flex-start;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
    padding: 25px 0;
	border-bottom: solid 1px #aaa;
	box-sizing: border-box;
}
#project ul.projectList li div h3 {
	width: 100%;
	height: 2.4em;
    display: block;
	overflow: hidden;
	font-size: 1.5em;
    line-height: 1.2em;
}
#project ul.projectList li div span {
	width: 100%;
    display: block;
    margin-top: 10px;
	font-size: 1.2em;
    line-height: 1.2em;
}
#project ul.projectList li dl {
	width: 100%;
    display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
    margin: 15px 0;
	box-sizing: border-box;
}
#project ul.projectList li dl dt {
	width: 4em;
    display: inline-block;
    font-size: 1.2em;
    line-height: 1.4em;
	text-align-last: justify;
	color: #a7ce1f;
}
#project ul.projectList li dl dd {
	width: calc(100% - 6em);
    display: inline-block;
    font-size: 1.2em;
    line-height: 1.4em;
	text-align: justify;
}
#project .projectList_other {
	width: 90%;
    max-width: 1400px;
    display: flex;
		justify-content: space-between;
        align-content: flex-start;
        align-items: flex-start;
		flex-wrap: wrap;
    margin: 0 auto;
	transition: all 800ms;
}

/*表示・非表示ボタン*/
#toggle {
    display: none;
}
.btn {
    position: absolute;
	width: 200px;
	height: 40px;
	bottom: -60px;
	display: flex;
		justify-content: center;
        align-content: center;
        align-items: center;
    margin: 0 auto;
	font-size: 1.4em;
    line-height: 1em;
    color: #fff;
    border-radius: 20px;
    cursor: pointer;
	background: #a7ce1f;
}
.btn::before {
    content: '全て表示';
}
#toggle:checked ~ .btn {
    background: #ccc;
}
#toggle:checked ~ .btn::before {
    content: '閉じる';
}
.hidden {
    max-height: 330px;
	display: block;
	overflow: hidden;
}
#toggle:checked ~ .hidden {
    max-height: 9000px;
	display: block;
	overflow: visible;
}

#project .projectList_other table {
    width: 100%;
    display: table;
	border-top: solid 1px #ccc;
	border-left: solid 1px #ccc;
}
#project .projectList_other table th,
#project .projectList_other table td {
    display: table-cell;
    padding: 15px;
    vertical-align: top;
	border-bottom: solid 1px #ccc;
	border-right: solid 1px #ccc;
}
#project .projectList_other table th {
    padding: 20px 15px;
	font-size: 1.3em;
	font-weight: bold;
	line-height: 1em;
	letter-spacing: 0.1em;
    text-align: center;
	color: #a7ce1f;
	background: #443e3c;
}
#project .projectList_other table th:nth-of-type(1) {
    width: 30%;
}
#project .projectList_other table th:nth-of-type(2) {
    width: 10%;
}
#project .projectList_other table th:nth-of-type(3) {
    width: 10%;
}
#project .projectList_other table th:nth-of-type(4) {
    width: 10%;
}
#project .projectList_other table th:nth-of-type(5) {
    width: 40%;
}
#project .projectList_other table td {
    font-size: 1.3em;
	line-height: 1.6em;
}
#project .projectList_other table td:nth-of-type(2),
#project .projectList_other table td:nth-of-type(3),
#project .projectList_other table td:nth-of-type(4) {
    text-align: center;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
【Home】企業情報
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#home .homeCompany {
	position: relative;
	width: 100%;
	min-height: 800px;
    display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
    padding: 80px 0 120px;
	background: url("../images/top/company_bg.webp") no-repeat left bottom;
	background-size: 50%;
    box-sizing: border-box;
}
#home .homeCompany .title {
	width: 100%;
    display: block;
	margin-bottom: 80px;
}
#home .homeCompany table {
    width: 50%;
    display: table;
}
#home .homeCompany table th,
#home .homeCompany table td {
    display: table-cell;
    padding: 15px 0;
    vertical-align: top;
}
#home .homeCompany table th {
    width: 160px;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1.8em;
    text-align: left;
	color: #888;
}
#home .homeCompany table td {
    font-size: 1.4em;
	line-height: 1.8em;
}
#home .homeCompany .rBox {
	width: 48%;
    display: flex;
		justify-content: center;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
    box-sizing: border-box;
}
#home .homeCompany .rBox img.gaikan {
	width: 100%;
    display: block;
	margin-bottom: 40px;
}
#home .homeCompany .rBox iframe {
	width: 100%;
	height: 600px;
    display: block;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 ニュース
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#news {
	margin-bottom: 40px;
}
#news .block {
	width: 90%;
    max-width: 1400px;
    margin: 0 auto 40px;
}
#news dl.list {
	width: 100%;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		/*flex-wrap: wrap;*/
	padding: 30px 0;
    border-bottom: solid 1px #ddd;
}
#news dl.list dt {
	position: relative;
	width: 180px;
	display: flex;
		justify-content: space-between;
		align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
	font-size: 1.4em;
	line-height: 1.8em;
    color: #999;
	box-sizing: border-box;
}
#news dl.list dd {
	width: calc(100% - 180px);
	float: right;
	font-size: 1.4em;
	line-height: 1.8em;
}
#news dl.list dd a:hover {
	color: #0066CC;
}
.wp-pagenavi {
	width: 100%;
	display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
	margin: 20px auto 40px;
	text-align: center;
	font-size: 1.4em;
	line-height: 1em;
}
.wp-pagenavi a,
.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.prevpostslink {
	min-width: 40px;
    height: 40px;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
    margin: 0 5px;
	text-decoration: none;
    border: none;
    background: #f5f5f5;
    box-sizing: border-box;
}
.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.prevpostslink {
	border: none;
}
.wp-pagenavi a:hover {
	border-color: #a7ce1f;
}
.wp-pagenavi a,
.wp-pagenavi span {
    border: none;
	box-sizing: border-box;
}
.wp-pagenavi a.page,
.wp-pagenavi span.pages {
    border: none;
}
.wp-pagenavi span.current {
	width: 40px;
    height: 40px;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
    margin: 0 5px;
	font-weight: bold;
	color: #FFF;
	border: none;
	background: #a7ce1f;
    box-sizing: border-box;
}
.wp-pagenavi span.extend {
	padding: 5px 10px;
    border: none;
}
.wp-pagenavi .first,
.wp-pagenavi .last {
	width: 60px;
    height: 40px;
    display: flex;
		justify-content: center;
		align-content: center;
		align-items: center;
    margin: 0 5px;
	font-size: 0.9em;
	color: #a7ce1f;
	border: solid 1px #a7ce1f;
	background: #fff;
    box-sizing: border-box;
}

/*-- News（詳細ページ） --*/
#news .date {
	width: 100%;
	display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
	margin: 20px auto;
	font-size: 1.4em;
	line-height: 1em;
	color: #999;
}
#news h3.articleTitle {
	width: 100%;
	float: both;
	margin: 0 auto;
	padding-bottom: 30px;
	font-size: 2em;
	line-height: 1.2em;
	border-bottom: solid 1px #CCC;
}
#news .content {
	width: 100%;
    display: block;
	padding: 20px 0;
    font-size: 1.4em;
	line-height: 1.8em;
}
#news .content p {
	width: 100%;
    display: block;
    padding: 10px 0;
	font-size: 1em;
}
#news .content a {
	text-decoration: underline;
	color: #06C;
}
#news .content .aligncenter {
	display: block;
    margin-left: auto;
    margin-right: auto;
}
.pageNavi {
	position: relative;
	width: 100%;
    min-height: 60px;
	display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
		/*flex-wrap: wrap;*/
    margin: 0 auto;
	border-top: solid 1px #CCC;
}
.pageNavi .prev,
.pageNavi .next {
	width: 45%;
	display: block;
}
.pageNavi .prev a,
.pageNavi .next a {
	height: 60px;
    display: flex;
		align-content: center;
		align-items: center;
    font-size: 1.2em;
	line-height: 1.2em;
	text-decoration: none;
    box-sizing: border-box;
}
.pageNavi .prev a {
	justify-content: flex-start;
}
.pageNavi .prev a::before {
	content: '';
	width: 10px;
	height: 10px;
	margin-right: 5px;
	background: url("../images/arrow.svg") no-repeat center center;
	background-size: contain;
	transform: rotate(180deg);
}
.pageNavi .next a {
	justify-content: flex-end;
}
.pageNavi .next a::after {
	content: '';
	width: 10px;
	height: 10px;
	margin-left: 5px;
	background: url("../images/arrow.svg") no-repeat center center;
	background-size: contain;
}
.pageNavi a.btnList {
	position: absolute;
    width: 10%;
    left: calc(50% - 5%);
	display: block;
}
.pageNavi a.btnList span {
	width: 90%;
	max-width: 30px;
	height: 1px;
	display: block;
	margin: 7px auto;
	background: #000;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
お問い合わせ
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#form .telBlock {
	width: 100%;
    display: flex;
		justify-content: center;
        align-content: flex-start;
		align-items: flex-start;
		flex-wrap: wrap;
    margin: 40px auto;
}
#form .telBlock .tel {
	width: 100%;
    display: block;
	font: 300 2.4em/1.2em "futura-pt", Arial, "sans-serif";
    text-align: center;
}
#form .telBlock .tel span {
	font-size: 1.6em;
	line-height: 1.2em;
}
#form .telBlock p {
	width: 100%;
	display: block;
	font-size: 1.4em;
	line-height: 1.6em;
    text-align: center;
}


/*■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
Footer
■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
footer {
	position: relative;
    width: 100%;
	display: flex;
		justify-content: center;
		align-content: space-between;
		align-items: center;
        flex-wrap: wrap;
	padding: 40px 0;
    background: url("../images/footer_bg.webp") no-repeat right bottom;
    background-size: cover;
    box-sizing: border-box;
}
footer #page-top{
	position: fixed;
	width: 60px;
	right: 20px;
	bottom: 0;
	z-index: 30000;
    border-radius: 30px;
	background: #a7ce1f;
}
footer .inner {
	position: relative;
    width: 90%;
    max-width: 1400px;
	height: 400px;
    display: flex;
		justify-content: space-between;
		align-content: space-between;
		align-items: center;
        flex-wrap: wrap;
    margin: 0 auto;
}
footer .info {
	position: relative;
    width: 100%;
	height: 90%;
    display: flex;
		justify-content: flex-start;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
}
footer .info a.logo {
    width: 300px;
	display: block;
}
footer .info a.logo img {
    width: 100%;
	display: block;
}
footer .info address {
	width: 100%;
    display: flex;
		justify-content: flex-start;
		align-content: flex-start;
		align-items: flex-start;
        flex-wrap: wrap;
    margin-top: 20px;
}
footer .info address p {
	width: auto;
    display: block;
	font-size: 1.4em;
    line-height: 1.8em;
}
footer .info address p a {
	text-decoration: none;
}
footer .bottom {
	width: 100%;
    display: flex;
		justify-content: space-between;
		align-content: center;
		align-items: center;
        flex-wrap: wrap;
}
footer .bottom .copyright {
	width: 100%;
    display: block;
	font: 300 1.2em/1em "futura-pt", Arial, "sans-serif";
}
footer img.copy {
	position: absolute;
    width: auto;
	height: 80%;
    right: 40%;
    display: block;
}