/*基本カスタム*/


p { font-size: 16px;}

.mb-10 {margin-bottom: 10px;}
.mb-20 {margin-bottom: 20px;}
.mb-30 {margin-bottom: 30px;}
.mb-40 {margin-bottom: 40px;}
.mb-50 {margin-bottom: 50px;}
.mb-60 {margin-bottom: 60px;}
.mb-70 {margin-bottom: 70px;}
.mb-100 {margin-bottom: 100px;}
.m_auto{ margin: auto;}

.font_18{font-size: 18px;}
.font_20{font-size: 20px;}
.font_22{font-size: 22px;}
.font_bold {font-weight: bold;}

.letter_s01 { letter-spacing: 0.1em;}
.line-h18{line-height: 1.8em;}


.bg-f5{ background-color: #F5F5F5;}
.bg-fff{ background-color: #fff;}


.footer-top a {
    color: #333;
}
.footer-top a:hover {
    color: #53BC31;
}


.highlight {
  text-decoration: underline; /* 下線 */
  text-decoration-thickness: 0.5em; /* 線の太さ */
  text-decoration-color: rgba(83, 188, 49, 0.4); /* 線の色 */
  text-underline-offset: -0.2em; /* 線の位置。テキストに重なるようにやや上部にする */
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}



/*PCでは改行しない*/
.sma{
    display: none;
}
/*pcでは改行する*/
.pc{
  display: block;
}


@media screen and (max-width:768px) {
  /*spでは改行する*/
    .sma{
        display: block;
    }
  /*spでは改行しない*/
    .pc{
      display: none;
    }

    #header .logo {
        font-size: 20px;
        margin: 0;
        padding: 0;
        line-height: 1.3;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
    }
}




.pcview {/*PC時にのみ表示*/
  display: block;
}
.spview {
	display: none;
}

@media screen and (max-width: 1119px) {
	.pcview {
		display: none;
	}
	.spview {
		display: block;
	}
}



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

.table th {
    width: 40%;
  }
@media (min-width:992px) {
    .table {
      width: 80%;
      margin: auto;
    }
    .table th {
        margin-left: 30px;
      }
  }


/*カスタム*/
.machine table {/*主要設備*/
  width: 100%;
}
.machine table th {
  background-color: #484848;
  color: #fff;
  font-weight: bold;
  padding-left: 10px;
}
.machine table td {
  padding-left: 20px;
  text-align: center;
}


.portfolio .member {
    margin: 5px;
    overflow: hidden;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.portfolio .member .member-info h4 {
    font-weight: 700;
    margin: 5px;
    font-size: 18px;
    color: #151515;
}
.portfolio .member .member-info p {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #aaaaaa;
    margin: 5px;
}

.process {/*作業工程背景*/
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../img/kinzoku.png) fixed center center;
    background-size: cover;
    padding: 60px 0;
}


.process2 {/*作業工程背景*/
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(225, 225, 225, 0.8)), url(../img/kinzoku.png) fixed center center;
    background-size: cover;
    padding: 60px 0;
}



.features {
    padding: 100px 0;
  }
  .services .icon-box h4 {
    margin-top: 15px;
}
.services .icon-box {
    padding: 10px 20px;
}

/*--------------------------------------------------------------
# 作業工程0622
--------------------------------------------------------------*/

#hero .works {
  padding: 10px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.8);;
  height: 100%;
  text-align: center;
}


#hero .works h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
  color: #333;
}


.works_process {
  text-align: center;
}
.works_process h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
  color: #000;
  text-align: center;
}
.works_process img {
  border-radius: 5px;
  width: 85%;
  box-shadow: 3px 3px 3px rgba(0,0,0,0.3);
}




/*--------------------------------------------------------------
# Company
--------------------------------------------------------------*/
.Company .info {
    width: 100%;
    background: #fff;
  }
  
  .Company .info i {
    font-size: 20px;
    background: #53BC31;
    color: #151515;
    float: left;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
  }
  
  .Company .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #151515;
  }
  
  .Company .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #484848;
  }
  
  .Company .info .email,
  .Company .info .phone {
    margin-top: 40px;
  }
  
  .Company .php-email-form {
    width: 100%;
    background: #fff;
  }
  
  .Company .php-email-form .form-group {
    padding-bottom: 8px;
  }
  
  .Company .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
  }
  
  .Company .php-email-form .error-message br+br {
    margin-top: 25px;
  }
  
  .Company .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  
  .Company .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
  }
  
  .Company .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
  }
  
  .Company .php-email-form input,
  .Company .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
  }
  
  .Company .php-email-form input:focus,
  .Company .php-email-form textarea:focus {
    border-color: #53BC31;
  }
  /*2023-06-14
  .Company .php-email-form input {
    height: 44px;
  }
  */
  .Company .php-email-form textarea {
    padding: 10px 12px;
  }
  
  .Company .php-email-form button[type=submit] {
    background: #087532;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
  }
  
  .Company .php-email-form button[type=submit]:hover {
    background: #53BC31;
  }
  
  @-webkit-keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }

  /*--------------------------------------------------------------
# access
--------------------------------------------------------------*/
.access {
    padding-top: 100px;
  }
  
  .access .icon-box {
    padding-left: 15px;
  }
  
  .access .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0 10px 60px;
  }
  
  .access .icon-box i {
    font-size: 48px;
    float: left;
    color: #53BC31;
  }
  
  .access .icon-box p {
    font-size: 15px;
    color: #848484;
    margin-left: 60px;
  }
  
  .access .image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
  }

  /*固定フッターPC非表示*/
  /*メニューをページ下部に固定*/
#sp-fixed-menu{
  position: fixed;
  width: 100%;
  bottom: 0px;
  font-size: 0;
  opacity: 0.9;
  z-index: 99;
}

/*メニューを横並びにする*/
#sp-fixed-menu ul{
  display: flex;
  list-style: none;
  padding:0;
  margin:0;
  width:100%;
}

#sp-fixed-menu li{
  justify-content: center;
  align-items: center;
  width: 50%;
  padding:0;
  margin:0;
  font-size: 14px;
  border-right: 1px solid #fff;
}

/*左側メニューを緑色に*/
#sp-fixed-menu li:first-child{
  background: #38b435;
}

/*左側メニューをオレンジ色に*/
#sp-fixed-menu li:last-child{
  background: #f3a324;
}

/*ボタンを調整*/
#sp-fixed-menu li a{
  color: #fff;
  text-align: center;
  display:block;
  width: 100%;
  padding:20px;
}
@media (min-width: 1119px) {
  .for-sp{
     display:none;
   }
}