

/* モバイル版 */
.mobile-home {

    padding: 10px;
    color: #000000;
    min-height: 100vh;
    font-family: "dot-gothic-16", monospace;
}

/* バッテリーとか */
.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: #000000;
}

.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-title {
    text-align: center;
    font-size: 22px;
    font-weight: normal;
    margin: 20px 0;
    font-family: 'Apricot', sans-serif;
}

/* メニュー */
.keitai-menu {
    margin-top: 20px;
}
/* メニューの文字リンク */
.keitai-menu a {
    display: block;
    color: #0000ee;
    text-decoration: underline;
    margin-bottom: 8px;
    font-size: 15px;
}
/* ライン */
.keitai-line {
    border: none;
    border-top: 1px solid #999;
    margin: 18px 0;
}

/* pcで見る */
.pc-view-link {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #0000ee;
    text-decoration: underline;
    font-size: 15px;
}


/* 時計 */
.mobile-time {
    text-align: center;
    font-size: 13px;
    margin: 4px 0 18px;
}

.mobile-contact-box {
  padding: 10px;
  font-size: 13px;
  line-height: 1.7;
}

.mobile-contact-text {
  margin: 0 0 10px;
}

.mobile-contact-form label {
  display: block;
  margin-bottom: 10px;
}

.mobile-contact-form .name-input,
.mobile-contact-form .email-input,
.mobile-contact-form .message-input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #777;
  background: #fff;
  font-family: inherit;
  font-size: 13px;
  padding: 4px;
}

.mobile-contact-form .send-btn {
  display: block;
  margin: 14px auto 0;
  padding: 4px 16px;
  font-size: 13px;
  font-family: inherit;
  background: #eee;
  border: 1px solid #777;
}

.mobile-textarea {
  height: 100px;
  resize: vertical;
}

.mobile-send-btn {
  display: block;
  margin: 12px auto 0;
  padding: 4px 18px;
  border: 2px solid #333;
  background: #eee;
  color: #000;
  font-family: inherit;
  font-size: 13px;
  box-shadow: 2px 2px 0 #999;
}