@charset "UTF-8";
/*==================================================================
    lp-korea.css
===================================================================*/

/* --------------------------------------------------
 common
--------------------------------------------------- */

:root {
    --font-jp: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
    --font-min: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    --font-midashi: a-otf-midashi-go-mb31-pr6n,sans-serif;
    --font-en: urw-din,sans-serif;
    --color-wh: #fff;
    --color-wgy: #eee;
    --color-lgy: #ddd;
    --color-bk: #191919;
    --color-bgy: #444;
    --color-dgy: #777;
    --color-tb-main: #5ab4bd;
    --color-tb-sub: #d9d9d9;
    --color-og: #e52074;
}

.decision-contents {
    z-index: 1;
    position: relative;
    padding-top: 85px;
    font-size: 14px;
}
.decision-contents::before {
    z-index: -1;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background-image: url('../img/decision/decision-bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.8;
}
.decision-contents .decision-inner {
    z-index: 2;
    position: relative;
    padding-top: 40px;
}
.decision-main {
    padding: 50px 20px;
    text-align: center;
}
.decision-main h2 {
    font-size: 1.2em;
    letter-spacing: normal;
    line-height: 1.8;
    font-weight: 700;
}
.decision-main h2 span {
    font-size: 2em;
    padding: 0 0 0 5px;
    font-family: var(--font-midashi);
    font-weight: 700;
    color: var(--color-og);
    text-shadow: 2px 2px 0 #FFF, -2px -2px 0 #FFF,
        -2px 2px 0 #FFF, 2px -2px 0 #FFF,
        0px 2px 0 #FFF,  0 -2px 0 #FFF,
        -2px 0 0 #FFF, 2px 0 0 #FFF;
}
.decision-main h3 {
    padding: 5px 0 0;
    font-size: 1em;
    letter-spacing: normal;
    line-height: 1.8;
    font-weight: 700;
}
.decision-main p {
    padding: 10px 0 0;
    font-size: 0.88em;
    letter-spacing: normal;
    line-height: 1.8;
}
@media screen and (min-width: 768px) {
    .decision-contents {
        font-size: 16px;
    }
}
@media screen and (min-width: 1024px) {
    .decision-contents {
        padding-top: 0;
        font-size: 18px;
    }
    .decision-main {
        padding: 70px 20px 30px;
    }
}
@media screen and (min-width: 1280px) {
    .decision-contents {
        font-size: 20px;
    }
}
@media screen and (min-width: 1601px) {
    .decision-contents::before {
        height: 600px;
    }
}


.decision-switch {
    display: flex;
    flex-wrap: wrap;
    background: var(--color-wh);
}
.switch-btn {
    display: block;
    width: calc(100%/2);
    margin: 0;
    height: 50px;
    font-family: var(--font-en);
    font-size: 1.1em;
    font-weight: bold;
    line-height: 50px;
    text-align: center;
    color: var(--color-bk);
    text-align: center;
    border-bottom: 3px solid var(--color-tb-main);
    background-color: var(--color-tb-sub);
    transition: all 0.2s ease;
    cursor: pointer;
}
.switch-btn:hover {
    opacity: 0.75;
}
input[name="switch-btn"] {
    display: none;
}

.decision-item {
    display: none;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    padding: 15px;
    overflow: hidden;
}
#decision01:checked ~ #decision01-cont,
#decision02:checked ~ #decision02-cont {
    display: flex;
}
.decision-switch input:checked + .switch-btn {
    background-color: var(--color-tb-main);
    color: #fff;
}

.decision-card {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border: 3px solid var(--color-tb-main);
    background: var(--color-wh);
}
.dc-head {
    width: 30%;
}
.dc-image {
    width: 100%;
    height: 160px;
}
.dc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dc-desc {
    width: 70%;
    padding: 0 10px;
    line-height: 1.5;
}
.dc-desc h3 {
    padding: 5px 0 3px;
    font-size: 1em;
}
.dc-desc h3 span {
    padding-left: 2px;
    font-size: 0.65em;
}
.dc-desc p {
    margin: 0;
    padding: 0;
    line-height: 1.45;
}
.dc-meta p {
    font-size: 0.82em;
}
.dc-meta p span {
    font-size: 0.65em;
}
.dc-recruit p {
    font-size: 0.82em;
    color: var(--color-og);
    font-weight: bold;
}
.dc-recruit p span {
    font-size: 0.65em;
    color: var(--color-bk);
    font-weight: normal;
}
.dc-comment {
    margin-top: 5px;
    border-top: 1px solid var(--color-lgy);
}
.dc-comment p {
    padding: 5px 0;
    text-align: justify;
    font-size: 0.78em;
    line-height: 1.4;
    letter-spacing: normal;
}
@media screen and (min-width: 768px) {
    .decision-card {
        width: calc(50% - (15px / 2));
        font-size: 15px;
    }
    .dc-head {
        width: 35%;
    }
    .dc-image {
        height: 190px;
    }
    .dc-desc {
        width: 65%;
    }
    .dc-desc h3 {
        padding: 8px 0 3px;
    }
}
@media screen and (min-width: 1024px) {
    .decision-switch {
        padding: 40px;
    }
    .decision-item {
        gap: 20px;
        padding: 30px 0;
    }
    .decision-card {
        width: calc(33.3333% - (40px / 3));
        font-size: 15px;
    }
    .dc-head {
        width: 40%;
    }
    .dc-image {
        height: 200px;
    }
    .dc-desc {
        width: 60%;
    }
    .dc-desc p {
        line-height: 1.4;
    }
    .dc-desc h3 {
        padding: 8px 0 3px;
    }
}
@media screen and (min-width: 1280px) {
    .decision-card {
        font-size: 16px;
        background: var(--color-wgy);
    }
    .dc-head {
        width: 45%;
    }
    .dc-image {
        height: 250px;
    }
    .dc-desc {
        width: 55%;
        padding: 0;
    }
    .dc-desc p {
        line-height: 1.4;
    }
    .dc-desc h3 {
        padding: 8px 0 3px;
    }
    .dc-meta {
        padding: 5px 15px 5px;
        background: var(--color-wh);
    }
    .dc-recruit {
        padding: 5px 15px 10px;
        background: var(--color-wh);
    }
    .dc-comment {
        margin: 0;
        padding: 10px 15px;
        border: 0;
    }
}
@media screen and (min-width: 1601px) {
    .decision-switch {
        max-width: 1400px;
        margin: auto;
        padding: 40px;
    }
    .decision-card {
        font-size: 18px;
    }
    .dc-head {
        width: 47%;
    }
    .dc-image {
        height: 280px;
    }
    .dc-desc {
        width: 53%;
        padding: 0;
    }
}