@charset "UTF-8";
/* CSS Document */

/*-----------------
common
-----------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 0
}
html {
  font-size: 62.5%;
}
body {
  line-height: 1.75;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
a {
  color: #0c4fab;
  text-decoration: none;
  transition: all .1s ease-out;
}
a:hover {
  opacity:0.7;
}
img {
  vertical-align: middle;
  max-width: 100%;
  height:auto;
}
ul,ol,li {
  list-style:none;
}

/*-----------------
header
-----------------*/
#header_summary {
  max-width: calc(1100px + 4em);
  margin: 0 auto;
  padding: 0.5em 2em;
}
#header_summary img {
  display: block;
}
.title {
  padding: 1em 2em;
  color: #fff;
  background-color: #0c4fab;
}
.title h1 {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: normal;
}

/*-----------------
 topic_path
-----------------*/
.topic_path {
  padding: 1em 2em;
}
.topic_path ul {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.topic_path li {
  position: relative;
  padding: 0 2em 0 0 ;
  font-size: 12px;
  font-size: 1.2rem;
}
.topic_path li:after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  right: 1em;
  width: 4px;
  height: 4px;
  border-top: 1px solid #003567;
  border-right: 1px solid #003567;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.topic_path li:last-child:after {
  display: none;
}

/*-----------------
article
-----------------*/
#container {
  background-color: #f3f3f3;
}
article {
  margin: 0 auto;
  max-width: calc(1100px + 4em);
  padding: 0 2em;
  font-size: 16px;
  font-size: 1.6rem;
}
h2 {
  background-color: #0c4fab;
  font-size: 20px;
  font-size: 2.0rem;
  color: #fff;
  border-radius: 5px;
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: left;
}
h2 i {
  background-image: url(images/icon.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 40px;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 1em;
}
.caution {
  color: #f00;
}
article>div {
  background-color: #fff;
  border-radius: 5px;
  padding: 1em 3em 3em;
  margin: 1em 0 0;
}
h3 {
  background-color: #d3e5ed;
  font-size: 20px;
  font-size: 2.0rem;
  color: #0c4fab;
  border-radius: 5px;
  padding: .8em 1em;
  margin: 0 0 1em;
  display: flex;
  align-items: center;
  justify-content: left;
  margin-top: 2em;
  flex-wrap: wrap;
}
h3 span {
  font-size: 14px;
  font-size: 1.4rem;
  background-color: #fff;
  padding: .3em .5em;
  border-radius: 5px;
  margin-right: .5em;
}
h3.h3 {
  margin-top: 3em;
}
.shoyuken_list {
  margin: 1em 0;
  padding: 2em;
  border: 1px solid #0c4fab;
}
section {
  background-color: #f3f3f3;
  border-radius: 5px;
  padding: 3em;
  margin-top: 2em;
}
section h4 {
  margin-bottom: 1em;
  padding-bottom: .5em;
  border-bottom: 1px solid #666;
}
section span {
  background-color: #808080;
  padding: .2em 1em;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  border-radius: 5px;
  margin: .5em 1em .5em 0;
}
.link_pdf {
  background-color: #0c4fab;
  color: #fff;
  padding: ;
  display: inline-block;
  padding: .2em 1em;
  border-radius: 5px;
}
.text-red {
  color: #e50012;
}
ul.graphlist {
  display: flex;
  justify-content: space-between;
  margin-top: 2em;
  flex-wrap: wrap;
}
ul.graphlist li {
  width: 49%;
}
.gensoku {
  margin: 2em 0;
  border: 5px solid #eee;
  padding: 2em;
  font-size: 14px;
  font-size: 1.4rem;
}

.text-right{
	text-align: right;
}

/* table */
table {
  border-collapse: collapse;
  border: 1px solid rgb(140 140 140);
}
caption {
  caption-side: bottom;
  text-align: right;
  font-size: 14px;
  font-size: 1.4rem;
}
thead {
  background-color: #d3e5ed;
}
th,
td {
  border: 1px solid rgb(160 160 160);
  padding: .5em 1em;
}
td:last-of-type {
  text-align: center;
}
tbody > tr:nth-of-type(even) {
  background-color: rgb(237 238 242);
}
tbody th {
  text-align: left;
}

/*-----------------
footer
-----------------*/
#pagetop {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 60px;
  height: 60px;
}
#pagetop a {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
}
#pagetop a::before,
#pagetop a::after{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
#pagetop a::before {
  box-sizing: border-box;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #0c4fab;
}
#pagetop a::after {
  left: 37%;
  width: 15px;
  height: 15px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-45deg);
  top: 6px;
}
.footer_menu {
  text-align: center;
  padding: 4em 2em;
}
footer {
  padding: 0 2em 5em;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
}
.btn {
  background-color: #e50012;
  padding: 1em 2em;
  margin: 0 auto 1em;
  display: block;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  max-width: 30em;
}

@media screen and (max-width: 640px) {
  #pagetop {
    position: static;
    margin: 3em auto 0;
  }
article {
    font-size: 14px;
    font-size: 1.4rem;
}
article>div {
    padding: 1em 2em 2em;
  }

h3 {
    font-size: 16px;
    font-size: 1.6rem;
  }
.link_pdf {
  display: block;
  margin-bottom: 1em;
  text-align: center;
}
article {
    padding: 0;
}
h2 {
    border-radius: 0;
  }

ul.graphlist li {
  margin-bottom: 1em;
    width: 100%;
  }
}