@charset "UTF-8";
@import url(//fonts.googleapis.com/css?family=Niconne);
/* CSS Document */
html {
  font-size: 62.5%;
  background: #fff;
}

body {
  font-size: 14px;
  font-size: 1.4em;
  font-family: -apple-system, blinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #111;
  line-height: 1.75;
  background: #f0f0f0;
}

body.solution {
  background: #FFF;
}

body.solution.detail {
  background: #f0f0f0;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

* {
  box-sizing: border-box;
}

.inner {
  display: block;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.sp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

/* header */
header {
  padding: 15px 0 0;
  background: #F0F0F0;
}

header .inner > .clearfix {
  padding: 0 10px;
}

header .siteTitle {
  float: left;
  width: 50%;
}

header .sideHead {
  float: right;
  width: 50%;
  padding-left: 50px;
  text-align: right;
  margin-top: 8px;
}

header .inner {
  padding: 0;
}

nav {
  margin-top: 10px;
  background: #FFF;
}

nav ul {
  display: table;
  width: 100%;
}

nav ul li {
  position: relative;
  display: table-cell;
  min-width: 85px;
  background: url(/img/ico_arrow_grey.png) center bottom 7px no-repeat;
  text-align: center;
  line-height: 1.2;
  vertical-align: middle;
}

nav ul li + li:after {
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 36px;
  margin-top: -18px;
  margin-left: -2px;
  background: url(/img/bg_nav.png) center center no-repeat;
  content: '';
}

@font-face {
  nav ul li {
    font-family: "YuGothic M";
    src: local("Yu Gothic Medium");
  }
}

nav ul li a {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 72px;
  padding-bottom: 15px;
  color: #222;
  font-weight: 600;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "YuGothic M", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 1.3rem;
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  nav ul li a {
    display: block;
    height: auto;
  }
}

nav ul li a span {
  font-weight: 600;
}

nav ul li a small {
  display: block;
  font-size: 90%;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  nav ul li a small {
    display: inline;
    font-size: inherit;
  }
}

nav ul li.current {
  background: url(/img/ico_arrow_green.png) center bottom 7px no-repeat;
}

nav ul li:hover {
  background: url(/img/ico_arrow_green.png) center bottom 7px no-repeat;
}

nav ul li.current:before {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 70%;
  height: 4px;
  margin-left: -35%;
  background: #89bf3c;
  content: "";
}

nav ul li img {
  vertical-align: middle;
}

@media only screen and (max-width: 767px) {
  header {
    padding: 3.3% 0 3.3%;
  }
  header .inner > .clearfix {
    font-size: 0;
  }
  header .siteTitle {
    float: none;
    width: 80.83%;
    display: inline-block;
    vertical-align: middle;
  }
  header .sideHead {
    display: none;
  }
  header .sp {
    display: inline-block;
    width: 9.16%;
    margin-left: 10.01%;
    vertical-align: middle;
  }
  nav {
    position: relative;
    margin-top: 0;
    color: #FFF;
  }
  nav ul {
    position: absolute;
    display: none;
    width: 100%;
    height: auto;
    margin-top: 3.3%;
    background: #324292;
    z-index: 100;
  }
  nav ul li {
    display: block;
    width: 100%;
    font-size: 1.5rem;
    text-align: left;
    background: none;
    line-height: 41px;
  }
  nav ul li br {
    display: none;
  }
  nav ul li:hover {
    background: none;
  }
  nav ul li + li {
    background: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  nav ul li + li:after {
    content: none;
  }
  nav ul li a, nav ul li:hover a {
    padding: 10px 10px 10px 35px;
    background: url(/img/ico_arrow_white_02.png) 10px center no-repeat;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
  }
  nav ul li.current {
    background: none;
  }
  nav ul li.current a {
    background: url(/img/ico_arrow_green_02.png) 10px center no-repeat;
  }
  nav ul li.current:before {
    content: none;
  }
}

/* breadcrumb */
#breadCrumb {
  padding: 10px 0;
  background: #f0f0f0;
  font-size: 1.2rem;
}

#breadCrumb a {
  color: inherit;
  text-decoration: none;
}

#breadCrumb a:hover {
  text-decoration: underline;
}

#breadCrumb ul {
  padding-left: 10px;
}

#breadCrumb li {
  float: left;
}

#breadCrumb li + li {
  margin-left: 10px;
}

#breadCrumb li + li:before {
  content: '>';
  margin-right: 10px;
}

@media only screen and (max-width: 767px) {
  .solution #breadCrumb {
    background: #FFF;
    padding: 3px 10px;
  }
}

/* pageTitle */
#pageTitle h1 {
  padding: 50px 0;
  background: #324292;
  color: #FFF;
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}

.solution #pageTitle h1 {
  background: #98b8e7;
}

.solution #pageTitle h1 span {
  display: block;
  margin-top: 30px;
  font-size: 1.6rem;
  line-height: 1.3;
}

.solution #pageTitle h1 br {
  display: none;
}

@media only screen and (max-width: 767px) {
  #pageTitle h1 {
    padding: 10% 0;
    font-size: 2.2rem;
  }
  .solution #pageTitle h1 span {
    font-size: 1.4rem;
  }
  .solution #pageTitle h1 br {
    display: block;
  }
}

/* main */
main {
  display: block;
}

main.top {
  background: #FFF;
}

/* footer */
footer {
  background: #FFF;
}

.lower footer {
  margin-top: 150px;
}

footer a {
  text-decoration: none;
  color: inherit;
  font-weight: inherit;
}

footer a:hover {
  text-decoration: underline;
}

footer .inner {
  position: relative;
}

footer .pageTop {
  position: absolute;
  right: 0;
  top: 0;
  margin-top: -100px;
}

footer .mainFooter {
  background: #324292;
  color: #FFF;
}

footer .mainFooter .inner {
  padding: 40px 20px;
}

footer .menuList dl {
  float: left;
  width: calc(100% / 3);
}

footer .menuList dl dt {
  font-size: 1.6rem;
  font-weight: bold;
}

footer .menuList dl dt + dt {
  margin-top: 10px;
}

footer .menuList dl dd {
  margin-top: 3px;
}

footer .menuList dl dd > a {
  padding-left: 15px;
  background: url(/img/ico_arrow_white_01.png) left center no-repeat;
  font-size: 1.4rem;
}

footer .menuList dl dd span {
  position: relative;
  display: block;
  margin-left: 15px;
  font-size: 1.2rem;
}

footer .menuList dl dd span:before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.0rem;
  margin-top: -2px;
  content: '∟';
}

footer .menuList dl dd span a {
  padding-left: 10px;
}

footer .menuList dl dd + dt {
  margin-top: 30px;
}

footer .sltList {
  margin-top: 30px;
  padding: 25px 20px;
  background: #27326a;
}

footer .sltList .clearfix > li {
  float: left;
}

footer .sltList > dl > dt {
  padding-left: 25px;
  background: url(/img/ico_arrow_white_02.png) left center no-repeat;
  font-size: 2.0rem;
  font-weight: bold;
}

footer .sltList > dl > dd {
  margin-top: 15px;
}

footer .sltList .pageList li a {
  padding-left: 30px;
  background: url(/img/ico_footer_01.png) left center no-repeat;
  font-size: 1.6rem;
}

footer .sltList .pageList li + li a {
  margin-left: 40px;
  background-image: url(/img/ico_footer_02.png);
}

footer .sltList .categoryList {
  margin-top: 10px;
}

footer .sltList .categoryList dt {
  border-bottom: 2px solid #7f86ab;
  font-size: 1.6rem;
}

footer .sltList .categoryList dd {
  margin-top: 5px;
  font-size: 1.2rem;
}

footer .sltList .categoryList li {
  padding-left: 15px;
  background: url(/img/ico_arrow_white_01.png) left center no-repeat;
}

footer .sltList .categoryList li + li {
  margin-left: 15px;
}

footer .sltList .categoryList dd + dt {
  margin-top: 10px;
}

footer .footerInfo {
  padding: 40px 0;
  background: #F0F0F0;
  text-align: center;
}

footer .footerInfo .inner {
  padding: 0 20px;
}

footer .footerInfo .inner > div {
  margin-top: 30px;
}

footer .footerInfo .inner > div > div {
  margin-top: 10px;
  font-size: 0;
  text-align: center;
}

footer .footerInfo .inner > div > div p {
  display: inline-block;
  margin-top: 15px;
  text-align: center;
}

footer .footerInfo .inner > div > div p + p {
  width: 100%;
  max-width: 400px;
  margin-left: 30px;
}

footer .titleArea {
  padding: 35px 20px;
}

footer .titleArea .siteTitle {
  float: left;
}

footer .titleArea .date {
  float: right;
  margin-top: 8px;
}

footer .copyRight {
  background: #a7caeb;
  font-size: 1.4rem;
  line-height: 50px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .lower footer {
    margin-top: 21.875%;
  }
  footer a {
    display: block;
  }
  footer .pageTop {
    right: 20px;
    width: 40px;
    margin-top: -60px;
  }
  footer .mainFooter .inner {
    padding: 6.25%;
  }
  footer .sltList .pageList li {
    width: 48%;
    padding: 5px 10px;
    background: #6976bb;
  }
  footer .sltList .pageList li a {
    padding-left: 20px;
  }
  footer .sltList .pageList li + li {
    margin-left: 4%;
  }
  footer .sltList .pageList li + li a {
    margin-left: 0;
  }
  footer .menuList dl {
    float: none;
    width: 100%;
  }
  footer .menuList dl dt {
    font-size: 1.4rem;
  }
  footer .menuList dl dd {
    border-bottom: 1px solid #4d5dae;
    line-height: 2.2;
  }
  footer .menuList dl dd > a {
    font-size: 1.2rem;
  }
  footer .menuList dl + dl {
    margin-top: 6.6%;
  }
  footer .sltList > dl > dt {
    padding-left: 0;
    background: 0;
    font-size: 1.6rem;
  }
  footer .sltList .categoryList {
    margin-top: 20px;
  }
  footer .sltList .categoryList li {
    float: none;
    margin-top: 5px;
    margin-left: 0.5em;
  }
  footer .sltList .categoryList li + li {
    margin-left: 0.5em;
  }
  footer .sltList .categoryList dt {
    padding-bottom: 5px;
  }
  footer .sltList .categoryList dd + dt {
    margin-top: 6%;
  }
  footer .footerInfo {
    padding: 40px 0;
  }
  footer .footerInfo .titType01 {
    font-size: 1.4rem;
  }
  footer .footerInfo .titType01 span {
    margin-bottom: 10px;
    font-size: 2.5rem;
  }
  footer .footerInfo .inner > div > div p + p {
    margin-left: 0;
  }
  footer .titleArea {
    padding: 6.25%;
  }
  footer .titleArea .siteTitle {
    float: none;
    text-align: center;
  }
  footer .titleArea .date {
    float: none;
    text-align: center;
    margin-top: 10px;
  }
  footer .copyRight {
    line-height: 30px;
    font-size: 1.2rem;
  }
}

.report footer {
  margin-top: 0;
}

/* common title */
.titType01 {
  font-size: 2.3rem;
  text-align: center;
}

.titType01 span {
  display: block;
  margin-bottom: 15px;
  color: #bc1212;
  font-family: 'Niconne', cursive;
}

.titType02 {
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}

.titType02 span {
  position: relative;
  display: block;
  padding-top: 48px;
  color: #9c9c9c;
  font-size: 1.6rem;
  font-weight: bold;
}

.titType02 span:before {
  position: absolute;
  top: 21px;
  left: 50%;
  width: 76px;
  height: 6px;
  margin: 0 0 0 -38px;
  background: #9c9c9c;
  content: '';
}

.titType02 small {
  font-size: 80%;
}

.titType03 {
  position: relative;
  background: #324292;
  color: #FFF;
  font-size: 1.7rem;
  line-height: 70px;
}

.titType04 {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 1px solid;
  font-size: 2.5rem;
  font-weight: bold;
}

.titType05 {
  position: relative;
  font-size: 2rem;
}

@media only screen and (max-width: 767px) {
  .titType05 {
    font-size: 1.7rem;
  }
}

.titType05::after {
  position: absolute;
  content: "";
  background: #000;
  width: 100%;
  height: 1px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.titType05 span {
  position: relative;
  display: inline-block;
  padding-right: 10px;
  background: #ffffff;
  z-index: 2;
  font-weight: bold;
}

.titType06 {
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .titType06 {
    font-size: 1.7rem;
  }
}

@media only screen and (max-width: 767px) {
  .titType02 {
    font-size: 2.4rem;
  }
  .titType02 span {
    padding-top: 20px;
    font-size: 1.3rem;
  }
  .titType02 span:before {
    top: 6px;
  }
  .titType04 {
    font-size: 1.7rem;
  }
}

/* table scroll */
.tableScroll {
  overflow: auto;
  white-space: nowrap;
}

.tableScroll::-webkit-scrollbar {
  height: 5px;
}

.tableScroll::-webkit-scrollbar-track {
  background: #F1F1F1;
}

.tableScroll::-webkit-scrollbar-thumb {
  background: #BCBCBC;
}

.tableScroll th, .tableScroll td {
  display: table-cell;
  width: auto;
}

.scrollTxt {
  margin-top: 35px;
  text-align: center;
  padding: 5px 0;
  background: #2a33ab;
}

.scrollTxt p {
  color: #FFF;
  font-weight: bold;
}

.btnType01 a {
  display: block;
  max-width: 350px;
  margin: 0 auto;
  padding: 25px 0 20px;
  border: 1px solid #008CD6;
  background: #008CD6;
  color: #FFF;
  font-size: 2.1rem;
  font-weight: bold;
  text-decoration: none;
}

.btnType01 a:hover {
  border: 1px solid #008CD6;
  background: #FFF;
  color: #008CD6;
}

.btnType02 {
  display: inline-block;
  width: 100%;
  max-width: 570px;
  margin: 0 auto;
  padding: 15px 0 15px 40px;
  background: #4968c1;
  background-size: contain;
  color: #FFF;
  font-weight: bold;
  font-size: 2.1rem;
  line-height: 1.4;
  text-decoration: none;
}

.btnType02.small {
  max-width: 270px;
  padding: 10px;
  font-size: 1.6rem;
  text-align: center;
}

.btnType02:hover {
  text-decoration: none;
}

.btnType02.contact {
  background: #4968c1 url(/img/ico_contact_mail.png) left center no-repeat;
  background-size: contain;
  width: 400px;
}

@media only screen and (max-width: 767px) {
  .btnType02.contact {
    width: 300px;
  }
}

.btnType03 a {
  display: block;
  max-width: 300px;
  margin: 0 auto;
  padding: 20px 10px;
  text-decoration: none;
  color: #FFF;
  background: #CCC;
}

@media only screen and (max-width: 767px) {
  .btnType02 {
    padding: 3% 0 3% 15%;
    font-size: 1.4rem;
  }
}

.bg-white {
  background: #FFF;
}

/*# sourceMappingURL=layout.css.map */