@charset "utf-8";

:root {
/*  --base-color : darkcyan;*/
/*  --emphasis-color: darkcyan;*/
  --base-color : #394862;
  --emphasis-color: #394862;
  --emphasis-text-color: white;
  --bg-color: #394862;
  --bg-color2: #231f20;
  --ets-color: white;
}

/* ページ全体でのテキスト範囲選択を無効化 */
body {
  /* 主要なブラウザすべてに対応するためベンダープレフィックスを記述 */
  -webkit-user-select: none; /* Chrome, Safari, Edge (Blink) */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE/Edge (Trident/Legacy) */
  user-select: none;         /* 標準 */
}

/* 4. textarea と input 要素内での選択のみを有効化 */
/* !important で body に指定した none を上書きします */
textarea, input {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}




* {
/*	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif, "Open Sans", Arial;*/
	font-family: "Open Sans", Arial;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
	margin: 0;
	padding: 0;
}
b {
  font-weight: 900;
}
html {
}
img {
	vertical-align: top;
}
span.bold-text {
	font-weight: bold;
}
body {
  background-color: var(--bg-color2);
  min-height: 100%;
}
#over-container {
  background-color: #ffffff;
  width: 1024px;
  height: 764px;
  margin: 0px auto 0 auto;
}
.t-center {
	text-align: center;
}
input:focus, 
textarea:focus {
    outline: none;
}



/* Header&Footer */
#main-header {
  header {
    width: 1024px;
    height: 50px;
    margin: 0 auto;
    background-color: var(--base-color);

  }
  header #main-logo {
    float: left;
    margin-top: 10px;
  }
  header #main-logo img {
    margin-left: 5px;
    height: 30px;
    opacity: 0.8;
  }
  header #control-area {
    float: right;
    margin-top: 12px;
    margin-right: 8px;
  }
  header #control-area a {
    background-color:  var(--base-color);
    padding: 10px 16px;
    border-radius: 10px;
    border: solid 1px white;
    text-decoration: none;
  /*	margin-top: 5px;*/
  /*	margin-right: 15px;*/
    color: white;
    font-size: 80%;
    font-weight: 700;
    cursor: pointer;
  }
  header #control-area a.back::before {
    content: "<";
    padding-right: 1ch;
    font-weight: bold;
  }
  header #control-area a.next::after {
    content: ">";
    padding-left: 1ch;
    font-weight: bold;
  }
  header #control-area a.white {
    background-color: white;
    border: solid 1px  var(--base-color);
    color:  var(--base-color);
  }
  header #control-area a.disable {
    background-color: #666666;
    color: #999999;
  }
  #section-title {
    background-color: white;
    height:30px;
  }
  #section-area {
    float: left;
    margin: 2px auto auto 15px;
    font-weight: bold;
  }
  #hide-timer {
    float: right;
    margin: 2px 15px auto auto;
    font-size: 14px;
    line-height: 1.5rem;
    color:  var(--base-color);
    font-weight: bold;
    cursor: pointer;
  }
  #timer-area {
    float: right;
    margin: 2px 15px auto auto;
    font-weight: bold;
  }
}


footer {
	width: 1024px;
	margin: 0 auto;
	padding-top: 5px;
	color: var(--ets-color);
	text-align: center;
	font-size: 12px;
}




/* main */
#main-container {
	width: 1024px;
	height: 686px;
	margin: 0 auto;
	box-sizing: border-box;
	border:solid 1px black;

  /* Speaking */
  .speaking-title {
    clear: both;
    width: 90%;
    margin: 0 auto;
    padding: 20px 0 15px 0;
    font-weight: bold;
    font-size: 22px;
    text-align: center;
  }
  .speaking-caution {
    clear: both;
    width: 90%;
    margin: 0 auto;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
  }
  .speaking-image {
    clear: both;
    margin-top: 2rem;
    text-align: center;
  }
  .speaking-image img {
    border: solid 2px gray;
  }
  .timer-area {
    text-align: center;
    margin-top: 5rem;
  }
  .timer-area .timer-title {
    text-align: center;
    width: 200px;
    margin: 0 auto;
    border: solid 1px gray;
    border-radius: 16px 16px 0 0;
    background-color: gray;
    color: white;
    padding: 8px 16px;
  }
  .timer-area .timer-view {
    text-align: center;
    width: 200px;
    margin: 0 auto;
    border: solid 1px gray;
    border-radius: 0 0 16px 16px;
    padding: 8px 16px;
    font-size: 120%;
    font-weight: bold;
  }
  #nextText {
    text-align: center;
    margin-top: 4em;
  }






  .start-title {
    font-size: 24px;
    line-height: 30px;
    border-bottom: solid 1px #808080;
    width: 80%;
    margin: 30px auto;
    padding: 0.25em;
  }
  .start-text {
    width: 80%;
    margin: 30px auto;
  }
  .start-table {
    width: 80%;
    margin: 30px auto;
  }
  .start-table table {
    border: solid 1px #666666;
    border-collapse: collapse;
  }
  .start-table th {
    border: solid 1px #666666;
    background-color: var(--emphasis-color);
    padding: 6px 12px;
    text-align: left;
    color: var(--emphasis-text-color);
  }
  .start-table td {
    border: solid 1px #666666;
    padding: 6px 12px;
  }














}

