/*----------------------------------------------------
 ▼共通デザイン（モバイル向け）
 -----------------------------------------------------*/




/*----------------------------------------------------
 ▼ヘッダー 、フッター、共通部品
 -----------------------------------------------------*/
 html, body {
  height: 100%;
  margin: 0;
}
 header {
  background: #081f2e;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10%;
}

.header-item {
  display: flex;
  justify-content: center;
  position: relative;
}

nav {
  position: absolute; 
  right: 5px;
}

.language_btn {
  background: #081f2e;
  color: #ffffff;
  border-style: solid;
  border-width: 1px;
  border-color: #ffffff;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  /* font-weight: bold; */
  border-radius: 8px;
  /* box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); */
  font-size: 16px;
  width: 100px;
  height: 42px;
}


p {
  margin: 0;
}

footer {
  height: 10%;
  background: #081f2e;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
}

@font-face {
	font-family: '851letrogo_007';
	src: url(../font/851letrogo_007.ttf);
}

@font-face {
	font-family: 'Meiryo';
  src: url(../font/MEIRYO.TTC);
}



/*----------------------------------------------------
 ▼スタート画面
 -----------------------------------------------------*/
.start {
  margin: 0;
  font-size: 13px;
  font-family: 'Meiryo', Verdana, sans-serif;
  color: #ffffff;
  background-color: #081f2e;
  text-align: center;
  height: 80%;
}

p.subtitle {
  font-size: 22px;
  font-family: 'Candal', sans-serif;
  color: #ab9761;
  padding-top: 32px;
}

h1.title {
  font-size: 30px;
  font-family: 'Yusei Magic', sans-serif;
  color: #ab9761;
  padding-bottom: 120px;
}


.common_btn {
  background: #081f2e;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  width: 120px;
  height: 46px;
}

.start_btn {
  background: #ab9761;
  color: #ffffff;
  margin: 60px auto 60px ;
}


.submit_btn {
  margin: 64px auto;
  /* width: 140px; */
  /* height: 56px; */
}

.common_btn:hover {
  opacity: 0.9;
}


/*----------------------------------------------------
 ▼入力画面
 -----------------------------------------------------*/

p.title {
  font-size: 24px;
  font-family: 'Yusei Magic', sans-serif;
  color: #ab9761;
  text-align: center;
}

/* ▼入力画面全体 */
.input,.result {
  margin: 0;
  font-size: 16px;
  font-family: 'Meiryo', Verdana, sans-serif;
  color: #b3b3b3;
  background-color: #ffffff;
  width: 80%;
  margin: 0 auto;
}

.input h1 {
  font-size: 24px;
  margin-top: 32px;
}

/* ▼項目名 */
.item {
  margin: 36px 0 0;
  font-size: 18px;
  font-weight: bold;
}


/* ▼名前＆レート＆コメント */
.name,.rate,.comment {
  width: calc(100% - 22px); 
  padding: 10px 10px; /*ボックスを大きくする*/
  border-radius: 6px; /*ボックス角の丸み*/
  border: 0.8px solid #b3b3b3; /*枠線*/
  font-size: 16px;
  white-space: normal;
}


/* ▼性別＆レーン＆ボイスチャット ※スタイル同じ */
.gendar input,
.lane input,
.voicechat_tool input {
  display: none;
}

.gendar label,
.lane label,
.voicechat_tool label {
  color: #b3b3b3;
  border: 1px solid #b3b3b3;
  text-align: center;
  display: inline-block;
  padding: 8px 18px;
  border-radius: 20px;
  margin-bottom: 4px;
}

.gendar label:hover,
.lane label:hover,
.voicechat_tool label:hover {
  cursor: pointer;
}

.gendar input:checked + label,
.lane input:checked + label,
.voicechat_tool input:checked + label {
  color: #ffffff;
  border: 1px solid #081f2e;
  background-color: #081f2e;
}


/* ▼レート */
.rate {
  width: 100%; 
  /* width意外は.nameと同じ */
}


/* ▼注釈 */
.notes {
  font-size: 8px;
}

/* ▼チャンピョン＆カードデザイン */
.champion li,
.carddesign li  {
  position: relative; /* 親要素li起点に子要素を配置する */
  list-style: none;
  display: inline-block;
  width: 100px;
  height: 96px;
}

.champion li input[type="checkbox"],
.carddesign li input[type="radio"] {
  display:none;
}

.champion li label,
.carddesign li label {
  display: inline-block;
  cursor:pointer;
  position: absolute;
  bottom: 0px;
  font-size: 8px;
}


.champion img,
.carddesign img {
  width: 80px;
  height: 80px;
  position: absolute;
  cursor:pointer;
  bottom: 14px;
  opacity: 0.5;
}

.champion img:hover,
.carddesign img:hover {
  opacity: 1;
}

.champion input[type="checkbox"]:checked + label,
.carddesign input[type="radio"]:checked + label {
  color: #ffffff;
  background-color: #081f2e;
  font-weight: bold;
}

.champion input[type="checkbox"]:checked + label img,
.carddesign input[type="radio"]:checked + label img {
  opacity: 1;
}



/* ▼プレイスタイル */

.playstyle {
 text-align: center;
 width: 100%;
 margin-bottom: 80px;
}

input[type="range"] {
  width: 80%;
  outline: 0;
  border: 0;
  border-radius: 50px;
}

.range_min,.range_max {
  float: left;
  font-size: 12px;
  font-weight: bold;
  padding-top: 10px;
}

.range_max {
  float: right;
}

input[type=range] {
  -webkit-appearance:none;
  background:#b3b3b3;
  height:1px;
  width: 90%;
  border-radius:8px;
}
input[type=range]::-webkit-slider-thumb{
  -webkit-appearance:none;
  background:#b3b3b3;
  height:20px;
  width:20px;
  border-radius:50%;
}
input[type=range]::-ms-tooltip{
  display:none;
}
input[type=range]::-moz-range-track{
  height:0;
}
input[type=range]::-moz-range-thumb{
  background:#b3b3b3;
  height:20px;
  width:20px;
  border:none;
  border-radius:50%;
}



/* ▼プレイ時間 */

.box1 {
  width: 100%;
  padding-bottom: 12px;
}

.column1 { 
  display: inline-block;
  padding-right: 10px;
  height: 100%;
  vertical-align: top;
}
.column2 { 
  display: inline-block;
  width: 80%;
  height: 100%;
  vertical-align: top;
}


div[class^="block"] { /* クラス名の前方一致 */
  display: block;
  /* background:blue; */
  /* width: 50%; */
  height: 35px;
  /* margin: auto 0; */
  display: flex;
  align-items: center;
}

div[class^="block"] label {
  vertical-align: middle;
}

input[type="radio" i] {
  margin: 3px 3px 3px 7px;
  width: 1.4em;
  height: 1.4em;
  border: 1px solid #b3b3b3;
  vertical-align: text-bottom;
}

.hours, .minutes {
  width: 44px;
  height: 32px;
  padding: 2px 2px; /* ボックスを大きくする */
  margin: 0 6px;
  border-radius: 6px;
  border: 1px solid #b3b3b3; /*枠線*/
  font-size: 16px;
}


/* ▼ボイスチャット可否 */
.voicechat_tool span {
  line-height: 5px;
}



/* ▼コメント（名前＆レートとの違いだけ） */
.comment {
  height: 80px;
}

/* ▼カードデザイン（チャンピオンとの違いだけ） */
.carddesign li  {
  width: 150px;
  height: 150px;
}

.carddesign li label {
  bottom: 0px;
  font-size: 12px;
}

.carddesign img {
  width: 140px;
  height: 140px;
  bottom: 14px;
}


/* -------------------------完成画面------------------------------ */
.result {
  height: 80%;
}

.result p {
  padding: 20px 0 0 0; /* 上 右 下 左; */
}

.completed_image {
  margin-top: 10px;
  max-width: 100%;
  max-height: 400px;
}





/*----------------------------------------------------
▼タブレット向けデザイン
 -----------------------------------------------------*/
 @media screen and (min-width: 768px) {


}

/*----------------------------------------------------
▼PC向けデザイン
 -----------------------------------------------------*/
 @media screen and (min-width: 1024px) {
}


