@charset"UTF-8";


/**********************
 * 基本CSS
 * ********************/


/**スマホＰＣ画像切り替え**/
.pc {display: block;}
.sp {display: none;}

@media screen and (max-width: 767px){
	.pc{display: none;}
	.sp{display: block;}
}


/*全体の文字サイズ指定*/
body{
	font-size: 15px !important;
	color:#232323;
	font-family: 'Noto Sans JP', sans-serif;
	margin:0;
	padding:0;
	line-height: 180%;
        box-sizing:border-box;
}

@media screen and (min-width: 767px){
	body{
		font-size: 16px !important;
		letter-spacing: 0.5px;
		line-height:180%;
	}
}

/**** スペース ****/
.space5 {width:100%; height:5px;}
.space10 {width:100%; height:10px;}
.space20 {width:100%; height:20px;}
.space30 {width:100%; height:30px;}
.space40 {width:100%; height:40px;}
.space50 {width:100%; height:50px;}
.space50 {width:100%; height:60px;}
.space100 {width:100%; height:100px;}

@media screen and (min-width: 767px){
	.space5 {width:100%; height:10px;}
	.space10 {width:100%; height:20px;}
	.space20 {width:100%; height:40px;}
	.space30 {width:100%; height:60px;}
	.space40 {width:100%; height:80px;}
	.space50 {width:100%; height:100px;}
	.space60 {width:100%; height:120px;}
}

/*リンクhover*/

a:hover{
	opacity:0.8;
}

a{
	cursor: pointer;
	transition:0.8s ease;
}

/*共通*/

.center{
	text-align:center;
}

li{
	list-style-type:none;
}

img{
 	max-width:100%;
}


/***** フレックス ******/


.flexArea{
	display:flex;
	flex-wrap:wrap;
}

.flex_between{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}


/*********************
*
*ライトボックス
*
**********************/


.lb-outerContainer {
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0!important;
}


.lightbox {
    height: 100vh;
}

.lb-dataContainer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-550%);
}

/*********************
*
*ヘッダー
*
**********************/


header {
    border-top: 5px solid #264b7f;
    position:relative;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    width: 95%;
    box-sizing:border-box;
}

.haader_area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:0.8rem 0;
}

.haader_area h1{
    margin:0;
}

.haader_area nav.pc_nav ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    align-items:center;
}

.haader_area nav.pc_nav ul li{
    margin-left:2rem;
  
}

.haader_area nav.pc_nav ul li a{
    color:#2b2b2b;
    text-decoration:none;
    font-weight:500;
    display:inline-block;
}

.haader_area nav.pc_nav ul li a:hover{
    color:#b94145;
}

.haader_area nav.pc_nav ul li:last-of-type a{
    background:#b94145;
    color:#fff;
    border-radius:0.5rem;
    padding:0.8rem 1.5rem;
}

.haader_area nav.pc_nav ul li:last-of-type a:hover{
    background:#8e2d34;
    color:#fff;
    opacity:1;
}

.main_img img {
    width: 100%;
}

header.fixed{
   position:fixed;
   top:0;
   left:0;
   z-index:1000;
   width: 100%;
   background: #fff;
   box-shadow:2px 2px 4px rgba(79,80,81,0.5);
}


/*********************
*
*ハンバーガーメニュー
*
**********************/

.h_menu_area{
   display:none;
}

.h_menu {
	width:50px;
	height:50px;
	background:transparent;
	text-align:center;
	z-index:10003;
	position:fixed;
	top:5px;
	right:0;
}

.h_menu:hover {
    cursor: pointer;
}

.bar {
	width:28px;
	height:2px;
	background:#264b7f;
	display:block;
	position:absolute;
	left:50%;
	border-radius:5px;
}

.bar_top {
	top:25px;
	transform:translate(-50%,-10px);
    	transition: transform .8s;  
}

.bar_middle {
	top:50%;
	transform:translate(-50%,-50%);
    	transition: transform .8s;  
}

.bar_bottom {
	top:23px;
	transform:translate(-50%,10px);
    	transition: transform .8s;  
}

.bar.bar_top.close {
    	transform: translate(-50%,0) rotate(45deg);      
    	transition: transform .8s;
        background:#fff;
}

.bar.bar_middle.close {
    	opacity: 0;       
    	transition: opacity .8s;   
}

.bar.bar_bottom.close {
    	transform: translate(-50%,0) rotate(-45deg);      
    	transition: transform .8s;
        top:25px;
        background:#fff;
}

#h_menu_toggle{
    	width: 100vw;
    	height: 100vh;
	position:fixed;
	top:0;
	left:0;
	z-index:10000;
	display:none;
}

#h_menu_box {
    	width: 100vw;
    	height: 100vh;
    	background: rgba(38,75,127,1);
    	top: 0;
    	left: 0;
	display:flex;
	align-items:center;
	position:fixed;
    	padding: 30px;
	z-index:10001;
        box-sizing: border-box;
}

#h_menu_box nav{
	max-width:350px;
	width:100%;
	margin:0 auto;
	text-align:center;
}

.h_menu_btn a{
	background:#a82112;
	color:#fff;
	display:block;
	padding: 15px 10px;
}

.h_menu_btn a:hover{
	background:#89140b;
	opacity:1;
}

.h_menu_btn a span{
	display:block;
	font-size:12px;
	line-height:130%;
}

ul.h_memu_list {
    	padding: 0;
    	margin: 20px 0;
}

ul.h_memu_list li{
    	border-bottom:1px solid rgba(255,255,255,0.5);
}

ul.h_memu_list li:first-of-type{
    	border-top:1px solid rgba(255,255,255,0.5);
}

ul.h_memu_list li a{
    	padding:10px;
	display:block;
	font-size:15px;
        color:#fff;
        text-decoration:none;
}

ul.h_memu_list li a:hover{
	color:#a82112;
	background:rgba(244,244,244,0.5);
	opacity:1;
}

a.h_menu_tel {
    font-size: 25px;
    display: inline-block;
    margin: 0;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

a.h_menu_tel span{
    	font-size: 18px;
    	display: inline-block;
    	padding-right:5px;
}

a.h_menu_tel:hover {
    	color:#a82112;
}

h1.h_menu_logo {
    	max-width: 220px;
    	margin: 0 auto;
	width:100%;
}

.h_menu_info p{
   color:#fff;
   margin:0;
   font-size:13px;
}



/*********************
*
*メイン画像
*
**********************/

ul.main_slide {
    padding: 0;
    margin: 0;
}

button.slick-prev.slick-arrow {
    display: none!important;
}

button.slick-next.slick-arrow {
    display: none!important;
}

.slick-dots li button:before {
    font-size: 25px!important;
    opacity: 0.5;
    color: #ccc;
}

.slick-dots {
    bottom: 20px;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #264b7f!important;
}

.slick-dotted.slick-slider {
    margin-bottom: 0;
}

/*********************
*
*トップページ
*
**********************/

section{
    padding:4rem 0;
}

#main_contents section:first-of-type{
   padding-top:0;
}


#main_contents {
    padding: 3rem 0 0;
}

.bg_deco_area{
  position:relative;
  overflow:hidden;
}

.bg_deco_area:before {
    content: "";
    width: 46rem;
    height: 56rem;
    position: absolute;
    background-image: url(../image/top/bg_deco.png);
    background-repeat: no-repeat;
    background-size: contain;
    top: -13rem;
    right: -7rem;
    z-index:-1;
}


h2.main_h2 {
    color: #264b7f;
    font-weight: bold;
    font-size: 1.8rem;
    margin: 0 0 4rem;
}

h2.main_h2 span{
    font-size: 1.2rem;
    margin-bottom:0.5rem;
    display:block;
    font-weight:normal;
}

.main_ttl {
    color: #264b7f;
    font-weight: bold;
    font-size: 2.5rem;
    line-height: 160%;
    margin-bottom: 1rem;
}

ul.service_list {
    padding: 0;
    margin: 5rem 0 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

ul.service_list li{
    width:31%;
    margin-bottom:3rem;
}

ul.service_list li h3 {
    color: #264b7f;
    text-align: center;
    padding: 0;
    margin: 1rem 0 0.5rem;
    font-weight:normal;
}

ul.service_list li p{
    text-align:center;
    max-width: 355px;
    width:100%;
    margin: 0 auto;
}

ul.service_list li:nth-of-type(3) p{
    text-align:left;
}

ul.service_list li:nth-of-type(5) p{
    text-align:left;
}


/*********************
*
*トップページ｜施工実績
*
**********************/

.works_section {
    background: #ededed;
}


.works_section h2.main_h2{
    text-align:center;
}

a.blue_btn {
    text-decoration: none;
    background: #264b7f;
    color: #fff;
    max-width: 350px;
    width: 100%;
    display: block;
    text-align: center;
    font-size: 1.3rem;
    padding: 1.2rem 0.5rem;
    margin: 0 auto;
    position: relative;
}

a.blue_btn:after {
    content: "\f105";
    font-weight: bold;
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
    transition:0.5s;
}

a.blue_btn:hover{
    background:#163254;
    opacity:1;
    color:#fff;
}

a.blue_btn:hover:after{
    right: 0.2rem;
}

ul.works_slide_list {
    padding: 0;
    margin: 0 0 2rem;
}

ul.works_slide_list li.slick-slide {
    margin-right: 0.8rem;
}

/*********************
*
*トップページ｜バナー
*
**********************/

.bnr_area {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.bnr_area a{
    display:block;
    position:relative;
    width:47%;
}


.bnr_area a:after{
    content:"";
    width:100%;
    height:100%;
    display:block;
    position:absolute;
    top:0;
    left:0;
    background:rgba(38,75,127,0.4);
    transition:0.5s ease;
}

.bnr_area a img{
    vertical-align:top;
    width:100%;
}

.bnr_txt {
    z-index: 3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

h2.bnr_ttl {
    color: #fff;
    margin: 0;
    font-size: 1.8rem;
    letter-spacing: 2px;
    width: 100%;
    text-align: center;
}

h2.bnr_ttl span{
    color: #ffff00;
    font-size: 1rem;
    letter-spacing: 1px;
    display:block;
    margin-top:0.5rem;
    font-weight:normal;
    line-height:140%;
}

.bnr_area a:hover{
    opacity:1;
}

.bnr_area a:hover:after{
    background:rgba(38,75,127,0.7);
}


/*********************
*
*トップページ｜アクセス
*
**********************/

section.access_area {
    padding: 0;
    background:#ededed;
}

.access_area {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.google_map {
    width: 50%;
　　height:100%;
    min-height: 25rem;
}


.access_info {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.access_inner {
    padding: 1rem 1.5rem;
    text-align: center;
}

a.tel_link {
    color: #2b3c43;
    text-decoration: none;
    font-weight: bold;
    font-size: 2rem;
    margin-top: 0.5rem;
    display: inline-block;
}

.access_info_table {
    margin: 20px auto 0;
    max-width: 250px;
}

.access_info_table .access_info_child:last-of-type{
    margin-bottom:0;
}

.access_info_child {
    display: table;
    margin-bottom:15px;
}

.access_info_ttl {
    background: #264b7f;
    color: #fff;
    display: table-cell;
    width: 100px;
    text-align: center;
    font-size: 14px;
}

.access_info_txt {
    display: table-cell;
    width: calc(100% - 100px);
    padding-left: 15px;
    letter-spacing:2px;
}

.access_inner p {
    margin: 0;
    color:#4f5051;
    font-size:15px;
}


/*********************
*
*トップページ｜お問い合わせ
*
**********************/

section.contact_area {
    background: #264b7f;
}

h2.contact_h2 {
    color: #fff;
    text-align: center;
    font-size: 2.5rem;
    font-weight: normal;
    padding: 0;
    margin: 0 0 2rem;
}

.contact_area p{
   color:#fff;
   text-align:center;
}

.contact_flex {
    max-width: 880px;
    margin: 3rem auto 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position:relative;
}

.contact_flex:after {
   content:"";
   width:1px;
   height:100%;
   background:#fff;
   position:absolute;
   top:0;
   left:50%;
   transform:tranlateX(-50%);
   display:inline-block;

}

.contact_flex a {
    width: 46%;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #fff;
    padding: 1.5rem 0.5rem;
    box-sizing: border-box;
    font-size: 1.4rem;
}

.contact_flex a:nth-of-type(2) {
    border: 1px solid #b94145;
    background:#b94145;
    position:relative;
}

.contact_flex a:first-of-type i {
    font-weight: bold;
    font-family: "Font Awesome 5 Free";
    transform: rotate(102deg);
    display: inline-block;
    margin-right: 0.5rem;
    font-size:1.5rem;
}

.contact_flex a:first-of-type {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact_flex a:first-of-type:hover {
    background:#fff;
    color:#264b7f;
    opacity:1;
}

.contact_flex a:nth-of-type(2) {
    position:relative;
}

.contact_flex a:nth-of-type(2):after {
    content: "\f105";
    font-weight: bold;
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
    transition: 0.5s;
}

.contact_flex a:nth-of-type(2):hover{
    background:#8e2d34;
    border-color:#8e2d34;
    color:#fff;
    opacity:1;
}


.contact_flex a:nth-of-type(2):hover:after{
    right:0.2rem;
}


input[type="submit"], input[type="button"]{
    background: linear-gradient(to bottom, #0071bc, #264b7f);
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 0.5rem;
    padding: 0.8rem;
    max-width: 180px;
    width: 45%;
    display: inline-block;
}

p.error_messe {
    max-width: 350px;
    margin: 0 auto 8px;
    text-align: left!important;
    width: 100%;
    color: red;
}

h2.thanks_ttl {
    border-bottom: 1px solid #264b7f;
    padding-bottom: 0.8rem;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

/*********************
*
*フッター
*
**********************/

.footer_info_container {
    display: flex;
    align-items:center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.footer_info_container a.pana_bnr{
    width:48%;
    display:block;
}

.footer_info_container a.pana_bnr img{
    vertical-align:top;
}

.footer_info {
    width: 48%;
}

.footer_info_container img{
    width:100%;
    vertical-align:center;
}


.copyright {
    background: #264b7f;
    padding: 5px 0;
}

.copyright p{
    color:#fff;
    font-size:12px;
    text-align:center;
}

/*********************
*
*会社案内ページ
*
**********************/

.page_header {
    background-image: url(../image/company/page_header.jpg);
    background-size:cover;
    background-repeat:no-repeat;
    padding:2rem 0;
}

h1.page_ttl {
    color: #fff;
    text-align: center;
    font-size: 2rem;
    letter-spacing: 2px;
    margin: 1.5rem 0;
}

.philosophy_txt {
    width: 75%;
}

.philosophy_img {
    width: 20%;
}

.greeting_bg {
    background: #fff8ee;
    padding: 4rem;
}

.greeting_bg p{
    font-size:15px;
    margin-bottom:0;
    letter-spacing:0;
}

h2.main_h2.greeting_ttl {
    border-bottom: 1px solid #2b3c43;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    display:flex;
    align-items:center;
}

h2.main_h2.greeting_ttl span{
    display:inline-block;
    margin-left:1.5rem;
    margin-bottom: 0;
    color:#2b3c43;
}

section.greeting_area {
    padding-top: 0;
}

h2.bd_h2 {
    color: #264b7f;
    font-size: 1.8rem;
    text-align: center;
    margin: 0 0 3rem;
}

h2.bd_h2 span {
    font-size: 1.2rem;
    display: block;
    font-weight: normal;
    margin-top: 0.5rem;
}

h2.bd_h2:after {
    content: "";
    display: block;
    width: 3rem;
    height: 2px;
    background: #be4145;
    margin: 0.5rem auto 0;
}

.outline_img {
    display: none;
}

.outline_txt {
    width:52%;
}

.outline_bg{
    position:relative;
}

.outline_bg:after{
    content:"";
    width:43%;
    height:100%;
    display:block;
    background-image:url(../image/company/outline.jpg);
    background-repeat:no-repeat;
    background-position:center;
    background-size:cover;
    position: absolute;
    top:0;
    left:0;
}

.outline_flex {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    min-height: 26rem;
    align-items: center;
}

.outline_txt table {
    border-collapse: separate;
    border-spacing: 0;
    width:100%;
    border-top:1px solid #2b3c43;
}

.outline_txt table th{
    width:200px;
    text-align:center;
    font-weight:normal;
    border-bottom:1px solid #2b3c43;
    font-size:15px;
    padding: 8px 5px;
}

.outline_txt table td{
    border-bottom:1px solid #2b3c43;
    font-size:15px;
    padding: 0.5rem 0.2rem;
}

a.map_btn {
    color: #264b7f;
    text-decoration: none;
    display: inline-block;
    margin-left: 0.5rem;
}

a.map_btn:hover {
    color: #264b7f;
    opacity:1;
}

section.history_area {
    background: #e8f3f7;
}

.history_child {
    background: #fff;
    border-radius: 0.5rem;
    padding: 1rem 2.5rem;
    display: table;
    width: 100%;
    margin-bottom: 1rem;
    font-size:15px;
    box-sizing:border-box;
}

.year {
    display: table-cell;
    width: 80px;
}

.seireki {
    display: table-cell;
    width: 120px;
}

.history_child  p{
    display:table-cell;
    width:calc(100% - 200px);
    margin:0;
}

.history_box {
    max-width: 880px;
    margin: 0 auto;
    width: 100%;
}


/*********************
*
*事業内容ページ
*
**********************/

.service_child_box {
    margin-top: 5rem;
}

.service_child {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.service_child_box .service_child:last-of-type{
    margin-bottom:0;
}

.service_child_img {
    width: 45%;
}

.service_child_img img{
    width: 100%;
}

.service_child_txt {
    width: 50%;
}

.service_child_txt h3 {
    color: #264b7f;
    border-top: 2px solid #264b7f;
    border-bottom: 2px solid #264b7f;
    padding: 0.8rem;
    font-size: 1.5rem;
    font-weight: normal;
    margin: 0 0 1.5rem;
}

.service_num {
    color: #f7931e;
    font-weight: bold;
    font-size: 1.1rem;
    padding-left: 0.8rem;
    margin-bottom: 0.2rem;
}


/*********************
*
*施工実績ページ
*
**********************/

ul.works_child_box {
    padding: 0;
    margin: 5rem 0 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

li.works_child{
    margin:0 0 3rem;
    width:48%;
}

li.works_child a{
    width:100%;
    display:block;
    overflow:hidden;
    position:relative;
}

li.works_child a:after{
    content:"";
    width:100%;
    height:100%;
    background:rgba(38,75,127,0);
    position:absolute;
    display:block;
    top:0;
    left:0;
    transition:0.5s;
}

li.works_child a:hover:after{
    background:rgba(38,75,127,0.2);
}

li.works_child a img{
   width:100%;
   transition:0.5s;
   display:block;
   vertical-align:top;
}

li.works_child a:hover{
   opacity:1;
}

li.works_child a:hover img{
   transform:scale(1.03);
}

.works_child_txt {
    display: flex;
    align-items: center;
}

.works_child_txt span {
    background: #264b7f;
    color: #fff;
    font-size: 15px;
    display: inline-block;
    line-height: 150%;
    padding: 0.2rem 1em;
    margin-right: 0.8rem;
}

.works_child_txt p{
   font-weight:bold;
   color:#2b3c43;
}

/*********************
*
*採用情報ページ
*
**********************/

.recruit_main_img {
    margin-bottom: 4rem;
}

.recruit_main_img img {
    width: 100%;
}

h2.h2_style03 {
    text-align: center;
    color: #264b7f;
    font-size: 1.8rem;
    padding: 0;
    margin: 0 0 1.5rem;
    font-weight:bold;
}

h2.h2_style03 span{
    color: #f7931e;
    font-size: 1.2rem;
    display:block;
    font-weight:normal;
    margin-bottom:0.5rem;
}

p.center_p {
    margin: 0;
    text-align: center;
    font-size: 1rem;
}

.recruit_box {
    border: 1px solid #4d4d4d;
    border-radius: 0.5rem;
    max-width: 900px;
    width: 100%;
    margin: 3rem auto 2rem;
    padding: 3rem 1rem;
    box-sizing:border-box;
}

table.recruit_table {
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
}

table.recruit_table th{
    width:150px;
    text-align:center;
    font-weight:normal;
    color:#2b2b2b;
}

table.recruit_table td{
   color:#000;
}

table.recruit_table th, table.recruit_table td{
   padding:1rem 0.5rem;
   vertical-align:top;
   font-size:15px;
   line-height:160%;
}

ul.recruit_list {
    padding: 0;
    margin: 0;
}

ul.recruit_list li:before{
    content:"・";
}

.method_box {
    max-width: 900px;
    margin: 0 auto;
    background: #264b7f;
    border-radius: 0.5rem;
    padding: 0.8rem;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
}

.method_ttl {
    color: #ffff00;
    border-right: 1px solid #ffff00;
    width: 180px;
    font-weight:bold;
    text-align: center;
    font-size: 1.3rem;
    letter-spacing: 2px;
    box-sizing:border-box;
    padding:0.8rem 0.5rem;
}

.method_txt {
    color: #fff;
    font-size: 1rem;
    width:calc(100% - 180px);
    padding:0.8rem 0.5rem 0.8rem 2.5rem;
    box-sizing:border-box;
}

/*********************
*
*お問い合わせ
*
**********************/

#mail_form {
    max-width: 800px;
    margin: 4rem auto 0;
    width: 100%;
}

input.long {
    width: 100%;
}

input.middle {
    max-width:320px;
    width:100%;
}

input {
    padding: 0.5rem;
    box-sizing:border-box;
}

#mail_form dl {
    display: flex;
    width: 100%;
    border-bottom:1px solid #aaa;
    margin:0;
}

#mail_form dl:first-of-type {
    border-top:1px solid #aaa;
}

#mail_form dd {
    display:block;
    vertical-align: middle;
    width:calc(100% - 280px);
    padding:0.8rem;
    box-sizing:border-box;
    font-size:15px;
    word-wrap: break-word;
    margin:0!important;
}


#mail_form dt {
    display:block;
    width: 280px;
    vertical-align: middle;
    padding:0.8rem;
    box-sizing:border-box;
    font-size:15px;
}

textarea.long {
    width: 100%;
}

span.c_red {
    color: #ff0000;
    font-size: 14px;
    display: inline-block;
    margin-left: 0.5rem;
}


input#form_submit_button {
    max-width: 280px;
    width: 80%;
    display: block;
    margin: 1.5rem auto 0;
    font-size: 1.1rem;
    border: none;
    padding: 1rem 0.5rem;
    color: #fff;
    background: linear-gradient(to bottom, #0071bc, #264b7f);
    border-radius: 0.5rem;
    letter-spacing: 2px;
    cursor:pointer;
}

input#form_submit_button:hover{
    background: #264b7f;
    opacity:1;
}

.policy_box {
    max-width: 800px;
    width:100%;
    margin: 3rem auto 0;
}

h3.policy_child_ttl {
    margin: 0;
    font-size: 1.1rem;
}

.policy_child {
    margin-bottom: 1.5rem;
}

.policy_child p{
    margin:0;
    font-size:15px;
}

.policy_child ul{
    margin:0;
    padding:0;
}

.policy_child ul li:before{
    content:"・";
}

#formWrap p {
    text-align: center;
}
/*********************
*
*ページトップボタン
*
**********************/

#page_top{
   position:fixed;
   bottom:3.5rem;
   right:1rem;
   background:#fff;
   width:50px;
   height:50px;
   border:2px solid #264b7f;
   color:#264b7f;
   border-radius:0.5rem;
   z-index:100;
   box-shadow:0 0 3px rgba(23,54,91,0.5);
   text-decoration:none;
   display: flex;
   align-items: center;
   justify-content: space-around;
}

#page_top i {
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    font-size: 1.5rem;
    font-style: normal;
}

/*********************
*
*レスポンシブ
*
**********************/

@media(max-width:1198px){
.container{
    max-width:980px;
}
}

@media(max-width:990px){
.container{
    max-width:860px;
    width: 100%;
    padding: 0 20px;
}

.haader_area h1 {
    width: 250px;
}

.haader_area h1 a img{
    width:100%;
}

.haader_area nav ul li a {
    font-size: 14px;
}

.haader_area.container {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}

section.greeting_area {
    padding-top: 40px;
}

.greeting_bg {
    padding-top: 40px;
    padding-bottom: 40px;
}
}

@media(max-width:840px){
.haader_area {
    justify-content: center;
}

.haader_area nav.pc_nav{
    display:none;
}

ul.service_list li{
   width:48%;
   margin-bottom: 30px;
}

.h_menu_area{
   display:block;
}

.outline_bg:after{
    display:none;
}

.outline_img {
    display: block;
    width:100%;
    margin-bottom: 20px;
}

.outline_img img{
    width:100%;
}

.outline_txt {
    width: 100%;
}

.outline_flex{
    min-height:auto;
}

.outline_txt table th, .outline_txt table td{
    width: 100%;
    display: block;
    font-size: 13px;
    text-align:center;
    border:none;
    padding:5px;
    box-sizing:border-box;
}


.outline_txt table th{
    background:#f5f5f5;
    border:none;
}

.outline_txt table td{
   margin-bottom:5px;
}

.outline_txt table{
   border:none;
}

}

@media(max-width:767px){

ul.service_list {
    margin: 40px 0 0;
}

ul.service_list li h3 {
    margin: 10px 0 8px;
    font-size: 16px;
}

ul.service_list li p {
    text-align: left;
    font-size: 14px;
    line-height: 150%;
}

.main_ttl {
    font-size: 25px;
    margin-bottom: 15px;
}

h2.main_h2 {
    font-size: 20px;
    margin: 0 0 40px;
}

h2.main_h2 span {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 160%;
}

section {
    padding: 20px 0;
}

a.blue_btn {
    font-size: 16px;
    padding: 15px 10px;
    max-width:250px;
}

.bnr_area{
    flex-direction:column;
    align-items:center;
}

.bnr_area a {
    max-width:550px;
    width: 100%;
    margin-bottom: 15px;
}

.bnr_area a:last-of-type {
    margin-bottom: 0;
}

section.container.bnr_area {
    padding-top: 20px;
    padding-bottom: 20px;
}

h2.bnr_ttl {
    font-size: 20px;
}

h2.bnr_ttl span {
    font-size: 14px;
    margin-top: 5px;
}

.access_area {
    flex-direction: column-reverse;
}

.access_info {
    width: 100%;
}

.google_map {
    width: 100%;
    height: 280px;
    min-height: auto;
}

.access_inner {
    padding: 30px 20px;
}

.access_inner img {
    max-width: 280px;
}

h2.contact_h2 {
    font-size: 28px;
    margin: 0 0 30px;
}

.contact_area p {
    font-size: 14px;
    line-height: 160%;
}

.contact_flex{
    flex-direction:column;
    margin-top: 30px;
}

.contact_flex a {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 15px;
    padding: 20px 10px;
    font-size: 18px;
}

.contact_flex a:last-of-type {
    margin-bottom:0;
}

.contact_flex:after{
    display:none;
}

.footer_info_container {
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer_info_container a.pana_bnr {
    max-width: 280px;
    width: 100%;
}

.footer_info {
    width: 100%;
    text-align: center;
}

.footer_info p {
    font-size: 14px;
    line-height: 160%;
    margin-bottom: 0;
}

.copyright p {
    font-size:11px;
}

ul.service_list li p {
    text-align: center;
}

.haader_area h1 {
    width: 200px;
}

a.tel_link {
    font-size: 28px;
    margin-top: 5px;
}

.access_info_child {
    margin-bottom: 10px;
}

.bg_deco_area:before {
    width: 25rem;
    height: 25rem;
    top: -8rem;
    right: -10rem;
}

ul.main_slide li.slick-slide{
   height:22rem;
}

ul.main_slide li.slick-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.haader_area.container {
    padding-top: 3px;
    padding-bottom: 3px;
    height: 55px;
}

.page_header {
    padding: 15px 0;
    background-position:center;
}

h1.page_ttl {
    font-size: 20px;
    margin: 10px 0;
}

.philosophy_txt {
    width: 100%;
    margin-bottom:20px;
}

.philosophy_img {
    width: 100%;
    text-align: center;
    max-width: 200px;
    margin: 0 auto;
}

h2.main_h2.greeting_ttl {
    padding-bottom: 15px;
    margin-bottom: 20px;
    flex-direction: column-reverse;
    align-items: flex-start;
}

h2.main_h2.greeting_ttl span {
    margin-left: 0;
    line-height:160%;
}

.greeting_bg p {
    font-size: 14px;
}

h2.bd_h2 {
    font-size: 20px;
    margin: 0 0 30px;
}

h2.bd_h2 span {
    font-size: 14px;
    margin-top:0;
    line-height: 160%;
}

h2.bd_h2:after {
    width: 35px;
    margin: 8px auto 0;
}

.year {
    width: 60px;
    font-size: 14px;
}

.seireki {
    width: 100px;
    font-size: 14px;
}

.history_child {
    padding: 10px 15px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
    font-size: 14px;
}

.history_child p {
    display: block;
    margin: 0;
    width: 100%;
    line-height: 160%;
}

.service_child_box {
    margin-top: 40px;
    margin-bottom: 40px;
}

.service_child {
    margin-bottom: 30px;
}

.service_child_img {
    width: 100%;
}

.service_child_txt {
    width: 100%;
    margin-top: 20px;
}

.service_num {
    font-size: 14px;
    padding-left:5px;
}

.service_child_txt h3 {
    padding: 8px 5px;
    font-size: 18px;
    margin: 0 0 15px;
}

.service_child_txt p {
    font-size: 14px;
}

ul.works_child_box {
    margin: 40px 0;

}

.works_child_txt {
    flex-direction: column;
    align-items: flex-start;
}

.works_child_txt span {
    font-size: 13px;
    line-height: 140%;
    padding: 3px 8px;
    margin-right: 0;
}

.works_child_txt p {
    font-size: 13px;
    line-height: 150%;
    margin: 5px 0 0;
    font-weight: normal;
}

li.works_child {
    margin: 0 0 20px;
}

li.works_child a {
    margin-bottom: 8px;
}

#main_contents {
    padding: 30px 0 0;
}

.recruit_main_img {
    margin-bottom: 30px;
}

h2.h2_style03 {
    font-size: 20px;
    margin: 0 0 20px;
}

h2.h2_style03 span {
    font-size: 14px;
    line-height: 160%;
    margin: 0;
}

p.center_p {
    font-size: 14px;
}

.recruit_box {
    margin: 20px auto;
    padding: 20px 15px;
    border-color: #ccc;
}

table.recruit_table th, table.recruit_table td {
    font-size: 13px;
    width: 100%;
    display: block;
    box-sizing:border-box;
    padding: 5px;
    line-height: 150%;
    text-align:left;
}

table.recruit_table th{
    background:#f5f5f5;
}

table.recruit_table td{
   margin-bottom:5px;
}

.method_box {
    padding: 20px 15px;
    margin-bottom: 40px;
}

.method_ttl {
    width:100%;
    border:none;
    font-size: 17px;
    padding: 0;
    margin-bottom:15px;
}

.method_ttl:after {
    content:"";
    width:40px;
    height:2px;
    background:#ffff00;
    display:block;
    margin: 8px auto 0;
}

.method_txt {
    width: 100%;
    font-size: 14px;
    padding: 0 15px;
    line-height: 160%;
}

#mail_form {
    margin: 30px auto 0;
}

#mail_form dd, #mail_form dt{
    display: block;
    width: 100%;
    font-size: 14px;
    margin: 0;
    padding:5px;
}

#mail_form dl{
   border-color:#ccc;
}

#mail_form dt{
   background:#f5f5f5;
   margin-bottom:5px;
}

#mail_form dd{
    margin-bottom:8px;
}

input#form_submit_button {
    margin: 20px auto 0;
    font-size: 15px;
    padding: 15px 8px;
    max-width:250px;
}

.policy_box {
    margin: 30px auto 0;
}

h3.policy_child_ttl {
    font-size: 15px;
}

.policy_child p {
    line-height:160%;
    font-size: 14px;
}

.policy_child {
    margin-bottom: 20px;
}

.page_header .container {
    min-height: 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

h2.thanks_ttl {
    padding-bottom: 8px;
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 150%;
}

.thanks_txt p {
    font-size: 14px;
    line-height: 160%;
}

}


@media(max-width:560px){

ul.service_list li{
   width:100%;
}

}