@charset "UTF-8";
/*======================================================= 
 採用サイト(会社紹介)スタイル
=======================================================*/
/* ボタン */
.link-btn{
  max-width: 240px;
  width: 100%;
  position: relative;
  text-align: left;
  margin: 1em 0 1em auto;
}
.link-btn a{
  display: block;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 0;
}
.link-btn a:hover{
  color: #333;
}
.link-btn a:before{
  display: block;
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #333;
}
.link-btn a:after{
  display: block;
  content: "";
  position: absolute;
  top: 20px;
  right: 5px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-left: 15px solid #d32929;
}
.link-btn a:hover:before{
  background-color: #d32929;
}
.link-btn a:hover:after{
  border: 10px solid transparent;
  border-left: 15px solid #fff;
}

.message{
    padding-bottom: 50px;
}
.message h2 span{
    display: inline-block;
    font-size: 1em;
}

/* 理念 */
.philosophy{
    padding-bottom: 50px;
}
.philosophy .wrap_c{
    text-align: center;
}
.philosophy h2{
    width: fit-content;
    position: relative;
    margin: auto;
}
.philosophy h2::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 5px;
    background-color: #EB2B2B;
    bottom: 40px;
    right: 50%;
    transform: translateX(50%);
}
.philosophy img{
    display: block;
    max-width: 600px;
    width: 100%;
    margin: auto;
}
/* about */
/* .about{
    background-color: #f6f6f6;
    padding: 30px 0 50px 0;
}
.about-block{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}
.about-item{
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 15px;
}
.about-title{
    display: inline-block;
    font-weight: bold;
    background-color: #EB2B2B;
    color: #fff;
    border-radius: 3px;
    padding: 2px 10px;
}
.about-item .flex{
    display: flex;
    justify-content: center;
}
.about-data{
    color: #EB2B2B;
    font-size: 3.5em;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
    padding-top: 10px;
}
.about-data span{
    font-size: 0.5em;
}
.about-memo{
    padding: 15px 0;
} */

/* 企業情報 */
.company{
    padding-top: 30px;
}
.company-table tr{
    display: grid;
    grid-template-columns: 1fr 3fr;
    align-items: center;
    border-top: 1px solid #333;
    background-color: #fff!important;
}
.company-table tr:last-child{
    border-bottom: 1px solid #333;
}
.company-table th, .company-table td{
    background-color: #fff;
    border: none;
    padding: 25px;
}

/*950px以下*/
@media screen and (max-width: 950px){
    /* リンク */
    .link-btn{
        max-width: 190px;
    }
    .link-btn a,
    .link-btn span{
        font-size: 15px;
        padding: 10px 0;
    }
    .link-btn a:before,
    .link-btn span:before {
        top: 7px;
        width: 35px;
        height: 35px;
    }
    .link-btn a:after,
    .link-btn span:after {
        top: 18px;
        right: 3px;
        border: 7px solid transparent;
        border-left: 12px solid #d32929;
    }
    .link-btn a:hover:after,
    .link-btn span:hover:after {
        border: 7px solid transparent;
        border-left: 12px solid #fff;
    }
    /* 理念 */
    .philosophy h2::before{
        height: 3px;
        bottom: 18px;
    }
    /* about */
    /* .about-block{
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .about-data{
        font-size: 3em;
    } */
}

/*480px以下*/
@media screen and (max-width: 480px){
    .company-table th, .company-table td{
        padding: 15px;
    }
}