@charset "UTF-8";
/*======================================================= 
 採用サイトfooter用スタイル
=======================================================*/
.inner{
    max-width: 1200px;
    margin: 0 auto;
}
ul{
    padding: 0;
}
li{
    list-style: none;
}
a{
    text-decoration: none;
    color: #333;
}

.footer{
    font-size: 14px;
    position: relative;
    padding: 0;
    margin: 0;
}

/* top */
.footer-bg img{
    width: 100%;
    height: 320px;
}
.footer-top{
    max-width: 1200px;
    width: 100%;
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.footer-top-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-title{
    font-size: 2.5em;
    font-weight: bold;
    color: #fff;
}
.footer-title span{
    display: block;
    font-size: 0.6em;
}
.entry-btn{
    position: relative;
    width: 300px;
    background-color: #fff;
    border: 1px solid #333;
    border-radius: 30px;
    text-align: center;
}
.entry-btn:first-child{
    margin-bottom: 15px;
}
.entry-btn a{
    display: block;
    font-weight: bold;
    color: #EB2B2B;
    padding: 15px;
}
.entry-btn a::after{
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: '\f178';
    font-weight: bold;
    right: 30px;
    top: 30%;
}

/* nav */
.footer-nav{
    padding-top: 0;
}
.footer-list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
}
.footer-list .link-item:last-child{
    border-left: 1px solid #333;
    padding-left: 15px;
}
.item-head{
    font-weight: bold;
    padding-bottom: 10px;
}
.item-body ul li{
    padding-bottom: 10px;
}
.item-body ul li a::before {
    content: '';
    background-color: #333;
    display: inline-block;
    vertical-align: middle;
    width: 0.8em;
    height: 1px;
    margin-right: 10px;
}
.footer-pan{
    display: flex;
    align-items: end;
}
.fukidashi {
  position: relative;
  display: inline-block;
  padding: 20px 15px;
  border-radius: 50%;
  background-color: #eb2b2b;
  text-align: center;
  line-height: 1.5;
  color: #fff;
}
.fukidashi:hover{
    color: #fff;
}
.fukidashi::after {
  content: "";
  position: absolute;
  top: 75%;
  right: 20px;
  border-style: solid;
  border-width: 20px 0 0 15px;
  border-color: transparent transparent transparent #eb2b2b;
  translate: 100% calc(-50% + 0.4px);
  transform: skew(0, 20deg);
  transform-origin: left;
}
.fukidashi p{
    font-size: 12px;
    font-weight: bold;
}
.sns{
    width: fit-content;
    display: flex;
    align-items: center;
    background-color: #EB2B2B;
    color: #fff;
    border-radius: 5px;
    padding: 10px 15px;
    margin-top: 10px;
}
.sns p{
    font-size: 14px;
    font-weight: bold;
    padding-right: 5px;
}
.sns i{
    font-size: 18px;
    color: #fff;
    padding-right: 5px;
}
.footer-pan img{
    max-width: 150px;
}

/* bottom */
.footer-bottom{
    background-color: #EB2B2B;
    padding: 15px;
}
.copy{
    text-align: center;
    color: #fff;
    font-size: 14px;
}

/*1200px以下*/
@media screen and (max-width: 1200px){
    .footer-top, .wrap_b{
        padding: 0 15px;
    }
}

/*950px以下*/
@media screen and (max-width: 950px){
    /* top */
    .footer-bg img{
        height: 300px;
    }
    .footer-top{
        top: 10%;
    }
    
    /* nav */
    .footer-list{
        display: block;
    }
    .footer-list .link-item:last-child{
        border-left: none;
        border-top: 1px solid #333;
        padding: 15px 0 0 0;
    }
}

/*750px以下*/
@media screen and (max-width: 750px){
    /* top */
    .footer-bg img{
        height: 250px;
    }
    .footer-top{
        top: 8%;
    }
    .footer-title{
        font-size: 20px;
    }
    .entry-btn{
        width: 220px;
    }
    .entry-btn:first-child{
        margin-bottom: 10px;
    }
    .entry-btn a{
        padding: 10px;
    }
    .entry-btn a::after{
        right: 20px;
    }
    /* nav */
    
}

/*480px以下*/
@media screen and (max-width: 480px){
    /* top */
    .footer-bg img{
        height: 200px;
    }
    .footer-title{
        font-size: 15px;
    }
    .footer-title span{
        font-size: 0.8em;
    }
    .entry-btn{
        width: 180px;
    }
    .entry-btn a{
        font-size: 12px;
    }
    .entry-btn a::after{
        display: none;
    }
    .footer-content{
        padding-top: 15px;
    }
    
    /* nav */
    
}