@charset "UTF-8";
/*======================================================= 
 header・TOPボタン用スタイル
=======================================================*/
ul{
    padding: 0;
}
ul li{
    list-style: none;
}
a{
    text-decoration: none;
}
body.no-scroll {
    overflow: hidden;
}
.header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto!important;
    background-color: #ffffff;
    box-shadow: 0 3px 3px #eee;
    z-index: 1000;
}
.header-mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    z-index: 900;
}
.header-mask.pc-open,
.header-mask.sp-open{
    display: block;
}
.header-top-area{
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 10px 0;
}
.header-logo-area p{
    padding-bottom: 5px;
}
.header-btn-area{
    display: flex;
    align-items: center;
    gap: 15px;
}
.header-btn{
    width: 160px;
    font-weight: bold;  
    border-radius: 50px;
    transition: 0.3s;
    text-align: center;
    padding: 10px;
}
.header-btn.recruit{
    background-color: #f8f8f8;
    border: 2px solid #e6e6e6;
}
.header-btn.recruit:hover{
    background-color: #fff;
    color: #DF0716;
}
.header-btn.contact{
    background-color: #DF0716;
    color: #fff;
    border: 2px solid #DF0716;
}
.header-btn.contact:hover{
    background-color: #fff;
    color: #DF0716;
}
.header-menu-area{
    position: relative;
    z-index: 1100;
}
.header-menu-area ul{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    padding: 10px 0;
}
.nav-link{
    position: relative;
    font-weight: bold;
}
.nav-link:hover{
    border-bottom: 3px solid #DF0716;
}
.nav-link a{
    display: block;
    text-align: center;
    color: #000;
    padding: 10px 0;
}
.nav-link:hover > a{
    color: #DF0716;
}
.header-accordion{
    display: none;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    padding-top: 20px;
    z-index: 1200;
}
.nav-link.pc-open .header-accordion {
    display: block;
}
.header-accordion ul{
    display: block;
    background-color: #fff;
    box-shadow: 0 3px 3px #eee;
    border-radius: 5px;
    padding: 0;
}
.header-accordion ul li {
    text-align: center;
}
.header-accordion a{
    position: relative;
    text-align: left;
    color: #000;
    border-bottom: 1px solid #eee;
    padding: 10px;
}
.header-accordion ul li:last-child a{
    border: none;
}
.header-accordion a::after{
    position: absolute;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    color: #DF0716;
    transition: 0.3s;
    top: 10px;
    right: 10px;
}
.header-accordion  ul li:hover a::after{
    right: 5px;
}
.header-accordion ul li:hover a{
    color: #DF0716;
}

/* TOPボタン */
.pagetop{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 100px;
  height: 100px;
  background: #DF0716;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-radius: 50%;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  z-index: 1000;
}
.pagetop:hover{
    color: #fff;
}
.pagetop::before{
    content: "▲";
    display: block;
}
.pagetop.is-show{
  opacity: 1;
  visibility: visible;
}

/*1000px以下*/
@media screen and (max-width:1000px){
    /* menu */
    .menu-btn{
        position: absolute;
        display: block;
        box-sizing: border-box;
        width: fit-content;
        right: 15px;
        bottom: 15px;
    }
    .menu-btn .h_menu {
        position: relative;
        width: 30px;
        height: 25px;
        margin: 0 auto;
    }
    .menu-btn span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #000;
    }
    .menu-btn span:nth-of-type(1) {
        top: 0;
    }
    .menu-btn span:nth-of-type(2) {
        top: 11px;
    }
    .menu-btn span:nth-of-type(3) {
        bottom: 1px;
    }
    .menu-btn.active span:nth-of-type(1) {
        -webkit-transform: translateY(11px) rotate(-45deg);
        transform: translateY(11px) rotate(-45deg);
    }
    .menu-btn.active span:nth-of-type(2) {
        opacity: 0;
    }
    .menu-btn.active span:nth-of-type(3) {
        -webkit-transform: translateY(-11px) rotate(45deg);
        transform: translateY(-11px) rotate(45deg);
    }
    /* header */
    .header-logo-area img{
        width: 180px;
    }
    .header-btn-area{
        display: none;
    }
    .header-menu-area{
        display: none;
    }
    .header-menu-area.active{
        display: block;
        position: fixed;
        top: 92px;
        right: 0;
        width: 100%;
        height: 100%;
        padding: 0 20px;
        background-color: #fff;
    }
    .header-menu-area ul{
        display: block;
    }
    .nav-link:hover{
    border-bottom: none;
    }
    .nav-link a{
        position: relative;
        border-bottom: 1px solid #dbdbdb;
        text-align: left;
        padding: 15px;
    }
    .js-dropdown > a {
        position: relative;
        padding-right: 25px;
    }
    .js-dropdown > a::after {
        content: "+";
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-weight: bold;
        font-size: 18px;
        font-family: inherit !important;
    }
    .js-dropdown.pc-open > a::after,
    .js-dropdown.sp-open > a::after {
        content: "−";
    }
    .header-accordion {
        display: none;
    }
    .header-accordion ul{
        box-shadow: none;
        border-radius: unset;
        padding-top: 15px;
    }
    .header-accordion ul li{
        position: relative;
        text-align: left;
    }
    .header-accordion ul li a{
        position: relative;
        border: none;
        padding: 0 15px 15px 40px;
    }
    .header-accordion ul li a::before{
        position: absolute;
        content: "";
        width: 1em;
        height: 2px;
        background-color: #000;
        top: 10px;
        left: 15px;
    }
    .nav-link:not(.js-dropdown) >  a::after,
    .header-accordion ul li a::after{
        position: absolute;
        font-family: "Font Awesome 5 Free";
        content: '\f054';
        font-weight: bold;
        color: #DF0716;
        right: 15px;
        top: 15px;
    }
    .header-accordion ul li a::after{
        top: 0;
    }
    .nav-link.sp-open .header-accordion {
        display: block;
        position: static;
        padding-top: 0;
        box-shadow: none;
    }
}

/*750px以下*/
@media screen and (max-width:480px){
    .pagetop{
        bottom: 90px;
        width: 80px;
        height: 80px;
    }
}

/*480px以下*/
@media screen and (max-width:480px){
    
}