@charset "UTF-8";
/* =================================
common
==================================== */
html {
    font-size: 62.5%;
}

body {
    font-family: 
        "Noto Sans JP", 
        "Zen Maru Gothic",
        'Montserrat';
    font-style: normal;
    font-weight: 400;
    color: black;
    background-image: url(../images/backgroundPc-top.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: top;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: block;
    color: #FFF;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1;
    border-radius: 30px;
    background: #FF6982;
    padding: 18px 32px;
    position: relative;
    transition: 0.4s;
    margin: 0 auto;
    cursor: pointer;
    width: 250px;
}

.btn::after {
    display: block;
    content: '';
    width: 13px;
    height: 13px;
    background-image: url(../images/arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.4s;
}

.btn:hover {
    opacity: 0.5;
}

/* =================================
header
==================================== */
.header,.nav__header {
    padding: 12px 4.5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFF;
}

.header__topic a,.nav__topic a {
    display: flex;
    align-items: center;
}

.header__topic img,.nav__topic img {
    width: 41px;
    height: 33px;
    object-fit: contain;
    margin-right: 6px;
}

.header__topic span,.nav__topic span {
    color: #603813;
    font-family: "Zen Maru Gothic";
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 0.8;
}

.header__btn,.nav__btn {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* nav　基本設定 */
.nav {
    background: rgba(255, 255, 255, 0.90);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav__list {
    margin: 70px 0 0 40px;
    align-items: center;
}

.nav__item {
    font-family: "Zen Maru Gothic";
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1;
    margin-top: 45px;
}

.nav__item:first-of-type {
    margin-top: 0;
}

.btn--header {
    display: none;
}

.nav.active {
    transform: translateX(0);
}

/* header pc */
@media screen and (min-width:1300px) {
    .header {
        height: 72px;
        margin: 0 auto;
        padding: 14px 3.5% 14px;
    }

    .header__topic img {
        width: 60px;
        height: 47px;
        object-fit: contain;
    }

    .header__topic span {
        color: #603813;
        font-family: "Zen Maru Gothic";
        font-size: 2rem;
        font-weight: 500;
        line-height: 1.2;
    }

    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translate(0);
    }

    .nav__list {
        display: flex;
        gap: 30px;
        margin: 0;
    }

    .nav__item {
        margin-top: 0;
        font-size: 1.6rem;
        line-height: 1;
    }

    .nav__item:nth-of-type(6) {
        display: none;
    }

    .btn--header {
        display: block;
        font-size: 1.4rem;
        font-weight: 500;
        width: 190px;
        margin: 0 0 0 5px;
    }

    .nav__header {
        display: none;
    }

    .header__btn {
        display: none;
    }
}

/* =================================
main header
==================================== */
.section__topic--about {
    position: relative;
    color: #FFF7f4;
    text-align: center;
    font-family: Montserrat;
    font-size: 5.6rem;
    font-weight: 500;
    line-height: 1;
    margin-top: 42px;
}

.section__topic--about span {
    position: absolute;
    display: inline-block;
    color: #FF8F69;
    font-family: "Zen Maru Gothic";
    font-size: 2rem;
    font-weight: 700;
    line-height: 1; 
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
}

.mainVisual__sp {
    margin-top: 22px;

}

.mainVisual__pc {
    display: none;
}

/* main header pc */
@media screen and (min-width:769px) {
    .section__topic--about {
        font-size: 14rem;
        margin-top: 118px;
    }

    .section__topic--about span {
        font-size: 5rem;
        top: 69px;
    }

    .mainVisual__sp {
        display: none;
    }

    .mainVisual__pc {
        display: block;
        margin-top: 65px;
    }
}

/* =================================
manager
==================================== */
.section__manager--pc {
    display: none;
}

.section__manager--sp {
    padding: 60px 3.2%;
}

.manager__title {
    font-family: "Zen Maru Gothic";
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.manager__border {
    margin-top: 18px;
}

.manager__img {
    display: block;
    width: 100%;
    object-fit: cover;
    margin: 35px auto 0;
}

.manager__content {
    padding: 0 3%;
}

.manager__content--title {
    font-family: "Zen Maru Gothic";
    font-size: 2.2rem;
    font-weight: 700;
    margin-top: 38px;
}

.manager__txt {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-top: 28px;
}

.manager__txt--fst {
    margin-top: 20px;
}

/* manager pc */
@media screen and (min-width:1094px) {
    .section__manager--pc {
        display: block;
        padding: 200px 8.2% 84px;
        display: flex;
        gap: 60px;
    }

    .section__manager--sp {
        display: none;
    }

    .manager__img {
        margin: 0 auto;
    }

    .manager__content {
        padding: 0;
    }

    .manager__title {
        text-align: start;
        font-size: 2.4rem;
        font-weight: 700;
        line-height: 1;
    }

    .manager__border {
        margin-top: 24px;
    }

    .manager__content--title {
        font-size: 2.8rem;
        font-weight: 700;
        line-height: 1.8;
        margin-top: 48px;
    }

    .manager__txt {
        font-size: 1.6rem;
        margin-top: 28px;
    }

    .manager__txt--fst {
        margin-top: 20px;
    }

}

/* =================================
vision
==================================== */
.section__vision {
    padding: 60px 4.2%;
    background-color: #FFF7F4;
}

.section__topic--vision {
    position: relative;
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 5.6rem;
    font-weight: 500;
    line-height: 1;
    margin-top: 22px;
}

.section__topic--vision span {
    position: absolute;
    display: inline-block;
    color: #FF8F69;
    font-family: "Zen Maru Gothic";
    font-size: 2rem;
    font-weight: 700;
    line-height: 1; 
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
}

.vision__item {
    margin-top: 30px;
}

.vision__list {
    margin-top: 40px;
}

.vision__title {
    color: #FFBCB7;
    font-size: 2.2rem;
    font-family: Montserrat;
    font-weight: 400;
    line-height: 1;
}

.vision__title span {
    display: block;
    color: black;
    font-family: "Zen Maru Gothic";
    font-weight: 500;
    margin-top: 15px;
}

.vision__txt {
    color: #535353;
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    line-height: 1.8;
    margin-top: 10px;
}

.vision__img {
    display: none;
}

/* vision pc */
@media screen and (min-width:1000px) {
    .section__vision {
        padding: 130px 10.4% 110px;
        background-color: #FFF7F4;
    } 

    .section__topic--vision {
        font-size: 14rem;
    }

    .section__topic--vision span {
        font-size: 5rem;
        top: 69px;
    }

    .vision__list {
        display: flex;
        justify-content: space-between;
        gap: 79px;
        margin-top: 95px;
    }

    .vision__img {
        display: block;
    }

    .vision__img--bike {
        width: 43%;
        object-fit: cover;
        align-items: center;
    }

    .vision__img--tel {
        position: relative;
        width: 43%;
        object-fit: cover;
        align-items: center;
    }

    .vision__img--tel::after {
        position: absolute;
        content: '';
        background-image: url(../images/visionVisual-hand.jpg);
        background-size: contain;
        background-repeat: no-repeat;
        width: 195px;
        height: 180px;
        top: ;
        left: ;
    }

    .vision__title {
        font-size: 3rem;
        font-weight: 400;
        line-height: 1.5;
    }

    .vision__title span {
        display: block;
        font-size: 3.6rem;
        font-weight: 500;
        margin-top: 0;
    }

    .vision__txt {
        color: #535353;
        font-family: "Noto Sans JP";
        font-size: 1.6rem;
        line-height: 1.8;
        margin-top: 10px;
    }

    .vision__item--local,.vision__item--QOL {
        margin-top: 60px;
    }

    .vision__item--special,.vision__item--first {
        margin-top: 0;
    }
}

/* =================================
feature
==================================== */
.section__feature {
    padding: 60px 3.2%;
}

.section__topic--feature {
    position: relative;
    color: #fff7f4;
    text-align: center;
    font-family: Montserrat;
    font-size: 5.6rem;
    font-weight: 500;
    line-height: 1;
    margin-top: 22px;
}

.section__topic--feature span {
    position: absolute;
    display: inline-block;
    color: #FF8F69;
    font-family: "Zen Maru Gothic";
    font-size: 2rem;
    font-weight: 700;
    line-height: 1; 
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
}

.feature {
    margin-top: 75px;
}

.feature__item {
    margin: 24px 3%;
}

.feature__item img {
    display: block;
    margin: 0 auto;
}

.feature__name {
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 30px;
}

.feature__txt {
    color: #535353;
    font-size: 1.4rem;
    line-height: 1.8;
    margin-top: 20px;
}

.feature__border--pc {
    display: none;
}

/* feature pc */
@media screen and (min-width:1255px) {
    .section__feature {
        padding: 130px 10.4% 110px;
    } 

    .section__topic--feature {
        font-size: 14rem;
    }

    .section__topic--feature span {
        font-size: 5rem;
        top: 69px;
    }

    .feature {
        display: flex;
        gap: 28px;
        justify-content: center;
    }

    .feature__item {
        padding: 0;
        margin: 0;
        width: 324px;
    }

    .feature__item:first-of-type {
        width: 334px;
    }

    .feature__txt {
        font-size: 1.6rem;
    }

    .feature__border--pc {
        display: block;
        height: 100%;
    }

    .feature__border--pc img {
        height: 500px;
    }

    .feature__border--sp {
        display: none;
    }
}

@media screen and (min-width:967px) and (max-width:1256px) {
    .section__feature {
        padding: 130px 10.4% 110px;
    } 

    .section__topic--feature {
        font-size: 14rem;
    }

    .section__topic--feature span {
        font-size: 5rem;
        top: 69px;
    }

    .feature {
        display: flex;
        gap: 60px 28px;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .feature__item {
        padding: 0;
        margin: 0;
        width: 324px;
    }

    .feature__item:first-of-type {
        width: 334px;
    }

    .feature__txt {
        font-size: 1.6rem;
    }

    .feature__border--pc {
        display: block;
        height: 100%;
    }

    .feature__border--pc img {
        height: 500px;
    }

    .feature__border--sp {
        display: none;
    }

    .feature__item--wrap {
        position: relative;
    }

    .feature__item--wrap::after {
        display: block;
        position: absolute;
        content: '';
        background-image: url(../images/pinkLine-vertical.png);
        background-size: cover;
        width: 1.81px;
        height: 500px;
        left: -40px;
        top: -58px;
    }
}

/* =================================
company
==================================== */
.section__company {
    padding: 60px 0;
    background-color: #FFF7F4;
}

.section__topic--company {
    position: relative;
    color: #fff;
    text-align: center;
    font-family: Montserrat;
    font-size: 5.6rem;
    font-weight: 500;
    line-height: 1;
    margin-top: 22px;
}

.section__topic--company span {
    position: absolute;
    display: inline-block;
    color: #FF8F69;
    font-family: "Zen Maru Gothic";
    font-size: 2rem;
    font-weight: 700;
    line-height: 1; 
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
}

.company__content {
    padding: 0 6.4%;
    margin-top: 72px;
}

.company__item {
    display: flex;
    margin-top: 30px;
}

.company__category {
    font-size: 1.5rem;
    width: 80px;
    margin-right: 44px;
}

.company__txt {
    font-size: 1.5rem;
}

.company__txt a {
    text-decoration: underline;
}

.company__border {
    margin-top: 30px;
}

.company__map {
    width: 100%;
    height: 350px;
    margin-top: 30px;
}

/* company pc */
@media screen and (min-width:769px) {
    .section__company {
        padding: 130px 0% 110px;
    } 

    .section__topic--company {
        font-size: 14rem;
    }

    .section__topic--company span {
        font-size: 5rem;
        top: 69px;
    }

    .company__content {
        padding: 0 13%;
        margin-top: 110px;
    }

    .company__item {
        margin-top: 44px;
    }

    .company__category {
        font-size: 1.8rem;
        width: 126px;
        margin-right: 162px;
    }

    .company__txt {
        font-size: 1.8rem;
    }

    .company__txt .spbr {
        display: none;
    }

    .company__border {
        margin-top: 44px;
    }

    .company__map {
        padding: 0 13%;
        width: 100%;
        height: 450px;
        margin-top: 30px;
    }
}

/* =================================
contact
==================================== */
.section--contact {
    padding: 54px 4.2% 56px 4.2%;
    background: #E97953;
} 

.section__topic--contact {
    color: #FFF;
    font-family: "Zen Maru Gothic";
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
}

.contact__txt {
    color: #FFF;
    font-size: 1.2rem;
    margin-top: 10px;
}

.contact__btn {
    margin-top: 20px;
}

.tel__content a,.mail__content a {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
    padding: 13px 0 13px 5.2%;
    border: 1px, solid, white;
    border-radius: 100px;
    max-width: 515px;
}

.mail__content a {
    padding: 33px 0 33px 5.2%;
}

.mail__content {
    margin-top: 15px;
}

.tel__content a::after,.mail__content a::after {
    position: absolute;
    content: '';
    background-image: url(../images/arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 13px;
    height: 13px;
    top: 50%;
    transform: translateY(-50%);
    right: 28px;
}

.tel__content img,.mail__content img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.telNumber {
    color: #FFF;
    font-family: Montserrat;
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
}

.telTime {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
}

.mailTxt {
    color: #FFF;
    font-family: "Zen Maru Gothic";
    font-size: 1.8rem;
    font-weight: 700;
}

/* contact pc */
@media screen and (min-width:1171px) {
    .section--contact {
        padding: 122px 14% 122px 8%;
        display: flex;
        justify-content: space-between;
        margin: 35px 0.5%;
        border-radius: 100px;
    }

    .section__topic--contact {
        font-size: 3.4rem;
        font-weight: 700;
        line-height: 1.2; 
    }

    .contact__txt {
        font-size: 1.6rem;
        line-height: 1.8;
        margin-top: 28px;
    }

    .contact__btn {
        width: 58.5%;
        margin: 0;
    }

    .tel__content a,.mail__content a {
        display: flex;
        align-items: center;
        gap: 38px;
        padding: 40px 0 40px 6%;
        max-width: none;
    }

    .tel__content a::after,.mail__content a::after {
        width: 20px;
        height: 20px;
        right: 45px;
    }

    .mail__content a {
        padding: 56px 0 56px 5.2%;
    }

    .mail__content {
        padding: 0;
        margin-top: 40px;
    }

    .tel__content::after,.mail__content::after {
        width: 21px;
        height: 18px;
        right: 10%;
    }

    .tel__content img,.mail__content img {
        width: 73px;
        height: 73px;
    }

    .telNumber {
        font-size: 4rem;
        font-weight: 600;
    }

    .telTime {
        font-size: 1.6rem;
        line-height: 1.8;
    }

    .mailTxt {
        font-size: 3rem;
        line-height: 1.2;
    }
}

@media screen and (min-width:900px) and (max-width:1170px) {
    .tel__content a,.mail__content a {
        gap: 20px;
    }

    .telNumber {
        font-size: 3rem;
        font-weight: 600;
    }

    .telTime {
        font-size: 1.4rem;
        line-height: 1.5;
    }

    .mailTxt {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .tel__content a::after,.mail__content a::after {
        width: 14px;
        height: 14px;
        right: 34px;
    }
}

/* =================================
recruit
==================================== */
.section--recruit {
    display: flex;
    justify-content: center;
    border-radius: 16px;
    background: #FFF7F4;
    margin: 20px 0;
}

.recruitImg {
    width: 46.8%;
    object-fit: cover;
    border-radius: 16px 0 0 16px;
}

.recruit__content {
    padding: 7% 5.5% 7% 10%;
    width: 53.2%;
}

.section__topic--recruit {
    color: #FF8F69;
    font-family: Montserrat;
    font-size: 1.4rem;
}

.recruit__name {
    display: none;
}

.recruit__txt {
    font-size: 1.5rem;
    margin-top: 11px
}

.recruit__txt span {
    display: none;
}

.btn__recruit {
    position: relative;
    font-size: 1.2rem;
    padding: 12px 18px 12px 12px;
    width: 90%;
    margin: 16px 0 0;
}

.btn__recruit::after {
    position: absolute;
    content: '';
    background-image: url(../images/arrow-small.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 5px;
    height: 7px;
    top: 50%;
    transform: translateY(-50%);
    right: 8%;
}

/* recruit pc */
@media screen and (min-width:1060px) {
    .section--recruit {
        border-radius: 0;
    }

    .section__topic--recruit {
        font-size: 9rem;
        font-weight: 500;
        line-height: 1.2; 
    }

    .recruit__content {
        padding: 8% 5.5% 10px 6%;
        width: 53.2%;
    }

    .recruit__name {
        display: block;
        color: #878787;
        font-size: 2.2rem;
        font-weight: 500;
        line-height: 1.2; 
        margin-left: 10px;
    }

    .recruit__txt {
        font-size: 1.8rem;
        line-height: 1.8;
        margin-top: 60px
    }

    .recruit__txt span {
        display: inline-block;
    }

    .recruit__txt .spbr {
        display: none;
    }

    .btn__recruit {
        font-family: "Zen Maru Gothic";
        font-size: 2rem;
        font-weight: 400;
        line-height: 1.8;
        width: 54.7%;
        margin-top: 50px;
    }

    .btn__recruit::after {
        background-image: url(../images/arrow.png);
        width: 15px;
        height: 14px;
        top: 50%;
        transform: translateY(-50%);
        right: 8%;
    }
}

@media screen and (min-width:600px) and (max-width:1059px) {
    .recruit__content {
        padding: 8% 5.5% 10px 6%;
    }
    
    .section__topic--recruit {
        font-size: 6rem;
    }

    .recruit__name {
        display: none;
    }

    .recruit__txt {
        margin-top: 10px;
        font-size: 2rem;
    }

    .btn__recruit {
        font-size: 1.4rem;
        width: 230px;
        padding: 14px 18px 14px 12px;
        margin-top: 20px;
    }
}

/* =================================
footer
==================================== */
.footer__pc {
    display: none;
}

.footer__sp {
    padding: 30px 3.2% 12px;
    background-color: #FFF;
}

.footer__topic a {
    display: flex;
    align-items: center;
}

.footer__topic img {
    width: 60px;
    height: 59px;
    object-fit: contain;
    margin-right: 10px;
}

.footer__topic span {
    color: #603813;
    font-family: "Zen Maru Gothic";
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
}

.footerNav__list {
    margin: 52px 0 0 5%;
}

.footerNav__item {
    font-family: "Zen Maru Gothic";
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 12px;
}

.sns {
    display: flex;
    justify-content: end;
    text-align: center;
    gap: 15px;
    margin-top: 28px;
}

.sns__item {
    width: 30px;
    height: 30px;
} 

.copy {
    font-size: 0.8rem;
    margin-top: 40px;
}

/* footer pc */
@media screen and (min-width:959px) { 
    .footer__sp {
        display: none;
    }

    .footer__pc {
        display: block;
        position: relative;
        padding: 30px 3.4% 36px 3.4%;
        background-color: #FFF;
    }

    .footer__topic img {
        width: 96px;
        margin-right: 1.5%;
    }

    .footer__topic span {
        font-size: 4.5rem;
    }

    .footer__topic a {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer__content {
        padding: 53px 5% 0 5%;
    }

    .detail__item {
        display: flex;
        margin-top: 10px;
    }

    .detail__category {
        font-size: 1.6rem;
        width: 64px;
        margin-right: 50px;
    }

    .detail__txt {
        font-size: 1.6rem;
    }

    .detail__txt a {
        text-decoration: underline;
    }

    .sns {
        gap: 20px;
        margin-top: 28px;
    }

    .sns__item {
        width: 36px;
        height: 36px;
    } 

    .footer__border {
        margin-top: 20px;
    }
    
    .footerNav__list {
        display: flex;
        gap: 25px;
        margin: 0;
    }

    .footerNav__item {
        font-size: 1.4rem;
    }

    .footerNav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 20px;
    }

    .copy {
        font-size: 1.2rem;
        margin-top: 0;
        }

    .topBtn {
        color: #FFF;
        font-size: 2rem;
        font-family: 'Montserrat';
        line-height: 1;
        padding: 28px 20px;
        background-color: #FF6982;
        border-radius: 50%;
        position: absolute;
        top: 2%;
        right: 2%;
        box-shadow: 2px 2px 4px 2px rgba(29, 101, 101, 0.2);
    }
}

/* recruitBtn */
.recruitBtn {
    position: relative;
    display: flex;
    justify-content: center;
    border-radius: 16px;
    background: #FFF7F4;
    width: 234px;
    box-shadow: 2px 2px 4px 2px rgba(29, 101, 101, 0.2);
    position: fixed;
    bottom: 5%;
    right: 1.4%;
}

.closeBtn {
    position: absolute;
    content: '';
    background-image: url(../images/close.png);
    background-size: contain;
    width: 15px;
    height: 15px;
    top: 1px;
    right: 0%;
}

.recruitBtn img {
    width: 46.8%;
    object-fit: cover;
    border-radius: 16px 0 0 16px;
}

.recruitBtn__content {
    padding: 15px 5% 15px 5%;
    width: 53.2%;
}

.recruitBtn__topic {
    color: #FF8F69;
    font-family: Montserrat;
    font-size: 1.2rem;
}

.recruitBtn__txt {
    font-size: 1.2rem;
    margin-top: 5px
}

.btn--miniBtn {
    position: relative;
    width: 100px;
    font-size: 1rem;
    padding: 8px;
    margin-top: 10px;
}

.btn--miniBtn::after {
    position: absolute;
    background-image: url(../images/arrow-small.png);
    width: 6px;
    height: 6px;
    top: 50%;
    transform: translateY(-50%);
    right: 10%;
}

.hidden {
    display: none;
}

/* recruitBtn pc */
@media screen and (min-width:769px) { 
    .recruitBtn {
        width: 360px;
        bottom: 5%;
        right: 1.4%;
    }

    .closeBtn {
        position: absolute;
        content: '';
        background-image: url(../images/close.png);
        background-size: contain;
        width: 15px;
        height: 15px;
        top: 1px;
        right: 0%;
    }

    .recruitBtn img {
        width: 46.8%;
        object-fit: cover;
    }

    .recruitBtn__content {
        padding: 15px 5% 15px 5%;
        width: 53.2%;
    }

    .recruitBtn__topic {
        color: #FF8F69;
        font-family: Montserrat;
        font-size: 2rem;
    }

    .recruitBtn__txt {
        font-size: 1.6rem;
        margin-top: 5px
    }

    .btn--miniBtn {
        position: relative;
        width: 134px;
        font-size: 1rem;
        padding: 12px;
        margin: 10px 0;
    }

    .btn--miniBtn::after {
        position: absolute;
        background-image: url(../images/arrow-small.png);
        width: 6px;
        height: 6px;
        top: 50%;
        transform: translateY(-50%);
        right: 10%;
    }
}




