@charset "UTF-8";

/* Page Header */
main h2 {
    width: 64vw;
}

@media screen and (min-width: 960px) {
    main h2 {
        margin-bottom: 80px;
        width: 210px;
    }
}

main .inner {
    padding: 0 5.3333333333vw;
}

@media screen and (min-width: 960px) {
    main .inner {
        padding: 0;
    }
}

/* Mission & Vision Section */
#mv {
    padding: 8vw 0;
    text-align: center;
}

@media screen and (min-width: 960px) {
    #mv {
        padding: 0px 0;
    }
}

.mv-block {
    margin-bottom: 6vw;
}

@media screen and (min-width: 960px) {
    .mv-block {
        margin-bottom: 40px;
    }
}

.mv-block h3 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 8vw;
    color: #000a02;
    margin-bottom: 4vw;
    display: inline-block;
    border-bottom: 4px solid #6ce6dd;
}

@media screen and (min-width: 960px) {
    .mv-block h3 {
        font-size: 40px;
        margin-bottom: 30px;
        border-bottom-width: 6px;
    }
}

.mv-block.vision h3 {
    border-bottom-color: #6acafc;
}

.mv-block p {
    font-family: 游教科書体, YuKyokasho, "UD デジタル 教科書体 N-R", sans-serif;
    font-size: 4.5vw;
    line-height: 2;
    font-weight: 500;
}

@media screen and (min-width: 960px) {
    .mv-block p {
        font-size: 24px;
    }
}

/* Value Section */
#value {
    background: #fdfdfd;
    padding: 0 0;
}

@media screen and (min-width: 960px) {
    #value {
        padding: 0 0;
    }
}

#value h3 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 8vw;
    text-align: center;
    margin-bottom: 10vw;
    color: #333;
    letter-spacing: 0.1em;
}

@media screen and (min-width: 960px) {
    #value h3 {
        font-size: 48px;
        margin-bottom: 30px;
    }
}

.value-list {
    display: flex;
    flex-direction: column;
    gap: 8vw;
    padding: 0 5.3333333333vw;
}

@media screen and (min-width: 960px) {
    .value-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
}

.value-list li {
    background: #fff;
    padding: 10vw 8vw;
    border: 1px solid #eee;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 960px) {
    .value-list li {
        width: 320px;
        padding: 50px 40px;
        min-height: 280px;
    }
}

.value-list li:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.value-list li .num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 8vw;
    color: #f0f0f0;
    line-height: 1;
    z-index: 0;
}

@media screen and (min-width: 960px) {
    .value-list li .num {
        font-size: 48px;
    }
}

.value-list li .icon-wrap {
    margin-bottom: 5vw;
    font-size: 10vw;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

@media screen and (min-width: 960px) {
    .value-list li .icon-wrap {
        margin-bottom: 30px;
        font-size: 50px;
    }
}

.value-list li:hover .icon-wrap {
    transform: scale(1.1);
}

.value-list li h4 {
    font-size: 6.4vw;
    font-weight: 900;
    margin-bottom: 4vw;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 960px) {
    .value-list li h4 {
        font-size: 26px;
        margin-bottom: 25px;
    }
}

.value-list li h4 .en {
    font-size: 3.2vw;
    font-weight: 500;
    color: #999;
    letter-spacing: 0.1em;
    margin-top: 1vw;
    text-transform: uppercase;
}

@media screen and (min-width: 960px) {
    .value-list li h4 .en {
        font-size: 14px;
        margin-top: 5px;
    }
}

.value-list li p {
    font-size: 4vw;
    line-height: 1.8;
    color: #444;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

@media screen and (min-width: 960px) {
    .value-list li p {
        font-size: 16px;
    }
}

/* Color Accents */
.value-list li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transition: height 0.3s ease;
}

@media screen and (min-width: 960px) {
    .value-list li::before {
        height: 6px;
    }
}

.value-list li:hover::before {
    height: 12px;
}

.value-list li:nth-child(1)::before {
    background: #6ce6dd;
}

.value-list li:nth-child(2)::before {
    background: #6acafc;
}

.value-list li:nth-child(3)::before {
    background: #ff7a5a;
}

.value-list li:nth-child(4)::before {
    background: #65ff5a;
}

.value-list li:nth-child(5)::before {
    background: #c099f3;
}

.value-list li:nth-child(1) h4,
.value-list li:nth-child(1) .icon-wrap {
    color: #2ea098;
}

.value-list li:nth-child(2) h4,
.value-list li:nth-child(2) .icon-wrap {
    color: #3b9ed4;
}

.value-list li:nth-child(3) h4,
.value-list li:nth-child(3) .icon-wrap {
    color: #d65b3e;
}

.value-list li:nth-child(4) h4,
.value-list li:nth-child(4) .icon-wrap {
    color: #4bbe43;
}

.value-list li:nth-child(5) h4,
.value-list li:nth-child(5) .icon-wrap {
    color: #8d62c7;
}

/* Message Section */
#message {
    padding: 12vw 0;
}

@media screen and (min-width: 960px) {
    #message {
        padding: 120px 0;
    }
}

#message h3 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 8vw;
    margin-bottom: 8vw;
    text-align: center;
}

@media screen and (min-width: 960px) {
    #message h3 {
        font-size: 32px;
        margin-bottom: 60px;
    }
}

@media screen and (min-width: 960px) {
    .message-content {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 60px;
    }
}

.message-content .text {
    flex: 1;
    text-align: center;
}

.message-content .text p {
    font-size: 4vw;
    line-height: 2;
    margin-bottom: 6vw;
}

@media screen and (min-width: 960px) {
    .message-content .text p {
        font-size: 18px;
        margin-bottom: 40px;
    }
}

.message-content .text p.em {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 5vw;
    color: #000a02;
}

@media screen and (min-width: 960px) {
    .message-content .text p.em {
        font-size: 28px;
    }
}

.message-content .signature {
    text-align: right;
    margin-top: 8vw;
}

@media screen and (min-width: 960px) {
    .message-content .signature {
        margin-top: 60px;
    }
}

.message-content .signature .company {
    font-size: 3.5vw;
    margin-bottom: 1vw;
}

@media screen and (min-width: 960px) {
    .message-content .signature .company {
        font-size: 16px;
    }
}

.message-content .signature .name {
    font-size: 5vw;
    font-weight: 700;
}

@media screen and (min-width: 960px) {
    .message-content .signature .name {
        font-size: 24px;
    }
}

.message-content .photo {
    margin-top: 8vw;
}

@media screen and (min-width: 960px) {
    .message-content .photo {
        width: 400px;
        margin-top: 0;
    }
}