:root {
    --easing: cubic-bezier(.2, 1, .2, 1);
    --transition: .8s var(--easing);
    --color-base: #f8f8f8;
    --color-gray: #ddd;
    --color-gray-darken: #303030;
    --color-theme: #000000;
    --color-right: #ccc;
    --color-other: #897151;
    --color-other-darken: #60481D;
    --color-theme-darken: #564425;
    --box-shadow: .8rem .8rem 1.2rem rgba(0, 0, 0, .05), -.8rem -.8rem 1.2rem #fff;
    --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, .08), -1rem -1rem 1.5rem #fff;
    --box-shadow-inset: inset .8rem .8rem 1.2rem rgba(0, 0, 0, .05), inset -.8rem -.8rem 1.2rem #fff;
    --box-shadow-dark: .8rem .8rem 1.2rem rgba(0, 0, 0, .1), -.8rem -.8rem 1.2rem rgba(#fff,.2);
  }
* {
	margin: 0;
	padding: 0;
}
*::after,
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/* RESET
----------------------------------------------------------------------------------------------------*/
a,article,body,dd,div,dl,dt,em,form,footer,header,h1,h2,h3,h4,h5,h6,html,i,iframe,img,label,legend,li,nav,ol,p,section,main,span,table,tbody,tfoot,thead,time,tr,th,td,ul,video{font-family:inherit;font-size:100%;font-weight:inherit;font-style:inherit;vertical-align:baseline;white-space:normal;margin:0;padding:0;border:0;outline:0;background:transparent;line-height:1.8;/*text-align:left*/}textarea{font-family:inherit;font-size:100%;font-weight:inherit;font-style:inherit;vertical-align:baseline;margin:0;padding:0;border:0;outline:0;background:transparent;line-height:1.6;text-align:left}article,footer,header,nav,section,main{display:block}ol,ul{list-style:none}table{border-collapse:collapse;border-spacing:0}

html {
    scroll-behavior: smooth;
}
body {
font-family: YuGothic, Yu Gothic, "游ゴシック", "メイリオ", "Meiryo", sans-serif;
    line-height: 1.8;
    letter-spacing: .75px;
    word-wrap: break-word;
    color: #000000;
    -webkit-text-size-adjust: 100%;
    overflow-wrap: break-word;
    font-size: 15px; 
    background:#F9F9F9;
}
.center {text-align: center;}
.h1_logo {font-size: 12px; padding: 0; margin: 0; }

@media screen and (max-width: 768px) {
    body {
font-size: 11.5px; line-height: 1.6em; letter-spacing: .3px;}
    .h1_logo {font-size: 7px; padding: 0 5px; margin: 0; }

}

/*パンくずリスト*/
.pankuzu_box {
    padding: 15px 15px; }
.breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
    font-size: 12px;
    text-align: right;
}
@media screen and (max-width: 768px) {
    .pankuzu_box {padding: 10px 4%;
    background-color: #f4f8f9;}
    .breadcrumb {
    font-size: 10px;
}
}
.breadcrumb li {
  display: inline;/*横に並ぶように*/
  list-style: none;
  font-weight: bold;/*太字*/
}

.breadcrumb li:after {/* >を表示*/
  content: '>';
  padding: 0 0.2em;
  color: #000000;
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb li a {
  text-decoration: none;
  color:#000000;/*色*/
    transition:all 0.5s;
}

.breadcrumb li a:hover {
  text-decoration: none;
    border-bottom: solid 1px #000000;
    
}
/*パンくずリスト*/

a {vertical-align:bottom}
a {transition: 0.2s ;}
img {vertical-align:bottom}
.cntr{text-align: center;}
@media screen and (max-width: 480px) {
.cntr{text-align: left;}
}
a {text-decoration: none;}
/*webpage読み込み時にフェードイン*/
body {
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
/*webpage読み込み時にフェードイン*/


a {
	color: #000000;
}
a:hover {
	color: #000000;
}



/* ---------------------------------------------------------------------------------------------

　   HEADER

--------------------------------------------------------------------------------------------- */
    /*headerの背景色*/
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(45deg, #757575 0%, #9E9E9E 45%, #E8E8E8 70%, #9E9E9E 85%, #757575 90% 100%);
  transition: all 0.8s ease;
    z-index: 3333;
    box-shadow: 0px 3px 15px rgba(0,0,0,0.2);

}
.hidden {
  background-color: rgba(255,255,255,0.9);
    transition: all 0.8s ease;
}
    /*headerの背景色*/
.bunner_box { width: 900px; margin: 5px auto;
display: flex;
  flex-wrap: wrap;
  align-items: center;
justify-content: flex-start;
    padding: 5px 0px;
}
.bunner_box .h1_logo {margin-right: auto;}

.logo {width: 240px;}
.logo img {width: 240px;}
@media only screen and (max-width: 1200px) {
    .logo img {width: 200px;}
}
@media screen and (max-width: 900px) {
.bunner_box {
    width: 100%;
   display: flex;
  flex-wrap: wrap;
  align-items: center;
justify-content: flex-end;
    margin: 5px 0;
    padding: 5px 10px;

}
}
.tel_box {
    margin-left: auto;
/*    background-color: #2c6790;
*/    display: flex;
  flex-wrap: wrap;
  align-items: center;
justify-content: flex-end;

}

@media screen and (max-width: 959px) {
    .tel_box {display: none;}
}
.tel_box_tel a {
    font-size: 20px;
    padding: 0;
    font-weight: normal;
    text-decoration: none;
    line-height: 1.4em;
font-family: 'Roboto', sans-serif;
    color:  var(--color-theme);

}
.tel_box a i {color: var(--color-other);}
.tel_txt {
    font-size: 12px;
    font-weight: normal;
    color:  var(--color-theme);
    border: solid 1px  var(--color-theme);
    padding: 1px 10px;
    vertical-align: middle;
    margin-right: 1em;
}
.btn2 a {
    
    border-radius: 20px;
    color: #FFF;
    font-weight: normal;
    padding: 0.5em 0.8em;
    margin: 0em 1em 0em;
background: linear-gradient(45deg, #846D3E 0%, #846D3E 45%, #E2C569 70%, #846D3E 85%, #846D3E 90% 100%);
  background-size: 800% 400%;
  animation: gradient 5s infinite cubic-bezier(.62, .28, .23, .99) both;

}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}
.btn2 a i {color: #FFF;}
.btn2 a:hover {
    background: var(--color-other-darken);
}
@media screen and (max-width: 1200px) {
    .tel_box a {
    font-size: 20px;
    padding: 0;
    color: #000000;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Pathway Gothic One', sans-serif;


}
.tel_txt {
    font-size: 13px;
    color: #000;
    border: solid 1px #000;
    padding: 1px 5px;
    vertical-align: middle;
    margin-right: 0.5em;
}
.btn2 a {
    font-size: 11px;
    background-color: #000000;
    border-radius: 20px;
    color: #FFF;
    font-weight: 900;
    padding: 0.5em 0.8em;
    margin: 0 0.5em 0;

}
}
@media screen and (max-width: 959px) {

    .bunner_box {
   display: flex;
  flex-wrap: wrap;
  align-items: center;
justify-content: center;
padding: 0em;
        margin: 0;
}
    
    
    .tel_box {display: none;}
    }










/* ––––––––––––––––––––––––––––––––––––––––––––––––––
megamenu.js STYLE STARTS HERE
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Screen style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */


.menu-mobile {
    display: none;
    padding: 10px 20px 20px;
}

.menu-mobile:after {
    content: "\f394";
    font-family: "Ionicons";
    font-size: 2rem;
    padding: 0;
    float: right;
    position: relative;
    top: 0;
    -webkit-transform: translateY(-25%);
    -ms-transform: translateY(-25%);
    transform: translateY(-25%);
    color: #383838;
}

.menu-dropdown-icon:before {
    content: "\f489";
    font-family: "Ionicons";
    display: none;
    cursor: pointer;
    float: right;
    padding: 1em 2em;
    background: #fff;
    color: #333;
}
.menu {background: #000;}
.menu > ul {
    margin: 0 auto;
    width: 100%;
    list-style: none;
    padding: 0 10px;
    position: relative;
    /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  list-style: none;
}
/*.menu > ul li:first-child{
    margin-right: auto;
}
.menu > ul li:first-child a{
    padding: 0 0.6em;
}
.menu > ul li:first-child a::before {
    content:none;}
*/


.menu > ul:before,
.menu > ul:after {
    content: "";
    display: table;
}

.menu > ul:after {
    clear: both;
}

.menu > ul > li {
    float: left;
    padding: 0;
    margin: 0;
   
}
.menu > ul > li:hover {background-color: var(--color-gray-darken);}
.menu > ul > li a {
    text-decoration: none;
    padding: 0.5em 1.5em;
    display: block;
    font-weight: 700;
     text-align: center;
    color: #FFF;
    line-height: 1.6em;
    
 
}
.menu > ul > li a span {
    font-size: 7px;
    font-weight: 700;
   color:  var(--color-other);
    display: block;
    text-transform:uppercase;
    line-height: 1.6em;
}
@media only screen and (max-width: 1200px) {
    .menu > ul > li a {font-size: 12px;}
}
.menu > ul > li a:hover {color: #FFF;}
.menu > ul > li.btn {
    
}
.menu > ul > li.btn a {
    background-color: #000000;
    border-radius: 20px;
    color: #FFF;
    font-weight: 900;
    padding: 0.5em 0.8em;
    margin: 0.5em 0.5em;
    
}
.menu > ul > li.btn2 a {
    background-color: #000000;
    border-radius: 20px;
    color: #FFF;
    font-weight: 900;
    padding: 0.5em 0.8em;
    margin: 0.5em 0.5em;
    
}
.menu > ul > li.btn a::before,.menu > ul > li.btn2 a::before {
    content:none;
}
.menu > ul > li a:hover {

}

.menu > ul > li > ul {
    display: none;
    width: 100%;
    padding: 20px;
    position: absolute;
    z-index: 99;
    left: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
    box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
   background-color: var(--color-gray-darken);
    transition:all 4s ease-out;
    
}

.menu > ul > li > ul:before,
.menu > ul > li > ul:after {
    content: "";
    display: table;
}

.menu > ul > li > ul:after {
    clear: both;
}

.menu > ul > li > ul > li {
    margin: 0;
    padding-bottom: 0;
    list-style: none;
    width: 19%;
    margin: 0 0.5%;
    background: none;
    float: left;
    
    
}

.menu > ul > li > ul > li a {
color: #FFF;
    padding: 0.5em;
    width: 95%;
    display: block;
    border-bottom: 1px solid #ccc;
     text-align: left;
    font-weight: 700;
    letter-spacing: 0;position: relative;
    padding-left: 30px;
}

.menu > ul > li > ul > li a:before {
        content: "\f00c";
        font-family: FontAwesome;
        position: absolute;
        left: 10px;
        top: 7px;
    color: #000000;
    }
.menu > ul > li > ul > li a:hover {
    color: #E6E6E6;
    border-bottom: 1px solid #000000;
}
.menu > ul > li > ul > li a:hover:before {
        content: "\f00c";
        font-family: FontAwesome;
        position: absolute;
        left: 10px;
        top: 7px;
    color: #FFF;
    }

.menu > ul > li > ul > li > ul {
    display: block;
    padding: 0;
    margin: 10px 0 0;
    list-style: none;
    box-sizing: border-box;
}

.menu > ul > li > ul > li > ul:before,
.menu > ul > li > ul > li > ul:after {
    content: "";
    display: table;
}

.menu > ul > li > ul > li > ul:after {
    clear: both;
}

.menu > ul > li > ul > li > ul > li {
    float: left;
    width: 100%;
    margin: 0;
    font-size: .8em;
 
}
.menu > ul > li > ul > li > ul > li.menuttl {font-size: 12px; width: 95%; margin: 1em 0 0.5em; line-height: 1.4em; padding: 0.8em 1em 0.8em;}
.menu > ul > li > ul > li > ul > li a {
    border: 0;
     text-align: left;
    font-weight: normal;
    line-height: 1.6em;
    
    position: relative;
  display: inline-block;
  padding: 8px 15px 5px 10px;
  color: #4d4d4d;
  text-decoration: none;
}
.menu > ul > li > ul > li > ul > li a:hover {
    border-bottom: none;
}
.menu > ul > li > ul > li > ul > li a:hover {
    color: #FFF;
}
.menu > ul > li > ul > li > ul > li a::after {
    content: '';
  width: 5px;
  height: 5px;
  border: 0;
  border-top: solid 1px #4d4d4d;
  border-right: solid 1px #4d4d4d;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -3px;
  transform: rotate(45deg);
}
.menu > ul > li > ul > li > ul > li a:hover::after {
    content: '';
  width: 5px;
  height: 5px;
  border: 0;
  border-top: solid 1px #FFF;
  border-right: solid 1px #FFF;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -3px;
  transform: rotate(45deg);
}
.menu > ul > li > ul > li > ul > li a::before {display: none;}/*check着いてしまうの防ぐ*/

.menu > ul > li > ul.normal-sub {
    width: auto;
    left: auto;
    /*padding: 10px 10px;*/ba

}
.menu > ul > li > ul.normal-sub.normal-sub_last {
    position: absolute;
    right: 0;
}
.menu > ul > li > ul.normal-sub > li {
    width: 100%;
    background: var(--color-gray-darken);
}
.menu > ul > li:nth-child(4) {
    padding-right: 5px;
}
.menu > ul > li:nth-child(4) a {
    position: relative;
    
}
.menu > ul > li:nth-child(4) a::after {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-size: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;

  /* solidなのでfont-weightに900を設定 */
  font-weight: 900;
}
.menu > ul > li > ul.normal-sub > li a {
    border: 0;
    padding: 1em 0;
    
    
    border: 0;
     text-align: left;
    font-weight: normal;
    line-height: 1.4em;
    
    position: relative;
  display: inline-block;
  padding-left: 15px;
  color: #FFF;
  text-decoration: none;
}

.menu > ul > li > ul.normal-sub > li a::after {
    content: '';
  width: 5px;
  height: 5px;
  border: 0;
  border-top: solid 1px #FFF;
  border-right: solid 1px #FFF;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -5px;
  transform: rotate(45deg);
}
.menu > ul > li > ul.normal-sub > li a::before {display: none;}/*check着いてしまうの防ぐ*/
.menu > ul > li > ul.normal-sub > li:hover {
}
.menu > ul > li > ul.normal-sub > li:hover a {
     color: #FCFCFC;
}
.menu > ul > li > ul.normal-sub > li a:hover::after {
    content: '';
  width: 5px;
  height: 5px;
  border: 0;
  border-top: solid 1px #FFF;
  border-right: solid 1px #FFF;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -5px;
  transform: rotate(45deg);
}
/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Mobile style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media only screen and (max-width: 959px) {
    #slide {margin-top: 50px;}
    .header {height: 50px;}
    .header h1 {
    display: none;
}
    .logo {
        display: block; position: absolute;
top:13px;
left: 18px;}
.logo img {width: 160px; }
    
    .menu-mobile {
        display: block;
        /*height: 50px;*/
        height: 50px;
        
        
    }
    .menu-dropdown-icon:before {
        display: block;
    }
    .menu {background: linear-gradient(45deg, #757575 0%, #9E9E9E 45%, #E8E8E8 70%, #9E9E9E 85%, #757575 90% 100%);}
    .menu > ul {
        display: none;
         width: 100%;
        padding: 0;
    }
    .menu > ul > li {
        width: 100%;
        float: none;
        display: block;
        background-color: #000000;
    }
    .menu > ul > li:hover {}
    .menu > ul > li a {
        padding: 1em;
        width: 100%;
        display: block;

        text-align: left;
    }
    .menu > ul > li a:hover {color: "#4D4D4D"}
    .menu > ul > li.logo {display: none;}
    .menu > ul > li > ul {
        position: relative;
    }
    .menu > ul > li > ul.normal-sub {
        width: 100%;
    }
    .menu > ul > li > ul > li {
        float: none;
        width: 100%;
        /*margin-top: 20px;*/
    }

    .menu > ul > li > ul > li:first-child {
        margin: 0;
    }
    .menu > ul > li > ul > li > ul {
        position: relative;
    }
    
    .menu > ul > li > ul > li > ul > li {
        float: none;
    }
    .menu > ul > li > ul > li > ul > li.menuttl {
        margin: 0.5em 0 0.3em;
        padding: 0.5em 1em 0.5em;
    }
    .menu .show-on-mobile {
        display: block;
       background-color: rgba(0,0,0,0.6);
        
        
        overflow-y: scroll;  
　　 z-index: 999;
    top:0;
    
    
        position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
       margin-top: 50px;
        margin-bottom: 190px;
        
height: calc(100% - 95px);
        margin: 50px auto 50px;
    }
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
.pc { display: none !important; }
.sp { display: block !important; }
}
@media only screen and (min-width: 768px) {
/*----------------------------------------------------------------*/
/* 共通 */
/*----------------------------------------------------------------*/

.sp-hide {
	display: inline !important;
}

.pc-hide {
	display:none !important;	
}
}
@media only screen and (max-width: 768px) {
/*----------------------------------------------------------------*/
/* 共通 */
/*----------------------------------------------------------------*/

.sp-hide {
	display:none !important;	
}

.pc-hide {
	
    display: inline !important;
}
}

.container { 
    margin: 0 auto;
    padding: 4% 0;
    width: 900px;
    }
@media screen and (max-width:900px) { 
.container { 
    padding: 6% 6%;
    width: 100%;
}
}




/*フッター固定*/


.footeranimation {
      display: none;
      width: 100%;
background: #000000;
      position: fixed;
      bottom: 0;
      z-index:999;
    } 
.site-footer {
    background-color:#122B4F;
    padding-bottom: 60px;
}
.site-footer .footer-container {
     margin: 0 auto;
    padding: 1em 0 90px;
    width: 900px;
}
@media screen and (max-width:900px) { 
.site-footer .footer-container {
     margin: 0 auto;
    padding: 1em 1em 90px;
    width: 100%;
}
}
#footfix {
    

/*border-top:solid 1px #87d2e7;*/}
#footfix_in {
    width: 100%;
    display: flex;
    margin: 0 auto;
    padding: 10px 0;
    justify-content: center; /* 子要素をflexboxにより中央に配置する */
    align-items: center;  /* 子要素をflexboxにより中央に配置する */

}

.footfix_in_1 a {font-size: 26px; padding: 0 5px; color:#FFF; font-weight: 500; text-decoration: none; 
line-height: 1em; font-family: 'Roboto', sans-serif;}
.footfix_in_1 a i {color:var(--color-other);}
.footfix_in_2{font-size: 0.9em;
    color:  #FFF;
    border: solid 1px  #FFF;
    padding: 1px 5px;
    vertical-align: middle;
margin: 0 15px;}
.footfix_in_3 a{
    display: block; 
    
    color:#FFF;
    padding: 3px 60px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
text-decoration: none;
margin: 0 5px;
text-transform: uppercase;
background: linear-gradient(45deg, #846D3E 0%, #846D3E 45%, #E2C569 70%, #846D3E 85%, #846D3E 90% 100%);
  background-size: 800% 400%;
  animation: gradient 5s infinite cubic-bezier(.62, .28, .23, .99) both;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}



.footfix_in_3 a:hover{
    background: var(--color-other-darken);
    color: #FFF;
text-decoration: none;}
@media screen and (max-width:1200px) {
    .footfix_in_1 a {font-size: 30px;}
    .footfix_in_2 {font-size: 12px;}
    .footfix_in_3 a {font-size: 13px; padding: 1px 20px;}
    .footfix_in_3 a:hover{
     padding: 1px 20px;
    font-size: 13px;
}
    }
@media screen and (max-width:768px) {

    .footfix_in_1 a {font-size: 20px;}
    .footfix_in_2 {font-size: 9px; padding: 1px 5px; margin: 0 5px;/* order: 3;*/ display: none;}
    .footfix_in_3 a {font-size: 11px; padding: 1px 10px;}
        .footfix_in_3 a:hover{
     font-size: 11px; padding: 1px 10px;
}
    }
/*フッター固定*/


/*ページトップへ戻る・ページ内スクロール*/

#page_top{
  width: 70px;
  height: 40px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  opacity: 1;
    z-index: 999;
}
#page_top a{
  position: relative;
  display: block;
  width: 80px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f077';
  font-size: 20px;
  color: #FFF;
  position: absolute;
  width: 20px;
  height: 20px;
  top: -35px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_top a::after{
    font-weight: 700;
  content: 'PAGE TOP';
  font-size: 14px;
  color:#FFF;
  position: absolute;
  top: 20px;
  bottom: 0px;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
    font-family: 'Antonio', sans-serif;
}
@media screen and (max-width:768px) {
    #page_top{
  width: 70px;
  height: 50px;
  position: fixed;
  right: 10px;
  bottom: 50px;
  opacity: 1;
    z-index: 999;
}
#page_top a{
   
  position: relative;
  display: block;
  width: 70px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f077';
  font-size: 20px;
  color: #000000;
  position: absolute;
  width: 20px;
  height: 10px;
  top: -40px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_top a::after{
    font-weight: 400;
  content: 'PAGE TOP';
  font-size: 11px;
    font-weight: 700;
  color: #000000;
  position: absolute;
  top: 30px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
}
/*ページトップへ戻る・ページ内スクロール*/



/*見出し*/

section.info h2,section.area h2,section.businesscontent h2 {
font-weight: 600;
        color: #000000; 
    font-size: 30px; 
    line-height: 2em;
    text-align: center;
    position: relative;
    margin-bottom: 60px;
    text-transform:uppercase;
    
}
section.info h2 .en,section.message h2 .en,section.area h2 .en,section.businesscontent h2 .en {
    font-size: 40px; 
    font-family: 'Antonio', sans-serif;
    color: var(--color-other);
}

section.info h2:before,section.area h2:before,section.businesscontent h2:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -20px;/*線の上下位置*/
  display: inline-block;
  width: 60px;/*線の長さ*/
  height: 1px;/*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);/*位置調整*/
  background-color: var(--color-other);
  border-radius: 2px;/*線の丸み*/
   
}
section.info h2 span,section.message h2 span,section.area h2 span,section.businesscontent h2 span {
    display: block;
    font-size: 14px;
    font-weight:600;
     
}
section.message h2 {
    font-weight: 900;
        color: #FFF; 
    font-size: 35px; 
    line-height: 1.1em;
letter-spacing: 2px;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
    text-transform:uppercase;
}
section.message h2:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px;/*線の上下位置*/
  display: inline-block;
  width: 60px;/*線の長さ*/
  height: 1px;/*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);/*位置調整*/
  background-color: var(--color-other);
  border-radius: 2px;/*線の丸み*/
}

@media screen and (max-width: 768px) {
    
        section.info h2 .en,section.message h2 .en,section.area h2 .en,section.businesscontent h2 .en {
    font-size: 20px; 
}
section.info h2,section.message h2,section.area h2,section.businesscontent h2 {
     font-size: 15px; 
    line-height: 25px;
letter-spacing: 1px;
    padding-bottom: 10px;
    margin-bottom: 40px;}
section.info h2:before,section.message h2:before,section.area h2:before,section.businesscontent h2:before{
    margin-bottom: 10px;
        
}
section.info h2 span,section.message h2 span,section.area h2 span,section.businesscontent h2 span {
    font-size: 12px; 
    }
}

/*見出し*/
/*最新情報*/
section.information h2 {
   padding: 20px 10px 15px 0;
    font-weight: 700;
    font-size: 1.6em;
    line-height: 1.3em;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #383838;
    margin-bottom: 1em;
    }

.date02 {
    font-size: 1em;
    font-weight: bold;
    letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
    section.information h2 {font-size: 13px;}
}

.infomation_box {
    
   height: auto;
   overflow:scroll;
    
/*    min-height: 100px;
    max-height: 150px;
    max-width: 900px;
    margin: 0 auto;*/

    
}
.topics dl {
padding: 5px 0;
    color: #383838;

}

.topics dt {
padding-bottom: 1px;
    padding: 1em 0;


}
.topics dd {
    border-bottom: 1px dotted #383838;
padding: 1em 0;

/*display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;*/
}
.topics dd a {
color: #383838;
}
@media screen and (min-width: 768px) {
.topics dt {
    font-weight: 700;
clear: left;
float: left;
width: 100px;
    
}

}
@media screen and (max-width: 768px) {
    .topics dt,.topics dd {font-size: 11px;}
}
h3.information_mds {
    padding: 1em 0;
    font-weight: 700;
    font-size: 1.4em;
    line-height: 1.3em;
    letter-spacing: 0.1em;
}
.information_shosai {
   padding-bottom: 4%;
}
.information_shosai img {
   margin: 2em auto;
    display: block;
    width: 100%;
    max-width: 600px;
    
}
/*最新情報*/

/*ごあいさつ*/
section.message {
    padding: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.9) ) fixed,url(../img/slide/1.jpg);
background-size: cover; background-position: bottom center; background-attachment: fixed;
} 
.message p{
    color: #FFF;
}
.message .catch {
    font-weight: 700;
    font-size: 1.4em;
    line-height: 1.3em;
    letter-spacing: 0.1em;
    padding-bottom: 1em;
}


/*ごあいさつ*/
/*当社の事業内容*/
section.businesscontent {
    background: #F3F3F3;
}
.ul_waku {
    display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}
.ul_waku ul {
    width: 28%;
}
ul.ul02 {
    padding: 0 1em;
}
ul.ul02 li {
    line-height: 2em;
    list-style: square;
    list-style-position: inside;
    padding-left:1em;
text-indent:-1.4em;
}
@media screen and (max-width: 768px) {
    .ul_waku ul {
    width: 100%;
}
    ul.ul02 {
    padding: 0 1em;
}
ul.ul02 li {
    line-height: 2em;
    list-style: square;
    list-style-position: inside;
    padding-left:1em;
text-indent:-1.4em;
}
}
/*当社の事業内容*/
/*特に迅速に対応可能なエリア*/
section.area {
    padding: 0;
    background: #FCFCFC;
} 
section.area .area_box {padding: 1em 0;}
section.area .area_box h3 {font-size: 1.3em;
}
section.area .area_box p {font-size: 0.9em;} 
@media screen and (max-width: 1200px) {
    section.area .area_box p {font-size: 0.8em;} 
}

/*ボックス全体*/
.accordion-box {
    margin: 10px 0;
    padding: 0;
}
/*ラベル*/
.accordion-box label {
    display: block;
    font-weight: bold;
    cursor :pointer;
    margin-top: 10px;
    padding:5px;
    background-color:#000000;
    color: #FFF;
}
/*チェックボックスを非表示にする*/
.accordion-box input {
    display: none; 
}
/*中身を非表示にしておく*/
.accordion-box div {
    height: 0;
    overflow-y: hidden;
    transition: 1s;/*表示するスピード*/
    opacity: 0;
}
.accordion-box div dl {
    padding: 1em 0;
}
.accordion-box div dl dt {
    font-size: 1.3em;
}
/*クリックで中身を表示*/
.accordion-box input:checked + label + div {
    height: auto;
    opacity: 1;
}
/*アイコン*/
.accordion-box label::before {
    content: "＋";
    padding-right: 8px;
}
/*クリックでアイコン入れ替え*/
.accordion-box input:checked + label::before {
    content: "－";
}
/*特に迅速に対応可能なエリア*/

/*フッター*/

footer {
    font-size: 12px;
}
footer p {}
footer a {
	color: #87d2e7;
	text-decoration: none;
}
footer h1 {font-size: 12px; color: #FFF;  font-weight: normal; line-height:1.4em;}

.containerfooter { 
    margin: 0 auto;
    padding: 2% 0;
    width: 900px;
    
    }
@media screen and (max-width:900px) { 
    .containerfooter { 
    padding: 4% 4%;
    width: 100%;
    
    }
}


@media screen and (max-width: 480px) {
    .site-footer {
    padding-bottom: 60px;
}
    footer h1 {font-size: 11px; padding-bottom: 20px; text-align: left;}
}


.flex_footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
    margin-bottom: 2em;
}
 
.flex_footer_company {
  width: 100%;
  margin: 0;
        display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
    color: #FFF;
}
.flex_footer_company_in {
    margin-bottom: 20px;
    margin: 1em 2em 0 0;
    padding: 0 1em 0 0;
}
.flex_footer_company_in:first-child {
    border-right: 0.5px #FFF solid;
    padding: 0 3em 0 0;
}
.foot_logo {margin-bottom: 2em;}
.foot_logo img {width: 230px; margin: 0 auto; }

.flex_footer_company_in img {
    max-width: 200px;
}


.flex_footer_link_box {
  width: 100%;
  margin: 0;
    display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0;
}
.flex_footer_link {width: 16%; margin: 2%; }

@media screen and (max-width: 768px) {
    .flex_footer_company,.flex_footer_link_box {width: 100%;}
    .flex_footer_company_in {
     width: 100%;
    }

    .flex_footer_link {width: 100%; margin: 0%; padding:0; }
    .flex_footer_company img {width: 180px; margin: 0 auto; }
    .flex_footer_company_in:first-child {
    border-right:none;
    padding: 0 3em 0 0;
}
    }
/*footer*/
.jusho {
    margin-bottom: 15px;
    
}
.jusho i {
   color: var(--color-other);
}
.kaisya {
    border-bottom: 1px solid #FFF;
    display:inline-block;
    margin-bottom: 0.5em;
}
.footmenu2_box {width: 100%;  margin:1em 0;}
@media screen and (max-width: 768px) {
    .footmenu2_box {margin: 3% 0%;}
}
.footmenu li {
    display: list-item;  /* 縦に並べる */
  list-style-type: none;
  text-transform: capitalize;
  padding: 0.3em 0;
    text-decoration: none;
    line-height: 1.2em;
    font-size: 12px;
    letter-spacing: 0;
  }

.footmenu li a {
    font-weight: 600;
    color: #FFF;
}
.footmenu li a:hover {
    color: var(--color-other);
}
.footmenu li ul li {
    margin-left: 2em;
    
}
.footmenu li ul li a {
    font-weight: normal;
    line-height: 1.4em;
    position: relative;
}
.footmenu li ul li a:before {
  font-family: "Font Awesome 5 Free";
  content: "/";
  position: absolute;
  left : -1em; /*左端からのアイコンまで*/
}

@media screen and (max-width: 768px) {
    .footmenu li {padding: 0.3em 0;
        font-size: 11px;
    }
    .footmenu li:first-child {padding-top: 20px;}
}


ul.footmenu2 {    
    list-style: none;
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
  align-items: center;
    
}

ul.footmenu2 li {padding: 0;}
ul.footmenu2 li a {color: #4d4d4d;}
ul.footmenu2 li a:hover {
    color: #054C86;
}
ul.footmenu2 li::before {
  content: "/";
  margin-left: .5em;  
  margin-right: .5em;  
}
ul.footmenu2 li ul{    
    list-style: none;
    display:flex;
    flex-wrap: wrap;
}
ul.footmenu2 li ul li::before {
  content: "-";
  margin-left: .5em;  
  margin-right: .5em;  
}
@media screen and (max-width: 480px) {
ul.footmenu2 {    
    display: flex;
  /*flex-flow: column wrap;*/
}
}

.copyright {
    color: #FFF;
    font-size: 11px;
    text-align: center;
    margin-top: 0px;
}
/*フッター*/
/* 第二見出し要素
----------------------------------------------------------- */
  
/*    body, html, main {
    /* important 
    height: 100%;
}*/
.daini_mds {padding-top: 120px;}
.cd-fixed-bg {
    height: 330px;
    background-size: cover;
/*    background-attachment: fixed;*/
    background-repeat: no-repeat;
    background-position: right center;background-color: #FFF;
    
}
.cd-fixed-bg.cd-fixed-bg01 {background-image: url("../img/daini/1.jpg");}

.cd-fixed-bg::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 330px;
    content: "";
    display: block;

     background-color: rgba(0, 0, 0, .1);
    background-image: radial-gradient(#383838 20%, transparent 0), radial-gradient(#383838 20%, transparent 0);
    background-position: 0 0, 10px 10px;
    background-size: 4px 4px;

}

.cd-scrolling-bg {
    min-height: 100%;
}
    .cd-fixed-bg h1 {
    font-weight: 900;
    letter-spacing: 4px;
    display: block;
    padding-top: 35px;
    text-decoration: none;
    font-size: 35px;
    color: #FFF;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: 0.2s linear;
    text-align: center;
    line-height: 1.2em;
     text-transform: uppercase;
        text-shadow: 2px 2px 2px rgba(0,0,0,0.2);
       
}   
.cd-fixed-bg h1 .en {
    text-align: center;
    font-size: 40px;
     font-family: 'Antonio', sans-serif;
}
    .dainikomidashi { display: block;  text-align: center; font-size: 18px; letter-spacing: 1px;
text-shadow: 2px 2px 2px rgba(0,0,0,0.2);}   
@media screen and (max-width: 1200px) {
    .daini_mds {padding-top: 100px;}
    .cd-fixed-bg {
        height: 260px;}
    .cd-fixed-bg::after {
    height: 260px;
}
    .cd-fixed-bg h1 {padding-top: 10px;}
    .cd-fixed-bg h1 .en  {font-size: 30px;}
}  
@media screen and (max-width: 959px) {
    .daini_mds {padding-top: 60px;}
    .cd-fixed-bg {
        height: 230px;}
    .cd-fixed-bg::after {
    height: 230px;
}
    }
@media screen and (max-width: 790px) {
.cd-fixed-bg {
    height: 160px;
}
  .cd-fixed-bg::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 160px;
}

.cd-scrolling-bg {
    min-height: 100%;
}
    .cd-fixed-bg h1 {font-size: 18px; letter-spacing: 2px; 
}   
    .cd-fixed-bg h1 .en {font-size: 18px;}
    .dainikomidashi {font-size: 13px; letter-spacing: 0; padding: 0.5% 4%;
} 

} 

/*事業概要*/
section.summary  {
    background-image: url("../img/summary/img02.jpg");
    background-size: 50%;
/*    background-attachment: fixed;*/
    background-repeat: no-repeat;
    background-position: right center;
    background-color: #EEEEEE;
    
}
section.summary2  {
    background-image: url("../img/summary/img01.jpg");
    background-size: 50%;
/*    background-attachment: fixed;*/
    background-repeat: no-repeat;
    background-position: left center;
    background-color: #EEEEEE;
    
}

section.summary h3,section.summary2 h3 {
    font-size: 30px;
    font-weight: 700;
    padding-bottom: 0.5em;
}
section.summary .container {
    position: relative;
    margin: 0 auto;
    height: 500px;
}
section.summary .summarybox {
    position: absolute;
    left: 0;
    top:100px;
    width: 70%;
    background:rgba(255,255,255,0.7);
    padding: 3em;
}
section.summary2 .container {
    position: relative;
    margin: 0 auto;
    height: 500px;
}
section.summary2 .summarybox {
    position: absolute;
    right: 0;
    top:100px;
    width: 70%;
    background:rgba(255,255,255,0.7);
    padding: 3em;
}
section.summary .summarybox img,section.summary2 .summarybox img {
        display: none;
    }
@media screen and (max-width: 768px) {
    section.summary,section.summary2  {
    background-image:none;
    
}
    section.summary h3,section.summary2 h3 {
        font-size: 20px;
    }
    section.summary .container,section.summary2 .container {
    position: static;
        height: auto;
}
    section.summary .summarybox,section.summary2 .summarybox {
        position: static;
        width: 100%;
    }
    section.summary .summarybox img,section.summary2 .summarybox img {
        display: block;
        width: 100%;
        padding-top: 1em;
    }
    
}
section.types {
padding: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(255,255,255,0.7) ) fixed,url(../img/summary/types_bk.jpg);
    background-size: cover;
    background-position: bottom center;
    background-attachment: fixed;
}
section.types h4 {
        position: relative;
  padding: 0.25em 1em;
  border-top: solid 2px #383838;
  border-bottom: solid 2px #383838;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 1em;
    }
    section.types h4:before, section.types h4:after {
  content: '';
  position: absolute;
  top: -7px;
  width: 2px;
  height: -webkit-calc(100% + 14px);
  height: calc(100% + 14px);
  background-color: #383838;
}
    section.types h4:before {
  left: 7px;
}
    section.types h4:after {
  right: 7px;
}
section.types ul {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
}
section.types ul li {
    background: #000000;
    line-height: 3em;
    border-radius: 1.5em;
    color:#FFF;
    padding: 0 1.5em;
    margin: 0.5em;
    font-size: 1.1em;
}
@media screen and (max-width: 768px) {
    section.types h4 {font-size: 13px;}
    section.types ul li {
    background: #000000;
    line-height: 3em;
    border-radius: 1.5em;
    color:#FFF;
    padding: 0 1.5em;
    margin: 0.5em;
    font-size: 12px;
}
}
@media screen and (max-width: 480px) {
    section.types ul li {
        width: 100%;
        text-align: center;
}
}
/*事業概要*/
/*会社概要ページ*/
table.tbl01 {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    margin: 0 0 3em;
}
table.tbl01 tr {
    border-bottom: 1px solid #ACACAC;
}
table.tbl01 tr th,
table.tbl01 tr td {
    text-align: left;
    vertical-align: top;
}
table.tbl01 tr th {
    width: 15%;
    font-weight: 700;
    border-bottom: 1px solid var(--color-other);
    padding: 20px 0;
    color: var(--color-other);
}
table.tbl01 tr td p {
    padding-bottom: 1em;
}
table.tbl01 tr td {
    width: 75%;
    padding: 20px 20px;
}

@media screen and (max-width: 767px){
table.tbl01 tr th,
table.tbl01 tr td {
    display: block;
    width: 100%;
    padding: 0;
    margin: 20px 0;
}
table.tbl01 tr th {
    border-bottom: 0px solid #383838;
}
}
/*会社概要ページ*/
/*求人募集*/
section.recruitmentcatch {
    background-image: url("../img/recruitment/img01.jpg");
    background-size: 50%;
/*    background-attachment: fixed;*/
    background-repeat: no-repeat;
    background-position: left center;
    background-color: #EEEEEE;
    
}
section.recruitmentcatch .container {
    position: relative;
    margin: 0 auto;
    height: 500px;
}
section.recruitmentcatch .recruitmentbox {
    position: absolute;
    right: 0;
    top:100px;
    width: 70%;
    background:rgba(255,255,255,0.7);
    padding: 3em;
}
section.recruitmentcatch .recruitmentbox img {
        display: none;
    }
section.recruitmentcatch h3 {
    font-size: 26px;
    font-weight: 700;
    padding-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
    section.recruitmentcatch {
    background-image:none;
    
}

    section.recruitmentcatch .container {
    position: static;
        height: auto;
}
    section.recruitmentcatch .recruitmentbox {
        position: static;
        width: 100%;
    }
    section.recruitmentcatch .recruitmentbox img {
        display: block;
        width: 100%;
        padding-top: 1em;
    }
    section.recruitmentcatch h3 {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 0.5em;
}
}
section.recruitment h3 {
    color: #FFF;/*文字色*/
  padding: 0.5em 0 0.5em 1em;/*文字周りの余白*/
  display: block;/*おまじない*/
  line-height: 2em;/*行高*/
  background: #000000;/*背景色*/
  vertical-align: middle;
  border-radius: 1.5em 0px 0px 1.5em;/*左側の角を丸く*/
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 1em;
}
section.recruitment h3:before {
  content: '●';
  color: white;
  margin-right: 1em;
}
section.recruitment table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}
section.recruitment table tr {
    border-bottom: 1px solid #ccc;
}
section.recruitment table tr:first-child {
    border-top: 1px solid #ccc;
}
section.recruitment table tr th,
section.recruitment table tr td {
    text-align: left;
    vertical-align: top;
}
section.recruitment table tr th {
    width: 15%;
    font-weight: 700;
    border-bottom: 1px solid #ccc;
    background-color:#eee;
    padding: 20px 1em;
}
section.recruitment table tr td {
    width: 75%;
    padding: 20px 20px;
}
section.recruitment table tr td .ttl {
    font-weight: 700;
}
@media screen and (max-width: 767px){
section.recruitment table tr th,
section.recruitment table tr td {
    display: block;
    width: 100%;
    padding: 0;
    margin: 20px 0;
}
section.recruitment table tr th {
    border-bottom: 0px solid #ccc;
}
}

/*求人募集*/
/*ご相談・お問合せ*/
.inquiry_tel {text-align: center;
margin-bottom: 3em;}
.inquiry_tel a {
    font-size: 30px;
    padding: 0 5px;
    font-weight: 500;
    text-decoration: none;
    line-height: 1em;
    font-family: 'Roboto', sans-serif;
    margin: 0 10px;
    color: #181818;
    
}
section.inquiry h3 {
        position: relative;
  padding: 0.25em 1em;
  border-top: solid 2px #383838;
  border-bottom: solid 2px #383838;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2em;
    }
    section.inquiry h3:before, section.inquiry h3:after {
  content: '';
  position: absolute;
  top: -7px;
  width: 2px;
  height: -webkit-calc(100% + 14px);
  height: calc(100% + 14px);
  background-color: #383838;
}
    section.inquiry h3:before {
  left: 7px;
}
    section.inquiry h3:after {
  right: 7px;
}
@media screen and (max-width: 768px) {
    section.inquiry h3 {font-size: 13px;}
}
/*ご相談・お問合せ*/
/*施工事例*/
section.example {
    background-color: #EEEEEE;
}
.card_list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content:center;
}
.card_item {
  width: 270px;
  border: 1px solid #e3e3e3;
  box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.2);
  margin: 1em;
    background: #FFF;
}
.card_item .thum_box {
  width: 100%;
  height: 180px;
  
  position: relative;
  overflow: hidden;
}
.card_item .thum_box img {
  width: 100%;
  height: 180px;
  object-fit: cover; 
}
.card_item .text_box {
  width: 100%;
  padding: 1.5em;
    
}
.card_item .title {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 12px;
    margin: 0;
    font-weight: 700;
}
.card_item .desc {
}
.card_item .cat {
  display: inline-block;
  font-size: 1.4rem;
  color: #fff;
  background: #606060;
  padding: 4px 30px 2px;
  margin-bottom: 10px;
}
.card_item .title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.card_item .desc {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.card_item .text_box .more {
    text-align: right;
    margin-top: 0.5em;
    font-size: 0.9em;
    display: block;
}
@media screen and (max-width: 768px) {
    .card_item {
  width: 48%;
  border: 1px solid #e3e3e3;
  box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.2);
  margin: 1%;
    background: #FFF;
}
    .card_item .thum_box {
  width: 100%;
  height: 100px;
  
  position: relative;
  overflow: hidden;
}
.card_item .thum_box img {
  width: 100%;
  height: 100px;
  object-fit: cover; 
}
}
@media screen and (max-width: 480px) {
    
        .card_item {
  width: 96%;
  border: 1px solid #e3e3e3;
  box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.2);
  margin: 4% 2%;
    background: #FFF;
}
    .card_item .thum_box {
  width: 100%;
  height: 100px;
  
  position: relative;
  overflow: hidden;
}
.card_item .thum_box img {
  width: 100%;
  height: 100px;
  object-fit: cover; 
}
    .card_item .text_box {
  width: 100%;
  padding: 1em;
    
}
    .card_item .title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.card_item .desc {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
}
/* ページャー  */
.pager {
    margin: 2em 0;
}
.pager  ul.pagination {
  text-align: center;
  margin: 0;
  padding: 0;
}

.pager .pagination li {
  display: inline;
  margin: 0 2px;
  padding: 0;
  display: inline-block;
  background:#ccc;
  width: 50px;
  height: 50px;
  text-align: center;
  position: relative;
}

.pager .pagination li a{
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display:table;
  color: #fff;
  text-decoration: none;
}

.pager .pagination li a span{
  display:table-cell;
  vertical-align:middle;
}

.pager .pagination li a:hover,
.pager .pagination li a.active{
  color: #383838;
  background: #FCFCFC;
}

@media only screen and (max-width: 767px){
  .pager .pagination li{
    display: none;
  }

  .pager .pagination li.pre,
  .pager .pagination li.next{
    display: inline-block;
    width: 40%;
    height: 50px;
    text-align: center;
  }

  .pager .pagination li.pre a,
  .pager .pagination li.next a{
    width: 100%;
    text-align: center;
  }

  .pager .pagination li.pre span::after{
    content: "　前の12件へ";
  }

  .pager .pagination li.next span::before{
    content: "次の12件へ　";
  }

}
/* ページャー  */

/*施工事例*/
/*施工事例詳細*/
section.example_shosai h2 {
    font-size: 24px;
    line-height: 1.6em;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5em;
}
section.example_shosai figure {
    margin: 1em 0px;
}
section.example_shosai figure figcaption {
    padding: 0.5em 0;
}
section.example_shosai figure img {
    width: 100%;
}
@media screen and (max-width: 768px) {
    section.example_shosai h2 {
         font-size: 18px;
    }
}
.example_list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content:center;
}
.example_list .example_item {
    width: 270px;
    margin: 1em;
}
.example_list .example_item img {
   width: 100%;
  height: 250px;
  object-fit: cover; 
}


.modorubtn {
  display: flex;
    justify-content: center;
    position: relative;
    margin: 2em 0;
}

.modorubtn a {
  position: relative;
    width: 280px;
    height: 50px;   
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-other);
    border: 1px solid;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: 600;
}

.modorubtn a::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 30px;
        height: 8px;
  margin-top: -6px;
  border-bottom: 1px solid var(--color-other);
        border-right: 1px solid var(--color-other);
        transform: skew(45deg);
  content: "";
  display: inline-block;
  vertical-align: middle;
}

.modorubtn a::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: linear-gradient(45deg, #846D3E 0%, #846D3E 45%, #E2C569 70%, #846D3E 85%, #846D3E 90% 100%);
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.modorubtn a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
    
}
.modorubtn a:hover {
    color: #FFF;
}
.modorubtn a:hover::after {
      border-bottom: 1px solid #FFF;
        border-right: 1px solid #FFF;

}
@media screen and (max-width: 768px) {
    .modorubtn a {
        width: 200px;
        height: 40px;   
    }
    .modorubtn a::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
        height: 6px;
  margin-top: -6px;

}
}
/*施工事例詳細*/
/*最新情報詳細*/
section.info_shosai h2 {
    font-size: 24px;
    line-height: 1.6em;
    font-weight: 700;
    color: #000000;
}
section.info_shosai .day {
    font-weight: 700;
    text-align: right;
    margin-bottom: 1em;
}
section.info_shosai figure {
    margin: 1em 0px;
}
section.info_shosai figure figcaption {
    padding: 0.5em 0;
}
section.info_shosai figure img {
    width: 100%;
}
@media screen and (max-width: 768px) {
    section.info_shosai h2 {
         font-size: 18px;
    }
}
.info_list {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content:center;
}
.info_list .info_item {
    width: 270px;
    margin: 1em;
}
.info_list .info_item img {
   width: 100%;
  height: 250px;
  object-fit: cover; 
}


/*最新情報詳細*/
/*当社の強み*/
.catch_box2 {
    display: flex;
  flex-wrap: wrap;
  align-items: stretch;
justify-content: center;
}
.catch_box2 .catch_img {
    width: 50%;
}
.catch_box2 .catch_txt{
    width: 50%;
}
.catch_box2 .catch_img {
}
.catch_box2 .catch_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.catch_box2 .catch_txt {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 8%;
    background: #FFF;
}
.catch_box2 .catch_txt h3 {
    font-weight: 700;
    font-size: 23px;
    line-height: 2;
    margin-bottom: 1em;
    color:  var(--color-other);
}
.catch_box2 .catch_img {
    position: relative;
}
.catch_box2 h4 {
    position: absolute;
    bottom:-20px;
    right: 0;
    font-size: clamp(40px, 9.64vw, 120px);
    font-weight: 900;
    color: #E3E3E3;
   font-family: 'Bitter', serif;
    text-transform: uppercase;
    word-wrap: normal;
    line-height: 1;
}
@media screen and (max-width: 768px) {

.catch_box2 .catch_img,.catch_box2 .catch_txt {
    width: 100%;
}
.catch_box2 .catch_txt {
    padding: 1em 1em;
}
.catch_box2 .catch_txt h3 {
    font-weight: 700;
    font-size: 14px;
    line-height: 2;
    padding: 5px 5px;
}

}
.head_test {
    margin:  0;             /* デフォルトCSS打ち消し */
    font-size:  21px;       /* 文字サイズ指定 */
    position:  relative;    /* 位置調整 */
    font-weight:  normal;   /* 文字の太さ調整 */
    /*background: linear-gradient(45deg, #757575 0%, #9E9E9E 45%, #E8E8E8 70%, #9E9E9E 85%, #757575 90% 100%);*/
    background: linear-gradient(45deg, #846D3E 0%, #846D3E 45%, #E2C569 70%, #846D3E 85%, #846D3E 90% 100%);
    padding:  10px 20px;         /* 余白指定 */
    margin-bottom: 1.5em;    /* 周りの余白指定 */
    border-radius:  2px;    /* 角丸指定 */
    color: #FFF;
    /*text-shadow: 1px 2px 3px #383838;*/
    letter-spacing: 0.1em;
    font-weight: 600;
    text-align: center;
    line-height: 1.4em;
}
.features8 {
    background-color: #F9F9F9;
}
.features8_box {
    background-color: #FFF;
    border-left: 10px solid var(--color-other);
    
  display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 3em;
    box-shadow: 7px 4px 28px -12px rgba(0,0,0,0.6);
}
.features8_txt {width: 60%;
  margin: 0;
padding: 2em;}
.features8_img {
    width: 40%;
  margin: 0;
    padding: 2em;
    
}
.features8_img img {object-fit: contain;
  width: 100%;
  height: 100%}
@media screen and (max-width:590px) { 
    .features8_box {
    border-left: 3px solid var(--color-theme);
    }
.features8_txt {width: 100%;
padding: 2em;}
.features8_img {
    width: 100%;   
}
}
.heading11 {
	position: relative;
	font-size: 20px;
	text-align: center;
    margin-bottom: 1em;
    line-height: 1.8em;
    font-weight: 600;
}

.heading11::before {
	content: attr(data-number);
	display: block;
	margin-bottom: 40px;
	color: var(--color-other);
	font-size: 30px;
}

.heading11::after {
	content: '';
	position: absolute;
	top: 50px;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 20px;
	background-color: var(--color-theme);
}
@media screen and (max-width:590px) { 
    .heading11 {
	position: relative;
	font-size: 14px;
	text-align: center;
    margin-bottom: 1em;
}
    .heading11::before {
	margin-bottom: 25px;
	font-size: 25px;
}
    .heading11::after {
	top: 30px;
	height: 15px;
}

}

/*当社の強み*/
/*サイトマップ*/
.flex_sitemap {
  width: 100%;
  margin: 0;
        display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
}
.flex_sitemap_in {
    margin-bottom: 20px;
    margin: 1em 3em 0 0;
    padding: 0 1em 0 0;
    width: 200px;
}


@media screen and (max-width: 768px) {
    .flex_sitemap {width: 100%;}
    .flex_sitemap_in {
     width: auto;
    }
    }

.sitemap li {
    display: list-item;  /* 縦に並べる */
  list-style-type: none;
  text-transform: capitalize;
    text-decoration: none;
    letter-spacing: 0;
  }
.sitemap li a{
    font-weight: 600;
    color: var(--color-theme);
    position: relative;
    line-height: 2.5em;
}
.sitemap li a:before {
 font-family: "Font Awesome 5 Free";
    content: "\f0a9";
    position: absolute;
    left: -1.5em;
    color: var(--color-other);
}

.sitemap li a:hover {
    color: var(--color-other);
}
.sitemap li ul {
    margin-bottom: 1em;
}
.sitemap li ul li {
    margin-left: 2em;
    
}
.sitemap li ul li a {
    font-weight: normal;
    line-height: 1.4em;
    position: relative;
}
.sitemap li ul li a:before {
 content: "";
    position: absolute;
    width: 7px;
    height: 8px;
    border-bottom: 1px solid var(--color-theme);
    border-left: 1px solid var(--color-theme);
  left : -1em; /*左端からのアイコンまで*/
    top: 0;
}

@media screen and (max-width: 768px) {
    .sitemap li {padding: 0.3em 0;
        font-size: 11px;
    }
    .sitemap li:first-child {padding-top: 20px;}
}
/*サイトマップ*/
/*プライバシーポリシー*/
section.privacy .container p {
    line-height: 2em;
}
section.privacy .container div {
    margin-bottom: 2em;
}
section.privacy .container div h3 {
    border-left: 10px solid var(--color-other);
    background-color: var(--color-right);
    color: var(--color-theme);
    padding: 0.5em;
    margin: 1em 0;
}
section.privacy .container p.company {
    font-weight: 700;
}
section.privacy .container div ul {
    list-style: square;
    padding-left: 1em;
}
section.privacy .container div ul li {
   
}
/*プライバシーポリシー*/
/*代表ご挨拶・理念*/

/*代表ご挨拶・理念*/
/*事業内容*/
.bn-img_box {
    display: flex;
    flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
    margin-bottom: 2em;
}
.bn-img_box a {
    width: 31%;
    margin: 1%;
}
a .bn-img {
  cursor: pointer;
  
  overflow: hidden;
  position: relative;
}
a .bn-img img {
  height: 210px;
  transition: transform .6s ease;/* ゆっくり変化させる */
  width: 100%;
    object-fit: cover;
}
a .bn-img:hover img {
  transform: scale(1.3);/* 拡大 */
}
a .bn-img p {
  align-items: center;/* テキストの中央揃え */
  bottom: 0;
  color: #fff;/* テキストの色 */
    font-weight: 700;
  display: flex;/* テキストの中央揃え */
  justify-content: center;/* テキストの中央揃え */
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 80%;/* テキストを横幅いっぱいにならないようにする */
  z-index: 2;
    
}
/* マスク */
a .bn-img::before {
  background: rgba(0, 0, 0, .7);/* マスクの色(黒の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: 1;
    opacity: 0.5;
}
a .bn-img:hover::before {
  opacity: 1;
}
@media screen and (max-width: 768px) {
    .bn-img_box a {
    width: 48%;
    margin: 1%;
}
    a .bn-img img {
  height: 140px;
}
}

.pagenaiscroll_contents {
	
}

.contents_inner {
    padding-top: 100px;
    margin-top:-100px;
}
.business_content_waku {
    background-color: #FFF;
    border-left: 10px solid  var(--color-other);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 3em;
    box-shadow: 7px 4px 28px -12px rgb(0 0 0 / 60%);
    padding: 2em;
    margin: 2em 0;
}
.business_content_waku_in {
    width: 60%;
    padding: 1%;
}
.business_content_waku_img {
    width: 40%;
}
.business_content_waku_img img {
    width: 98%;
    padding: 1%;
}
@media screen and (max-width: 768px) {
    .business_content_waku {
    padding: 1em;
}
    .business_content_waku_in {
    width: 100%;
}
.business_content_waku_img {
    width: 100%;

}
    .business_content_waku_img img {
    width: 48%;
    padding: 1%;
}
}
/*数字と組み合わせたCSS見出し*/
.heading12 {
	position: relative;
	font-size: 26px;
    font-weight: 900;
    margin-bottom: 0.5em;
}

.heading12::before {
	content: attr(data-number);
	display: inline-block;
	margin-right: 20px;
	font-weight: 900;
    color: var(--color-other);
	font-size: 30px;
	border-bottom: 1px solid #454545;
    font-family: 'Antonio', sans-serif;
    letter-spacing: 0.1em;
}


/*数字と組み合わせたCSS見出し*/

ul.ul01 {
    padding: 0 1em;
    margin: 1em 0;
}
ul.ul01 li {
    line-height: 2em;
    list-style: square;
    list-style-position: inside;
    padding-left:1em;
text-indent:-1.4em;
}

/*事業内容*/
/*施工事例*/
.faq{
}
.faq dt{
  padding-bottom: 5px;
  margin-bottom: 0.5em;
  border-bottom: 1px dotted;
  font-weight: bold;
    font-size: 1.2em;
}
.faq dt:before{
  content: "Q";
  font-weight: normal;
  background: #6B6B6B;
  color: #fff;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.6;
  text-align: center;
  display: inline-block;
  border-radius: 1em;
  margin-right: .5em;
}
.faq dd{
  margin-bottom: 2em;
}
.faq dd:last-child{
  margin-bottom: 0;
}
/*施工事例*/
.txt_waku {
    padding-bottom: 2em;
}