@charset "utf-8";
@import url("style_mobile.css");
/* CSS Document */

body {
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
	height: auto;
	margin: 0;
	position: relative;
    color: #1A1A1A;
}

img{ width: 100%; height: auto; vertical-align: top; }

dl,dt,dd { margin: 0; }

#loader {
	display: none;
	width: 100%;
	height: 100%;
	position: absolute;
}

#load {
	width: 100%;
	height: 100%;
}

#warpper {
	margin: auto;
	padding: 0 auto;
}

/* --------------- ヘッダー --------------- */

header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: flex-end;
	z-index: 10;
}
header .logo { 
    display: none;
    /*display: flex; 
    align-items: center;
    text-align: center;
    margin: 0; 
    padding: 20px 40px;
    width: 190px;
    position: absolute;
    left: 0;
    background: #fff;*/
}
header .logo a {
    color: #1A1A1A;
	font-size: .7em;
    text-decoration: none;
}
header .logo a span {
	display: block;
	font-size: .58em;
	letter-spacing: .1em;
}
header .logo a p{
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 5px 0 0 8px;
}
header #pc_nav { display: block; margin: 30px 40px 0 0; }
header #pc_nav .menu {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
header #pc_nav .menu ul {
	width: 100%;
	list-style: none;
	padding: 0;
    margin: 0;
	display: flex;
	justify-content: flex-end;
    align-items: center;
}
header #pc_nav .menu ul li:nth-child(1),
header #pc_nav .menu ul li:nth-child(2){ 
    padding: 0 1.5em; 
    border-right: solid 1px #fff;
}
header #pc_nav .menu ul li:nth-child(3){ padding-left: 1.5em; }
/*header #pc_nav .menu ul li:not(:last-of-type){ margin-right: 2em; }*/
header #pc_nav .menu ul li a { 
    position: relative;
    color: #fff; 
    text-decoration: none;
    display: block;
    font-weight: 500;
}
header #pc_nav .menu ul li .menu_list::before{
    content: "";
    position: absolute;
    bottom: 0;
    background: #fff;
    width: 0;
    height: 0;
    transition: 0.5s;
}
header #pc_nav .menu ul li .menu_list:hover::before{
    bottom: -1px;
    width: 100%;
    height: 1px;
}
/*header #pc_nav .menu ul li .menu_list:hover{ color: #8BCF32; }*/
header #pc_nav .menu ul li .contact_menu_list:hover{ 
    background-color: #ccc;
}
header #pc_nav .instagram_link{ background: #fff; padding: 10px; border-radius: 50%; }
header #pc_nav .instagram_link img{ width: 30px;}

/* ※SMARTPHONE MENU */
.button_container { display: none; }
.overlay { display: none; }

/* home_content */
.home_comment { width: 100%; height: auto; margin: 0 auto; text-align: center; }
.home_comment h1 { color: #111; font-size: calc(90.5% + 0.8vw); }
.home_comment p { font-size: calc(80.5% + 0.2vw); }

/* slide */
.slider{ overflow: hidden; }
#vegas { width: 100%; height: 100vh; position: relative; }
#vegas .bg { background-color: rgba(0,0,0,0.2); width: 100%; height: 100%; }
#vegas .caption {
	position: absolute;
  	bottom: 12%;
    left: 7%;
  	/*transform: translateY(-60%);
  	-webkit- transform: translateY(-60%);*/
    display: inline-block;
  	margin: 0 auto;
	color: #fff;
}
#vegas .caption h1{
    font-size: 68px;
    line-height: 1.4;
    width: 100%;
    margin: 0;
    padding-bottom: 15px;
    letter-spacing: 0.06em;
    display: inline-block;
}
#vegas .caption .txt{ 
    margin: 0; 
    padding-left: 11px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
}

/* scroll */
.scroll-Block { position: absolute; bottom: 3rem; right: 0px; z-index: 5; }
.scroll-Block .Txt {
    display: block;
    font-size: .8em;
	font-weight: bold;
    line-height: 1;
	position: relative;
	bottom: 1.7rem;
	right: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.scroll-Block .Txt a {
    color: #fff;
    text-decoration: none;
    letter-spacing: .1em;
}
.scroll-Block .Line {
    position: relative;
    margin: 50px 0 0 52px;
    width: 1px;
    height: 60px;
    overflow: hidden;
    z-index: 10;
}
.scroll-Block .Line:after, .scroll-Block .Line:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 1px;
    height: 100%;
}
.scroll-Block .Line:before {
    background: #FFF;
    z-index: 10;
    -webkit-animation: scroll 2s infinite normal;
    animation: scroll 2s infinite normal;
}
.scroll-Block .Line:after {
    background: transparent;
}

@-webkit-keyframes scroll {
	0% {
		-webkit-transform: translate3d(0,-100%,0);
	}
	15% {
		-webkit-transform: translate3d(0,-98%,0);
	}
	85% {
		-webkit-transform: translate3d(0,98%,0);
	}
	100% {
		-webkit-transform: translate3d(0,100%,0);
	}
}

/* --------------- トップページ --------------- */

.t-company-sec{
    position: relative;
    background: #f3f3f3;
}
.t-company-sec::before{
    position: absolute;
    bottom: -28px;
    right: 0;
    content: "COMPANY";
    font-size: 15em;
    font-weight: 500;
    line-height: 1;
    color: #fff;
}
.t-company-content{
    display: flex;
    justify-content: space-between;
    padding: 80px 8% 80px 0;
    margin-bottom: 80px;
}
.t-company-img-area{ position: relative; width: 50%; }
.t-company-img-area img{ object-fit: cover; }

.t-company-text-area{
    width: 46%;
    padding-left: 4%;
}
.t-company-text-area h2{ 
    font-size: 36px; 
    line-height: 1.6; 
    margin: 0 0 40px 0; 
    letter-spacing: 0.04em;
}
.t-company-text-area p{ font-size: 18px; margin: 0; line-height: 2.4; }
.t-outline-sec{
    max-width: 1240px;
    width: 90%;
    margin: 0 auto 80px;
}
.t-outline-content{
    display: flex; 
    justify-content: space-between;
    align-items: center;
}
.t-outline-img-area{ width: 420px; }
.t-outline-info-area{ width: calc( 100% - 540px ); }
.t-outline-tit{ margin-bottom: 40px; }
.t-outline-tit h2{ font-size: 60px; line-height: 1; margin: 0; }
.t-outline-tit p{ 
    font-size: 18px; 
    font-weight: 500; 
    margin: 15px 0 0; 
    padding-left: 5px;
}
.t-outline-table table{ width: 100%; border-collapse: collapse; }
.t-outline-table table tr th,
.t-outline-table table tr td{ font-size: 18px; padding-bottom: 25px; }
.t-outline-table table tr th{ text-align: left; }

.t-works-sec{
    max-width: 1240px;
    width: 90%;
    margin: 0 auto 100px;
}
.t-works-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #3A3A3A;
}
.common-tit{ color: #fff; }
.common-tit h2{ font-size: 65px; line-height: 1; margin: 0; }
.common-tit p{ 
    font-size: 18px; 
    font-weight: 500; 
    margin: 15px 0 0; 
    padding-left: 5px;
}
.t-works-img-area{ width: 50%; height: 400px; }
.t-works-img-area img{ object-fit: cover; height: 400px; }
.t-works-text-area{ width: 45%; box-sizing: border-box; }
.t-works-text{ font-size: 18px; color: #fff; margin: 30px 0; padding-left: 5px; }
.t-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: solid 1px #fff;
    padding: 10px 15px;
    transition: all 0.5s;
    font-size: 18px;
    font-weight: 500;
}
.t-btn:hover{ background: #fff; color: #3A3A3A; }

.contact-sec{
    padding: 80px 0;
    background: #3A3A3A;
}
.contact-content{
    max-width: 1240px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.contact-tit-area{}
.contact-text-area{
    color: #fff;
    padding-left: 60px;
    margin-left: 60px;
    border-left: solid 1px #fff;
}
.contact-text-area p{ font-size: 18px; margin: 0 ;}
.contact-text-area .contact-tel{ font-size: 60px; font-weight: 700; }

/* --------------- 施工実績 --------------- */

.works-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(8, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.works-list li img{ height: 100%; object-fit: cover; }

.works-item_01 { grid-area: 1 / 1 / 3 / 3; }
.works-item_02 { grid-area: 1 / 3 / 2 / 4; }
.works-item_03 { grid-area: 2 / 3 / 3 / 4; }
.works-item_04 { grid-area: 3 / 1 / 4 / 2; }
.works-item_05 { grid-area: 4 / 1 / 5 / 2; }
.works-item_06 { grid-area: 3 / 2 / 5 / 3; }
.works-item_07 { grid-area: 3 / 3 / 5 / 4; }
.works-item_08 { grid-area: 5 / 1 / 7 / 3; }
.works-item_09 { grid-area: 5 / 3 / 6 / 4; }
.works-item_10 { grid-area: 6 / 3 / 7 / 4; }
.works-item_11 { grid-area: 7 / 1 / 8 / 2; }
.works-item_12 { grid-area: 8 / 1 / 9 / 2; }
.works-item_13 { grid-area: 7 / 2 / 9 / 4; }

/* --------- お問い合わせフォーム --------- */
/*
.contact-box{
    background: #f3f3f3;
    padding: 40px;
    color: #2E3B92;
}

.contact-box h2{
    margin: 0 0 20px 0;
}

.toi_sub_tit01{
    margin-bottom: 40px;
}

.toi_td2 input{
    width: 100%;
    height: 40px;
    padding: 0 10px;
    box-sizing: border-box;
    border: none;
    padding: 1em;
    font-weight: 400;
}

.toi_td2 textarea{
    width: 100%;
    height: 140px;
    box-sizing: border-box;
    border: none;
    line-height: 1.6;
    padding: 1em;
    font-weight: 400;
}

.toi_td1{ 
    margin-bottom: 10px;
    font-weight: 400;
}
.toi_td2{
    margin:0 0 30px 0;
}

.toi_btn_box{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.toi_btn_box .toi_font_fami{
    width: 100px;
    color: #fff;
    border: none;
    font-size: 1em;
    cursor: pointer;
    background: #EBBA36;
}


.toi_btn_box .toi_font_fami:hover{
    opacity: .8;
}

.toi_btn_column{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.toi_btn_column .toi_btn_l{ margin-right: 40px; }

.toi_btn_column .toi_btn_l input{
    color: #fff;
    background: #EBBA36;
    border: none;
    font-size: 1em;
    cursor: pointer;
    padding: 5px 15px;
}

.toi_btn_column .toi_btn_l input:hover{ opacity: .8; }
.toi_btn_column .toi_btn_r input:hover{ opacity: .8; }

.toi_btn_column .toi_btn_r input{ 
    color: #fff;
    background: #EBBA36;
    border: none;
    font-size: 1em;
    cursor: pointer;
    padding: 5px 15px;
}*/

/* --------------- 共通 --------------- */

#content{ width: 100%; margin: 40px auto; }

#br_sp{display: none;}

#sp{ display: none; }

.page-head-area{
    position: relative;
    overflow: hidden;
    height: 540px;
	background: url("../img/page-head-img.jpg") no-repeat;
	background-size: cover;
}
.page-head-area::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 540px;
    background: rgba(0,0,0,0.4);
}
.page-head-ttl {
	/*width: 90%;
	max-width: 1200px;*/
    display: inline-block;
	margin: 0 auto;
    position: absolute;
    left: 5%;
    bottom: 20%;
    color: #fff;
}
.page-head-ttl__main {
	/*position: relative;
    z-index: 1;*/
    display: block;
    font-size: 3em;
    line-height: 1;
    padding-bottom: 15px;
}
.page-head-ttl__sub {
	/*position: relative;
    z-index: 1;*/
    display: block;
    font-size: .9em;
    font-weight: 500;
    letter-spacing: .1em;
    padding-left: 5px;
}

/* --------------- フッター --------------- */

#footer {
	background: #f3f3f3;
	width: 100%;
	height: auto;
	overflow: hidden;
	margin: auto;
    box-sizing: border-box;
}

.footer_inner{
    max-width: 1240px;
    width: 90%;
    padding: 40px 0;
    margin: 0 auto;
    display: flex;
    justify-content:space-between; 
    align-items: flex-end;
}
.company-name { margin: 0 0 15px 0; }
.company-name img{ width: 160px; }
.company-name a {
	font-size: 18px;
    font-weight: 500;
	color: #1A1A1A;
	text-decoration: none;
    margin-top: 0;
}
.company-name a span{ display: block; padding: 10px 0 0 2px; }
.add{ font-size: 14px; margin: 0; font-weight: 400;}

.footer-copy-right p{ margin: 0; font-size: 12px; }



