/* -----------------------------------------
    全体コンテナ
----------------------------------------- */
.line-register-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px auto;
}
@media screen and (max-width: 768px) {
    .line-register-container {
        margin: 50px 20px 80px 20px;
    }
}

/* -----------------------------------------
    ヘッダー部分
----------------------------------------- */
.line-register-header-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.line-register-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
.line-note-pencil-icon {
    width: 50px;
    height: 47px;
}
.line-header-text {
    font-size: 20px;
    font-weight: bold;
}
.line-header-description {
    font-size: 14.2px;
    line-height: 1.3;
    margin-top: 5px;
}

@media screen and (max-width: 768px) {
    .line-header-text {
        font-size: 20px;
    }
    .line-header-description {
        font-size: 12px;
        margin-top: 0px;
    }
}

/* -----------------------------------------
    登録ボタンセクション
----------------------------------------- */
.line-register-options {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}
.line-entry-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 370px;
    height: 60px;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    position: relative;
    padding-left: 50px;
}
.line-entry-btn::after {
    content: "▶";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #fff;
}
.line-entry-btn:hover {
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.1);
}
.line-entry-btn:active {
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.3);
}
.line-btn-text {
    color: #FFFFFF;
    font-weight: bold;
    font-size: 18px;
}

@media screen and (max-width: 768px) {
    .line-register-options {
        margin-top: 20px;
    }
    .line-entry-btn {
        max-width: 280px;
        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;
}

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

/* -----------------------------------------
    メールボタン
----------------------------------------- */
.mail-btn {
    background-color: #8BCEDA;
}
.mail-icon {
    position: absolute;
    left: 18px;
    width: 25px;
    height: 18px;
}
.mail-btn::before {
    content: "";
    position: absolute;
    left: 60px;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #00000012;
}

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