html {
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", "メイリオ", sans-serif;
    font-size: 16px;
}
body{
    font-size: 16px;
}
.sp-none{
    display: block;
}
.pc-none{
    display: none;
}
@media screen and (max-width: 1030px){
    .sp-none{
        display: none;
    }
    .pc-none{
        display: block;
    }
}
/* 非公開 */
.coming-soon{
    pointer-events: none;
    opacity: 0.3;
    cursor: default; 
}
/* カラー */
:root {
    --yellow: #fbb731;
    --green: #19a78e;
    --black: #000;
    --white: #fff;
    --blue: #f2fafd;
    --max-width: 1100px;
    --gutter: 24px;
    --font: "brandon-grotesque", sans-serif;
}

.bg-blue{
    background-color: var(--blue);
    padding: 180px 0;
}
.bg-green{
    background-color: var(--green);
    padding: 180px 0;
}
.bg-gray{
    background-color: #fafafa;
    padding: 180px 0;
}
@media screen and (max-width:768px) {
    .bg-blue,
    .bg-green,
    .bg-gray{
        padding: 90px 0;
    }
}

.pointer {
    background-color: var(--green);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* 横線 */
.pointer::before {
    content: "";
    display: block;
    width: 10px;
    height: 1px;
    background-color: #fff;
    position: relative;
}

/* 矢印の先端 */
.pointer::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    right: 8px; /* 矢印先端の位置を微調整 */
}

.banner_pointer {
    background-color: var(--green);
    width: 21px;
    height: 21px;
    border-radius: 50%;
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 横線 */
.banner_pointer::before {
    content: "";
    display: block;
    width: 10px;
    height: 1px;
    background-color: #fff;
    position: relative;
}

/* 矢印の先端 */
.banner_pointer::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    right: 6px; /* 矢印先端の位置を微調整 */
}

/* センターのタイトル */
.center-title{
    text-align: center;
    margin-bottom: 80px;
}
.center-title .en{
    font-size: 40px;
    font-family: var(--font);
    color: var(--green);
}
.center-title .ja{
    font-size: 14px;
    margin-top: 20px;
}
.center-title .text{
    font-size: 16px;
    margin-top: 70px;
    line-height: 2;
}

@media screen and (max-width:768px) {
    .center-title{
        margin-bottom: 60px;
    }
    .center-title .en{
        font-size: 25px;
    }
    .center-title .ja{
        font-size: 11px;
        margin-top: 20px;
    }
    .center-title .text{
        font-size: 14px;
        margin: 50px auto 0;
        text-align: left;
        letter-spacing: 0.8px;
        width: 90%;
    }
}

/* 2カラムの画像リンク */
#recruit .img-link{
    margin: 160px auto 0;
    width: 90%;
    max-width: 1440px;
}
#recruit .img-link .title_ja{
    font-size: 28px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 500;
}
#recruit .img-link .title_en{
    font-size: 5.0rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 100px;
}
#recruit .img-link_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
#recruit .img-link_box img{
    width: 100%;
}
#recruit .img-link01,
#recruit .img-link02{
    width: calc((100% - 25px) / 2);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
#recruit .img-link01::after,
#recruit .img-link02::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2); /* 透明度調整 */
    z-index: 1;
}
#recruit .img-link01 p.in,
#recruit .img-link02 p.in {
    color: #fff;
    font-size: 28px;
    font-weight: 300;
    text-align: center;
    line-height: 1.2;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#recruit .img-link03,
#recruit .img-link04{
    width: calc((100% - 25px) / 2);
    position: relative;
    overflow: hidden;
}
#recruit .img-link03 p.out,
#recruit .img-link04 p.out {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 40px;
}
#recruit .img-link03 p.out span,
#recruit .img-link04 p.out span{
    padding-top: 20px;
    display: inline-block;
}

@media screen and (max-width:768px) {
    #recruit .img-link{
        margin: 90px auto 0;
    }
    .img-link01{
        margin-bottom: 20px;
    }
    #recruit .img-link01,
    #recruit .img-link02{
        width: 100%;
    }
    #recruit .img-link01 p.in,
    #recruit .img-link02 p.in{
        font-size: 20px;
    }
    #recruit .img-link .title_ja{
        font-size: 20px;
        margin-bottom: 30px;
    }
    #recruit .img-link .title_en{
        font-size: 31px;
        margin-bottom: 50px;
    }
    #recruit .img-link03, 
    #recruit .img-link04{
        width: 100%;
    }
    #recruit .img-link03 p.out, 
    #recruit .img-link04 p.out{
        font-size: 15px;
        margin-top: 20px;
    }
    #recruit .img-link03 p.out span, 
    #recruit .img-link04 p.out span{
        font-size: 13.5px;
        padding-top: 10px;
    }
    .img-link03{
        margin-bottom: 30px;
    }
}

/* ---------
各ページ メインビジュアル
    ---------*/
    .mv-section{
    display: flex;
    justify-content: space-between;
    margin-bottom: 180px;
    }
    .mv-section .mv-inner{
        text-align: center;
        width: 45vw;
        order:1;
        padding:6% 6% 0;
        display:-webkit-flex;
        display:flex;
        -webkit-justify-content:center;
        justify-content:center;
        -webkit-flex-direction:column;
        flex-direction:column;
    }
    .mv-section .title-wrap{
        margin-bottom:35px;
    }
    .mv-section .title-wrap h2{
        font-size:50px;
        font-family:var(--font);
        font-weight:300;
        font-display:swap;
        margin-bottom:20px;
        color:var(--green);
    }
    .mv-section .title-wrap .sub{
        font-size:14px;
        color:#000;
    }
    .mv-section .copy{
        line-height:2em;
    }
    .mv-section .copy>div:not(:last-child){
        margin-bottom:10px;
    }
    .mv-section .mv-image{
        order:2;
        width:55vw;
        height:610px;
        background-color:#999;
        position:relative;
        border-radius: 12px 0 0 12px;
        margin: 3px 0;
    }
    @media screen and (max-width:1030px) {
        .mv-section .mv-image{
            margin-bottom: 80px;
            width: 80%;
            margin: 0;
        }
        #recruit .mv-section .title-wrap .sub{
            font-size: 13.5px;
        }
    }
    @media screen and (max-width: 768px) {
    .mv-section{
        display:block;
        margin-bottom:80px;
    }
    .mv-section .mv-inner{
        width:100vw;
        padding:0;
        display:block;
        margin:0 auto;
    }
    .mv-section .title-wrap{
        width:88vw;
        margin:0 auto;
        z-index:3;
    }
    .mv-section .title-wrap h2{
        font-size:35px;
        margin-bottom:10px;
    }
    .mv-section .title-wrap .sub{
        font-size:12px;
    }
    .mv-section .mv-image{
        width:100%;
        border-radius: 0;
        height:270px;
        margin-bottom:80px;
        display:-webkit-flex;
        display:flex;
        -webkit-flex-direction:column;
        flex-direction:column;
        -webkit-justify-content:center;
        justify-content:center;
        z-index:1;
    }
    .mv-section .mv-image:before{
        top:0;right:0;width:100%;height:270px;background:-moz-linear-gradient(to right, rgba(0,0,0,0.5), transparent);background:-webkit-linear-gradient(to right, rgba(0,0,0,0.5), transparent);background:linear-gradient(to right, rgba(0,0,0,0.5),rgba(0,0,0,0));z-index:2;
    }
    .mv-section .copy>div{
        width:80%;margin:0 auto;
    }
    .mv-section .copy>div:hover{
        background-color:transparent;
    }
    }
    
    #brand .mv-section .mv-image{
        background: url(../../../images/pages/recruit/mv_brand.jpg) no-repeat center/cover;
    }
    #environment .mv-section .mv-image{
        background: url(../../../images/pages/recruit/mv_environment.jpg) no-repeat center/cover;
    }
    #faq .mv-section .mv-image{
        background: url(../../../images/pages/recruit/mv_faq.jpg) no-repeat center/cover;
    }
    #job-description .mv-section .mv-image{
        background: url(../../../images/pages/recruit/mv_job-description.jpg) no-repeat center/cover;
    }
    #interview .mv-section .mv-image{
        background: url(../../../images/pages/recruit/mv_interview.jpg) no-repeat center/cover;
    }
    #entry .mv-section .mv-image{
        background: url(../../../images/pages/recruit/mv_entry.jpg) no-repeat center/cover;
    }
    #recruit .mv-image:before{
        content: none;
    }
    

/* -------------------
        ヘッダー
    -------------------*/
    .c-header{
        height: 120px;
    }
    .c-header__container{
        height: 120px;
    }
    .c-header__logo{
        width: 136px;
    }
    .c-header__logo-group{
        display: flex;
        align-items: end;
        gap: 15px;
    }
    .c-header__logo-text{
        font-size: 14px;
    }
.c-pc-menu__btn{
    background-color: var(--yellow);
    color: #333;
    width: 180px;
    height: 60px;
    border-radius: 30px;
}
.c-pc-menu__btn a{
    font-size: 16px;
    font-weight: bold;
    line-height: 60px;
    padding: 0;
}
.c-pc-menu__item > a{
    font-size: 16px;
}
@media screen and (max-width: 768px) {
    .c-header__container,
    .c-header{
        height: 50px;
    }
    .c-header__logo{
        width:90px;
    }
    .c-header__logo-text{
        font-size: 10px;
        letter-spacing: 0;
    }
    .c-header__logo-group{
        gap: 0;
    }
    .c-sp-menu__item > a{
        font-size: 16px;
    }
    .c-sp-menu__sns-list{
        justify-content: center;
    }
    .c-header__sp-menu .c-pc-menu__btn{
        height: 40px;
        margin-right: 10px;
        width: 100px;
    }
    .c-header__sp-menu{
        width: auto;
        align-items: center;
    }
    .c-header__sp-menu .c-pc-menu__btn a{
        font-size: 12px;
        line-height: 40px;
    }
    .c-header__menu-btn{
        width: 50px;
        height: 50px;
    }
}
/* -------------------
        フッター リンクエリア
    -------------------*/
    #recruit_footer-menu{
        margin-top: 180px;
    }
    #recruit_footer-menu ul{
        display: flex;
        flex-wrap: wrap;
    }
    #recruit_footer-menu ul li {
        width: 50%;
        box-sizing: border-box;
        border-top: 1px solid #dddddd;
        border-bottom: 1px solid #dddddd;
        border-right: 1px solid #dddddd;
        border-left: none;
        margin-bottom: -1px;
        position: relative;
    }
    #recruit_footer-menu ul li:nth-child(2n) {
        border-right: none;
    }
    #recruit_footer-menu ul li a{
        display: flex;
        align-items: center;
        gap: 9%;
        padding: 35px 4% 35px 35px;
    }
    #recruit_footer-menu ul li img{
        width: 100%;
        max-width: 180px;
        border-radius: 10px;
    }
    #recruit_footer-menu ul li .text{
        font-size: 18px;
        font-weight: bold;
    }
    #recruit_footer-menu .arrow {
        background-color: var(--green);
        width: 28px;
        height: 28px;
        border-radius: 50%;
        position: absolute;
        right: 60px;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }
    
    /* 横線 */
    #recruit_footer-menu .arrow::before {
        content: "";
        display: block;
        width: 10px;
        height: 1.5px;
        background-color: #fff;
        position: relative;
    }
    
    /* 矢印の先端 */
    #recruit_footer-menu .arrow::after {
        content: "";
        position: absolute;
        width: 7px;
        height: 7px;
        border-top: 1.5px solid #fff;
        border-right: 1.5px solid #fff;
        transform: rotate(45deg);
        right: 8px; /* 矢印先端の位置を微調整 */
    }
    
    @media screen and (max-width: 930px){
        #recruit_footer-menu{
            margin-top: 90px;
        }
        #recruit_footer-menu ul{
            display: block;
        }
        #recruit_footer-menu ul li {
            width: 100%;
            gap: 45px;
        }
        #recruit_footer-menu ul li a{
            padding: 10px 5% 10px 5%;
        }
        #recruit_footer-menu ul li .text{
            font-size: 14px;
        }
        #recruit_footer-menu ul li img{
            width: 120px;
            height: auto;
        }
        #recruit_footer-menu .arrow {
            width: 20px;
            height: 20px;
            right: 35px;
        }
    #recruit_footer-menu .arrow::before {
        content: "";
        display: block;
        width: 7px;
        height: 1px;
        background-color: #fff;
        position: relative;
    }
        #recruit_footer-menu .arrow::after {
        content: "";
        position: absolute;
        width: 5px;
        height: 5px;
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
        transform: rotate(45deg);
        right: 6px; /* 矢印先端の位置を微調整 */
    }
    }
    
/* -------------------
            フッター CTA
    -------------------*/
    #recruit_footer-cta{
        display: flex;
        padding: 140px 5%;
        gap: 25px;
        justify-content: center;
    }
    #recruit_footer-cta .block{
        flex: 1 1 50%;
        position: relative;
        background-color: #fff;
        border-radius: 12px;
        padding: 100px 80px;
        max-width: 708px;
    }
    #recruit_footer-cta .block .en{
        font-size: 36px;
        text-align: center;
        font-weight: bold;
        line-height: 1;
        margin-bottom: 40px;
        font-family: var(--font);
    }
    #recruit_footer-cta .block .en span{
        color: var(--green);
        font-size: 18px;
        display: inline-block;
        margin-bottom: 20px;
    }
    #recruit_footer-cta .block .text{
        display: flex;
        align-items: center;
        gap: 40px;
    }
    #recruit_footer-cta .block .text img{
        width: auto;
    }
    #recruit_footer-cta .block .text .ja{
        font-size: 16px;
    }
    #recruit_footer-cta .arrow {
        background-color: var(--green);
        width: 35px;
        height: 35px;
        border-radius: 50%;
        position: absolute;
        right: 20px;
        bottom: 20px;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }
/* 横線 */
#recruit_footer-cta .arrow::before {
    content: "";
    display: block;
    width: 12px;
    height: 1.5px;
    background-color: #fff;
    position: relative;
}

/* 矢印の先端 */
#recruit_footer-cta .arrow::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    transform: rotate(45deg);
    right: 11px; /* 矢印先端の位置を微調整 */
}
    @media screen and (max-width: 768px) {
        #recruit_footer-cta .arrow {
        }
        #recruit_footer-cta .arrow::before {
            border-top: 1px solid #fff;
            border-right: 1px solid #fff;
        }
    }
    @media screen and (max-width: 768px) {
        #recruit_footer-cta {
            flex-direction: column; /* blockにせず縦並びにする */
            padding: 90px 5%;
            gap: 8px;
        }
        
        #recruit_footer-cta .block {
            padding: 40px;
        }
        
        #recruit_footer-cta .block .text {
            display: block;
            text-align: center; /* ← これを追加！中央寄せの基本 */
        }
        
        #recruit_footer-cta .block .text img {
            display: block;     /* ← インライン要素をブロック化 */
            margin: 0 auto 30px; /* ← 左右中央寄せ＋下に余白 */
            width: 130px;
            height: 130px;
        }
        
        #recruit_footer-cta .block .text .ja {
            font-size: 14px;
            margin-top: 0;
            text-align: left;
            margin-bottom: 15px;
        }
        
        #recruit_footer-cta .block .en {
            font-size: 23px;
            margin-bottom: 30px;
        }
        
        #recruit_footer-cta .block .en span {
            font-size: 12px;
            margin-bottom: 15px;
        }
        
        #recruit_footer-cta .arrow-btn {
            width: 30px;
            height: 30px;
        }
        }
        
    

/* -------------------
        フッター 
    -------------------*/

    #recruit_footer{
        padding: 180px 5%;
    }
    #recruit_footer .logo-area p{
        font-size: 14px;
    }
    #recruit_footer .logo-area .logo{
        display: flex;
        justify-content: center;
        align-items: end;
        gap: 20px;
        margin-bottom: 30px;
    }
    #recruit_footer .logo-area .Instagram-logo{
        text-align: center;
    }
    #recruit_footer .link-area ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, auto);
        grid-auto-flow: column;
        gap: 50px 10px;
        list-style: none;
        padding: 0;
        margin: 100px auto 0;
        max-width: 700px;
    }
    
    #recruit_footer .link-area ul li a {
        font-size: 16px;
    }
    #recruit_footer .link-area ul li.point a{
        color: #919191;
        font-size: 14px;
    }
    #recruit_footer .site-link{
        margin-top: 100px;
    }
    #recruit_footer .site-link ul{
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    #recruit_footer .site-link ul li a{
        color: #919191;
        font-size: 12px;
    }
    #recruit_footer .copyright{
        text-align: center;
        margin-top: 50px;
        color: #919191;
        font-size: 12px;
    }
    @media (max-width: 600px) {
        .Instagram-logo img{
            width: 20px;
        }
        #recruit_footer{
            padding: 90px 5% 100px;
        }
        #recruit_footer .site-link{
            margin-top: 80px;
        }
        #recruit_footer .logo-area .logo img{
            width: 100px;
        }
        #recruit_footer .logo-area p{
            font-size: 12px;
        }
        #recruit_footer .link-area ul{
            grid-template-columns: repeat(2, 1fr);
            gap: 20px 10px;
        }
        #recruit_footer .link-area ul:nth-child(2){
            margin-top: 30px;
            font-size: 13px;
            grid-template-columns: repeat(1, 1fr);
        }
        #recruit_footer .link-area ul li a{
            letter-spacing: 0.5px;
            font-size: 14px;
        }
    }
    
    @media screen and (max-width: 768px){
        #recruit_footer .site-link ul{
            display: block;
        }
        #recruit_footer .site-link ul li{
            line-height: 4;
            text-align: center;
        }
        #recruit_footer .site-link ul li a{
            font-size: 11px;
        }
    }

    /* IPOの部分 */
.ipo{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 80px;
}
.ipo img{
    width: 65px;
}
.ipo p{
    font-size: 11px;
    color: #919191;
}

    /* パンクズ */
    .c-breadcrumb{
        width: 100%;
        height: 55px;
        background-color: #f7f7f7;
        line-height: 55px;
        padding: 0 5%;
    }
    .c-breadcrumb__list {
        display: flex;
        align-items: center;
        height: 55px;
        margin: 0;
        padding: 0;
      }
      
      .c-breadcrumb__item {
        font-size: 12px;
        display: flex;
        align-items: center;
      }
      
      .c-breadcrumb__item + .c-breadcrumb__item::before {
        content: "";
        display: inline-block;
        width: 5px;
        height: 5px;
        border: 1px solid;
        border-color: #565656 #565656 transparent transparent;
        transform: rotate(45deg);
        margin: 0 8px;
        padding: 0;
        position: relative;
        top: 0;
      }
      