@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Noto+Sans+JP:wght@100..900&family=Roboto+Slab:wght@100..900&display=swap');
html { 
	font-size: 62.5%;
}
body {
	min-width: 1300px;
    background: #F9F9FC;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
    font-size: 1.6rem;
    color: #434548;
    letter-spacing: 0.1em;
}
li{
	list-style: none;
}
a{
	text-decoration: none;
    transition: all 0.3s ease-in-out;
	color: #434548;
}
img{
	width: 100%;
    vertical-align: bottom;
}
.flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.fr-reverse{
    flex-direction: row-reverse;
}
.inner1300{
	max-width: 1300px;
    width: 90%;
    margin: 0 auto;
    /*border: solid 1px blue;*/
}
.inner1200{
    max-width: 1200px;
    margin: 0 auto;
   /* border: solid 1px orange;*/
}
.inner997{
    max-width: 997px;
    margin: 0 auto;
    /*border: solid 1px green;*/
}
.inner720{
    max-width: 720px;
    margin: 0 auto;
}
.wrap80{
    padding: 80px 0;
}
.sp{
    display: none;
}
/* スクロールすると下からふわっとさせるためのコード */
.inview {
  /* 30px下げる */
  transform: translateY(30px);
  /* 要素を透明にする */
  opacity: 0;
  /* 2秒かけて、変化させる */
  transition: transform 1s, opacity 1s;
}
.inview.show {
  transform: translateY(0);
  opacity: 1;
}

/*↓↓↓↓前頁共通パーツ:ボタン、セクションタイトル、ヘッダー、コンタクト、フッター、上に戻るボタン↓↓↓↓*/

/*ボタンコンポーネント*/
.btn{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #1D6599;
    padding: 15px 24px;
    border-radius: 6px;
    color: #fff;
    text-align: center;
    font-size: 1.4rem;
    height: 50px;
    overflow: hidden;
    position: relative;
    z-index: 100;
}
.btn::after{
    content: "\e5cc";
    display: inline-block;
    font-family: "Material Symbols Outlined";
    font-size: 1.9rem;
    font-weight: 400;
    color: #fff;
    padding-left: 4px;
}
.btn::before{
    content: "";
    width: 0%;
    height: 0%;
    border-radius:50%;
    background: #193D56;
    position: absolute;
    top:50%;
    left:50%;
    transition: 0.3s ease-in;
    opacity: 0;
    z-index: -1;
}
/*ホバー時内側から円広がる*/
.btn:hover.btn::before{
    opacity: 1;
    width: 400px;
    height: 400px;
    margin: -200px 0 0 -200px;
}
/*セクションタイトル*/
.sec-title_ja{
	font-size: 1.4rem;
}
.sec-title_en{
    color: #1D6599;
	font-family: "Roboto Slab", serif;
  	font-weight: 500;
	font-size: 4rem;
	letter-spacing: 4px;
	display: block;
    line-height: 1;
}
/*ヘッダー*/
.header {
	width: 100%;
    height: auto;
    background: #F9F9FC;
    padding: 20px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_logo img{
	width: 80%;
    min-width: 170px;
}
/*ナビ*/
.nav{
	width: auto;
}
.nav-list_box{
	width: 100%;
    height: 100%;
	display: flex;
	justify-content: flex-end;
}
.nav_list{
	display: flex;
	align-items: center;
	column-gap: 40px;
}
.nav_item{
	display: block;
	font-weight: 600;
	font-size: 1.4rem;
	white-space: nowrap;
	position: relative;
}
.nav_item:hover{
    color: #5696F9;
}
.nav-tel{
    width: 100%;
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
}
.nav-tel a{
    color: #1D6599;
    font-weight: 600;
    font-size: 3rem;
    font-family: "Roboto Slab", serif;
    line-height: 1;
    padding: 10px;
}

.nav-tel a:before{
    content: "\e9cd";
    display: inline-block;
    font-family: "Material Symbols Outlined";
    font-size: 2.5rem;
    font-weight: 400;
    color: #1D6599;
    padding-right: 4px;
}
.nav-tel p{
    font-size: 1.4rem;
    font-weight: 600;
}
/*ハンバーガーメニュー*/
.nav_checkbox{
	opacity: 0;
	visibility: hidden;
    content-visibility: hidden;
	position: absolute;
}
.hamburger{
    display: none;
}

/*採用・問い合わせボタン共通*/
.nav-btn{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    color: #fff;
    text-align: center;
    font-size: 1.4rem;
    height: 50px;
    padding: 0px 30px 0 25px;
    margin-left: 30px;
    position: relative;
    overflow: hidden;
    z-index: 100;
    white-space: nowrap;
}
/*アイコン*/
.nav-btn::before{
    content: "";
    display: inline-block;
    background-position: center;
    background-size: cover;
    width: 16px;
    height: 16px;
    margin-right: 7px;
}
/*ホバー時背景広がるための要素*/
.nav-btn::after{
    content: "";
    width: 0%;
    height: 0%;
    border-radius:50%;
    position: absolute;
    top:50%;
    left:50%;
    transition:0.3s ease-in;
    opacity: 0;
    z-index: -1;
}
/*ホバー時内側から円広がる*/
.nav-btn:hover.nav-btn::after{
    opacity: 1;
    width: 400px;
    height: 400px;
    margin: -200px 0 0 -200px;
}
/*採用ボタン*/
.rec-btn{
    background: #1D6599;
}
.rec-btn::before{
    background-image: url("../images/rec-icon.png");
}
.rec-btn::after{
    background: #193D56;
}
/*問い合わせボタン*/
.cv-btn{
    background: #A99C5A;
}
.cv-btn::before{
    content: "\e158";
    font-family: "Material Symbols Outlined";
    font-size: 1.9rem;
    font-weight: 400;
    color: #fff;
    padding-right: 4px;
    transform: translateY(-2.5px)
}
.cv-btn::after{
    background: #72693A;
}
/*上に戻るボタンここから*/
.top{
	position: fixed;
	right: 10px;
    bottom: 10px;
    width: 50px;
    height: 50px;
	border-radius: 50%;
    background: #F9F9FC;
    border: solid 1px #03488A;
    z-index: 100;
}
.top a{
	postion: relative;
	display: block;
	width: 50px;
	height: 50px;
	text-decoration: none;
}
.top a::before{
	font-family:'Material Symbols Outlined';
	content: '\e5ce';
	font-size: 3rem;
	color: #03488A;
	position: absolute;
	width: 40px;
	height: 40px;
	top: 10%;
	right: 0;
	margin: auto;
}
/*コンタクトエリア*/
.top-contact{
    width: 100%;
    margin-top: 80px;
    position: relative;
}
.top-contact::after{
    content: "";
    display: block;
    width: 100%;
    height: 50%;
    background: #214056;
    position: absolute;
    top:50%;
    z-index: -1;
}
.top-contact-bg{
    background: url("../images/contact-bg.jpg") bottom right/ cover, no-repeat;
    width: 100%;
    height: auto;
    padding: 40px 0px;
    border-radius: 15px;
    color: #fff;
}
.top-contact-bg h2{
    margin-bottom: 25px;
}
.sec-title_ja_white{
     color: #fff;
	font-size: 1.4rem;
}
.sec-title_en_white{
    color: #fff;
	font-family: "Roboto Slab", serif;
  	font-weight: 500;
	font-size: 4rem;
	letter-spacing: 4px;
	display: block;
    line-height: 1;
}
.top-contact-tel,.top-contact-mail{
    display: block;
    color: #fff;
    background: none;
    text-align: center;
    font-size: 3.2rem;
    padding: 20px 30px;
    border: solid 1.5px #fff;
    border-radius: 15px;
    width: 48%;
    height: 110px;
}
.top-contact-mail{
    display: inline-flex;
    justify-content:center;
    color: #1D6599;
    background: #fff;
    padding: 40px 10px;
    border: none;
    font-size: 2.4rem;
    font-weight: 500;
    transition: 0.3s ease-in;
}
.top-contact-mail:hover{
    color: #fff;
    background: #008cd6;
}
.top-contact-tel::before,.top-contact-mail::before{
    content: "\e9cd";
    display: inline-block;
    font-family: "Material Symbols Outlined";
    font-size: 3.2rem;
    font-weight: 300;
    color: #fff;
    padding-right: 4px;  
}
.top-contact-mail::before{
    content: "\e158";
    color: #1D6599;
}
.top-contact-mail:hover::before{
    color: #fff;
}
.top-contact-tel p{
    color: #fff;
    font-size: 1.4rem;
}
/*フッター*/
.footer{
    width: 100%;
    height: auto;
    background: #214056;
    color: #CCD2D7;
    font-size: 1.4rem;
}
.footer-top{
    padding: 40px 0;
}
.footer-company img{
    width: 150px;
}
.footer-company p{
    padding-top: 8px;
}
.footer-access p:first-child{
    font-family: "Roboto Slab", serif;
    font-size: 2rem;
    font-weight: 700;
}
.footer-nav{
    display: flex;
    flex-wrap:wrap;
    width: 300px;
}
.footer-navitem a{
    width: 150px;
    display: inline-block;
    color: #CCD2D7;
    padding-top: 10px;
}
.footer-navitem a:hover{
    opacity: 0.5;
}
.footer-bottom{
    border-top: solid 1px #CCD2D7;
    text-align: center;
    padding: 40px;
    font-size: 1rem;
}
/*main*/
main{
    padding-top: 150px;
}
/*ファーストビュー*/
.top-fv{
	background-image: url("../images/fv01.jpg");
    background-position: center;
    background-size: cover;
    width: calc(100% - 48px);
	height: 600px;
    border-radius: 20px;
    margin: 0 auto;
}
.top-fv_copy{
    color: #fff;
    height: auto;
    padding-top: 170px;
}
.top-fv_copy p{
    font-size: 3.6rem;
    letter-spacing: 0.15em ;
}
.top-fv_copy h1{
    font-size: 1.6rem;
    padding-top: 16px;
    font-weight: 600;
}
/*施工実績バナー*/
.top-fv_banner{
    display: block;
    background-image: linear-gradient(90deg, rgba(55, 145, 210, 1), rgba(164, 225, 244, 1));
    color: #fff;
    text-align: center;
    width: 800px;
    height: auto;
    margin: 170px auto 0;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0px 10px 13px #D2DFE4;
}
.top-fv_banner:hover{
    transform: translateY(-8px);
}
.banner-text{
    font-size: 2.8rem;
    padding-top: 5px;
    font-weight: 600;
}
.banner-img::before{
    content: "";
    display: inline-block;
    background: url("../images/banner.png") center/ cover, no-repeat;
    position: absolute;
    left: 40px;
    bottom: 0px;
    width: 150px;
    height: 200px;
}
/*About us*/
.about-area{
    width: 100%;
    margin-top: 150px;
    position: relative;
    overflow: hidden;
}
.text-slide{
    display: flex;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    position: absolute;
    top: 5%;
    z-index: -1;
}
.text-item {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 30rem;
    font-family: "Roboto Slab", serif;
    color: #F2F5FB;
}
.text-item:nth-child(odd) {
    animation: MoveLeft 48s -24s infinite linear; /*//48秒かけて-24秒後に無限ループさせる*/
  }

.text-item:nth-child(even) {
    animation: MoveLeft2 48s infinite linear; /*//48秒かけて無限ループさせる*/
  }
@keyframes MoveLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes MoveLeft2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.about-area::after{
    content:"";
    background: #5CA9E1;
    width: 100%;
    height: 400px;
    display: block;
    position: absolute;
    top: 60%;
    z-index: -1;
}
.about-text h2{
    width: 50%;
}
.about-text p{
    width: 47%;
    font-size: 2.4rem;
    line-height: 1.8;
}
/*3つの強み*/
.about-strengths{
    padding-top: 80px;
    padding-bottom: 80px;
}
.about-strengths h2{
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.15em;
}
.about-strengths span{
    color: #1D6599;
    font-family: "Roboto Slab", serif;
    font-size: 3.2rem;
    font-weight: 700;
}
.card-list{
    width: 100%;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.card-item{
    width: 30%;
    background: #fff;
    border-radius: 15px;
}
.card-item img{
    height: 200px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}
.card-text{
    padding: 24px;
    height: 200px;
}
.card-text h3{
    color: #1D6599;
    font-size: 2rem;
    text-align: center;
    padding-bottom: 8px;
}
.card-text p{
    font-size: 1.4rem;
    line-height: 2;
    font-weight: 500;
}
/*事業内容*/
.service-area{
    margin-top: 80px;
}
.service-text{
    width: 100%;
    padding-top: 24px;
}
.service-text p{
    width: 50%;
    line-height: 2;
}
.service-text p:last-child{
    text-align: center;
}
/*ボタンリンク*/
.service-link_wrap{
    width: 100%;
    padding-top: 40px;
}
.service-link_wrap a{
    width: 45%;
}
.service-btn{
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
}
.service-btn h3{
    position: absolute;
    top: 78%;
    left: 5%;
    color: #fff;
    font-weight: 500;
    font-size: 2.4rem;
    z-index: 100;
}
/*アイコン*/
.arrow{
    border: solid 1px #fff;
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 76%;
    right: 3%;
    z-index: 100;
}
.arrow::before{
    content:"\e5cc";
	font-family:'Material Symbols Outlined';
	font-size: 2rem;
	color: #fff;
	display: inline-block;
	position: absolute;
	top: 22%;
	right: 22%;
}
.service-bg{
    width: 100%;
    height: 300px;
 	transition: transform .6s ease;
}
.kyuhaisui{
    background: url("../images/service1.jpg") no-repeat center center / cover;
    border-radius: 15px;
}
.reion{
    background: url("../images/service2.jpg") no-repeat center center / cover;
    border-radius: 15px;
}
/*ホバー時拡大*/
.service-btn:hover .kyuhaisui, .service-btn:hover .reion{
    transform: scale(1.05);
}
/*ホバー時黒マスク*/
.service-btn::before{
	background-color: rgba(0,0,0,0.5); /* マスクの色(黒の50%) */
 	bottom: 0;
  	content: '';
  	height: auto;
  	left: 0;
  	opacity: 0; /* 最初は透明（非表示） */
  	position: absolute;
  	right: 0;
  	top: 0;
  	transition: opacity .6s ease; /* ゆっくりopacityのみへ変化させる */
 	width: 100%;
 	z-index: 100;
}
.service-btn:hover::before{
    opacity: 1;
}
/*施工実績*/
.works-area{
    margin-top: 80px;
    align-items: flex-start;
}
.works-text{
    width: 50%;
}
.works-img{
    width: 50%;
}
.works-img img{
    border-radius: 15px;
}
.works-text p{
    width: 80%;
    line-height: 2;
    padding: 24px 0;
}
/*採用情報*/
.recruit-area{
    margin-top: 80px;
}
.recruit-wrap{
    background: url("../images/recruit-bg.jpg") center/ cover, no-repeat;
    width: 100%;
    height: 450px;
    border-radius: 15px;
    padding: 40px;
    position: relative;
}
.recruit-img{
    width: 50%;
}
.recruit-img::before{
    content:"";
    display: block;
    background: url("../images/recruit-man.png") center/ cover, no-repeat;
    width: 500px;
    height: 400px;
    position: absolute;
    bottom: 0;
    left: 5%;
}
.recruit-text{
    width: 48%;
}
.recruit-text p{
    width: 80%;
    line-height: 2;
    padding: 24px 0;
}
/*人材育成・会社情報*/
.careercompany-area{
    margin-top: 80px;
}
.careercompany-box{
    width: 48%;
    display: flex;
    justify-content: space-between;
    border: solid 1px #9EC0CF;
    border-radius: 15px;
    padding: 40px 24px;
}
.careercompany-text{
    width: 50%;
}
.careercompany-img{
    width: 50%;
    height: 250px;
}
.career{
    background: url("../images/top-career.png") no-repeat center center / contain;
}
.company{
    background: url("../images/top-company.png") no-repeat center center / contain;
}
.careercompany-text .btn{
    margin-top: 24px;
}
/*下層ページ共通*/
.subfv-bg{
    width: calc(100% - 48px);
    height: 200px;
    margin: 0 auto;
    background: url("../images/subfv.jpg") no-repeat center center / cover;
    border-radius: 20px;
}
.subfv-bg .sec-title_en,.subfv-bg .sec-title_ja{
    color: #fff;
}
.subfv-wrap{
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}
/*パンくずリスト*/
.breadcrumbs{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 10px 0;
	background-color: transparent;
}
.breadcrumbs_items:last-child{
	margin-left: 10px;
}
.breadcrumbs_items{
	font-size: 1.4rem;
	font-weight: 400;
}
.breadcrumbs_items::after{
	content:"\e315";
	font-family: "Material Symbols Outlined";
	color: #A6A5A5;
	display: inline-block;
	transform: translateY(2px);
	padding-left: 10px;
}
.breadcrumbs_items:last-child::after{
	display: none;
}
.breadcrumbs_items span{
	color: #03488A;
	font-weight: 600;
}
/*事業内容ページ*/
.service-about_area{
    margin-top: 80px;
}
.service-about_text{
    width: 50%;
    padding: 0 40px 40px 0;
}
.service-about_text h2{
    font-size: 3.2rem;
    font-weight: 500;
}
.service-about_text p{
    padding-top: 16px;
    line-height: 1.8;
}
.service-about_img{
    width: 50%;
    height: 400px;
    position: relative;
}
.service-about_img img{
    width: 230px;
    height: 300px;
    position: absolute;
    object-fit: cover;
    border-radius: 15px;
}
.building{
    top: 0;
    left: 10%;
}
.work-man{
    top: 50px;
    right: 5%;
}
/*元請け会社のご担当者様へ*/
.customer-area{
    margin-top: 80px;
    width: 100%;
    height: auto;
    background: url("../images/customer-bg.jpg") no-repeat center top / cover;
    padding: 80px 0;
    position: relative;
}
.customer-area h2{
    display: inline-block;
    background: #008CD6;
    width: 500px;
    height: 56px;
    color: #fff;
    font-weight: 500;
    font-size: 2.4rem;
    padding: 8px;
    border-radius: 50px;
    position: absolute;
    top: -100%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}
.customer-content{
    background: #fff;
    width: 100%;
    padding: 40px;
    box-shadow: 0px 0px 13px #D2DFE4;
    border-radius: 15px;
}
.system dl{
    width: 50%;
    padding: 40px 80px;
    border-right: 1px #9EC0CF solid;
}
.system dl:last-child{
    border-right: none;
}
.system dt{
    display: inline-flex;
    align-items: center;
    font-size: 2.4rem;
    font-weight: 600;
}
.system dd{
   padding-top: 8px;
}
.system img{
    width: 90px;
    margin-right: 16px;
}
.insurance{
    margin-top: 24px;
    align-items: start;
}
.insurance dl{
    width: 30%;
    padding: 24px;
}
.insurance dt{
    font-size: 2rem;
    font-weight: 600;
}
.insurance dt::before{
    content:"";
    background: #1D6599;
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-right: 8px;
}
.insurance dd{
    color: #797A7C;
    padding-top: 8px;
}
/*給排水衛生設備・冷温水工事*/
.detail-area{
    width: 100%;
    overflow: hidden;
}
.detail-content{
    width: 100%;
    height: auto;
    box-shadow: 0px 0px 13px #D2DFE4;
    border-radius: 15px;
}
.detail-text{
    width: 40%;
}
.detail-text h2{
    color: #1D6599;
    font-weight: 500;
}
.detail-text p{
    padding-top: 8px;
    line-height: 1.8;
}
.detail-text span{
    font-weight: 500;
    background: linear-gradient(transparent 50%, #D8E8F4 50%);
}
.detail-img{
    width: 50%;
    height: 400px;
    position: relative;
}
.detail-img img{
    width: 160%;
    height: 400px;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    border-radius: 15px;
}
.detail-box:last-child .detail-img img{
    left: auto;
    right:0;
}
/*実際の作業風景*/
.gallery-area{
    width: 100%;
    height: auto;
    padding: 80px 0;
    position: relative;
}
.gallery-bg{
    background: #C7E0F3;
    width: 100%;
    height: 490px;
    position: absolute;
    top: 35%;
    z-index: -1;
}
.gallery-area h2{
    font-size: 2.4rem;
    font-weight: 500;
    text-align: center;
}
.gallery-area span{
    font-size: 18rem;
    color: #EBF1F6;
    font-family: "Roboto Slab", serif;
    position: absolute;
    top: -8%;
    z-index: -1;
}
.slider{
    z-index: 1;
    margin-top: 40px;
}
.slider-item{
    margin: 0 50px;
}
.slider-item img{
    height: 450px;
    border-radius: 15px;
    object-fit: cover;
}
/*左右矢印ボタン*/
.slide-arrow {
    background: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50px;
    position: absolute;
    top: 40%;
    bottom: 0;
    border:none;
    cursor: pointer;
}
.prev-arrow {
    left: 21%;
    z-index: 100;
}
.next-arrow {
    right: 21%;
}
/*丸の中の矢印*/
.prev-arrow::before,.next-arrow::before{
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-right: 3px solid #03488A;
    border-top: 3px solid #03488A;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
}
.prev-arrow::before{
    transform: rotate(-135deg);
}
/*インジケーター*/
.slide-dots {
    text-align: center;
    padding-top: 20px;
}
.slide-dots li {
    display: inline-flex;
    margin: 0 10px;
}
.slide-dots li button {
    background: #A7C8E2;
    width: 13.5px;
    height: 13.5px;
    border-radius: 50px;
    text-indent: -9999px;
}
.slide-dots li.slick-active button {
    background: #fff;
}
button {
    background: none;
    border: none;
    outline: none;
    padding: 0 7px;
}
/*施工実績*/
.service-works_area{
    margin-top: 80px;
    align-items: flex-start;
}
.service-works_text{
    width: 50%;
    padding-right: 32px;
}
.service-works_text p{
    padding: 24px 0;
}
.service-works_img{
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service-works_img img{
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}
.service-works_img img:last-child{
    margin-top: 32px;
}
.dldt-wrap{
	width: 100%;
    padding-top: 32px;
}
.dldt-content dl{
	display: flex;
	width: 100%;
    font-size: 1.4rem;
	flex-wrap: wrap;
	margin-bottom: 40px;
	letter-spacing: 1px;
}
.dldt-content dt{
	width: 35%;
	border-bottom: solid 2px #1D6599;
	padding: 16px;
	font-weight: 600;
	white-space:nowrap;
}
.dldt-content dd{
	width: 65%;
	border-bottom: solid 1px #B6B5B5;
	padding: 16px;
	white-space:nowrap;
    text-align: right;
}
/*会社案内ページ*/
/*代表挨拶*/
.greet-area{
    margin-top: 80px;
    color: #fff;
}
.greet-bg{
    width: 100%;
    height: auto;
    padding: 40px 0;
    background-image: linear-gradient(90deg, rgba(91, 158, 207, 1), rgba(194, 231, 239, 1));
    border-radius: 15px;
    position: relative;
}
.greet-bg span::after{
    content:"";
    display: block;
    background: url("../images/shojiki.png") center/ cover, no-repeat;
    width: 100px;
    height: 250px;
    position: absolute;
    top: 10%;
    right: 5%;
}
.greet-bg p{
    width: 50%;
    font-weight: 500;
    font-size: 1.4rem;
    padding-top: 16px;
}
.president-img::after{
    content:"";
    display: block;
    background: url("../images/president.png") center/ cover, no-repeat;
    width: 500px;
    height: 450px;
    position: absolute;
    bottom: 0;
    right: 5%;
    z-index: 1;
}
/*会社概要*/
.overview-area{
    margin-top: 80px;
}
.dldt-content_fill dl{
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	padding-top: 30px;
}
.dldt-content_fill dt{
	width: 30%;
	background: #E6EEF4;
	border-bottom: solid 1px #fff;
	padding: 24px;
	font-weight: 600;
    font-size: 1.4rem;
}
.dldt-content_fill dd{
	width: 70%;
	border-bottom: solid 1px #D5D5D5;
	padding: 24px 0px 24px 24px;
    font-size: 1.4rem;
}
/*許可証*/
.license-area{
    margin-top: 80px;
}
.license-bg{
    background: #E6EEF4;
    border-radius: 15px;
}
.license-wrap{
    display: flex;
    align-items: center;
}
.license-text{
    width: 50%;
}
.license-text p{
    padding-top: 16px;
}
.license-img{
    width: 50%;
}
.license-img ul{
    display: flex;
}
.license-img ul li{
    width: 40%;
    padding: 32px;
}
.license-img ul li img{
    box-shadow: 0px 10px 13px #D1DEE7;
}
/* アクセス */
.access-area{
    height: 600px;
    margin: 80px 0 -250px 0;
    align-items: flex-start;
    position: relative;
}
/* Google Mapを囲う要素 */
.map{
	position: relative;
  	width: 100%;
  	height: 600px;
  	/*padding-top: 140%; *//* 比率(4:3の場合75％) */
}
/* Google Mapのiframe */
.map iframe{
  	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
}
/* 横幅を指定するための要素 */
.map_wrap{
   	width: 33%; /* ここに横幅を指定 */
} 
.access-text{
    width: 33%;
    padding: 24px 32px;
}
.access-text dt{
    display: block;
    font-weight: 500;
    padding-top: 16px;
}
.access-img{
    width: 33%;
}
.access-img img{
    height: 600px;
    object-fit: cover;
}
/*人材育成ページ*/
.career-about_area{
    width: 100%;
    height: auto;
    margin-top: 40px;
    padding: 80px 0 200px;
    color: #fff;
    background: url("../images/career-img.jpg") center/ cover, no-repeat;
}
.career-about_area h2{
    font-size: 3.2rem;
    padding-bottom: 16px;
    font-weight: 500;
}
.career-about_area p{
    width: 50%;
    line-height: 1.8;
    font-weight: 600;
}
.career-about_area em{
    font-style: normal;
    color: #F2FF00;
    font-weight: 600;
}
.carrer-up_banner{
    display: flex;
    align-items: center;
    width: 70%;
    height: 200px;
    background: #fff;
    color: #434548;
    margin: 100px auto -300px auto;
    border-radius: 15px;
    padding: 24px;
}
.carrer-up_banner img{
    width: 50%;
    padding: 40px;
}
.carrer-up_banner p{
    width: 50%;
    border-left: 2px #CCD2D7 solid;
    padding: 24px;
}
/*従業員資格一覧*/
.worker-area{
    margin-top: 160px;
    text-align: center;
}
.worker-area h2{
    font-size: 2.4rem;
    font-weight: 500;
}
.worker-area h2 span{
    font-size: 1.6rem;
}
.worker-list{
    text-align: left;
}
.license{
    font-size: 1.6rem;
}
.course{
    width: 47%;
    font-size: 1.4rem;
}
.worker-list h3{
    font-size: 2rem;
    display: inline-flex;
    align-items: center;
    padding: 32px 0 8px 0;
    font-weight: 500;
}
.worker-list h3::before{
    content:"";
    display: inline-block;
    background: #1D6599;
    width: 5px;
    height: 20px;
    margin-right: 8px;
}
.worker-list dl{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.worker-list dt{
    width: 85%;
    border-bottom: solid 1px #DADADA;
    padding: 8px 0;
}
.worker-list dd{
    width: 15%;
    border-bottom: solid 1px #DADADA;
    padding: 8px 0;
    text-align: right;
}
.worker-list_wrap{
    display: flex;
    justify-content: space-between;
}
/*保持者一覧*/
.master-area{
    margin-top: 80px;
    position: relative;
}
.master-bg{
    width: 100%;
    height: auto;
    background: #E6EEF4;
    border-radius: 15px;
    padding: 80px 0 40px;
}
.master-area h2{
    background: #1D6599;
    color: #fff;
    display: inline-block;
    width: 60%;
    height: 56px;
    font-weight: 500;
    font-size: 2.4rem;
    padding: 8px;
    border-radius: 50px;
    position: absolute;
    top: -100%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}
.master-area em{
    font-weight: 600;
    font-style: normal;
}
/*保持者スライド*/
.slider-thing{
    margin: 0 20px;
}
.slider-thing img{
    height: 500px;
    border-radius: 15px;
    object-fit: contain;
}
/*左右矢印ボタン*/
.master-slick-arrow {
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    position: absolute;
    top: 40%;
    bottom: 0;
    border:none;
    cursor: pointer;
}
.master-prev-arrow {
    left: 0%;
    z-index: 100;
}
.master-next-arrow {
    right: 0%;
}
/*丸の中の矢印*/
.master-prev-arrow::before,.master-next-arrow::before{
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border-right: 3px solid #03488A;
    border-top: 3px solid #03488A;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
}
.master-prev-arrow::before{
    transform: rotate(-135deg);
}
/*採用情報ページ*/
/*仕事の魅力*/
.attraction-area{
    margin-top: 40px;
    color: #fff;
}
.attraction-bg{
    width: 100%;
    height: auto;
    background: url("../images/recruit-img.jpg") center/ cover, no-repeat;
    padding: 80px 0;
    border-radius: 15px;
}
.attraction-title h3{
    padding-top: 24px;
    line-height: 1.8;
    font-size: 3.2rem;
    font-weight: 500;
}
.attraction-text p{
    width: 40%;
    line-height: 2;
}
.attraction-list{
    background: rgba( 255, 255, 255, 0.3 );
    border-radius: 15px;
    padding: 32px;
    margin-top: 40px;
}
.attraction-list h4{
    font-size: 2rem;
    padding-bottom: 8px;
}
.attraction-list p{
    font-size: 1.4rem;
    line-height: 2;
}
.attraction-list li{
    border-right: solid 1px #fff;
    padding: 24px;
}
.attraction-list li:last-child{
    border-right: none; 
}
/*メリット*/
.merit-area{
    margin-top: 80px;
}
.merit-list li{
    background: #DCE8EE;
    margin-top: 24px;
    padding: 40px 0;
    border-radius: 12px;
    counter-increment: meritcount;
    position: relative;
}
.merit-list figure{
    padding-left: 200px;
}
.merit-list figcaption{
    font-size: 1.4rem;
}
.merit-list li img{
    width: 120px;
}
.merit-list h3{
    color: #1D6599;
    font-size: 2.4rem;
    font-weight: 500;
    position: relative;
}
.merit-list h3::before{
    font-family: "Alex Brush", serif;
    position: absolute;
    top: -150%;
    left: 0px;
    font-size: 5rem;
    color: #ACD0E0;
    content: counter(meritcount, decimal-leading-zero);
}
.merit-list p{
    width: 50%;
}
/*１日の流れ*/
.flow-area{
    margin-top: 80px;
}
.flow-bg{
    background: #fff;
    padding: 40px 0;
    border-radius: 12px;
}
.flow-text{
    width: 30%;
}
.flow-text figure{
    text-align: center;
    padding-top: 32px;
}
.flow-text img{
    width: 160px;
}
.flow-text p{
    font-size: 1.4rem;
    padding-top: 8px;
}
.flow-img{
    background: url("../images/flow.png") center/ contain;
    background-repeat: no-repeat;
    width: 60%;
    height: 300px;
}
/*よくある質問*/
.faq-area{
    margin-top: 80px;
}
.accordion-wrap{
	width: 100%;
    padding-top: 40px;
}
.accordion-list:not(:first-child) {
  	margin-top: 10px;
}
.accordion-title {
  	cursor: pointer;
	font-weight: 600;
  	padding: 20px;
  	position: relative;
	border: 1px solid #B8CEDD;
	display:flex;
	align-items: center;
    border-radius: 8px;
}
.accordion-title span{
	font-size: 1.8rem;
	color: #fff;
	display: inline-block;
	background: #1D6599;
	padding-left: 8px;
	width: 30px;
	height: 30px;
    border-radius: 50%;
	margin-right: 20px;
}
.accordion-title:before {
  	position: absolute;
  	content: '';
  	top: 50%;
  	right: 25px;
  	height: 2px;
  	width: 15px;
  	background: #1D6599;
  	transform: rotate(90deg);
  	transition: all .3s ease-in-out;
}
.accordion-title:after {
  	position: absolute;
  	content: '';
  	top: 50%;
  	right: 25px;
  	height: 2px;
  	width: 15px;
  	background: #1D6599;
  	transition: all .3s ease-in-out;
}
.accordion-title.open:before {
  	transform: rotate(180deg);
}
.accordion-title.open:after {
  	opacity: 0;
}
.accordion-text {
  	display: none;
  	padding: 20px 20px 20px 70px;
	font-size: 1.4rem;
	line-height: 1.8;
}
/*社内の雰囲気*/
.atmosphere-area{
    width: 100%;
    height: auto;
    background: #5795C1;
    margin-top: 80px;
    color: #fff;
    padding: 40px 0;
}
.atmosphere-area p{
   padding-top: 24px;
}
/*募集要項*/
.info-area{
    margin-top: 80px;
}
.apply{
    width: 80%;
}
.apply p{
    padding-top: 16px;
}
.apply p:first-child{
    padding-top: 0px;
}
/*エントリーエリア*/
.entry-area{
    width: 100%;
    margin-top: 80px;
    position: relative;
}
.entry-area::after{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #214056;
    position: absolute;
    top:50%;
    z-index: -1;
}
.entry-bg{
    background: url("../images/entry01.jpg") center/ cover, no-repeat;
    width: 100%;
    height: auto;
    padding: 80px 0px;
    border-radius: 15px;
    color: #fff;
}

.entry-bg p{
    padding-top: 24px;
    padding-bottom: 24px;
}
/*お問い合わせページ*/
.contact-area{
	text-align: center;
	margin: 80px auto;
}
.contact-wrap{
    background: #fff;
    height: auto;
    border-radius: 15px;
    padding-top: 80px;
}
.contact-box{
	padding-top: 24px;
    margin: 0 auto;
}
.contact-box:last-child{
	padding-top: 80px;
}
.contact-box h2{
	font-size: 2rem;
	font-weight: 500;
}
.tel-wrap{
    background: #E7EEF3;
    width: 60%;
    border-radius: 12px;
}
.tel{
	display: block;
	font-size: 3rem;
	font-weight: 700;
	padding: 8px 0 24px;
	letter-spacing: 0.01em;
}
.tel::before{
	content: "\e9cd";
	font-family: "Material Symbols Outlined";
	font-size: 2.5rem;
	font-weight: 600;
	display: inline-block;
	transform: translateY(3px);
	padding-right: 5px;
	color: #1D6599;
}
.form-table{
	width: 100%;
	padding: 24px 0px;
	font-size: 1.4rem;
	border-radius: 10px;
	margin: 0px auto;
}
.form-table tr{
	width: 100%;
	border-bottom: 1px solid #DDDDDD;
	padding: 25px 0px;
	display: flex;
}
.form-table tr:last-child{
	border-bottom: none;
}
.form-table th{
	width: 30%;
	text-align: left;
	padding-left: 5px;
	display: flex;
	align-items: center;
    justify-content: space-between;
}
.form-table td{
	width: 70%;
	text-align: left;
}
.form-table .allow{
	position: relative;
  	display: inline-flex;
  	align-items: center;
}
.form-table .allow::after{
	content: '';
	position: absolute;
	right: 1rem;
	width: 10px;
	height: 7px;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	pointer-events: none;
	background-color: #333;
}
.form-table input{
	width: 80%;
	height: 40px;
	border: solid 1px #1D6599;
	padding-left: 15px;
	border-radius: 5px;
	font-size: 1.6rem;
}
.form-table select:focus, .form-table textarea:focus, .form-table input:focus {
	outline: #DCDCDC solid 4px;
}
.form-table select{
	height: 40px;
	border: solid 1px #1D6599;
	padding: 0px 100px 0px 10px;
	border-radius: 5px;
	cursor: pointer;
	position: relative;
	font-size: 1.6rem;
	appearance: none;
}
.form-table textarea{
	width: 80%;
	height: 180px;
	border: solid 1px #1D6599;
	border-radius: 5px;
	padding: 10px 15px;
	font-size: 1.6rem;
}
.form-table input[type="checkbox"]{
	width: 15px;
	height: 15px;
	transform: translateY(2px);
	margin-right: 10px;
	cursor: pointer;
}
.form-table a{
	text-decoration: underline;
	color: #0090B8;
}
.essential,.any{
	color: #fff;
	font-size: 1.2rem;
	padding: 1px 4px 2px;
	border-radius: 3px;
	margin-right: 24px;
}
.essential{
	background: #1D6599;
    white-space: nowrap;
}
.any{
	background: #9D9797;
    white-space: nowrap;
}
.privacypolicy{
	width: 100%;
    border-radius: 12px;
}
.privacypolicy h3{
	font-size: 1.6rem;
	font-weight: 600;
	text-align: center;
}
.privacypolicy p{
	font-size: 1.3rem;
	width: 80%;
	height: 130px;
	padding: 20px;
	line-height: 1.8;
	overflow-y: scroll;
	border: solid 1px #D0D0D0;
	margin: 20px auto;
    text-align: left;
}
.check-container{
	text-align: center;
	padding: 30px 0;
    border-radius: 12px;
}
.check_content label{
    width: 80%;
	background: #efefef;
	padding: 20px;
	margin: 0 auto;
	display: inline-block;
    cursor: pointer;
    border-radius: 12px;
}
.check_content input[name="個人情報保護方針"]{
	margin-right: 8px;
}
.submit_btn input[type="submit"]{
	background: #1D6599;
	color: #fff;
	display: inline-block;
	width: 300px;
	padding: 20px;
	margin: 40px 0;
	border-radius: 50px;
	transition: 0.3s;
}
.submit_btn input[type="submit"]:hover{
	opacity: 0.5;
}
/*確認画面・エラー画面・サンクスページ*/
.breadcrumbs_items:nth-child(2){
	margin-left: 10px;
}
.check-area{
	text-align: center;
	margin: 16px 0 40px;
}
.check-area p{
	padding-top: 30px;
}
#under h1{
	font-size: 2rem;
}
#under #form{
	width: 100%;
	padding-top: 30px;
	border-spacing: 0;
	text-align: left;
	margin: 0 auto;
}
#form th, #form td{
	padding: 8px;
	border-bottom: 1px solid #cbdbd6;
}
#form th{
	width: 30%;
	background: #E6EEF4;
    border-bottom: 1px solid #fff;
}
#form td{
	width: 70%;
}
.back{
	background: #8B8686;
	padding: 10px 30px;
	color: #fff;
}
.send{
	background: #1D6599;
	padding: 10px 30px;
	color: #fff;
}
/*入力エラー時文字色*/
#under span.msg{
	color: #dd0000;
}
@media (max-width: 959px){
    body {
        min-width: 650px;
        font-size: 1.6rem;
    }
    .tb{
        display: none;
    }
    .inner1300{
        width: 100%;
        padding: 0 24px;
    }
    .inner1200{
        width: 100%;
        padding: 0 24px;
    }
    .inner997{
        width: 100%;
        padding: 0 40px;
    }
    .inner720{
        width: 100%;
        padding: 0 40px;
    }
    .flex{
        flex-direction: column;
        align-items: flex-start;
    }
    .flex-re{
        flex-direction: column-reverse;
    }
    /*ボタンコンポーネント*/
    /*ホバー時内側から円広がる*/
    .btn:hover.btn::before{
        opacity: 0;
    }
	/*ヘッダー*/
    .header{
        height: 80px;
        padding: 0px 0px 0px 10px;
    }
    .header_logo img{
	    width: 170px;
    }
    /*ナビ*/
    .nav-tel{
        display: none;
    }
    .hamburger {
        display: block;
        width: 80px;
        height: 80px;
        background: #1D6599;
        border-radius:0 0 0 15px;
        position: relative;
        position: fixed;
        top: 0px;
        right: 0px;
        cursor: pointer;
        z-index: 100;
        padding: 25px;
    }
    .hamburger span,
    .hamburger span::before,
    .hamburger span::after {
        position: absolute;
        display: block;
        content: "";
        width: 30px;
        height: 1.5px;
        background-color: #fff;
        transition: all 0.5s;
    }
    .hamburger span{
        top: 40%;
        right: 23px
    }
    .hamburger span::before {
        top: -10px;
    }
    .hamburger span::after {
	    bottom: -10px;
    }
    input[type="checkbox"]:checked + .hamburger span {
        background-color: transparent;
    }
    input[type="checkbox"]:checked + .hamburger span::before {
        top: 0;
        transform: rotate(-45deg);
    }
    input[type="checkbox"]:checked + .hamburger span::after {
        bottom: 0;
        transform: rotate(45deg);
    }
    .hamburger p{
        color: #fff;
        position: absolute;
        top: 47px;
        right: 15px;
        font-size: 1.2rem;
        font-family: "Roboto Slab", serif;
        font-optical-sizing: auto;
        font-weight: 300;
        font-style: normal;
    }
    .nav-list_box{
        overflow-y: scroll;
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 30px 10px;
        position: fixed;
        top: 0;
        right: 0;
        background: #1D6599;
        color: #333;
        transition: all 0.5s;
        opacity: 0;
        visibility: hidden;
    }
    .nav_list{
        width: 100%;
        height: auto;
        flex-direction: column;
        justify-content: flex-end;
    }
    .nav_item{
        padding: 25px;
        width: 150px;
        color: #fff;
        text-align: center;
    }
    input[type="checkbox"]:checked ~ .nav-list_box{
        opacity: 1;
        visibility: visible;
    }
    .nav-btn{
        padding: 30px;
        width: 300px;
        margin: 16px auto 0 auto;
    }
    .nav-btn::before{
        width: 18px;
        height: 18px;
    }
    .rec-btn{
        background: #16507A;
    }
    .nav-btn:hover.nav-btn::after{
        opacity: 0;
    }
    
    /*コンタクトエリア*/
    
    .sec-title_ja_white{
	    font-size: 1.2rem;
    }
    .sec-title_en_white{
        font-size: 3.2rem;
    }
    .top-contact-tel,.top-contact-mail{
        font-size: 2.4rem;
        padding: 12px 10px;
        width: 100%;
        height: 80px;
        font-weight: 600;
        margin-top: 20px;
    }
    .top-contact-mail{
        padding: 29px 10px;
        font-size: 1.6rem;
    }
    .top-contact-tel::before,.top-contact-mail::before{
        font-size: 2.1rem;
        padding-right: 2px; 
    }
    .top-contact-tel p{
        font-size: 1.2rem;
        font-weight: 600;
    }
    /*フッター*/
    .footer-access{
        padding-top: 24px;
    }
    .footer-nav{
        display: none;
    }
    /*main*/
    main{
        padding-top: 100px;
    }
    /*ファーストビュー*/
    .top-fv{
        background-image: url("../images/sp-fv.jpg");
        height: 650px;
    }
    .top-fv_copy{
        padding-top: 130px;
    }
    .top-fv_copy p{
        font-size: 3rem;
    }
    .top-fv_copy h1{
        font-size: 1.6rem;
        font-weight: 600;
        padding-top: 16px;
    }
    /*施工実績バナー*/
    .top-fv_banner{
        width: 80%;
        margin: 285px auto 0;
        padding: 30px;
    }
    .banner-text{
        font-size: 2.8rem;
        padding-top: 5px;
        font-weight: 600;
    }
    .banner-img::before{
        left: -40px;
    }
    /*About us*/
    .about-area{
        margin-top: 100px;
    }
    .about-area::after{
        height: 1100px;
        top: 35%;
    }
    .about-text h2{
        width: 100%;
    }
    .about-text p{
        width: 65%;
        font-size: 2rem;
        padding-top: 20px;
    }
    /*3つの強み*/
    .text-slide{
        top: 25%;
    }
    .text-item {
        font-size: 15rem;
    }
    .about-area::after{
        height: 400px;
        top: 60%;
        z-index: -1;
    }
    .about-strengths{
        margin-top: 40px;
        padding-bottom: 40px;
    }
    .about-strengths h2{
        font-size: 2rem;
    }
    .card-item{
        width: 32%;
    }
    .card-item img{
        height: 160px;
        object-fit: cover;
        border-radius: 15px 15px 0 0;
    }
    .card-text{
        padding: 16px;
        height: 330px;
    }
    .card-text h3{
        padding-bottom: 8px;
    }
    /*事業内容*/
    .service-area{
    margin-top: 40px;
}
    .service-text p{
        width: 100%;
    }
    .service-text p:last-child{
        text-align: left;
        padding-top: 16px;
    }
    /*ボタンリンク*/
    .service-link_wrap a{
        width: 100%;
    }
    .service-link_wrap a:last-child{
    margin-top:24px;
    }
    .service-btn{
        height: 250px;
    }
    .service-btn h3{
       font-size: 2rem;
    }
    .service-bg{
        height: 250px;
    }
    /*施工実績*/
    .works-area{
    margin-top: 40px;
    }
    .works-text{
        width: 100%;
    }
    .works-img{
        width: 100%;
        padding-top: 32px;
    }
    .works-text p{
        width: 100%;
    }
    /*採用情報*/
    .recruit-area{
        margin-top: 40px;
    }
    .recruit-wrap{
        height: 600px;
    }
    .recruit-text{
        width: 100%;
    }
    .recruit-img{
        width: 100%;
        height: 330px;
    }
    .recruit-img::before{
        width: 400px;
        height: 330px;
        left: 30%;
    }
    /*人材育成・会社情報*/
    .careercompany-area{
        margin-top: 40px;
    }
    .careercompany-box{
        width: 100%;
        padding: 40px;
    }
    .careercompany-box:last-child{
        margin-top: 24px;
    }
    /*下層ページ共通*/
    .subfv-bg{
        height: 150px;
    }
    .subfv-wrap{
        width: 90%;
        padding: 30px 0;
    }
    /*パンくずリスト*/
    .breadcrumbs{
        padding-top: 16px;
    }
    /*事業内容ページ*/
    .service-about_area{
        margin-top: 40px;
    }
    .service-about_text{
        width: 100%;
        padding: 0 0 40px 0;
    }
    .service-about_img{
        width: 100%;
    }
    .service-about_img img{
        width: 45%;
    }
    .building{
        left: 0%;
    }
    .work-man{
        right: 0%;
    }
    /*元請け会社のご担当者様へ*/
    .customer-content{
        padding: 32px 72px;
    }
    .system dl{
        width: 100%;
        padding: 24px 0 32px 0;
        border-right: none;
        border-bottom: 1px #9EC0CF solid;
    }
    .system dl:last-child{
        border-bottom: none;
    }
    .insurance dl{
        width: 100%;
        padding: 16px 0;
    }
    .insurance dt::before{
        width: 12px;
        height: 12px;
    }
    /*給排水衛生設備・冷温水工事*/
    .detail-box:last-child {
        padding-top: 80px;
    }
    .detail-text{
        width: 100%;
    }
    .detail-img{
        width: 100%;
    }
    .detail-img img{
        width: 120%;
        top: 5%;
        left: 20%;
    }
    .detail-box:last-child .detail-img img{
        right: 20%;
    }
     /*実際の作業風景*/
    .gallery-area span{
        font-size: 15rem;
        top: -3%;
    }
    /*左右矢印ボタン*/
    .prev-arrow {
        left: 2%;
    }
    .next-arrow {
        right: 2%;
    }
    /*施工実績*/
    .service-works_text{
        width: 100%;
        padding-right: 0px;
    }
    .service-works_img{
        width: 100%;
        flex-direction: row;
        }
    .service-works_img img{
        width: 48%;
        height: 300px;
    }
    .service-works_img img:last-child{
        margin-top: 0px;
    }
    .dldt-wrap{
        padding-top: 0px;
    }
    .dldt-content dl{
        margin-bottom: 32px;
    }
    /*会社案内ページ*/
    /*代表挨拶*/
    .greet-area{
        margin-top: 40px;
    }
    .greet-bg span::after{
        width: 80px;
        height: 150px;
        top: auto;
        right: 15%;
        bottom: 30%;
    }
    .greet-bg p{
        width: 70%;
    }
    .president-img::after{
        width: 200px;
        height: 220px;
        bottom: 0;
        right: -2%;
    }
    /*会社概要*/
    .overview-area{
        margin-top: 40px;
    }
    /*許可証*/
    .license-text{
        width: 60%;
        padding: 40px 0
    }
    .license-img{
        width: 40%;
    }
    .license-img ul li{
        padding: 8px;
    }
    /* アクセス */
    .access-area{
        height: auto;
        margin: 80px 0 -280px 0;
    }
    /* Google Mapを囲う要素 */
    .map{
        height: 200px;
        /*padding-top: 140%; *//* 比率(4:3の場合75％) */
    }
    /* 横幅を指定するための要素 */
    .map_wrap{
        width: 100%; /* ここに横幅を指定 */
    } 
    .access-text{
        width: 100%;
        padding: 24px 32px 40px 32px;
    }
    .access-img{
        width: 100%;
    }
    .access-img img{
        height: 400px;
    }
    /*人材育成ページ*/
    .career-about_area{
        padding: 80px 0 200px;
        background: url("../images/career-img.jpg") right/ cover, no-repeat;
    }
    .career-about_area p{
        width: 100%;
        line-height: 1.8;
    }
    .carrer-up_banner{
        flex-direction: column;
        justify-content: center;
        width: 70%;
        height: 200px;
        margin: 100px auto -300px auto;
    }
    .carrer-up_banner img{
        width: 70%;
        padding: 0px;
    }
    .carrer-up_banner p{
        width: 90%;
        border-left: none;
        padding: 16px 0 0;
    }
    /*従業員資格一覧*/
    .master-area h2{
        width: 80%;
        font-size: 2rem;
        padding-top: 12px;
    }
    /*保持者スライド*/
    .slider-thing img{
        height: 450px;
    }
    /*左右矢印ボタン*/
    .master-slick-arrow {
        width: 40px;
        height: 40px;
    }
    /*採用情報ページ*/
    /*仕事の魅力*/
    .attraction-bg{
        padding: 40px 0;
    }
    .attraction-title h3{
        font-size: 2.4rem;
    }
    .attraction-text p{
        width: 100%;
        padding-top: 16px;
    }
    .attraction-list{
        padding: 24px;
    }
    .attraction-list li{
        border-right: none;
        border-bottom: solid 1px #fff;
        padding: 24px;
    }
    .attraction-list li:last-child{
        border-bottom: none; 
    }
    /*メリット*/
    .merit-area{
        margin-top: 40px;
    }
    .merit-list figure{
        padding-left: 0px;
        position: absolute;
        top: -10%;
        left: 25%;
        display: flex;
        align-items: flex-end;
    }
    .merit-list li img{
        width: 90px;
    }
    .merit-list h3::before{
        top: -170%;
    }
    .merit-list p{
        width: 100%;
        padding-top: 8px;
    }
    /*１日の流れ*/
    .flow-area{
        margin-top: 40px;
    }
    .flow-text{
        width: 100%;
    }
    .flow-text figure{
        padding-top: 16px;
    }
    .flow-text img{
        width: 160px;
    }
    .flow-text p{
        width: 50%;
        margin: 0 auto;
    }
    .flow-img{
        width: 100%;
        margin-top: 24px;
    }
    /*よくある質問*/
    .faq-area{
        margin-top: 40px;
    }
    /*募集要項*/
    .info-area{
        margin-top: 40px;
    }
    .apply{
        width: 100%;
    }
    /*お問い合わせページ*/
    .contact-area{
        margin-top: 40px;
    }
    .contact-box{
        padding-top: 24px;
    }
    .tel{
        padding: 8px 0 24px;
    }
    .contact-box:last-child{
        padding-top: 40px;
    }
    .form-table{
        padding: 8px 0;
    }
    .form-table tr{
        flex-direction: column;
    }
    .form-table th{
        width: 100%;
        padding-bottom: 15px;
        justify-content: flex-start;
    }
    .form-table td{
        width: 100%;
    }
    .form-table input{
        width: 100%;
    }
    .essential, .any {
        margin-left: 8px;
    }
}
@media (max-width: 560px){
    body {
        min-width: 360px;
        font-size: 1.4rem;
    }
    .inner997{
        padding: 0 24px;
    }
    .inner720{
        padding: 0 24px;
    }
    .wrap80{
        padding: 40px 0;
    }
    
    .pctb{
        display: none;
    }
    .tb{
        display: block;
    }
    .sp{
        display: block;
    }
    /*ボタンコンポーネント*/
    .btn{
        padding: 15px 24px;  
    }
     /*ファーストビュー*/
    .top-fv{
        height: 450px;
    }
    .top-fv_copy{
        padding-top: 60px;
    }
    .top-fv_copy h1{
        font-size: 1.4rem;
        padding-top: 8px;
    }
    .top-fv_copy p{
        font-size: 2.4rem;
    }
     /*施工実績バナー*/
    .top-fv_banner{
        margin: 170px auto 0;
    }
    .banner-text{
        font-size: 2rem;
        padding-top: 5px;
    }
    .banner-img::before{
        left: -25px;
        width: 75px;
        height: 100px;
        bottom: -10px;
    }
    /*About us*/
    .about-text p{
        font-size: 1.6rem;
        width: 100%;
    }
    /*3つの強み*/
     .text-slide{
        top: 14%;
    }
    .text-item {
        font-size: 13rem;
    }
    .about-area::after{
        height: 1100px;
        top: 34%;
        z-index: -1;
    }
    .card-list{
        padding-top: 16px;
        flex-direction: column;
    }
    .card-item{
        width: 100%;
    }
    .card-item:not(:first-child){
        margin-top: 24px;
    }
    .card-text{
        height: 170px;
    }
    .card-text p{
        font-size: 1.2rem;
    }
    /*ボタンリンク*/
    .service-btn{
        height: 150px;
    }
    .service-btn h3{
        font-size: 1.6rem;
        top: 75%;
    }
    /*アイコン*/
    .arrow{
        width: 40px;
        height: 40px;
        top: 66%;
        right: 3.5%;
    }
    .arrow::before{
        font-size: 1.6rem;
        top: 22%;
    }
     /*採用情報*/
    .recruit-wrap{
        height: 430px;
        padding: 24px;
    }
    .recruit-text p{
        width: 100%;
    }
    .recruit-img{
        height: 250px;
    }
    .recruit-img::before{
        width: 190px;
        height: 150px;
        left: -3%;
    }
     /*人材育成・会社情報*/
    .careercompany-box{
        padding: 40px 24px;
        flex-direction: column-reverse;
    }
    .careercompany-text{
        width: 100%;
        padding-top: 8px;
    }
    .careercompany-img{
        width: 100%;
        height: 150px;
    }
    /*下層ページ共通*/
    .subfv-bg{
        height: 140px;
        border-radius: 10px;
    }
    /*事業内容ページ*/
    .service-about_text{
        padding: 0 0 40px 0;
    }
    .service-about_text h2{
        font-size: 2.4rem;
    }
    .service-about_img{
        height: 300px;
    }
    .service-about_img img{
       height: 200px;
    }
    /*元請け会社のご担当者様へ*/
    .customer-area{
        margin-top: 40px;
        padding: 64px 0;
    }
    .customer-area h2{
        width: 80%;
        height: 40px;
        font-size: 1.6rem;
    }
    .customer-content{
        padding: 24px;
    }
    .system dl{
        padding: 8px 0 32px 0;
    }
     .system dl:last-child{
        padding: 28px 0 8px;
    }
    .system dt{
        font-size: 1.6rem;
    }
    .system img{
        width: 50px;
    }
    .insurance dl{
        padding: 16px 0 8px 0;
    }
    .insurance dt{
        font-size: 1.6rem;
    }
    /*給排水衛生設備・冷温水工事*/
     .detail-img{
        height: 180px;
    }
    .detail-img img{
        width: 120%;
        height: 180px;
        top: 5%;
        left: 20%;
    }
    .detail-box:last-child .detail-img img{
        right: 20%;
    }
     /*実際の作業風景*/
    .gallery-area{
        padding: 80px 0 20px 0;
    }
    .gallery-bg{
        height: 280px;
    }
    .gallery-area h2{
        font-size: 2rem;
    }
    .gallery-area span{
        font-size: 8rem;
        top: -2%;
    }
    .slider{
        margin-top: 16px;
    }
    .slider-item{
        margin: 0 30px;
    }
    .slider-item img{
        height: 250px;
    }
    /*左右矢印ボタン*/
    .slide-arrow {
        width: 40px;
        height: 40px;
        top: 35%;
    }
    /*丸の中の矢印*/
    .prev-arrow::before,.next-arrow::before{
        width: 8px;
        height: 8px;
    }
    .prev-arrow {
        left: 2.5%;
    }
    .next-arrow {
        right: 2.5%;
    }
     /*インジケーター*/
    .slide-dots li button {
        width: 13px;
        height: 13px;
    }
    /*施工実績*/
    .service-works_area{
        margin-top: 40px;
    }
    .service-works_img img{
        height: 150px;
    }
    .dldt-content dt{
        padding: 16px 0;
    }
    .dldt-content dd{
        padding: 16px 0;
    }
    /*会社案内ページ*/
    /*代表挨拶*/
    .greet-area{
        margin-top: 40px;
    }
    .greet-bg{
        background-image: linear-gradient(90deg, rgba(91, 158, 207, 1), rgba(165, 201, 208, 1));
        padding: 40px 0 80px;
    }
    .greet-bg span::after{
        display: none;
    }
    .greet-bg p{
        width: 100%;
    }
    .president-img::after{
        width: 110px;
        height: 120px;
        bottom: 0;
        right: 60%;
    }
    /*会社概要*/
    .overview-area{
        margin-top: 40px;
    }
    .dldt-content_fill dl{
        flex-direction: column;
        padding-top: 10px;
        }
    .dldt-content_fill dt{
        width: 100%;
        padding: 16px 0 0 0;
        border-bottom: none;
        background-color: transparent;
        color: #1D6599;
    }
    .dldt-content_fill dd{
        width: 100%;
        padding: 8px 0 16px 0;
        font-weight: 500;
    }
     /*許可証*/
    .license-wrap{
        flex-direction: column;
        align-items: center;
    }
    .license-text{
        width: 100%;
        padding: 24px 0 8px;
    }
    .license-img{
        width: 100%;
    }
    .license-img ul{
       justify-content: center;
    }
    .license-img ul li{
        width: 100px;
        padding: 16px;
    }
    /*人材育成ページ*/
    .career-about_area{
        padding: 40px 0 90px;
    }
    .career-about_area h2{
        font-size: 2.4rem;
    }
    .carrer-up_banner{
        width: 90%;
        height: 200px;
        margin: 100px auto -200px auto;
    }
    .carrer-up_banner img{
        width: 80%;
        padding: 0px;
    }
    /*従業員資格一覧*/
    .worker-area{
        margin-top: 150px;
    }
    .worker-list_wrap{
        flex-direction: column;
    }
    .course{
        width: 100%;
    }
    .master-area h2{
        width: 90%;
        height: 80px;
        padding-top: 10px;
    }
    /*保持者スライド*/
    .slider-thing img{
        height: 400px;
    }
    /*採用情報ページ*/
    /*仕事の魅力*/
    .attraction-title h3{
        font-size: 2rem;
        line-height: 1.5;
    }
    .attraction-text p{
        line-height: 1.5;
    }
    .attraction-list{
        padding: 8px 24px;
    }
    .attraction-list li{
        padding: 16px 0;
    }
     .attraction-list h4{
        padding-bottom: 4px;
        font-size: 1.6rem;
    }
    .attraction-list p{
        font-size: 1.2rem;
        line-height: 1.5;
    }
    /*メリット*/
    .merit-list h3{
        font-size: 2rem;
    }
    .merit-list h3::before{
        top: -200%;
    }
    .merit-list p{
        font-size: 1.2rem;
    }
    .merit-list figure{
        top: -2%;
        left: 40%;
    }
    .merit-list figcaption{
        font-size: 1.2rem;
    }
    .merit-list li img{
        width: 70px;
    }
      /*１日の流れ*/
    .flow-text p{
        width: 100%;
    }
    .flow-img{
        height: 400px;
        background: url("../images/flow-sp.png") center/ contain;
        background-repeat: no-repeat;
    }
    /*よくある質問*/
    .accordion-wrap{
        padding-top: 32px;
    }
    .accordion-title {
        padding: 16px 30px 16px 12px;
    }
    .accordion-title span{
        font-size: 1.4rem;
        margin-right: 8px;
        width: 24px;
        height: 24px;
        padding-left: 6px;
    }
    .accordion-title:before {
        right: 12px;
    }
    .accordion-title:after {
        right: 12px;
    }
    .accordion-text {
        padding: 20px 16px;
    }
    /*エントリーエリア*/
    .entry-bg{
        padding: 40px 0px;
    }

   /*お問い合わせページ*/
    .contact-wrap{
        padding-top: 40px;
    }
    .tel-wrap{
        width: 85%;
    }
    .tel{
        font-size: 2.4rem;
    }
    .contact-box h2{
        font-size: 1.6rem;
    }
    .form-table select{
        width: 100%;
    }
    .form-table textarea{
        width: 100%;
    }
    .check-container{
        font-size: 1.6rem;
    }
    .check_content label {
        width: 100%;
        padding: 16px;
    }
    .privacypolicy p{
        width: 100%;
    }
    .submit_btn input[type="submit"]{
        width: 100%;
    }
}