*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

.layout-main {
    max-width: 539px;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    margin: 0 auto;
    background-image: url(../images/background.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}
.main {
    width: 100%;
    height: 100%;
    padding: 40px 20px;
}
.main-section {
    width: 100%;
    height: 100%;
    border: 1px solid red;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}
.main-link {
    position: absolute;
    bottom: -11px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-bg{
    position: relative;
    width: 95%;
    height: 95%;
    object-fit: contain;
    object-position: center;
    margin-bottom: 10px;
}

.main-btn {
    width:60%;
    object-fit: contain;
    cursor: pointer;
}

.sidebar {
    position: fixed;
    top: 40%;
    border-radius: 10px;
    padding: 12px;
    z-index: 1;
    background-color: #fff;
    box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
}

.sidebar .service-icon {
    width: 32px;
}


.sidebar .service-name {
    font-family: Noto Sans SC;
    font-size: 12px;
    font-weight: 600;
}

.sidebar .side-bottom, .sidebar .side-top {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar .side-top {
    text-decoration: none;
    color: #000;
}
