@charset"UTF-8";
/* 基本色 */
:root {
  --main-color: #5D9AB2;
  --accent-color: #BF6A7A;
  --dark-main-color: #2B5566;
  --text-bright-color: #ddd;
}

/* 基本設定: ページ全体 */
body {
  background-color: #323232;
  margin: 0;
  font-family: 'メイリオ',
    'Hiragino Kaku Gothic Pro',
    sans-serif;  
}

/* コンテンツ: toplink */
.toplink {
  display: flex;
  align-item: center;
  justify-content: left;
  height: 0em;
  color: #fff;
  color: var( --text-bright-color);
  text-align: center;
}

.toplink a {  /* リンクのボタンの形状など */
  display: inline-block;
  margin-top: 1px;
  padding: 1px 15px;
  border: solid 1px currentColor;
  border-radius: 6px;
  background-color: #BF8A8A;
  background-color: var(--accent-color);
  color: #ddd;
  color: var(--text-bright-color);
  font-size: 9px;
  text-decoration: none;
}

.toplink a:hover{
  background-image: linear-gradient(
    rgba(255,255,255,0.2),
    rgba(255,255,255,0.2)
  );
}

/* コンテンツ: titlee */
.title {
  display: flex;
  margin-top: 0px;
  align-item: center;
  justify-content: center;
  height: 1.3em;
  color: #fff;
  color: var( --text-bright-color);
  font-size: 20px;
  text-align: center;
}

/* コンテンツ: input */
.input {
  display: flex;
  align-item: center;
  justify-content: left;
  height: 1.3em;
  color: #fff;
  color: var( --text-bright-color);
  font-size: 20px;
  text-align: center;
}

.input #skewdate {
  text-align: right;
  font-size: 16px;
  padding: 0 10px;
  width: 7em;
  height: 20pt;
  border: 0;
}
.input #hourselect{
  font-size: 16px;
  width: 4em;
}
.input #stationselect{
  font-size: 16px;
  width: 6em;
}
.input button {  /* リンクのボタンの形状など */
  display: inline-block;
  margin-top: 1px;
  padding: 1px 15px;
  border: solid 2px currentColor;
  border-radius: 6px;
  background-color: #BF6A7A;
  background-color: var(--accent-color);
  color: #ddd;
  color: var(--text-bright-color);
  font-size: 14px;
  text-decoration: none;
}

.input button:hover{
    background-image: linear-gradient(
	rgba(255,255,255,0.2),
	rgba(255,255,255,0.2)
	);
}

.image_area img{
  margin-top: 3px;
  padding: 5px 0px;
}
