/* ライン */
.keitai-line {
    border: none;
    border-top: 1px solid #999;
    margin: 18px 0;
}

/* バッテリーとか */
.mobile-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.battery {
    width: 42px;
    height: auto;
}

.signal {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 20px;
}

.signal span {
    display: block;
    width: 3px;
    background: #000;
}

.signal span:nth-child(1) { height: 5px; }
.signal span:nth-child(2) { height: 9px; }
.signal span:nth-child(3) { height: 13px; }
.signal span:nth-child(4) { height: 17px; }

/* 時間 */
.mobile-time {
    text-align: center;
    font-size: 12px;
    margin-bottom: 16px;
    font-family: 'dot-gothic-16', sans-serif;
}

/* タイトル */
.mobile-title {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    font-family: 'dot-gothic-16', sans-serif;
    margin: 10px 0;
    letter-spacing: 0.15em;
}

/* THANKSボックス */
.mobile-thanks-box {
    text-align: center;
    padding: 20px 10px;
}

.mobile-thanks-box p {
    margin: 12px 0;
    font-family: 'dot-gothic-16', sans-serif;

    line-height: 1.8;
}

.mobile-thanks-icon {
    width: 140px;
    display: block;
    margin: 20px auto 10px;
}

.mobile-cat-text {
    text-align: center;
    font-size: 14px;
    font-family: 'dot-gothic-16', sans-serif;
    margin-bottom: 10px;
}

/* メニュー */
.keitai-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.keitai-menu a,
.pc-view-link {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-family: 'dot-gothic-16', sans-serif;
}

.keitai-menu a:hover,
.pc-view-link:hover {
    text-decoration: underline;
}