@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;
}


/*-----------------
main
-----------------*/
#container {
  background-color: #f3f3f3;
}
h2 {
  background-color: #0c4fab;
  font-size: 20px;
  font-size: 2.0rem;
  color: #fff;
  border-radius: 7px;
}
h2 p {
  padding: 6px 0 6px 99px;
  background-image: url(images/icon_title.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
}
h3 {
  font-size: 20px;
  font-size: 2.0rem;
  margin-bottom: 20px;
  border-bottom: 1px solid #0c4fab;
}
h4 {
  background-color: #0c4fab;
  font-size: 20px;
  font-size: 2.0rem;
  color: #ffffff;
  font-weight: bold;
  padding: 8px 0 4px 30px;
  border-radius: 5px 5px 0 0;
}
article {
  max-width: 1100px;
  margin: 0 auto;
}
section {
  background-color: #fff;
  border-radius: 5px;
  padding: 40px;
  margin: 20px 0 40px 0;
}
section p {
  padding-bottom: 20px;
}
section p span {
  background-color:#ffff66;
}
section ul {
  border: 1px solid #0065cb;
  border-radius: 0 0 5px 5px ;
  padding: 2em 2em 1em;
  margin-bottom: 2em;
}
section ul a {
  display: block;
  padding: 1em;
  margin: 0 0 1em;
  border-radius: 3px;
  color: #fff;
  font-weight: bold;
  background-color: #0065cb;
  text-align: center;
}
.center {
  text-align: center;
}

.contact {
  background-color: #f3f3f3;
  border-radius: 5px;
  padding: 2em 2em .5em;
  margin-top: 2em;
}
.contact h3 {
  margin-bottom: 20px;
  border-bottom: 1px solid #666666;
}
.tel {
  background-color: #808080;
  padding: 2px 5px;
  margin: 0 6px 0 0;
  font-weight: bold;
  color: #ffffff;
}
.contact span.fax {
  margin-left: 26px;
}

/*-----------------
footer_menu
-----------------*/
.footer_menu a {
  background: #e50012;
  padding: 10px 30px;
  margin: 3em auto 10px;
  display: block;
  text-align: center;
  border-radius: 3px;
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  max-width: 450px;
}
.footer_menu p {
  margin: 0 auto;
  font-size: 12px;
  font-size: 1.2rem;
  padding: 0 14px;
  text-align: center;
}

/*-----------------
pagetop
-----------------*/
#pagetop {
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 60px;
  height: 60px;
}
#pagetop a {
  position: relative;
  display: block;
}
#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
-----------------*/
footer {
  margin: 30px 0 0;
  background: #fff;
  text-align: center;
  padding: 14px;
  color: #000;
  font-size: 10px;
  font-size: 1.0rem;
}

/*-------------------*/
/*           */
/* tablet/smartphone */
/*           */
/*-------------------*/
@media screen and (max-width: 980px){
#container{
  width: auto;
  overflow: hidden;
}
img {
  max-width: 100%;
  height: auto;
  width /***/:auto;　
}
header #header_summary {
  padding: 0.3em 0.5em;
  height: auto;
  width: 100%;
}
header #header_summary span {
  display: block;
  margin: 0.5em 0 0 0;
}
/* メインコンテンツ */
h1 p, .main_wrap {
  width: 100%;
}
h2.page_title p {
  padding: 6px 0 6px 88px;
}
section {
  padding: 20px;
  margin: 10px 0 20px 0;
}
h2.sub_title {
  font-size: 18px;
  font-size: 1.8rem;
}
h3.document_list_title {
  padding: 8px 0 4px 20px;
  font-size: 18px;
  font-size: 1.8rem;
}
div.document_list {
  padding: 16px;
}
div.document_list ul li strong {
  font-size: 14px;
  font-size: 1.4rem;
}
div.document_list li {
  margin: 0 0 0 28px;
}
div.document_list ul li strong.blue_number:before {
  margin: 0 6px 0 -30px;
  padding: 0 7px;
}
ul.gray_b_box li p {
  width: 100%;
}

  .footer_menu  p {
    text-align: left;
  }
  footer {
    text-align: left;
  }
}