@charset "UTF-8";
.maintenance {
  width: 100%;
  padding: 50px;
  background: rgba(255, 0, 0, 0.2);
  border: 1px solid #990000;
  font-size: 1.5em;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 900;
}

* {
  box-sizing: border-box;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
main{
    margin-top:30px;
    font-size:1.2em;
}
main.index {
  display: grid;
  grid-gap: 50px;
  grid-template-columns: 1fr 1fr;
}
main.index h2 {
  font-size: 1.5em;
}

.contact {
  margin-top: 20px;
}

.keyvisual {
  margin-bottom: 30px;
}

.bbs_key {
  margin-top: 10px;
}

header.noid {
  grid-template-columns: 1fr 2fr;
}
header.noid h1 {
  margin-left: 10px;
  font-size: 1.5em;
  font-weight: 900;
}

.comment {
  margin-bottom: 20px;
}

header {
  display: grid;
  grid-template-columns: 48px 1fr 2fr;
  grid-gap: 5px;
  background: #1d9bf0;
  border-bottom: 4px solid #14659c;
  color: white;
  margin: 0;
  margin-bottom: 5px;
  border-radius: 4px;
}
header h1 {
  display: flex;
  align-items: center;
  font-size: 1em;
  height: 48px;
  line-height: 1em;
  margin: 5px;
  font-weight: normal;
}
header img {
  margin: 5px;
  width: 48px;
  border-radius: 50%;
  border: 2px solid white;
}
header .menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 58px;
  margin-right: 20px;
}
header .menu a {
  text-decoration: none;
  color: white;
}
header .menu a:hover {
  text-decoration: underline;
}
header .menu a::before {
  margin-left: 10px;
  content: "#";
}
header .menu a.login, header .menu a.logout {
  background: rgba(255, 255, 255, 0.6);
  color: black;
  font-weight: bold;
  border-radius: 4px;
  margin-left: 50px;
  padding: 5px 15px;
}
header .menu a.login::before, header .menu a.logout::before {
  content: "";
  margin-left: 0;
}
header .menu a.login:hover, header .menu a.logout:hover {
  background: #14659c;
  color: white;
  text-decoration: none;
}

nav.home {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 10px;
}
nav.home a {
  display: block;
  padding: 10px;
  background: rgba(29, 155, 240, 0.2);
  text-decoration: none;
  text-align: center;
  color: #14659c;
  font-weight: bold;
}
nav.home a.selected {
  background: #14659c;
  color: white;
}

.main {
  border: 2px solid #14659c;
  padding: 10px;
}

header div {
  text-align: right;
}

#app {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.user {
  padding: 10px;
  border: 1px #ccc solid;
  border-radius: 8px;
}

.bbs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 5px;
}
.bbs img {
  width: 100%;
}
.bbs .btn {
  grid-column-start: 1;
  grid-column-end: 4;
}
.bbs .btn.dis {
  background: #999;
  border: #666;
  color: white;
}
.bbs .btn.dis:hover {
  background: #999;
  border: #666;
  color: white;
}

.rtbox {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 5px;
}

.rt_user {
  padding: 10px;
  border: 1px #ccc solid;
  border-radius: 8px;
}

.new_rt_user {
  border: 2px #ccc dashed;
  border-radius: 8px;
  padding: 10px;
}

.btn {
  display: block;
  text-align: center;
  margin-bottom: 10px;
  font-weight: bold;
  text-decoration: none;
  padding: 10px;
  border-radius: 4px;
  background: rgba(29, 155, 240, 0.0666666667);
  color: #1d9bf0;
  border: 2px solid #1d9bf0;
  width: 100%;
}

a.btn:hover {
  background: #1d9bf0;
  color: white;
}

.user_icon img {
  width: 100%;
  border-radius: 50%;
}

.userbox {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 5px;
}

.manual {
  grid-column-start: 2;
  grid-column-end: 4;
  padding: 10px;
  border: 1px #ccc solid;
  border-radius: 8px;
}

.uinfo {
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-gap: 10px;
}

.screen_name {
  font-weight: bold;
  font-size: 1.1em;
}

.user dl,
.rt_user dl {
  display: grid;
  grid-template-columns: 120px 1fr;
}

.user dt,
.rt_user dt {
  padding: 0;
  margin: 0;
  text-align: right;
}

.user dd,
.rt_user dd {
  padding: 0;
  margin: 0;
}

.user_setting {
  display: grid;
  grid-gap: 5px;
  grid-template-columns: 1fr 1fr;
}
.user_setting input[type=text] {
  width: 100px;
  margin-right: 5px;
}
.user_setting textarea {
  width: 100%;
}

.tw_info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5px;
  margin-top: 20px;
}

.tw_info .card {
  display: block;
  border-radius: 4px;
}

.card img {
  width: 100%;
  max-height: 104px;
  -o-object-fit: contain;
     object-fit: contain;
  background: black;
}

h2 {
  font-size: 20px;
  margin-top: 50px;
  margin-bottom: 10px;
}

.offset-20 {
  margin-left: -50px;
}

h2:first-child {
  margin-top: 0;
}

.col2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5px;
}

h1 {
  margin: 0;
  font-weight: bold;
  font-size: 2em;
  text-align: center;
}

h1.title {
  text-align: center;
}

h1.title img {
  width: 100%;
}

.top_lead {
  margin-top: 30px;
  text-align: left;
  color: #657786;
}

.top_lead h2 {
  font-size: 24px;
  color: #1d9bf0;
}

.manual img {
  width: 400px;
  border: 1px solid black;
}

.index img {
  width: 100%;
  border: 1px solid black;
}

.pan2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5px;
}

.deactive {
  background: rgba(204, 204, 204, 0.2);
}

.ex_tw {
  font-size: 0.8em;
}

.ex_tw img {
  width: 100%;
}

.ex_tw .sub {
  color: #1d9bf0;
  text-align: center;
  font-weight: bold;
}

.retweeted_box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 5px;
}
.retweeted_box img {
  width: 100%;
  height: 223px;
  -o-object-fit: contain;
     object-fit: contain;
  background: black;
}
.retweeted_box button {
  width: 100%;
}
.retweeted_box .retweet {
  margin-bottom: 20px;
}
