/* -----------------------------------------
LINE認証CSS
----------------------------------------- */
.line-entry-box {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 25px;
}

.line-entry-button-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 70px;
    width: 100%;
    gap: 25px;
}

.line-header-description {
    font-size: 14px;
    line-height: 1.4;
}

@media screen and (max-width: 768px) {
    .line-entry-button-wrap {
        margin-left: 0;
    }
    .line-header-description {
        font-size: 12px;
        margin-top: 10px;
    }
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 60px;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    position: relative;
    padding-left: 50px;
}
.btn::after {
    content: "▶";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #fff;
}
.line-btn-text {
    color: #FFFFFF;
    font-weight: bold;
    font-size: 18px;
}

@media screen and (max-width: 768px) {
    .btn {
        max-width: 260px;
        height: 50px;
    }
    .line-btn-text {
        font-size: 16px;
    }
}

/* -----------------------------------------
LINEボタン
----------------------------------------- */
.line-btn {
    background-color: #06C755;
}
.line-icon {
    position: absolute;
    left: 10px;
    width: 43px;
    height: 40px;
}
.line-btn::before {
    content: "";
    position: absolute;
    left: 60px;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #06B74E;
}

.line-btn.line-btn--disabled {
    background-color: #c9c9c9;
}
.line-btn.line-btn--disabled::before {
    background-color: #acacac;
}

@media screen and (max-width: 768px) {
    .line-icon {
        width: 38px;
        height: 35px;
    }
}

/* -----------------------------------------
    ORテキスト
----------------------------------------- */
.line-or-text {
    font-size: 20px;
}

@media screen and (max-width: 768px) {
    .line-or-text {
        font-size: 18px;
    }
}

/* -----------------------------------------
    注釈テキスト
----------------------------------------- */
.line-annotation-text {
    display: flex;
    justify-content: center;
    font-size: 14px;
    margin-top: 2px;
}
