@charset "UTF-8";

.edit-area.recruit {
    
    /* top */
    .top-box{
            text-align: center;
            margin-bottom: 10rem;

            @media screen and (max-width: 767px) {
                text-align: left;
              margin-bottom: 7rem;
            }

        .links{
            display: flex;
            gap: 2rem;
            justify-content: center;

            @media screen and (max-width: 767px) {
              display: grid;
              grid-template-columns: repeat(2, 1fr);
              grid-gap: 2rem;
            }
        
            .link{
            
                .common-elip-button{

                    @media screen and (max-width: 767px) {
                        width: 100%;
                    }

                    & img {
                        transform: rotate(90deg);
                    }
                
                }
            }
        }

        .top-title {
            color: var(--primary-color);
            margin-top: 9rem;
            margin-bottom: 4rem;
            font-size: 3.8rem;
            font-weight: bold;
            font-family: "Zen Kaku Gothic New", sans-serif;

            @media screen and (max-width: 767px) {
              font-size: 1.8rem;
              margin-top: 5rem;
              margin-bottom: 2rem;
              line-height: 1.5;
            }
        }

        .top-desc {
            line-height: 1.5;

            @media screen and (max-width: 767px) {
              font-size: 1.4rem;
            }
        }
    }

    /* 募集中の求人 */
    .sec-opening {
        
        .common-list.archive-category {
            display: flex;
            gap: 5rem;

            & li {
                width: calc((100% - 5rem) / 2);

            }

            & a {
                width: 100%;
                height: 7.4rem;
                padding: 2.4rem 5rem;
                border-radius: 60px;
                justify-content: space-between;
                letter-spacing: 2px;

                @media screen and (max-width: 767px) {
                  width: 100%;
                  height: 5rem;
                  border-radius: 30px;
                  padding: 1rem;
                }
            }

            @media screen and (max-width: 767px) {
              flex-direction: column;
              gap: 2rem;
            }
        }

    }

    /* 先輩職員の声 */
    .sec-voice {

        .content-box {

            .voice-list{
                display: flex;
                flex-direction: column;
                gap: 3rem;

                .voice-item{
                    padding: 5rem 6rem;
                    display: flex;
                    gap: 5rem;
                    background-color: #F8F8F8;

                    @media screen and (max-width: 767px) {
                      display: grid;
                      grid-template-columns: 8.5rem 1fr;
                      padding: 3rem;
                      grid-column-gap: 1.5rem;
                      grid-row-gap: 0;
                    }
                
                    .img-box{
                        flex: 0 0 18rem;

                        @media screen and (max-width: 767px) {
                          flex: 0 0 auto;
                          width: 8.5rem;
                          height: 8.5rem;
                        }
                    
                    }
                    .text-box{

                        @media screen and (max-width: 767px) {
                          display: contents;
                        }
                    
                        .title-box{
                            font-size: 1.6rem;
                            font-weight: bold;
                            margin-bottom: 2.2rem;
                            padding-bottom: 2.2rem;
                            border-bottom: 2px solid var(--primary-color);
                            
                            @media screen and (max-width: 767px) {
                                border-bottom: 2px solid transparent;
                                margin-bottom: 0;
                                padding-bottom: 0;
                            }
                        
                            .year{
                                display: inline-block;
                                padding: 7px 15px;
                                color: #fff;
                                background-color: var(--primary-color);
                                border-radius: 2rem;
                                margin-bottom: 1rem;

                                @media screen and (max-width: 767px) {
                                  font-size: 1.2rem;
                                  margin-bottom: 5px;
                                }
                            
                            }
                            .position{
                                font-size: 1.8rem;

                                @media screen and (max-width: 767px) {
                                  font-size: 1.4rem;
                                  line-height: 1.5;
                                }
                            
                            }
                        }
                        .content-text{

                            @media screen and (max-width: 767px) {
                              grid-column: 1 / -1;
                              border-top: 2px solid var(--primary-color);
                              margin-top: 2rem;
                              padding-top: 2rem;
                            }
                        
                            .q{
                                font-size: 1.8rem;
                                font-weight: bold;
                                margin-bottom: 1.2rem;
                                color: var(--primary-color);

                                @media screen and (max-width: 767px) {
                                  font-size: 1.6rem;
                                }
                            
                            }
                            .a{
                                line-height: 1.7;

                                @media screen and (max-width: 767px) {
                                  font-size: 1.4rem;
                                  line-height: 1.6;
                                }
                            
                            }
                        }
                    }
                }
            }
        }
    }

    /* 所掌業務 */

    .sec-business {

        .content-box {
            display: flex;
            flex-direction: column;
            gap: 6rem;

            @media screen and (max-width: 767px) {
              gap: 4rem;
            }

            .bsn-item {

                & h3, & p:not(:last-child), .common-blue-title {
                    margin-bottom: 2rem;
                }
            }
        }
    }

    /* 福利厚生 */
    .sec-benefit {

        .content-box{

            .bnf-list{
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                grid-column-gap: 2rem;
                grid-row-gap: 4.5rem;

                @media screen and (max-width: 767px) {
                  grid-template-columns: 1fr;
                  padding-bottom: 10rem;
                }
            
                .bnf-item{
            
                    .img-box{
                        margin-bottom: 2.8rem;
                    
                    }
                    .text-box{
                    
                        .title{
                            margin-bottom: 1.2rem;
                            font-size: 1.8rem;
                            font-weight: bold;
                            color: var(--primary-color);
                            line-height: 1.6;

                            @media screen and (max-width: 767px) {
                              font-size: 1.6rem;
                            }
                        
                        }
                        .main-text{

                            @media screen and (max-width: 767px) {
                              font-size: 1.4rem;
                            }
                        
                        }
                    }
                 }    
            }
        }
    }

}