* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: url("pc/bg_pc.png") no-repeat center top / cover;
    min-height: 100vh;
    font-family: 'Roboto', sans-serif;
}

.top-logo {
    height: 95px;
    background: url("pc/bg_top_2_pc.png") no-repeat center;
    position: relative;
}

.box-logo {
    background: url("pc/bg_logo_pc.png") no-repeat center;
    width: 100%;
    height: 82px; 
    position: absolute;
    top: 0;
    z-index: 1;
}
.top-logo .logo {
    width: 240px;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.icon-world-cup {
    width: 180px;
    position: absolute;
    top: 10%;
    left: 29%;
    transform: translateX(-29%);
    z-index: 2;
}

.header {
    position: relative;
}

.container {
    background: url("pc/icon_right_pc.png") no-repeat center;
    width: 100%;
    position: relative;
    margin-top: -13px;
}

.boxcenter {
    background: url("pc/bg_full_icon_pc.png") no-repeat center;
    width: 830px;
    margin: 0 auto;
    padding: 20px 40px;
    height: 770px;
}

.title {
    background: url("pc/bg_top_text_pc.png") no-repeat center;
    padding: 15px;
    border-radius: 12px;
    font-size: 15px;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
    font-family: 'Roboto';
    color: #575757;
}
.title::before {
    content: "";
    position: absolute;
    top: 0px;
    left: -20px;
    width: 50px;
    height: 50px;
    background: url("pc/icon_top_text_pc.png") no-repeat center / contain;
    z-index: 10;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    justify-items: center;
    width: 670px;
    margin: 0 auto;
}

.box {
    width: 200px;
    height: 200px;
    background: url(pc/bg_icon_pc.png);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.08);
    transition: 0.2s;
}

.box:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 25px rgba(0,0,0,0.15);
}

.icon {
    width: 95px;
    margin-bottom: 10px;
}
.box a{
    text-decoration: none;
}
.box p {
    font-size: 17px;
    font-weight: bold;
    color: #868686;
    font-family: 'Roboto';
    text-align: center;
}
.help-title {
    display: none;
}
@media screen and (max-width: 1670px) {
    .icon-world-cup {
        left: 25%;
        transform: translateX(-25%);
    }
}
@media screen and (max-width: 1350px) {
    .icon-world-cup {
        left: 18%;
        transform: translateX(-18%);
    }
}
@media screen and (max-width: 1200px) {
    .icon-world-cup {
        left: 4%;
        transform: translateX(-4%);
    }
}
@media screen and (max-width: 768px) {
    body {
        background: url(pc/bg_mb.png) no-repeat center top / cover;
        height: 125vh;
    }
    .top-logo {
        background: url("pc/top_2.png") no-repeat;
    }
    .icon-world-cup {
        display: none;
    }
    .boxcenter {
        width: 100%;
        padding: 0px 25px;
    }
    .title {
        margin-top: 25px;
    }
    .container {
        margin-top: 0px;
        background: url(pc/icon_bottom.png) no-repeat center;
        height: 115vh;
        background-size: cover;
    }
    .boxcenter .title {
        display: none;
    }
    .boxcenter {
        background: none;
        height: auto;
    }
    .help-title {
        display: block;
        height: 95px;
        background: url(pc/bg_top_text_pc.png) no-repeat center / 100% 100%;
        border-radius: 50px;
        display: flex;
        align-items: center;
        padding: 15px 30px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        margin: 20px 25px;
    }
    .help-title .icon {
        width: 55px;
        height: 55px;
        margin-right: 20px;
        margin-bottom: 0px;
    }
    .help-title h3 {
        text-align: center;
        font-family: 'Roboto', sans-serif;
        font-size: 20px;
        font-weight: 700;
        color: #575757;
    }
    .grid {
        grid-template-columns: repeat(2, 1fr);
        width: 525px;
        padding: 40px 20px;
        gap: 20px;
    }
    .box-all-icon {
        background: url(pc/bg_full_icon_pc.png) no-repeat center;
    }
    .box {
        width: 240px;
        height: 240px;
        background: url(pc/bg_icon.png);
    }
}
@media screen and (max-width: 678px) {
    .top-logo {
        background-size: contain;
        width: 100%;
    }
    .help-title h3 {
        font-size: 16px;
    }
    .box-logo {
        background-size: contain;
    }
    .help-title {
        margin: 20px 21px;
    }
    .help-title .icon {
        margin-right: 0px;
    }
    .box-logo {
        width: 255px;
        height: 100px;
        top: -22px;
        left: 50%;
        transform: translateX(-50%);
    }
    .top-logo .logo {
        width: 165px;
    }
}
@media screen and (max-width: 596px) {
    .grid {
        width: 100%;
    }
    .box {
        width: 100%;
        height: 170px;
    }
    .help-title {
        margin: 0px 21px 20px;
        padding: 15px 10px;
        height: 70px;
    }
    .help-title .icon {
        width: 35px;
        height: 35px;
    }
    .help-title h3 {
        font-size: 14px;
    }
    .box-logo {
        width: 206px;
    }
}
@media screen and (max-width: 414px) {
    .box-logo {
        width: 186px;
        top: -26px;
    }
    .top-logo .logo {
        width: 140px;
    }
}


