@charset "utf-8";
/* CSS Document */
.drawer__nav__item a:link{text-decoration: none;color:#e71a2f;}
.drawer__nav__item a:visited {text-decoration: none;color:#e71a2f;}
.drawer__nav__item a:hover{text-decoration: underline;color: #e71a2f;}
.drawer__nav__item a:active {text-decoration: underline;color: #e71a2f;}

.header-a a:link{text-decoration: none;color:#ffffff;}
.header-a a:visited {text-decoration: none;color:#ffffff;}
.header-a a:hover{text-decoration: underline;color: #ffe6e6;}
.header-a a:active {text-decoration: underline;color: #ffe6e6;}

.footer-a a:link{text-decoration: none;color:#ffffff;}
.footer-a a:visited {text-decoration: none;color:#ffffff;}
.footer-a a:hover{text-decoration: underline;color: #ffffff;}
.footer-a a:active {text-decoration: underline;color: #ffffff;}

a:link{text-decoration: none;color:#000000;}
a:visited {text-decoration: none;color:#000000;}
a:hover{text-decoration: underline;color: #333;}
a:active {text-decoration: underline;color: #333;}

a img{transition:0.7s;}
a img:hover{opacity:0.8;}

img{max-width:100%;height:auto;}
li{list-style: none;}



/*------------------------------- 

           全ページ共通設定 

 ----------------------------------*/


 html {
	scroll-behavior: smooth;
    
}
body{
    font-family: "Kosugi", sans-serif;
  font-weight: 400;
  font-style: normal;
}
#pagetop {
    width: 95px;
    height: 95px;
    position: fixed;
    right: 30px;
    bottom: 68px;
    z-index: 100;
    
}

.font-red{
    color: #c70b02;
}
.title h1{
    font-size: 70px;
    text-align: center;
    margin-bottom: 10px;
    
}
.title  .fonto-big99{
    margin: 0;
    padding-top: 100px;
    margin-bottom: 5px;
}
.title  .fonto-bigr{
    padding-top: 100px;

}
.title h2{
    font-size: 16px;
    
    text-align: center;
}

.content {
    text-align: center;
    opacity: 0;
  }
  .content.inview {
    animation-name: fade-in;
    animation-duration: .8s;
    animation-timing-function: ease-in-out;
    animation-delay: .6s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
  }

/* 20250707

.fade-in.inview {
  animation-name: fade-in;
  animation-duration: .8s;
  animation-timing-function: ease-in-out;
  animation-delay: .6s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

.fade-in {
  opacity: 0;
}
 */

  @keyframes fade-in {
    0% {
      transform: translateY(40px);
    }
    100% {
      transform: translateY(0px);
      opacity: 1;
    }
  }

@media only screen and (max-width: 800px) {
    img, object, embed, video {
        max-width: 100%;height:auto;
    }
    #pagetop {
        position: fixed;
        right: 3%;
        bottom: 8%;
        z-index: 100;
        
    }
    .title h1{
        padding-top: 100px;
        font-size: 3rem;
        text-align: center;
    }
    .title h2{
        font-size: 14px;
        text-align: center;
    }
    .title  .fonto-big99{
        margin: 0 3%;
        margin-bottom: 5px;
        padding-top: 100px;
    }
}
/*------------------------------- 

              header 

 ----------------------------------*/

header {
    position: fixed; /*← fixedで固定 */
    width: 100%; 
    height: 80px; 
    background-color:#FFFFFF9D;
    box-sizing: border-box;
    top: 0; 
    left: 0; 
    display: flex; 
    align-items: center; 
    z-index: 1000;
   /* ロゴとメニューを横並びにする */
    display: flex; 
    justify-content:space-between;
    
}

header .nav .menu {
    display: flex; 
}

header .nav .menu li {
    list-style: none; 
    margin-left: 40px;
    
}

header .nav .menu li a{
   color: #B78D4A;
   font-weight:bold;
   text-decoration: none;
   
}
.header-contact{
    font-size: 18px!important;
}
.footer-rec-img{
    width: 15px;
    height: 12px;
}
.header-rogo img{
    width: 201px;
}
.header-rogo{
    padding-left: 20px;
}
.header-list{
    display: flex;
    font-weight: 600;

}
.header-list li{
    vertical-align: middle;
    font-size: 16px;
    font-weight: 300;
    
}
.header-list li p{
    vertical-align: middle;
    font-size: 16px;
    font-weight: 300;
}

.header-list .a-text::after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 12px;
    background: url(../img/header_06.png) no-repeat center;
    background-size: 16px;
    margin-left: 8px;
    padding-top: 18px;
}
.header-list .m-light50{
    margin-right: 65px;
    padding-top: 33px;
}
.header-list .m-light502{
    margin-right: 71px;
    padding-top: 33px;
}
.header-contact-btn{
   
    
    color: #ffffff;
    text-align: center;
    
}
.header-contact-btn{
    display: block!important;
    width: 250px;
    height: 80px;
    padding-top: 31px;
    background-color: #e71a2f;
    color: #ffffff;
    text-align: center;
    letter-spacing: .1rem;
    text-decoration: none;
}

.header-contact-btn{
    text-decoration: none!important;
}
.header-recruiteimg{
    display: flex;
    position: relative;
}
.header-list .a-text::after {
    content: "";
    width: 15px;
    height: 12px;
    background: url(../img/header_06.png) no-repeat center;
    background-size: 16px;
    margin-left: 8px;
    padding-top: 21px;
    position: absolute;
    left: 59px;
    top: 31px;
    
}

@media only screen and (max-width: 1150px) {
    img, object, embed, video {
        max-width: 100%;height:auto;
    }
    
    header {
        height: 60px; 
    }
    .header-rogo{
        width: 50%;
    }
    .header-list{
        display: none;
    }
    .img-1{
        width: 80%;
    }
}
@media only screen and (max-width: 1300px) {
    img, object, embed, video {
        max-width: 100%;height:auto;
    }
    .img-1{
        width: 40%;
    }
}
/*------------------------------- 

           ハンバ－ガ－ 

----------------------------------*/
.header-nav{
    display: none;
    margin: 20px;
}

/* ハンバーガーボタンのデザイン */
.drawer__button {
    position: relative;
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
  }
  /* ハンバーガーボタン内の線 */
  .drawer__button > span {
    display: block;
    position: absolute;
    top: 50%;
    right: -10px;
    width: 3rem;
    height: 2px;
    background-color: #e71a2f;
    transform: translateX(-50%);
  }
  .drawer__button > span:first-child {
    transform: translate(-50%, calc(-50% - 0.5rem));
    transition: transform 0.3s ease;
  }
  .drawer__button > span:nth-child(2) {
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
  }
  .drawer__button > span:last-child {
    transform: translate(-50%, calc(-50% + 0.5rem));
    transition: transform 0.3s ease;
  }
  /* 展開時のデザイン */
  .drawer__button.active > span:first-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .drawer__button.active > span:nth-child(2) {
    opacity: 0;
  }
  .drawer__button.active > span:last-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  /* メニューのデザイン */
  .drawer__nav {
    position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transition: opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
    font-size: 40px;
  }
  .drawer__nav.active {
    opacity: 1;
    visibility: visible;
  }
  .drawer__nav__inner {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #ffffffc7;
    padding: 4rem 1.5rem 1rem;
    margin: 0 0 0 auto;
    overflow:visible
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .drawer__nav.active .drawer__nav__inner {
    transform: translateX(0);
  }
  .drawer__nav__menu {
    list-style: none;
    padding-left: 0;
  }
  .drawer__nav__link {
    display: block;
    color: black;
    text-decoration: none;
    padding: 1rem 1rem;
    padding-top: 50px;
  }
  
  /* ハンバーガーメニュー展開時、背景を固定 */
  body.active {
    height: 100%;
    overflow: hidden;
  }
  .drawer__nav__item{
    text-align: center;
    justify-content: space-evenly;
    position: relative;
    border-bottom: solid 1px #e71a2f;
    font-size: 26px;
  }
  .drawer__nav__item p{
    text-align: center;
  }
.drawer__nav__menu .a-text::after {
    content: "";
    width: 15px;
    height: 12px;
    background: url(../img/header_06-red.png) no-repeat center;
    background-size: 16px;
    margin-left: 56px;
    margin-top: -19px;
    position: absolute;
    
}
@media only screen and (max-width: 1150px) {
    img, object, embed, video {
        max-width: 100%;height:auto;
    }
    .header-nav{
        display: block;
    }
}
/*------------------------------- 

               footer

----------------------------------*/
footer{
    font-size: 14px;
}

.footer-recruiteimg{
    position: relative;
}
.footer-recruite-img::after {
    content: "";
    width: 15px;
    height: 12px;
    background: url(../img/header_06.png) no-repeat center;
    background-size: 16px;
    margin-left: 8px;
    padding-top: 21px;
    position: absolute;
    left: 50px;
    top: 30px;
}

.footer-list{
    height: 80px;
    display: flex;
    justify-content: flex-end;
}
.footer-rec-img{
    width: 15px;
    height: 12px;
}
.footer-contact-btn{
    text-decoration: none!important;
    font-size: 18px;
    display: block; 
    width: 250px;
    height: 80px;
    padding-top: 31px;
    background-color: #e71a2f;
    color: #ffffff;
    text-align: center;
    letter-spacing: .1rem;
    text-decoration: none;
}
.footer-contact-btn p{
    text-align: center;
}

.m-light40{
    display: inline-block;
    margin-right: 55px;
    padding-top: 33px;
    font-size: 14px;
}

.m-light402{
    display: inline-block;
    margin-right: 35px;
    padding-top: 33px;
    font-size: 14px;
}
.footer-list li a{
    display: block!important;
    height: 80px;
}
.footer-rogo{
    margin-bottom: 26px;
}

.footer-company{
    margin-bottom: 20px;
}
.footer-text{
    margin-left:63px;
}
.copyright{
    height: 40px;
    width: 100%;
    background-color: #595757;
    color: #ffffff;
}
.copyright p{
    font-size: 12px;
    height: 13px;
    width: 300px;
    margin: auto;
    padding-top: 13px;
    text-align: center;
    align-items: center;
    
}
.footer-recruite-img{
    display: flex;
}

@media only screen and (max-width: 1150px) {
    img, object, embed, video {
        max-width: 100%;height:auto;
    }
    
    .footer-rogo{
        margin-bottom: 26px;
        margin-top: 55px;
        text-align: center;
    }
    .footer-company p{
        text-align: center;
    }
    .footer-all ul{
        display: none;
    }
}

@media only screen and (max-width: 1016px) {
    img, object, embed, video {
        max-width: 100%;height:auto;
    }
    .footer-recruite-img::after {
        left: 71px;
        top: -1px;
    }
    .footer-list{
        height: 100%;
        display: flex;
        flex-direction: column;
        margin-top: 50px;
        justify-content: center;
        align-content: center;
        align-items: center;
        
    }
    .m-light40{
        
        margin: 0 auto;
        padding: 0;
        font-size: 18px;
    }
    .footer-contact-btn{
        font-size: 18px;
        display: block; 
        width: 210px;
        height: 40px;
        background-color: #e71a2f;
        color: #ffffff;
        text-align: center;
        letter-spacing: .1rem;
        text-decoration: none;
    }
    
    .footer-text{
        margin:0 auto;
    }
    .footer-rogo {
        margin-bottom: 26px;
        margin-top: 55px;
        text-align: center;
    }
    .footer-company p{
        text-align: center;
    }
    
}
/*------------------------------- 

           ファーストビュー
 ----------------------------------*/
 .img-box{
    width: 100%;
    height: 800px;
    overflow: hidden;
    position: relative;
  }
  .img-box12 {
    top: 250px;
    left: 175px;
    width: 600px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1000;
    position: absolute;
}
  .img-box1{
    top: 0;
    left: 0;
    width: 100%;
    height: 800px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 10;
    opacity: 0;
    animation-name: fade;
    animation-duration: 16s;
    animation-iteration-count: infinite;
    position: absolute;
  }
  .img-box>div{
    
  }
  @keyframes fade {
    0%{
      opacity: 0;
    }
    20%{
      opacity: 1;
    }
    80%{
      opacity: 0;
      /* transform: scale(1.2); */
    }
    100%{
      opacity: 0;
      z-index: 0;
    }
  }
  /* 1枚目のスライド */
  .img-box>div:first-of-type{
    background-image: url(../img/img.jpg);
  }
  
  /* 2枚目のスライド */
  .img-box>div:nth-of-type(2){
    background-image: url(../img/img2.jpg);
    /* 追記 */
    animation-delay: 6s;
  }
  
  /* 3枚目のスライド */
  .img-box>div:last-of-type{
    background-image: url(../img/img3.jpg);
    /* 追記 */
    animation-delay: 10s;
  }
 /*------------------------------- 

           ファーストビュー
 ----------------------------------*/
 .main-fastview{
    width: 100%;
    /* background-image: url(../img/fastview_01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center; */
 }
/* .main-fastview{
    position: relative;
    width: auto;
} */
.main-img1{
width: 100%;

}
.img-boxsp{
    width: 100%;
    display: none;
}
.img-all1 .main-img2 {
    width: 640px;
    position: absolute;
    left: 150px;
    top: 230px;
}

/* その場で */
.fadeIn{
    animation-name:fadeInAnime;
    animation-duration:6s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeInAnime{
      from {
        opacity: 0;
      }
    
      to {
        opacity: 1;
      }
    }

@media only screen and (max-width: 1300px) {
    img, object, embed, video {
        max-width: 100%;height:auto;
    }
    .img-box12 {
        top: 32%;
        left: 11%;
        width: 50%;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        z-index: 1000;
        position: absolute;
    }
    .img-box {
        width: 100%;
        height: 613px;
        overflow: hidden;
        position: relative;
    }
    .img-all1 .main-img2 {
        position: absolute;
        left: 8%;
        top: 30%;
    }
}
@media only screen and (max-width: 1000px) {
    
    .img-all1 .main-img2 {
        position: absolute;
        top: 32%;
        left: 9%;
        width: 70%;
    }
    .img-box {
        width: 100%;
        height: 492px;
        overflow: hidden;
        position: relative;
    }
    .img-box12 {
        top: 32%;
        left: 9%;
        width: 50%;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        z-index: 1000;
        position: absolute;
    }
    
}
@media only screen and (max-width: 780px) {
    img, object, embed, video {
        max-width: 100%;height:auto;
    }
    .img-box {
        width: 100%;
        width: 800px;
        overflow: hidden;
        position: relative;
    }
    .img-box12 {
        top: 24%;
        left: 9%;
        width: 60%;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        z-index: 1000;
        position: absolute;
    }}
@media only screen and (max-width: 600px) {
    img, object, embed, video {
        max-width: 100%;height:auto;
    }
    .img-box12 {
        top: 30%;
        left: 7%;
        width: 74%;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        z-index: 1000;
        position: absolute;
    }

    .img-boxpc{
        width: 100%;
        
        display: none;}
        
    .img-boxsp{
        width: 100%;
        display: block;

    }
}
@media only screen and (max-width: 600px) {
    img, object, embed, video {
        max-width: 100%;height:auto;
    }
    .okegawah1 {
        padding-top: 0px;
    }
}
/*------------------------------- 

              桶川説明 

 ----------------------------------*/
 .be-bgimgall{
    background-image: url(../img/explanation1.png);
    background-repeat: no-repeat;
    background-size: 313px;
    background-position: 100px 64px;
 }
 .main-explanation{
    padding-top: 130px;
    padding-bottom: 267px;
 }
 .main-explanation h1{
    text-align: center;
    font-size: 30px;

 }
 .main-explanation p{
    margin-top: 70px;
    text-align: center;
    font-size: 20px;
    line-height: 42px;
 }

/* 2025.0707追加 */

.main-explanation2 {
  padding-top: 130px;
  padding-bottom: 0px;
  margin: 0;
  text-align: center;
}

.main-explanation2 .text_box {
  width: 40%;
  border: 1px solid red;
  padding: 30px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.main-explanation2 .text_box h2{
  font-size: 16px;
  padding-bottom: 10px;
  font-weight: bold;
  text-align: center;
}

.main-explanation2 .text_box p {
  margin-top: 10px;
  text-align: left;
  font-size: 12px;
  line-height: 18px;
  font-weight:normal;
}

/* 2025.0707追加 */

 .okegawah1{
    padding-top: 100px;
 }
 .double_line {
    text-align: center;
    width: 410px;
    height: 66px;
    font-size: 46px;
    color: #c70b02;
    display: inline-block;
    box-shadow: 0 0 0 1px #000000, 12px 12px 0 0 #fff, 12px 12px 0 1px #000000;
    margin-right: 2%;
    margin-top: 20px;
    background-color: #ffffff;
    padding-top: 10px;
  }
   
  .double_line::before {
    content: "";
    position: absolute;
    top: 6px;
    bottom: -14px;
    right: -14px;
    /* border: solid 4px #ffc0cb; */
    z-index: -1;
  }
  
  .be-bgimgall{
    position: relative;
  }
  .be-bgimg{
    width: 758px;
    position: absolute;
    top:575px;
    right: 0px;
  }
  
  
  @media only screen and (max-width: 1300px) {
    img, object, embed, video {
        max-width: 100%;height:auto;
    }
    
    .main-okegawa{
        background-image: url(../img/explanation1.png);
        background-repeat: no-repeat;
        background-size: 40%;
        background-position: 53px 113px;
     }
     .main-explanation h1{
        text-align: center;
        font-size: 28px;
        /* font-weight: 600; */
     }
     .main-explanation p{
        margin-top: 50px;
        text-align: center;
        font-size: 16px;
     }
    .main-explanation{
        width: 97%;
        margin: 0 auto;
     }
    .double_line {
        font-size: 31px; 
        width:32%;
        margin-right: 3%;
        padding-top: 17px;
    }
    .be-bgimg{
        position: absolute;
        top:575px;
        right: 0px;
      }
    
}
@media only screen and (max-width: 854px) {
    img, object, embed, video {
        max-width: 100%;height:auto;
    }
     .main-explanation h1{
        text-align: center;
        font-size: 24px;
        /* font-weight: 600; */
     }
     .main-explanation{

        padding-top: 10px;
        padding-bottom: 267px;
     }
	
     .main-explanation2{

        padding-top: 10px;
        padding-bottom: 267px;
     }
	
    .double_line {
        font-size: 22px;
    width: 173px;
    margin-right: 4%;
    height: 55px; 
    }
    .be-bgimg{
        width: 100%;
        position: absolute;
        top: 639px;
        right: 0px;
      }
	
.main-explanation2 {
  padding: 30px 30px 0 30px;
  box-sizing: border-box;
}

.main-explanation2 .text_box {
  width: 100%;
  border: 1px solid red;
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
    
}
@media only screen and (max-width: 494px) {
    img, object, embed, video {
        max-width: 100%;height:auto;
    }
    
    .double_line {
        font-size: 18px;
    width: 131px;
    margin-right: 4%; 
        
    }
    .main-explanation h1{
        text-align: center;
        font-size: 18px;
        /* font-weight: 600; */
     }
    .be-bgimg{
        width: 100%;
        position: absolute;
        top: 705px;
        right: 0px;
      }
    
}
@media only screen and (max-width: 394px) {
    img, object, embed, video {
        max-width: 100%;height:auto;
    }
    
    .be-bgimg{
        top: 755px;
        right: 0px;
      }
    
}
@media only screen and (max-width: 254px) {
    img, object, embed, video {
        max-width: 100%;height:auto;
    }
    
    .be-bgimg{
        top: 889px;
        right: 0px;
      }
    
}
/*------------------------------- 

              経営理念 

 ----------------------------------*/
.main-hilosophy{
    background-color: #f9f9f9;
    padding-top: 200px;
    padding-bottom: 200px;
    background-image: url(../img/bg-img.png);
    background-repeat: no-repeat;
    background-size: 328px;
    background-position: bottom left ;
}
.main-hilosophy p{
    font-size: 18px;
}
.main-hilosophy h3{
    font-size: 25px;
}
.hilosophy-img{
    align-items: center;
    margin: 0 auto;
    margin-top: 60px;
    width: 900px;

}
.hilosophy-img-sp img{
    width: 50%;
    margin: 10px 0;
}
.hilosophy-img-sp{
    display: none;
}


@media only screen and (max-width: 900px) {
    img, object, embed, video {
        max-width: 100%;height:auto;
    }
    .hilosophy-img{
        width: 90%;
        margin: 0 auto;
        margin-top: 50px;
    }
    .main-hilosophy {
        padding-top: 100px;
        padding-bottom: 100px;
        text-align: center;
    }
    
    .hilosophy-img-pc{
        display: none;
    }
    .hilosophy-img-sp{
        display: block;
    }
    .hilosophy-img-sp img{
        width: 80%;
        margin: 20px 0;
    }
    
}
/*------------------------------- 

      　事業概要 　ビジネス

 ----------------------------------*/
 .main-bussiness {
    margin: 0 auto;
    padding-top: 150px;
    padding-bottom: 200px;
    background-image: url(../img/bg-img.png);
    background-repeat: no-repeat;
    background-size: 328px;
    background-position: bottom right ;

}
.main-bussiness .title{
    margin-bottom: 60px;
}
.main-bussiness p{
    text-align: center;
    font-size: 18px;
    line-height: 30px;
}
.main-bussiness h3{
    text-align: center;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 32px;
}
.main-bussiness h4{
    text-align: center;
    font-size: 18px;
    line-height: 30px;
}
.bussiness-img{
    width:1111px;
    margin: 0 auto;
    margin-top: 17px;
    margin-bottom: 42px;
}
 @media only screen and (max-width: 1300px) {
    img, object, embed, video {
        max-width: 100%;height:auto;
    }
    .main-bussiness {
        margin: 0 auto;
        padding-top: 100px;
        padding-bottom: 100px;
    
    }
    .bussiness-img{
        width:96%;
        margin: 0 auto;
        margin-top: 17px;
        margin-bottom: 42px;
    }
    .bussiness-m{
        margin: 5%;
    }
    .main-bussiness p{
        font-size: 16px;
    }
    .main-bussiness h3{
        font-size: 18px;
        margin-bottom: 50px;
    }
    .main-bussiness h4{
        font-size: 16px;
    }
}
/*------------------------------- 

              カンパニー 

 ----------------------------------*/
.main-company{
    background-color: #f9f9f9;
    padding-top: 100px;
    padding-bottom: 250px;
    background-image: url(../img/bg-img.png);
    background-repeat: no-repeat;
    background-size: 328px;
    background-position: bottom left ;
    }
.main-bussiness h3{
    font-size: 25px;
}
.main-bussiness p{
    font-size: 18px;
}
.company-style{
    margin-bottom: 250px;
}
table.company-style{
    border-spacing: 0;
    table-layout: fixed;
    width: 1100px;
    margin: 0 auto;
    margin-top: 70px;
}
table.company-style tbody tr th {
    font-size: 17px;
    font-weight: 600!important;
    padding: 2rem;
    background-color: #dcdddd;
    border-top: none;
    border-bottom: 2px solid #fff;
    border-left: none;
    border-right: 2px solid #fff;
    width: 35%;
    font-weight: normal;
    text-align: center;
}
table.company-style tbody tr td {
    font-size: 17px;
    font-weight: 600;
    padding: 2rem;
    border-top: none;
    border-bottom: 2px solid #dcdddd;
    background-color: #ffffff;
    border-left: none;
    border-right: none;
    padding-left: 50px;
    line-height: 29px;
}
table.company-style tbody tr:nth-of-type(1) td {
    border-top: 2px solid #dcdddd;
}

@media only screen and (max-width: 1156px) {
    img, object, embed, video {
        max-width: 100%;height:auto;
    }
    .main-company{
        padding-top: 100px;
        padding-bottom: 100px;
    }
    table.company-style tbody tr td {
        padding-left: 0px;
        padding: 2rem;
    }
    table.company-style {
        width: 90%;
        border-spacing: 0;
        table-layout: fixed;
        margin: 0 auto;
        margin-top: 70px;
    }
    table.company-style  tbody tr {
        display: flex;
        flex-direction: column;
    }
    table.company-style  tbody tr th {
        width:100%;
        border: none !important;
    }
    table.company-style  tbody tr td {
        width: 100%;
        text-align: center;
        border: none !important;
        padding-bottom: 3rem;
    }
}
 /*------------------------------- 

              コンタクト 

 ----------------------------------*/

.main-contact {
    padding-top: 35px;
    margin-bottom: 135px;
}
.contact-img{
    margin-left: 42px;
    margin-right: 8px;
    width: 42px;
}

@media only screen and (max-width: 1300px) {
    img, object, embed, video {
        max-width: 100%;height:auto;
    }
    .main-contact {
        padding-top: 60px;
        margin-bottom: 80px;
    }
    
}
 /* ******************ボタン******************* */
.contact-btn{
    
  width: 370px;
    margin: 0 auto;
    margin-top: 17px;
    
}
 *,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}
a.btn{
    display: flex;
    align-items: center;
}
.btn,
a.btn,
button.btn {
    
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #212529;
    border-radius: 0.5rem;
    width: 370px;
    height: 50px;
}

.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #c70b02;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #d6362d;
}

@media only screen and (max-width: 392px) {
    img, object, embed, video {
        max-width: 100%;height:auto;
    }
    .contact-btn{
        width: 90%;
        margin: 0 auto;
        margin-top: 45px;
          
      }
      .btn,
    a.btn,
    button.btn {
        font-size: 18px;
        width: 100%;
        height: 50px;
    }
    
}
 /*------------------------------- 

              アクセス 

 ----------------------------------*/
.main-access{
    background-color: #f9f9f9;
    padding-top: 150px;
    padding-bottom: 200px;
    background-image: url(../img/bg-img.png);
    background-repeat: no-repeat;
    background-size: 328px;
    background-position: bottom right ;
}
.access-map{
    margin-top: 36px;
}

@media only screen and (max-width: 1300px) {
    img, object, embed, video {
        max-width: 100%;height:auto;
    }
    .main-access{
        background-color: #f9f9f9;
        padding-top: 100px;
    }
    
}
 /*------------------------------- 

          　　リクルート

 ----------------------------------*/
.main-recruite{
    height: 464px;
    width: 100%;
    background-image: url(../img/recruite-bg.jpg);
    background-repeat: no-repeat;background-size: cover;
    background-position: center center;
    padding-top: 81px;
}
.recruite-img{
    margin-left: 65px;
    margin-right: 8px;
    width: 42px;
}
@media only screen and (max-width: 1300px) {
    img, object, embed, video {
        max-width: 100%;height:auto;
    }
    
    
}
 /*------------------------------- 

    　　プライバシーポリシー

 ----------------------------------*/
#privacy-all{
    margin-top: 80px;
    margin-bottom: 170px;
}
.privacy-main{
    margin:0 150px;
}
.privacy-main dt {
    font-size: 17px;
    font-weight: 600;
    margin-top: 45px;
}

.privacy-main dd {
    font-size: 15px;
    margin-top: 20px;
    line-height: 22px;
}
.privacy-main p {
    font-size: 15px;
    margin-top: 80px;
}
@media only screen and (max-width: 1300px) {
    img, object, embed, video {
        max-width: 100%;height:auto;
    }
    .privacy-main{
        margin:0 10%;
    }
    
}
/* ---------------パンくず------------------- */
.pankuzu{
    margin-left: 20px;
    margin-top: 15px;
    font-size: 12px;
}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
  }
  
  .breadcrumb li:not(:last-of-type)::after {
    content: "＞";
    margin: 0 .6em; /* 記号の左右の余白 */
    color: #777; /* 記号の色 */
  }
/*------------------------------- 

              お問い合わせ 

 ----------------------------------*/

 .top_contactarea {
    background-color: #f8f8f8;
    padding: 150px 0px;
	max-width: 100%;
	}
.c_logo {
	width: 100%;
	max-width: 250px;
	margin-left: 10px;
	padding-top: 15px;
}
.title_s {
 max-width: 640px;
 width: 100%;
 margin: 100px auto 30px;
 padding: 1px 3px;
}
.title_s span {
 display: block;
 border-top: 1px solid #000;
 border-bottom: 1px solid #000;
 width: 100%;
 /*height: 100%;*/
 padding: 20px 0;
 text-align: center;
 font-size: 20px;
 color: #000;
}
.title_ss {
 max-width: 300px;
 width: 100%;
 margin: 20px auto 15px;
 font-size: 15px;
 font-size: 1.5rem;
 line-height: 30px;
 color: #000;
 text-align: center;
 position: relative;
}
.title_ss:before {
 content: "";
 background: url("../images/brackets.png") no-repeat;
 background-size: 10px 30px;
 width: 10px;
 height: 30px;
 position: absolute;
 top: 0;
 left: 0;
}
.title_ss:after {
 content: "";
 background: url("../images/brackets.png") no-repeat;
 background-size: 10px 30px;
 width: 10px;
 height: 30px;
 position: absolute;
 top: 0;
 right: 0;
 transform: rotate(180deg);
}
.block { 
	display: block;
	font-size: 13px;
}
.contents_m .input {
	width: 100%;
    height: 40px;
	outline: none;
    border: 2px solid #f4f4f4;
}
.postcode input {
	width: 15%;
}
.postcode-contact input{
    margin-bottom: 10px;
}
.contents_m span.block{
    margin-bottom: 10px;
    margin-top: 18px;
}
.contents_m .textarea {
	width: 100%;
    height: 200px;
	font-size: 13px;
	outline: none;
    border: 2px solid #f4f4f4;
}
.center_a { 
	text-align: center;
    font-size: 18px;
    line-height: 2em;
    letter-spacing: 1px;
    margin-bottom: 66px;
}

.notice {
 color: #b90003;
}
.txt_form {
 display: inline-block;
 width: 1.2em;
 line-height: 1.8em;
 text-align: center;
}

/*---- table ----*/
.table {
 max-width: 920px;
 width: 100%;
 margin: 0 auto 30px;
}
.table th {
 background: #f6f6f6;
 border-bottom: 2px solid #ffffff;
 padding: 15px;
 width: 30%;
	font-size: 16px;
    text-align: left;
    font-weight: 100;
}
.table td {
 border-bottom: 2px solid #f6f6f6;
 padding: 15px;
 width: 70%;
}
/*---- table end----*/


.contact_btn a {
	text-decoration: none;
	-webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
  font-size: 20px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
  color: #fff;
  background-color: #0053af;
  border-bottom: 5px solid #024692;
	width: 100%;
    max-width: 500px;
}

.contact_btn a:hover {
	margin-top: 3px;
	border-bottom: 2px solid #024692;
}
.contact_btn_box {
	text-align: center;
}

.contact_btn span {
	font-size: 18px;
	font-weight: 600;
}
.contact_btn img {
	width: 6%;
	margin-left: 8px;
}
.pt30 {
	padding-top: 100px;
	max-width: 1200px;
    width: 95%;
    margin: 0 auto;
}

.top_accessarea {
	margin-bottom: 0px;
}
.top_accessarea {
	padding-bottom: 0px;
}

.thksmain{
    margin: 200px 150px 150px 150px;

}
.title_s{
    background-image: url();
    width: 610px;
    height: 63px;
}

.ma-co20{
    margin-bottom: 35px;
    font-size: 18px;
}
.contact-title{
    width:600px;
    height:auto;
    position: relative;
    margin: 0 auto;
    font-size:20px;
    margin-bottom: 40px;
}
.contact-title img{
    width:100%;
    height:auto;
}
.contact-title p{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    padding:0;
    margin:0;
    font-size:20px;
    font-weight: 600;
}

.contact-img2 img{
    width: 100%;
}
.contents_m tr {
    font-size: 16px;
}



@media only screen and (max-width: 948px) {
    img, object, embed, video {
        max-width: 100%;height:auto;
    }
    .thksmain{
        margin: 10% 5%;
        padding-top: 100px;
        padding-bottom: 115px;
    }
    .contact-title{
        width: 100%;
    }
    .contact-title p {
        font-size: 16px;
        width: 220px;
    }
}
/* ----------------------------ボタン--------------------------------- */
.btn_wh {
    max-width: 360px;
    width: 100%;
    height: 55px;
    text-align: center;
    margin: auto;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 200px;
    border: 1px solid #c70b02;
    transition: all .3s;
    background: #ffffff;
}
.btn_wh  :hover{
    border: 1px solid #c70b02;
    background: #c70b02;
}
.btn_wh a.button {
    position: relative;
    display: inline-block;
    padding: 18px 5px 8px;
    width: 100%;
    height: 100%;
    /* border: 1px solid #c70b02; */
    text-align: center;
    text-decoration: none;
    outline: none;
    transition: all .3s;
    /* background: #ffffff; */
    color: #c70b02;
    line-height: 1.3em;
}
.btn_wh a.button:hover{
    color: #ffffff;

}
:where(a) {
    color: inherit;
    text-underline-offset: .2ex;
}
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.btn_bl a.button span.icon_blank:after,
.btn_wh a.button span.icon_blank:after {
 display: none;
}

.btnarea {
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px 0 10px;
}
.btnarea_s {
    max-width: 750px;
    width: 100%;
    margin: auto;
}
ul.btnarea.btnarea_s {
    font-size: 14px;
    font-weight: 600;
}

@media only screen and (max-width: 948px) {
    img, object, embed, video {
        max-width: 100%;height:auto;
    }
    .btn_wh {
        margin-bottom: 12px;
    }
}
 /*------------------------------- 

              **** 

 ----------------------------------*/




 /* タブレットレイアウト : 769 px以下。PCレイアウトからスタイルを継承します。 */
/*  @media only screen and (max-width: 769px) {
        img, object, embed, video {max-width: 100%;height:auto;}
        #wrapper {
        width:auto;
    }
    /* モバイルレイアウト : 480 px 以下。PCレイアウト、タブレットレイアウトからスタイルを継承。 */
    /* @media only screen and (max-width: 480px) {} */

/* class .wrapper{} */
