header {
  background: #000000;
  text-align: center;
  color: white;
  padding: 10px;
}
header p{
  margin: auto 0;
}
.title__font {
  font-style: italic;
}

.wrapper {
  min-height: 100vh;
  position: relative;
  padding-bottom: 250px;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .wrapper{
    padding-bottom: 360px;
  }
}

.div__title{
  text-align: center;
  padding-top: 40px;
  padding-bottom: 10px;
}
#image_coding{
  position: relative;
  display: inline-block;
  padding: 0 55px;
  margin-left: auto;
  margin-right: auto;
}
#image_coding:before, #image_coding:after{
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: black;
}
#image_coding:before{
  left: 0;
}
#image_coding:after{
  right: 0;
}

.content{
  margin: auto;
  padding: 20px 0;
  text-align: center;
}
.content img{
  width: 100%;
}
@media (min-width: 767px) {
  .content img{
    width: 50%;
  }
}
hr{
  border: none;
  border-top: 1.2px dashed #0092c4;
  margin: 3px 0;
  size: 1px;
}

table{
  border-collapse: collapse;
  margin: auto;
  height: 100%;
}
@media (max-width: 319px) {
  .result_table1 table{
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767px) {
  .result_table2 table{
    display: block;
    overflow-x: scroll;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}
caption{
  caption-side: top;
  text-align: center;
}
th, td{
  border: 1px solid #b7b7b7;
  padding-left: 10px;
  padding-right: 10px;
}
thead{
  color: white;
}
th{
  background-color: #0092c4
}
tr:nth-child(2n){
  background: #f5fffa;
}
table .best{
  font-weight: bold;
}

.result_image{
  text-align: center;
}
.comparison img{
  width: 80%;
}
.comparison p{
  text-align: center;
}
.lang_aria{
  text-align: center;
  padding-top: 20px;
}

/* === ラジオボタンは非表示 ================== */
#change_lang input[type="radio"]{
 display    : none;
}

/* === 各ラジオボタンのラベルをボタンに変更 == */
#change_lang label{
 display    : inline-block;
 border     : 1px solid #ccc;
 box-shadow : 2px 2px #999;
 padding    : 2px 6px;
}

/* === 選択されている言語のラベル色を変更 ==== */
#change_lang input[type="radio"]:checked + label {
 background : #ffa64d;
}

footer {
  width: 100%;
  position: absolute;
  bottom: 0;
}
