@charset "utf-8";

/***** common.css *****/

/* reset */
body,
hr,
p,
ul,
ol,
h1,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-weight: 500;
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

img {
  border: none;
  width: 100%;
}

hr {
  border-bottom: none;
}

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

a:hover {
  /*opacity: 0.7;*/
}

img,
img[src$=".svg"],
object[src$=".svg"] {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.procan_tx {
  font-family: 'Kosugi', sans-serif;
}

/* setting */
body {
  position: relative;
  min-width: 320px;
  font-size: 16px;
  line-height: 1.8;
  font-family: YakuHanJP, 'Noto Sans JP', sans-serif;
  -webkit-text-size-adjust: 100%;
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  color: #000;
  background: #fff;
}

/*
font-family: 'Aldrich', sans-serif;
font-family: 'Noto Sans JP', sans-serif;
*/

body.preload .wow {
  opacity: 0 !important;
}

@media screen and (max-width: 768px) {
  /*body {
      min-width: auto;
  }*/
}
  
picture {
  display: block;
  font-size: 0;
}

body > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.-pc {
  display: block;
}
.-tb {
  display: none;
}
.-sp {
  display: none;
}

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

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

/***** loading *****/

/***** base *****/
.wrapper {

}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  box-sizing: border-box;
  background: #fff;
  z-index: 10;
}
.header * {
  box-sizing: border-box;
}
.header .mainMenu {
  display: flex;
  flex-wrap: nowrap;
  margin: 0 170px 0 0;
}
.header .mainMenu .hamburgerBtn {
  display: none;
}
.header .mainMenu .logo {
  width: 200px;
  height: 70px;
  padding: 14px;
  margin-right: auto;
}
.header .mainMenu .logo a {
  display: block;
}
.header .mainMenu .menu {
  display: inline-block;
  margin: 0 12px;
}
.header .mainMenu .menu.forSp {
  display: none;
}
.header .menuLink {
  position: relative;
  display: block;
  height: 70px;
  padding: 0;
}
.header .menuLink .en {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 70px;
  text-align: center;
  color: #013D7B;
}
.header .menuLink .bar {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 3px;
  background: #013D7B;
  transition: .25s;
}
.header .menuLink:hover .bar {
  width: 100%;
}
.header .menuContact {
  position: absolute;
  top: 0;
  right: 0;
  width: 139px;
  height: 70px;
}
.header .menuContact .menuLink {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  text-align: center;
  line-height: 70px;
  z-index: 2;
}
.header .menuContact .menuLink .en {
  color: #fff;
  background: #F5AA00;
  transition: .25s;
}
.header .menuContact:hover .menuLink .en {
  color: #F5AA00;
  background: #013D7B;
}

@media screen and (max-width: 1000px) {
  .header {
    height: 50px;
  }
  .header .mainMenu {
    display: flex;
    flex-wrap: nowrap;
    margin: 0;
  }
  .header .mainMenu .hamburgerBtn {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 50px;
    height: 50px;
    background: #F5AA00;
    cursor: pointer;
  }
  .header .mainMenu .hamburgerBtn span {
    position: absolute;
    display: inline-block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: .25s;
  }
  .header .mainMenu .hamburgerBtn span:first-of-type {
    top: 16px;
    left: 12px;
  }
  .header .mainMenu .hamburgerBtn span:nth-of-type(2) {
    top: 23px;
    /*left: 18px;
    width: 18px;*/
    left: 12px;
  }
  .header .mainMenu .hamburgerBtn span:last-of-type {
    top: 30px;
    left: 12px;
  }
  .header .mainMenu .hamburgerBtn.open span:first-of-type {
    top: 24px;
    left: 12px;
    transform: rotate(45deg);
  }
  .header .mainMenu .hamburgerBtn.open span:nth-of-type(2) {
    display: none;
  }
  .header .mainMenu .hamburgerBtn.open span:last-of-type {
    top: 24px;
    left: 12px;
    transform: rotate(-45deg);
  }
  .header .mainMenu .logo {
    padding: 8px;
    margin: 0;
  }
  .header .mainMenu .logo a {
    display: block;
  }
  .header .mainMenu .menu {
    display: none;
  }
  .header .menuContact {
    display: none;
  }
}



.spPanel {
  position: fixed;
  top: 50px;
  right: -301px;
  width: 300px;
  height: calc(100vh - 50px);
  padding: 40px 0;
  box-sizing: border-box;
  background: rgba(1,61,123,.90);
  z-index: 11;
  overflow-y: auto;
  transition: .25s;
}
.spPanel.open {
  right: 0;
}
.spPanel * {
  box-sizing: border-box;
}
.spPanel .menu {
  margin: 0 0 20px;
  padding: 0 20px;
}
.spPanel .menuLink {
  display: block;
  color: #fff;
}
.spPanel .menuLink .en {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  text-align: left;
  color: #fff;
}
.spPanel .menuLink .bar {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 3px;
  background: #002ED9;
  transition: .25s;
}
.spPanel .menu.forSp {
  display: inline-block;
  background: #F5AA00
}


.mainContents {
  padding-top: 70px;
}

@media screen and (max-width: 1000px) {
  .mainContents {
    padding-top: 50px;
  }
}

section {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
section .inner {
  position: relative;
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 100px 0;
  z-index: 1;
}

h1.pageTitle,
h2.title {
  position: relative;
  margin: 0 0 60px;
  color: #013D7B;
  font-family: 'Barlow', sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 2em;
  text-align: center;
}
h1.pageTitle {
  margin-bottom: 0;
}
h1.pageTitle::after,
h2.title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 20px;
  height: 2px;
  margin: 0 0 0 -10px;
  background: #013D7B;
}

.btn {
  position: relative;
  display: block;
  width: 200px;
  height: 35px;
  margin-top: 30px;
  line-height: 35px;
  border: 1px solid #F5AA00;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background: #F5AA00;
  transition: .25s;
}
.btn::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 10px;
  width: 10px;
  height: 25px;
  background: url("../img/common/button_arrow_right.png") center no-repeat;
  background-size: 100% auto;
  transition: .25s;
}
.btn:hover {
  color: #F5AA00;
  background: #fff;
}
.btn:hover::after {
  background: url("../img/common/button_arrow_right_hover.png") center no-repeat;
  background-size: 100% auto;
}

@media screen and (max-width: 768px) {
  section .inner {
    padding: 40px 0;
  }
  h1.pageTitle,
  h2.title {
    font-size: 26px;
  }
  h1.pageTitle {
    margin: 0;
  }
  .btn {
    margin: 30px auto 0;
  }
}

.footer {
  position: relative;
  margin: 0;
  padding: 120px 0 0;
  color: #000;
  background: #fff;
  overflow: hidden;
  z-index: 10;
}
.footerWrap {
  display: flex;
  width: 90%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 0 50px;
}
.footer .logoWrap {
  display: flex;
  justify-content: center;
  width: 420px;
  margin: 0 auto;
}
.footer .logo {
  width: 200px;
  height: 41px;
}
.footer .logo svg {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.footer .logoWrap .text {
  padding-left: 20px;
  color: #031343;
  font-size: 22px;
}
.footer .copyright {
  padding: 1.5em 0;
  text-align: center;
  font-size: 10px;
  color: #fff;
  background: #013D7B;
}


@media screen and (max-width: 768px) {
  .footer {
    position: relative;
    margin: 0;
    padding: 60px 0 0;
  }
  .footerWrap {
    padding: 0 0 20px;
  }
  .footer .logoWrap {
    display: block;
    width: 100%;
    margin: 0 auto;
      text-align: center;
  }
  .footer .logo {
    width: 120px;
    height: auto;
      margin: auto;
  }
  .footer .logoWrap .text {
    font-size: 14px;
      padding-left: 0;
  }
}


.pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  width: 50px;
  height: 50px;
  background: url("../img/common/pagetop.png") center center no-repeat;
  background-size: 100%;
  z-index: 10;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .pagetop {
    bottom: 10px;
    right: 10px;
  }
}
@media screen and (max-width: 420px) {
  .pagetop {
    width: 40px;
    height: 40px;
  }
}


