@charset "UTF-8";
@import "https://fonts.googleapis.com/css?family=Montserrat:700";


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  color: #021729;
  font-family: "游ゴシック", "Yu Gothic","游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 2px;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, button, textarea, select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

a {
  text-decoration: none;
  color: #021729;
}

img {
  width: 100%;
  border-style: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
  vertical-align: bottom;
}

.sp {
  display: none;
}

@media screen and (max-width: 1500px) {
  body {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}


/*=====================================================================

    整列スタイル

======================================================================= */


.fb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: row;
  -ms-flexbox-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.fbstart,.fb-start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: row;
  -ms-flexbox-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.fbcenter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: row;
  -ms-flexbox-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.fb-align {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.fb-reverse {
  flex-direction : row-reverse;
  -webkit-box-direction: reverse;
  -ms-flexbox-direction: reverse;
  -webkit-flex-direction: reverse;
}

.btn {
  position: relative;
  display: table;
  color: #1b4c7d;
  font-size: 17px;
  font-weight: bold;
  letter-spacing: 3px;
  padding: 20px 120px;
  border: solid 2px #1b4c7d;
  transition: all .3s;
}

.btn:hover {
  color: #fff;
  background: #1b4c7d;
}

.btn::before {
  content: " ";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  top: calc(50% - 4px);
  right: 25px;
  border-top: solid 2px #07243d;
  border-right: solid 2px #07243d;
  transform: rotate(45deg);
  transition: all .3s;
}

.btn:hover::before {
  transform: translateX(3px) rotate(45deg);
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

.btn::after {
  content: " ";
  display: block;
  position: absolute;
  width: 12px;
  height: 2px;
  background: #07243d;
  top: 50%;
  right: 26px;
  transition: all .3s;
}

.btn:hover::after {
  background: #fff;
  transform: translateX(3px);
}

.pankuzu {
  /*width: 1200px;*/
  padding: 100px 30px 0;
  margin: 0 auto;
  max-width: 1200px;
}

.pankuzu-list__item {
  position: relative;
}

.pankuzu-list__item:nth-child(n+2) {
  margin-left: 40px;
}

.pankuzu-list__item:nth-child(n+2)::before {
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  top: calc(50% - 3px);
  left: -20px;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #a38d34;
}

.pankuzu-list__item a {
  font-size: 13px;
  color: #07243d;
  letter-spacing: 2px;
}

.pankuzu-list__item a br {
  display: none;
}


.title-area {
  padding: 120px 0 50px;
}

.title-area h1 {
  font-size: 52px;
  font-weight: bold;
  letter-spacing: 5px;
  text-align: center;
}

.title-area h1 span {
  display: block;
  font-size: 20px;
  color: #1d5288;
  letter-spacing: 3px;
  line-height: 1.5;
}

.contents-wrapper {
  position: relative;
}

.content__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 1500px) {
  .title-area h1 {
    font-size: 46px;
  }
  .title-area h1 span {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .btn {
    font-size: 15px;
    padding: 20px 80px;
  }
  .content__inner {
    width: 90%;
  }
  .title-area h1 {
    font-size: 44px;
    letter-spacing: 3px;
  }
  .title-area h1 span {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .btn {
    width: 100%;
    padding: 20px 40px 20px 20px;
    box-sizing: border-box;
  }
  .title-area {
    padding: 60px 0 40px;
  }
  .title-area h1 {
    font-size: 32px;
  }
  .title-area h1 span {
    font-size: 14px;
  }
}

/*=====================================================================

    ヘッダー

======================================================================= */

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: none;
  transition: all .5s;
  z-index: 100;
}

.header.header-fixed {
  background: rgba(255,255,255,0.85);
}

.header__inner {
  position: relative;
  min-width: 800px;
  max-width: 1100px;
  padding: 15px 50px;
  margin: 0 auto;
}

.header__inner .logo {
  width: 190px;
}

.gloval-nav__item {
  margin-left: 70px;
}

.gloval-nav__item:first-child {
  margin-left: 0;
}

.gloval-nav__item a {
  display: block;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  transition: all .3s;
}

.gloval-nav__item a:hover {
  color: #215992;
}

.gloval-nav__item a span {
  display: block;
  font-size: 13px;
  margin: 0 auto;
}

@media screen and (max-width: 1500px) {
  .gloval-nav__item a {
    font-size: 20px;
  }
  .gloval-nav__item a span {
    font-size: 12px;
  }
}

@media screen and (max-width: 1200px) {
  .header__inner .logo {
    width: 150px;
  }
  .gloval-nav__item {
    margin-left: 60px;
  }
  .gloval-nav__item a {
    font-size: 18px;
  }
  .gloval-nav__item a span {
    font-size: 11px;
  }
}

@media screen and (max-width: 1024px) {

}

@media screen and (max-width: 768px) {

  .header {
    height: 100%;
    left: 100%;
    background: #fff;
    transition: all .8s;
  }
  .header.active {
    left: 0;
  }
  .header.header-fixed {
    background: #fff;
  }
  .header__inner {
    display: block;
    min-width: 100%;
    padding: 40px 0 0;
  }
  .header__inner .logo {
    width: 45%;
    margin: 0 auto;
  }
  .humburger-bg {
    position: fixed;
    top: -40px;
    right: -85px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 100px 100px 100px;
    border-color: transparent transparent #215992 transparent;
    z-index: 999;
    transform: rotate(45deg);
    transition: all .6s;
  }
  .humburger-bg.active {
    border-color: transparent transparent #fff transparent;
  }
  .hamburger {
    position: fixed;
    top: 20px;
    right: 15px;
    z-index: 1000;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: #fff;
    transition: all .6s;
  }
  .hamburger span:nth-child(n+2) {
    margin-top: 4px;
  }
  .hamburger.active span {
    background: #215992;
  }
  .hamburger.active span:first-child {
    transform: rotate(45deg) translate(2px,9px);
  }
  .hamburger.active span:nth-child(2) {
    transform: translateX(8px);
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(1px,-8px);
  }
  .gloval-nav {
    display: block;
    margin-top: 50px;
  }
  .gloval-nav__item {
    padding: 15px 0;
    margin-left: 0px;
    border-bottom: solid 1px #000;
  }
  .gloval-nav__item:first-child {
    margin-top: 0;
    border-top: solid 1px #000;
  }
  .gloval-nav__item a {
    font-size: 18px;
  }
  .gloval-nav__item a span {
    font-size: 10px;
    margin: 0 auto;
  }
  
}



/*=====================================================================

    フッター

======================================================================= */

.footer {
  background: #0a2642;
  margin-top: 120px;
}

.footer__inner {
  width: 90%;
  min-width: 860px;
  max-width: 1200px;
  padding: 40px 0;
  margin: 0 auto;
}

.footer-nav__item {
  margin-right: 60px;
}

.footer-nav__item a {
  font-size: 18px;
  color: #fff;
  transition: all .3s;
}

.footer-nav__item a:hover {
  opacity: .75;
}

.footer-btn-list {
  padding-top: 30px;
  margin-top: 30px;
  border-top: solid 1px #666;
}

.footer-btn-list__item {
  width: 32%;
  margin-left: 2%;
  margin-top: 3px;
  border: solid 2px #fff;
  box-sizing: border-box;
  transition: all .3s;
}

.footer-btn-list__item:hover {
  opacity: .75;
}

.footer-btn-list__item:nth-child(3n+1) {
  margin-left: 0;
}

.footer-btn-list__item:nth-child(n+4) {
  margin-top: 25px;
}

.footer-btn-list__item a {
  position: relative;
  display: block;
  font-size: 13px;
  color: #fff;
  text-align: left;
  padding: 20px 35px 20px 20px;
  transition: all .3s;
}

.footer-btn-list__item a::before {
  content: " ";
  position: absolute;
  width: 15px;
  height: 18px;
  top: calc(50% - 9px);
  right: 15px;
  background: url("../images/common/icon_pdf.png") no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.footer-bottom {
  padding: 20px 0;
  background: #041930;
}

.footer-bottom__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom a {
  position: relative;
  font-size: 14px;
  color: #fff;
}

.footer-bottom a::before {
  content: " ";
  position: absolute;
  width: 13px;
  height: 12px;
  top: calc(50% - 6px);
  right: -22px;
  background: url("../images/common/icon_link.png") no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.footer-bottom .copyright {
  font-size: 12px;
  color: #fff;
  text-align: right;
}

@media screen and (max-width: 1500px) {
  .footer-nav__item a {
    font-size: 16px;
  }
}

@media screen and (max-width: 1024px) {
  .footer-nav__item {
      margin-right: 45px;
  }
  .footer-btn-list__item a {
    font-size: 13px;
  }
}


@media screen and (max-width: 768px) {
  .footer {
    margin-top: 80px;
  }
  .footer__inner {
    width: 90%;
    min-width: 90%;
    padding: 40px 0;
    margin: 0 auto;
  }
  .footer-nav {
    display: block;
  }
  .footer-nav__item {
    margin-right: 0;
  }
  .footer-nav__item:nth-child(n+2) {
    margin-top: 10px;
  }
  .footer-nav__item a {
    display: block;
    text-align: center;
  }
  .footer-btn-list {
    display: block;
  }
  .footer-btn-list__item {
    width: 100%;
    margin-left: 0;
  }
  .footer-btn-list__item:nth-child(n+2) {
    margin-top: 10px;
  }
  .footer-bottom__inner {
    display: block;
  }
  .footer-bottom a {
    display: table;
    font-size: 13px;
    text-align: center;
  }

  .footer-bottom .copyright {
    font-size: 10px;
    text-align: left;
    margin-top: 20px;
  }
  .footer-bottom .copyright span {
    margin-top: 5px;
  }
}







