@charset "UTF-8";

/* === 社風紹介 === */
.mb20 {
    margin-bottom: 20px;
}
.environment-introduction>.content-wrap {
    padding: 60px 0;
}

.environment-introduction .center-text {
    text-align: center;
    font-size: min(3vw, 1.1rem);
    padding-bottom: 30px;
}

.environment .sub-block {
    padding: 0 0 50px;
}

.environment .sub-block:last-of-type {
    padding-bottom: 0;
}

.popup-box {
    border: 2px solid #000;
    background: #FFF;
    position: relative;
    width: 90%;
    max-width: 940px;
    margin: 0 auto 50px;
    padding: 50px;
    z-index: 2;
    transform-style: preserve-3d;
    transition: top 1s, left 1s;
}

.popup-box::after {
    content: "";
    display: block;
    position: absolute;
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    width: 100%;
    height: 100%;
    left: 15px;
    top: 15px;
    z-index: -1;
    transform: translateZ(-1px);
    transition: top 1s, left 1s;
}

.popup-box.eft {
    left: 15px;
    top: 15px;
}

.popup-box.eon {
    left: 0;
    top: 0;
}

.popup-box.eft::after {
    left: 0;
    top: 0;
}

.popup-box.eon::after {
    left: 15px;
    top: 15px;
}

.popup-box .box-title {
    color: #FFF;
    font-size: 18px;
    text-align: center;
    line-height: 2.2em;
    width: 80%;
    max-width: 400px;
    margin: 0 auto 20px;
    border-radius: 40px;
    background: #0F846E;
}

.popup-box .hero-txt {
    text-align: center;
    font-size: min(2vw, 2.4rem);
    line-height: 1.8em;
    font-weight: 500;
}

.ranking-container {
    list-style: none;
    padding: 40px 20px 0;
    margin: 0 auto;
    max-width: 550px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.rank-item {
    background-color: #ffffff;
    box-shadow: 0 0 10px 0 rgba(10, 98, 101, 0.25);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    width: calc(50% - 12px);
}

.rank-item.rank-top {
    width: 80%;
    padding: 30px 20px;
}

.rank-badge {
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    color: #ffffff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.rank-item.rank-top .rank-badge {
    font-size: 30px;
}

.rank-badge span {
    font-size: 16px;
    margin-left: 2px;
    margin-top: 6px;
}

.rank-text {
    margin: 0;
    letter-spacing: 0.05em;
    line-height: 100%;
    font-size: min(3vw, 2rem);
    display: inline-block;
    background-image: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.rank-item:not(.rank-top) .rank-text {
    font-size: min(2vw, 1.4rem);
}

.environment-voices h2 {
    background-color: #ffffff;
    box-shadow: 0 0 10px 0 rgba(10, 98, 101, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px 10px;
    box-sizing: border-box;
    width: 70%;
    margin: 0 auto 30px;
    letter-spacing: 0.05em;
    line-height: 100%;
    font-size: min(3vw, 2rem);
    font-weight: 500;
    background-image: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.js-masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1px;
    column-gap: 24px;
    max-width: 1100px;
    margin: 0 auto 30px;
    padding: 20px;
    list-style: none;
}

.bubble-item {
    display: flex;
    flex-direction: column;
    grid-row-end: span 50;
    margin-bottom: 40px;
    opacity: 0;
    transform: scale(0.7) translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.7s cubic-bezier(0.34, 1.36, 0.64, 1);
    visibility: hidden;
}

.bubble-item.is-shown {
    opacity: 1;
    transform: scale(1) translateY(0);
    visibility: visible;
}

.bubble-inner {
    background: #fff;
    border: 1px solid #0a6265;
    padding: 20px;
    position: relative;
    font-size: 14px;
    line-height: 1.7;
}

.bubble-inner::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 10px;
    background: linear-gradient(to left, #0a6265, #51b9bc);
    z-index: -1;
}

.bubble-inner::after {
    content: "";
    display: block;
    position: absolute;
    background: url('../img/growth_img/arrow.svg') no-repeat center/contain;
    width: 14px;
    height: 14px;
    bottom: -17px;
    left: 10px;
    z-index: -2;
}

.bubble-footer {
    display: flex;
    align-items: center;
    margin-top: 5px;
    padding-left: 55px;
    color: var(--main-color);
}

.bubble-footer::after {
    content: "";
    display: block;
    position: absolute;
    background: url('../img/growth_img/person-icon.svg') no-repeat center/contain;
    width: 16px;
    height: 20px;
    left: 30px;
    bottom: -15px;
}

.dot-txt {
    text-align: center;
    font-size: min(2.4vw, 1.3rem);
    line-height: 1em;
    letter-spacing: 1px;
    text-decoration: underline dotted;
    text-underline-offset: 25%;
    font-weight: 500;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .environment-introduction>.content-wrap {
        padding: 30px 0;
    }

    .environment-introduction .center-text {
        font-size: min(3.2vw, 1.1rem);
        padding-bottom: 20px;
    }

    .environment .sub-block {
        padding: 0 0 10px;
    }

    .popup-box {
        margin-bottom: 30px;
        padding: 30px 20px;
    }

    .popup-box::after {
        left: 10px;
        top: 10px;
    }

    .popup-box.eft {
        left: 10px;
        top: 10px;
    }

    .popup-box.eft::after {
        left: 0;
        top: 0;
    }

    .popup-box.eon::after {
        left: 10px;
        top: 10px;
    }

    .popup-box .box-title {
        font-size: 15px;
        width: 100%;
    }

    .popup-box .hero-txt {
        font-size: min(4vw, 1rem);
    }

    .ranking-container {
        margin-bottom: 30px;
    }

    .rank-item {
        padding: 15px;
    }

    .rank-item.rank-top {
        padding: 20px 15px;
    }

    .rank-badge,
    .rank-item.rank-top .rank-badge {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .rank-badge span {
        font-size: 14px;
    }

    .rank-text {
        font-size: min(5vw, 1.8rem);
    }

    .rank-item:not(.rank-top) .rank-text {
        font-size: min(4.5vw, 1.4rem);
    }

    .environment-voices h2 {
        padding: 20px 10px;
        width: 80%;
        margin-bottom: 10px;
        font-size: min(5vw, 1.8rem);
    }

    .js-masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 15px;
    }

    .bubble-inner {
        padding: 12px 10px 12px 12px;
        font-size: min(3.4vw, 1rem);
    }

    .bubble-footer {
        margin-top: 9px;
    }

    .bubble-footer::after {
        bottom: -20px;
    }

    .dot-txt {
        font-size: min(4.2vw, 1.2rem);
    }
}

@media (max-width: 600px) {
    .rank-item {
        width: 100% !important;
    }
}

/* === キーワードで知る前田建設で働く魅力 === */
.keyword-section {
    position: relative;
    padding-bottom: 60px;
    margin-bottom: 80px;
}

.keyword-section:last-of-type {
    margin-bottom: 0;
}

.keyword-section::after {
    content: "";
    display: block;
    position: absolute;
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    width: 100%;
    height: calc(100% - 150px);
    top: 150px;
    left: 0;
    z-index: -1;
}

.keyword-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.keyword-header {
    text-align: center;
    opacity: 0;
    background: #FFF;
    padding: 40px;
    transition: opacity 0.8s ease;
    border: solid 2px #000;
    max-width: 740px;
    margin: 0 auto 60px;
}

.keyword-header.eon {
    opacity: 1;
}

.heading-bracket {
    position: relative;
    display: inline-block;
    padding: 40px 60px;
    font-size: 32px;
    font-weight: bold;
}

.heading-bracket span {
    opacity: 0;
    transition: opacity 0.6s ease 0.4s;
}

.keyword-header.eon .heading-bracket span {
    opacity: 1;
}

.heading-bracket::before,
.heading-bracket::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    border-style: solid;
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
}

.heading-bracket::before {
    top: 0;
    left: 40%;
    border-width: 4px 0 0 4px;
    border-top-color: #65B392;
    border-left-color: #569CC4;
}

.heading-bracket::after {
    bottom: 0;
    right: 40%;
    border-width: 0 4px 4px 0;
    border-bottom-color: #65B392;
    border-right-color: #569CC4;
}

.keyword-header.eon .heading-bracket::before {
    left: 0;
    opacity: 1;
}

.keyword-header.eon .heading-bracket::after {
    right: 0;
    opacity: 1;
}

.keyword-lead {
    margin-top: 30px;
    line-height: 2;
    font-size: 18px;
    color: var(--main-color);
}

.keyword-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.keyword-grid>li {
    width: calc((100% - 40px) / 3);
    min-width: 300px;
}

.keyword-card {
    background: #fff;
    color: #333;
    padding: 20px 15px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s .5s ease;
}

.keyword-card.eon {
    opacity: 1;
    transform: translateY(0);
}

.card-title-wrap {
    text-align: center;
}

.card-title {
    position: relative;
    width: 100%;
    display: inline-block;
    padding: 20px 5px;
    font-size: min(1.6vw, 1rem);
    font-weight: bold;
    line-height: 1.4;
    color: #333;
}

.card-title::before,
.card-title::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border-style: solid;
}

.card-title::before {
    top: 0;
    left: 0;
    border-width: 3px 0 0 3px;
    border-top-color: #65B392;
    border-left-color: #569CC4;
}

.card-title::after {
    bottom: 0;
    right: 0;
    border-width: 0 3px 3px 0;
    border-bottom-color: #65B392;
    border-right-color: #569CC4;
}

.card-content {
    position: relative;
    padding: 20px 0 0 25px;
}

.card-content::before {
    content: "";
    display: block;
    position: absolute;
    background: url('../img/growth_img/person-icon.svg') no-repeat center/contain;
    width: 20px;
    height: 20px;
    left: 0;
    top: 15px;
}

.card-text {
    font-size: 14px;
    line-height: 1.6;
    color: #1a6b63;
}

@media (max-width: 768px) {
    .keyword-section {
        padding-bottom: 40px;
        margin-bottom: 50px;
    }

    .keyword-section::after {
        height: calc(100% - 120px);
        top: 120px;
    }

    .keyword-header {
        padding: 25px 10px;
        margin-bottom: 10px;
    }

    .heading-bracket {
        width: 90%;
        padding: 20px 10px;
        font-size: min(4vw, 3rem);
        line-height: 1.6em;
    }

    .heading-bracket::before,
    .heading-bracket::after {
        width: 30px;
        height: 30px;
    }

    .keyword-lead {
        margin-top: 20px;
        font-size: min(3.5vw, 1rem);
    }

    .keyword-grid {
        gap: 10px;
    }

    .keyword-grid>li {
        width: calc((100% - 30px) / 2);
        min-width: auto;
    }

    .card-title {
        font-size: min(3vw, 1rem);
    }

    .card-title::before,
    .card-title::after {
        width: 20px;
        height: 20px;
    }

    .card-content {
        padding: 10px 0 0 20px;
    }

    .card-content::before {
        width: 15px;
        height: 15px;
        top: 10px;
    }

    .card-text {
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .heading-bracket {
        width: 96%;
        font-size: min(5.5vw, 3rem);
    }

    .keyword-grid>li {
        width: 100%;
    }

    .card-title {
        font-size: min(4vw, 1rem);
    }
}


.welfare-content>.content-wrap {
    padding: 60px 0;
}

.welfare-content .sub-block {
    padding: 0 0 80px;
}

.welfare-content .sub-block:last-of-type {
    padding-bottom: 0;
}

.welfare .big-lead {
    text-align: center;
    font-size: 40px;
    line-height: 1.4em;
    padding-bottom: 50px;
}

.num-list-point {
    padding: 20px 0 0;
}

.num-list-point {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.num-list-point li {
    width: 31.83%;
    background: #FFF;
    box-shadow: 0 0 10px 0 rgba(10, 98, 101, 0.25);
    padding: 20px;
    margin-bottom: 2.5%;
}

.num-list-point li:nth-child(n + 4) {
    width: 48.8%;
    margin-bottom: 0;
}

.num-list-point .num-box {
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 30px;
    font-family: var(--en-font);
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    margin: 0 auto 10px;
    text-align: center;
    padding: 9px 0 0;
}

.num-list-point .num-box span {
    font-size: 12px;
    font-weight: 600;
    line-height: 0.6em;
    display: block;
    position: relative;
}

.num-list-point .lead {
    color: var(--main-color);
    font-size: min(2vw, 1.3rem);
    padding: 10px 0 10px;
    text-align: center;
}

.num-list-point li a {
    color: var(--main-color);
    text-decoration: underline;
}

.health-program {
    padding: 30px 0 60px;
}

.welfare-detail-list dt {
    position: relative;
    padding-left: 20px;
    font-weight: 500;
    color: var(--main-color);
    font-size: min(3vw, 1.2rem);
    margin-bottom: 5px;
}

.welfare-detail-list dt::before {
    content: "";
    display: block;
    position: absolute;
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    width: 5px;
    height: 100%;
    left: 0;
    top: 0;
}

.welfare-detail-list dd {
    padding-bottom: 20px;
}

.welfare-detail-list dd:last-of-type {
    padding-bottom: 0;
}

.welfare-detail-list-mini dt {
    font-weight: 500;
    color: var(--main-color);
}

.welfare-detail-list-mini dd {
    padding-bottom: 20px;
}

.welfare-detail-list dd:last-of-type {
    padding-bottom: 0;
}


.welare-point-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 2.5%;
    margin: 25px 0 50px;
}

.welare-point-box:last-of-type {
    margin-bottom: 0;
}

.welare-point-box>li {
    width: 48.5%;
    background: #FFF;
    box-shadow: 0 0 10px 0 rgba(10, 98, 101, 0.25);
    padding: 20px 30px;
    position: relative;
}

.welare-point-box>li .point-ttl {
    text-align: center;
    color: var(--main-color);
    font-size: min(3.5vw, 1.3rem);
    padding-bottom: 20px;
}

.welare-point-box>li:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 80px;
    height: 4px;
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    transform: translateX(-50%);
}

.grd-border,
.table-ttl {
    position: relative;
    padding-left: 20px;
    font-weight: 500;
    color: var(--main-color);
    font-size: min(3vw, 1.2rem);
    margin-bottom: 5px;
}

.grd-border::before,
.table-ttl::before {
    content: "";
    display: block;
    position: absolute;
    background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
    width: 5px;
    height: 100%;
    left: 0;
    top: 0;
}

.split-content-holiday {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0;
}

.split-content-holiday .text {
    width: 65%;
}

.split-content-holiday .table-box {
    width: 30%;
}

.table-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.table-wrap .table-box {
    width: 48%;
}

.table-wrap .table-box>p {
    margin-bottom: 20px;
}

.life-plus-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.life-plus-box .text {
    width: 65%;
}

.life-plus-box .image {
    width: 30%;
}

.button-block {
    padding: 20px 0 0;
}

.button-block>p {
    text-align: center;
}

.button-block .white-button {
    width: 100%;
    max-width: 480px;
    margin: 10px auto;
    position: relative;
    background: #FFF;
    box-shadow: 0 0 10px 0 rgba(10, 98, 101, 0.25);
    transition: all .4s;
}

.button-block .white-button a {
    padding: 20px 0;
}

.button-block .white-button p {
    text-align: center;
    font-size: min(2vw, 1.2rem);
    line-height: 1.5em;
}

.button-block .white-button p span {
    display: block;
    font-size: min(1.2vw, 0.8rem);
    color: var(--main-color);
}

.button-block .white-button:before {
    content: "";
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 10px;
    height: 10px;
    background-image: url(../img/common_img/arrow-green.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

@media (hover: hover) {
    .num-list-point li a:hover {
        text-decoration: none;
    }

    .button-block .white-button:hover {
        box-shadow: 0 0 2px 0 rgba(10, 98, 101, 0.45);
    }
}

@media screen and (max-width: 768px) {

    .welfare-content>.content-wrap {
        padding: 30px 0;
    }

    .welfare-content .sub-block {
        padding: 0 0 40px;
    }

    .welfare-content .sub-block:last-of-type {
        padding-bottom: 0;
    }

    .welfare .big-lead {
        text-align: center;
        font-size: 24px;
        line-height: 1.4em;
        padding-bottom: 10px;
    }

    .num-list-point {
        padding: 20px 0 0;
    }

    .num-list-point li {
        width: 100%;
        background: #FFF;
        box-shadow: 0 0 10px 0 rgba(10, 98, 101, 0.25);
        padding: 20px;
        margin-bottom: 2.5%;
    }

    .num-list-point li:nth-child(n + 4) {
        width: 100%;
        margin-bottom: 2.5%;
    }

    .num-list-point .num-box {
        width: 50px;
        height: 50px;
        color: #fff;
        font-size: 30px;
        font-family: var(--en-font);
        background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
        margin: 0 auto 10px;
        text-align: center;
        padding: 9px 0 0;
    }

    .num-list-point .num-box span {
        font-size: 12px;
        font-weight: 600;
        line-height: 0.6em;
        display: block;
        position: relative;
    }

    .num-list-point .lead {
        color: var(--main-color);
        font-size: min(4.5vw, 1.2rem);
        padding: 10px 0 10px;
        text-align: center;
    }

    .num-list-point li a {
        color: var(--main-color);
        text-decoration: underline;
    }

    .health-program {
        padding: 30px 0 60px;
    }

    .welfare-detail-list dt {
        position: relative;
        padding-left: 20px;
        font-weight: 500;
        color: var(--main-color);
        font-size: min(4vw, 1.2rem);
        margin-bottom: 5px;
    }

    .welfare-detail-list dt::before {
        content: "";
        display: block;
        position: absolute;
        background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
        width: 5px;
        height: 100%;
        left: 0;
        top: 0;
    }

    .welfare-detail-list dd {
        padding-bottom: 20px;
    }

    .welfare-detail-list dd:last-of-type {
        padding-bottom: 0;
    }

    .welfare-detail-list-mini dt {
        font-weight: 500;
        color: var(--main-color);
    }

    .welfare-detail-list-mini dd {
        padding-bottom: 20px;
    }

    .welfare-detail-list dd:last-of-type {
        padding-bottom: 0;
    }


    .welare-point-box {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0 2.5%;
        margin: 25px 0 50px;
    }

    .welare-point-box:last-of-type {
        margin-bottom: 0;
    }

    .welare-point-box>li {
        width: 100%;
        background: #FFF;
        box-shadow: 0 0 10px 0 rgba(10, 98, 101, 0.25);
        padding: 20px 20px;
        position: relative;
        margin-bottom: 20px;
    }

    .welare-point-box>li:last-child {
        margin-bottom: 0;
    }
    .welare-point-box>li .point-ttl {
        text-align: center;
        color: var(--main-color);
        font-size: min(5vw, 1.2rem);
        padding-bottom: 10px;
    }

    .welare-point-box>li:before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        width: 80px;
        height: 4px;
        background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
        transform: translateX(-50%);
    }

    .grd-border,
    .table-ttl {
        position: relative;
        padding-left: 15px;
        font-weight: 500;
        color: var(--main-color);
        font-size: min(4vw, 1.2rem);
        margin-bottom: 0px;
    }

    .grd-border::before,
    .table-ttl::before {
        content: "";
        display: block;
        position: absolute;
        background: linear-gradient(98deg, #4BBE8D 0%, #076480 100%);
        width: 5px;
        height: 100%;
        left: 0;
        top: 0;
    }

    .split-content-holiday {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 20px 0;
    }

    .split-content-holiday .text {
        width: 100%;
    }

    .split-content-holiday .table-box {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .table-wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 40px;
    }

    .table-wrap .table-box {
        width: 100%;
        margin-bottom: 30px;
    }

    .table-wrap .table-box:last-of-type {
        margin-bottom: 0;
    }

    .table-wrap .table-box>p {
        margin-bottom: 10px;
    }

    .life-plus-box {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .life-plus-box .text {
        width: 100%;
    }

    .life-plus-box .image {
        width: 100%;
        max-width: 300px;
        margin: 20px auto 0;
    }

    .button-block {
        padding: 20px 0 0;
    }

    .button-block>p {
        text-align: center;
    }

    .button-block .white-button {
        width: 100%;
        max-width: 300px;
        margin: 10px auto;
        position: relative;
        background: #FFF;
        box-shadow: 0 0 10px 0 rgba(10, 98, 101, 0.25);
        transition: all .4s;
    }

    .button-block .white-button p {
        text-align: center;
        font-size: min(4vw, 1.1rem);
        line-height: 1.5em;
    }

    .button-block .white-button p span {
        display: block;
        font-size: min(3vw, 0.8rem);
        color: var(--main-color);
    }

    .button-block .white-button:before {
        content: "";
        position: absolute;
        right: 10px;
        bottom: 10px;
        width: 10px;
        height: 10px;
        background-image: url(../img/common_img/arrow-green.svg);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }

}


/* 子女教育手当内のテーブル */
.leave-table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: #fff;
    font-weight: 500;
}


.leave-table th,
.leave-table td {
    border-right: 1px solid #A6A6A6;
    border-bottom: 1px solid #A6A6A6;
    padding: 5px;
    vertical-align: middle;
    text-align: center;
}

.leave-table thead th:last-of-type,
.leave-table td:last-of-type {
    border-right: none;
}

.leave-table thead th {
    border-top: none;
    background-color: #1f7f6e;
    color: #fff;
    padding: 5px;
}

.leave-table tbody th {
    width: 20%;
    white-space: nowrap;
    font-weight: 500;
}

.leave-table.two-col tbody th {
    width: 65%;
}

.leave-table tbody tr:nth-child(even) {
    background-color: #F2F6F6;
}

.leave-table td.content-cell {
    text-align: center;
    width: 60%;
}

.leave-table td.payment-cell {
    width: 20%;
}


.leave-table.innder-table {
    max-width: 600px;
    margin: 0 0 0;
}


.leave-table.innder-table td.content-cell {
    text-align: center;
    width: 40%;
}

.leave-table.innder-table td.payment-cell {
    width: 30%;
}

.leave-list {
    text-align: center;
}

.leave-list li:last-child {
    margin-bottom: 0;
}

.leave-list .note {
    font-size: 0.85em;
    margin-top: 0.2em;
    display: block;
}

@media screen and (max-width: 768px) {
    .leave-table > th,
    .leave-table > td {
        padding: 0.8em 0.3em;
        font-size: 0.9em;
        line-height: 1.5em;
    }

    .leave-table tbody th {
        width: auto;
    }
}