@charset "utf-8";
/* CSS Document */

/* reset
----------------------------------*/
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, figure, figcaption {
  margin: 0;
  padding: 0;
}
address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}
ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption, th {
  text-align: left;
}
q:before, q:after {
  content: '';
}
object, embed {
  vertical-align: top;
}
legend {
  display: none;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
}
img, abbr, acronym, fieldset {
  border: 0;
}

/* 基本設定
----------------------------------*/
html {
  font-size: 18px;
}
body {
  line-height: 1.9;
  font: 1rem/1.9 Arial, Verdana, 'Noto Sans JP' , メイリオ, 游ゴシック, Yu Gothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', メイリオ, Meiryo, sans-serif;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  color: #231815;
  background: #fff;
}
a {
  color: #0066ff;
  text-decoration: none;
}
a:hover, .active {
  text-decoration: underline;
  cursor: pointer;
  cursor: hand;
}
a:active, a:focus, input:active, input:focus {
  outline: 0;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* header */
header {
  padding: 50px 0 46px;
  position: relative;
}
header .inner {
  width: 100%;
  max-width: 686px;
  margin: 0 auto;
}
.header_logo {
  width: 100%;
  display: inline-block;
  max-width: 430px;
  margin: 0 0 0 50px;
}
.btn-link {
  color: #1a96d5;
  border: 1px solid #1a96d5;
  font-size: 0.888rem;
  display: inline-block;
  text-decoration: none;
  margin: 17px 0 0 42px;
  padding: 2px 16px 1px 16px;
  vertical-align: top;
}
.btn-link:after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 14px;
  vertical-align: top;
  margin: 8px 0 0 6px;
  background-image: url("../images/link.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
}
header:before {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  position: absolute;
  top: 0;
  background: -moz-linear-gradient(left, #1a96d5 50%, #1a96d5, #231815 50%, #231815);
  background: -webkit-linear-gradient(left, #1a96d5 50%, #1a96d5, #231815 50%, #231815);
  background: linear-gradient(to right, #1a96d5 50%, #1a96d5, #231815 50%, #231815);
}

/* box */
.box {
  width: 100%;
  max-width: calc(100% - 136px);
  padding: 50px 0 0 0;
  margin: 0 auto 50px;
  border-top: 2px solid #1a96d5;
  position: relative;
}
.box .inner {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.keronii-3r {
  max-width: 668px;
  margin: 0 auto;
}

/* box title */
.box .title {
  font-size: 1.333rem;
  text-align: center;
  margin-top: -73px;
  position: absolute;
  width: 100%;
}
.box .title span {
  color: #1a96d5;
  background: #fff;
  border: 2px solid #1a96d5;
  border-radius: 30px;
  padding: 8px 40px;
  letter-spacing: 3px;
  font-weight: 600;
}
.box .title-blue span {
  background: #1a96d5;
  color: #fff;
  font-weight: 400;
}

/* box table */
.box table {
  margin: 15px auto 0;
}
.box th {
  font-size: 1.333rem;
  color: #1a96d5;
  vertical-align: middle;
  padding: 10px 15px 10px 0;
  line-height: 1.4;
  font-weight: normal;
  width: 100px;
}
.justify-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;  
}
.box td {
  padding: 10px 0 10px 40px;
}
.box td strong {
  font-weight: bold;
  font-size: 1.444rem;
}

/* actually */
.actually_list {
  counter-reset: actually;
  width: 100%;
  max-width: 510px;
  margin: 23px auto 20px;
}
.actually_list li {
  padding: 0 0 0 55px;
  position: relative;
  margin: 0 0 40px 0;
}
.actually_list li strong {
  font-weight: bold;
  font-size: 1.444rem;
  line-height: 1.2;
  margin: 0 0 0 8px;
}

.actually_list li:last-child {
  margin: 0 0 20px 0;  
}
.actually_number {
  background: #1a96d5;
  color: #fff;
  font-size: 1.333rem;
  line-height: 1;
  padding: 5px 0;
  width: 35px;
  text-align: center;
  border-radius: 40px;
  position: absolute;
  top: -3px;
  left: 0;
}
.actually_number:before {
  counter-increment: actually;
  content: counter(actually);
}

/* footer */
footer {
  background: #1a96d5;
  color: #fff;
}
.copyright {
  text-align: center;
  padding: 10px 0; 
}
.copyright small {
  font-size: 1rem;
  font-weight: 100;
  font-family: Calibri , 'Noto Sans JP';
}

/* スマートフォン用
----------------------------------*/

@media only screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  /* header */
  header {
    padding: 23px 0 26px;
  }
  header .inner {
    max-width: 348px;
  }
  .header_logo {
    max-width: 215px;
    margin: 0 0 0 5px;
  }
  header:before {
    height: 4px;
  }
  .btn-link {
    margin: 5px 0 0 20px;
    padding: 2px 7px 1px 7px;
  }
  .btn-link:after {
    width: 15px;
    height: 14px;
    margin: 4px 0 0 6px;
  }
  
  /* box */
  .box {
    width: 100%;
    max-width: calc(100% - 40px);
    padding: 25px 0 0 0;
    margin: 0 auto 35px;
  }
  
  /* box title */
  .box .title {
    font-size: 1rem;
    margin-top: -38px;
  }
  .box .title span {
    padding: 4px 20px;
  }
  
  /* box table */
  .box th {
    font-size: 1.2rem;
    padding: 10px 18px 10px 0;
    width: 72px;
  }
  .box td {
    padding: 10px 0 10px 10px;
  }
  .box td strong {
    font-size: 1.333rem;
  }
  
  /* actually */
  .actually_list li {
    padding: 0 0 0 40px;
    margin: 0 0 25px 0;
  }
  .actually_list li strong {
    font-size: 1.333rem;
    margin: 0 0 0 4px;
  }
  .actually_number {
    font-size: 1.2rem;
    width: 26px;
  }
  /* footer */
  .copyright {
    padding: 6px 0; 
  }
}


/* スマートフォン 最小サイズ用
----------------------------------*/

@media only screen and (max-width: 345px) {
  header .inner {
    max-width: 308px;
  }
  .header_logo {
    max-width: 188px;
  }
  .btn-link {
    margin: 2px 0 0 10px;
  }
}

@media only screen and (max-width: 321px) {
  /* box */
  .box {
    max-width: calc(100% - 30px);
  }

}

