/* style.css以外のcssを記述 */
.title {
  font-size: 2em;
  text-align: center;
  font-weight: none;
  line-height: 1.1;
  color: #595757;
  margin: 0 0 30px;
}
.info {
  width: 960px;
  margin: 0 auto;
  padding: 20px 0;
}
.info dt, .info dd {
  font-size: 1.06em;
  line-height: 1.4;
}
.info dt {
  float: left;
  text-indent: 15px;
}
.info dd {
  margin-left: 200px;
  margin-bottom: 50px;
  position: relative;
}
.info dd::after {
  display: block;
  position: absolute;
  width: 960px;
  height: 0;
  bottom: -24px;
  left: -200px;
  content: "";
  border-bottom: 0 none;
  border-top: 1px dotted #0075c1;
}
.info dd a {
  text-decoration: none;
}
.info dd a::after{
  display: block;
  position: absolute;
  width: 30px;
  height: 100%;
  top: 0;
  right: 10px;
  content: "";
  background: url(/images/arrow.svg) center center no-repeat;
  background-size: 11px 18px;
}

table.support {
  border: 1px solid black;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  margin: 0 auto;
  font-size: 1rem;
}
table.support th{
  background-color: #e8e8e8;
  border: 1px solid black;
  padding: 0.5em 1em;
}
table.support th:first-child {
  width: 15em;
}
table.support td{
  background-color: #ffffff;
  padding: 0.3em 1em;
  border: 1px solid black;
}

.method_anchor {
  margin: 0 20px;
}
.method_anchor li a {
  line-height: 40px;
  padding: 0 1em;
  font-size: 1.25em;
  text-align: left;
  display: block;
  color: #fff;
  background-color: #9FA1A3;
  text-decoration: none;
  margin: 2px;
}
.method {
  padding: 1em 20px 0;
}
.method > h3 {
  margin-left:0;
}
.method img {
  display: block;
  margin: 10px 20px;
}
a.download {
  font-size: 1.2rem;
  display: inline-block;
  height: 40px;
  border-radius: 20px;
  line-height: 40px;
  background-color:Orange;
  color: #fff;
  padding: 0 1em;
  text-decoration: none;
}
.caution {
  color: red;
}

@media screen and (max-width: 767px) {
  .title {
    font-size: 1.31rem;
    margin: 0 0 13px;
  }
  .info dt {
    float: none;
    text-align:left;
    font-size: 0.75em;
    text-indent: 1em;
    padding:0;
    padding-top: 10px;
  }
  .info {
    width: auto;
    margin: 0;
  }
  .info dt {
    float:none;
    text-indent: 0;
    font-size: 0.75em;
    line-height: 1.4;
    padding: 0 8px;
    }
  .info dd {
    font-size: 0.75em;
    margin-left: 0;
    margin-bottom: 15px;
    padding: 0 35px 15px 8px;
    background-image: none;
    border-bottom:1px dotted #0075c1;
  }
  .info dd a::after {
    top: -12px;//dtの高さの半分ぐらい上げる
  }
  .info dd::after {
    display: none;
  }

  table.support{
    font-size: 0.8rem;
  }
  table.support th:first-child {
    width: auto;
  }
  .method_anchor li a {
    font-size: 0.81em;
  }
}