@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: 16px;
  font-size: 1.6rem;
  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;
}
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;
  margin-top: 1em;
}
article>div {
  background-color: #fff;
  border-radius: 5px;
  padding: 3em;
  margin: 1em 0 0;
}
h3 {
  background-color: #0c4fab;
  font-size: 20px;
  font-size: 2.0rem;
  color: #fff;
  border-radius: 5px;
  padding: .8em 1em;
  margin: 0 0 1em;
  display: flex;
  align-items: center;
  justify-content: left;
}
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 .fax {
  background-color: #808080;
  padding: .2em 1em;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  border-radius: 5px;
  margin: .5em 1em .5em 0;
}
.dl_pdf {
  padding: 1em 0;
  font-weight: bold;
}
.link_pdf {
  background-color: #e50012;
  color: #fff;
  padding: ;
  display: block;
  padding: 1em;
  border-radius: 5px;
  text-align: center;
}
.faxnm {
  font-size: 30px;
  font-size: 3.0rem;
  font-weight: bold;
}

/*-----------------
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;
  font-size: 14px;
  font-size: 1.4rem;
}
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;
}
ol li {
  font-weight: bold;
}

@media screen and (max-width: 640px) {
  #pagetop {
    position: static;
    margin: 3em auto 0;
  }
  article {
    font-size: 14px;
    font-size: 1.4rem;
  }
  article>div {
      padding: 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;
    font-size: 4vw;
  }
  .faxnm {
    font-size: 3.8vw;
  }
  .title h1 {
    font-size: 6vw;
  }
}