@charset "UTF-8";

/* ============================================
   導入・見出し (Introduction)
   ============================================ */
.survey .txt-introduction {
    font-size: min(3vw, 1.3rem);
    line-height: 2em;
    text-align: center;
    padding-bottom: 80px;
}

.survey section {
    padding-bottom: 60px;
}

.survey h2 {
    border-radius: 50px;
    background: linear-gradient(90deg, #f5bb60 20%, #e58552 100%);
    padding: 30px 20px 30px 60px;
    position: relative;
    margin-bottom: 60px;
}

.survey h2 span {
    font-weight: 500;
    font-size: min(4vw, 1.6rem);
    color: #FFF;
    position: relative;
    z-index: 2;
}

.survey h2:before {
    content: "";
    display: block;
    position: absolute;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url('../img/culture_img/question-mark.svg');
    width: 46px;
    height: 57px;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.survey h2::after {
    content: "";
    display: block;
    position: absolute;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 40px 0 0 60px;
    border-color: transparent transparent transparent #f5bb60;
    transform: rotate(30deg);
    bottom: -10px;
    left: 60px;
    z-index: -1;
}

/* ============================================
   Theme 01: 会社の印象 (Company)
   ============================================ */
.theme01-block {
    margin-bottom: 60px;
}

.theme01-block:last-of-type {
    margin-bottom: 0;
}

.theme01-block .ttl-box {
    width: 90%;
    max-width: 930px;
    margin: 0 auto;
    background: #F4F3E8;
    border-radius: 20px 20px 0 0;
    padding: 50px 0 80px;
}

.theme01-block .ttl-box .ttl {
    text-align: center;
    font-weight: 500;
    font-size: min(5vw, 2rem);
    color: #0062b1;
    padding-bottom: 20px;
}

.theme01-block .ttl-box .list-ttl {
    text-align: center;
    font-size: min(3vw, 1rem);
    color: #0062b1;
    padding-bottom: 10px;
}

.theme01-block .ttl-box ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 1%;
}

.theme01-block .ttl-box ul li {
    color: #FFF;
    padding: 0 15px;
    border-radius: 4px;
    background: linear-gradient(90deg, #3eae75 0%, #0062b1 100%);
}

.voice-list {
    position: relative;
    top: -30px;
}

.voice-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 3%;
}

.voice-list ul li {
    width: 31.33%;
    padding: 40px 20px 20px;
    border-radius: 20px;
    background: #fff;
    filter: drop-shadow(0px 0px 8px rgba(0, 98, 177, 0.25));
    color: #0062b1;
    font-size: 0.9rem;
    line-height: 1.8em;
}

.voice-list ul li::before {
    content: "";
    display: block;
    position: absolute;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url('../img/culture_img/survey-icon01.svg');
    width: 40px;
    height: 50px;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

/* ============================================
   Theme 02: ランキング (Ranking)
   ============================================ */
.ranking {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 80px;
}

.ranking-item {
    background-color: #f4f4ec;
    border-radius: 20px;
    padding: 20px 20px;
    text-align: center;
    color: #0062b1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ranking-item .text {
    line-height: 1.6;
    font-size: 16px;
}

.rank-1 {
    width: 50%;
    margin-bottom: 10px;
}

.rank-2,
.rank-3 {
    width: calc(50% - 10px);
}

.ranking .text {
    padding-top: 80px;
    position: relative;
    font-size: min(2vw, 1.2rem);
}

.ranking .text::before {
    content: "";
    display: block;
    position: absolute;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100px;
    height: 70px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.rank-1 .text::before {
    background-image: url('../img/culture_img/survey-ranking01.svg');
}

.rank-2 .text::before {
    background-image: url('../img/culture_img/survey-ranking02.svg');
}

.rank-3 .text::before {
    background-image: url('../img/culture_img/survey-ranking03.svg');
}

.other-voice-box {
    background-color: #f4f4ec;
    border-radius: 20px;
    padding: 20px 20px;
    text-align: center;
    color: #0062b1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   Theme 03: 属性・性格 (Personality)
   ============================================ */
.theme03 .personality {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1120px;
    margin: 0 auto;
}

.card {
    display: flex;
    flex-direction: column;
    position: relative;
}

.card-top {
    background: #fff;
    border-radius: 15px;
    padding: 30px 40px;
    filter: drop-shadow(0px 0px 8px rgba(0, 98, 177, 0.25));
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.card-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.main-icon {
    width: 120px;
}

.title-area {
    width: calc(100% - 150px)
}

.title-area h3 {
    font-size: 28px;
    line-height: 1.6em;
    font-weight: 500;
    color: #0062b1;
}

.title-area span {
    font-size: 0.8rem;
    color: #4BA9C6;
    display: block;
    line-height: 1.6em;
}

.check-list {
    margin: 20px auto 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 30px;
    position: relative;
}

.check-list li::before {
    content: "";
    display: block;
    position: absolute;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url('../img/culture_img/survey-check.svg');
    width: 20px;
    height: 20px;
    left: 0;
    top: .2em;
}

.card-bottom {
    background-color: #f4f4ec;
    border-radius: 15px;
    padding: 40px 30px 30px 30px;
    margin-top: 0;
    font-size: 0.9rem;
    color: #0062B1;
    line-height: 1.8;
    font-weight: 500;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.card-bottom::before {
    content: "";
    display: block;
    position: absolute;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url('../img/culture_img/survey-icon01.svg');
    width: 40px;
    height: 50px;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.card-bottom p {
    margin: 0 0 0;
}

.card-bottom p:last-child {
    margin-bottom: 0;
}

.card-bottom hr {
    border: none;
    border-top: 1px solid#FFF;
    margin: 15px 0;
}

/* ============================================
   Theme 04: あるあるリスト (Aruaru List)
   ============================================ */
.aruaru {
    margin-bottom: 80px;
}

.aruaru-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.aruaru-list li {
    background-color: #f6f5ec;
    border-radius: 16px;
    padding: 50px 20px 30px;
    text-align: center;
    color: #0062b1;
    font-size: min(1.6vw, 1.2rem);
    line-height: 1.6;
    position: relative;
}

.aruaru-list li::before {
    content: "";
    display: block;
    position: absolute;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url('../img/culture_img/survey-check.svg');
    width: 20px;
    height: 20px;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
}

/* ============================================
   SP (max-width: 834px)
   ============================================ */
@media screen and (max-width: 834px) {

    /* Intro */
    .survey .txt-introduction {
        font-size: min(3vw, 1.1rem);
        padding-bottom: 50px;
    }

    .survey section {
        padding-bottom: 40px;
    }

    .survey h2 {
        border-radius: 40px;
        padding: 15px 20px;
        margin-bottom: 40px;
    }

    .survey h2 span {
        font-size: min(3.4vw, 1.2rem);
    }

    .survey h2:before {
        width: 26px;
        height: 47px;
        left: 20px;
    }

    .survey h2::after {
        border-width: 20px 0 0 40px;
        bottom: -5px;
        left: 34px;
    }

    /* Theme 01 */
    .theme01-block {
        margin-bottom: 10px;
    }

    .theme01-block .ttl-box {
        padding: 30px 0 60px;
    }

    .theme01-block .ttl-box .ttl {
        font-size: min(4vw, 1.5rem);
    }

    .theme01-block .ttl-box .list-ttl {
        font-size: min(3vw, 1rem);
    }

    .theme01-block .ttl-box ul li {
        padding: 0 10px;
        margin-bottom: 1%;
        font-size: 12px;
    }

    .voice-list ul li {
        width: 100%;
        margin-bottom: 20px;
    }

    .voice-list ul li::before {
        width: 30px;
        height: 40px;
        top: -10px;
    }

    /* Theme 02 */
    .ranking {
        gap: 10px;
        margin: 0 auto 40px;
    }

    .rank-1,
    .rank-2,
    .rank-3 {
        width: 100%;
        margin-bottom: 0;
    }

    .ranking .text {
        padding-top: 50px;
        font-size: min(4vw, 1.2rem);
    }

    .ranking .text::before {
        width: 70px;
        height: 50px;
    }

    .other-voice-box {
        padding: 20px 15px;
        font-size: min(3.4vw, 1.2rem);
    }

    /* Theme 03 */
    .theme03 .personality {
        grid-template-columns: 1fr;
    }

    .card-top {
        padding: 30px;
        margin-bottom: 30px;
    }

    .main-icon {
        width: 60px;
    }

    .title-area {
        width: calc(100% - 80px)
    }

    .title-area h3 {
        font-size: 20px;
    }

    .check-list li {
        font-size: 0.85rem;
    }

    .card-bottom {
        padding: 30px;
        font-size: 0.8rem;
    }

    .card-bottom::before {
        width: 30px;
        height: 40px;
    }

    /* Theme 04 */
    .aruaru {
        margin-bottom: 40px;
    }

    .aruaru-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .aruaru-list li {
        padding: 40px 20px 20px;
        font-size: min(4vw, 0.9rem);
    }

    .aruaru-list li::before {
        top: 15px;
    }
}