@charset "utf-8";
/* COMMON
-------------------------------------------------------------- */
html {
  font-size: 62.5%;
}
body {
  position: relative;
  overflow-x: hidden;
  color: #000;
  line-height: 1.75;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: .1rem;
}
.mincho {
  font-family: 'Noto Serif JP', serif;
}
main {
  position: relative;
  margin-top: 120px;
  z-index: 1;
}
.wrapper {
  overflow: hidden;
}
.bg {
  background: #00479d;
}
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
a:hover {
  color: inherit;
  opacity: .7;
}
a:focus {
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.containerWide {
  width: 90%;
  max-width: 1770px;
  margin: auto;
}
.container {
  width: 90%;
  max-width: 960px;
  margin: auto;
}
.invisible {
  visibility: hidden;
}
.hidden_pc {
  display: none;
}
.hidden_sp {
  display: block;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width:768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: auto;
  }
}
@media (max-width:767px) {
  body {
    font-size: 1.4rem;
  }
  .hidden_pc {
    display: block;
  }
  .hidden_sp {
    display: none;
  }
  main {
    margin-top: 58px;
  }
}
/* HEADER
-------------------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  z-index: 999;
}
header .headWrap {
  padding: 5px 0;
  background: #1c2d51;
  color: #fff;
}
header .catch {
  font-size: 1.5rem;
}
header .flex {
  align-items: center;
  padding: 18px 0;
}
header a {
  display: block;
}
header .logo {
  max-width: 364px;
}
header .logo img {
  vertical-align: middle;
}
.hamburger {
  display: none;
}
.global-nav {
  width: calc(100% - 400px);
}
.global-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.global-nav .nav_item {
  border-left: 1px solid #006da8;
}
.global-nav li:first-child {
  border-left: none;
}
.global-nav .nav_item a {
  position: relative;
  display: block;
  padding: 15px 30px;
  color: #006da8;
  text-align: center;
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1;
}
.global-nav .nav_item a span {
  font-size: 1.8rem;
  letter-spacing: 0;
}
.global-nav .nav_item a::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: '';
  width: 0;
  height: 3px;
  background-color: #006da8;
  transition: .3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.global-nav .nav_item a:hover {
  opacity: 1;
}
.global-nav .nav_item a:hover::after {
  width: 100%;
}
@media (max-width: 1400px) {
  header .logo {
    max-width: 280px;
  }
  .global-nav {
    width: calc(100% - 300px);
  }
  .global-nav .nav_item a {
    padding: 22px 20px;
    font-size: 2rem;
  }
  .global-nav .nav_item a span {
    font-size: 1.4rem;
  }
}
@media (max-width: 1000px) {
  header .logo {
    max-width: 180px;
  }
  .global-nav {
    width: calc(100% - 200px);
  }
  .global-nav .nav_item a {
    padding: 26px 15px;
    font-size: 1.6rem;
  }
  .global-nav .nav_item a span {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  header .flex {
    padding: 10px 0;
  }
  header .logo {
    max-width: 250px;
  }
  .global-nav {
    position: fixed;
    right: 0;
    top: 58px;
    padding-bottom: 150px;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 200;
    overflow-y: auto;
    display: none;
  }
  .hamburger {
    display: block;
    position: absolute;
    right: 15px;
    top: 5px;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    text-align: center;
    font-size: 3rem;
    line-height: 1;
    cursor: pointer;
    z-index: 300;
    transition: all 0.5s ease-in-out;
  }
  .global-nav ul {
    display: block !important;
    padding: 0 15px;
  }
  .global-nav li {
    width: 100%;
  }
  .global-nav li:nth-child(5) {
    border-bottom: none;
  }
  .global-nav .nav_item {
    border-left: none;
    border-bottom: 1px solid #006da8;
  }
  .global-nav .nav_item a {
    padding: 15px 30px;
    font-size: 2.2rem;
  }
  .global-nav .nav_item a span {
    font-size: 1.4rem;
  }
  .hamburger__line {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 40px;
    height: 5px;
    background-color: #006da8;
    transition: all .6s;
  }
  .hamburger__line--1 {
    top: 12px;
  }
  .hamburger__line--2 {
    top: 24px;
  }
  .hamburger__line--3 {
    top: 36px;
  }
  /* 表示された時用のCSS */
  .nav-open .global-nav {
    display: block;
  }
  .nav-open .hamburger::before {
    content: "";
  }
  .nav-open .black-bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .hamburger__line--1 {
    transform: rotate(45deg);
    top: 25px;
  }
  .nav-open .hamburger__line--2 {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger__line--3 {
    transform: rotate(-45deg);
    top: 25px;
  }
}
/* common style
-------------------------------------------------------------- */
.sv {
  padding: 120px 0;
  margin-bottom: 120px;
  background: url(../img/common/bg_sv.jpg) no-repeat center / cover;
}
.sv h1 {
  color: #fff;
  font-size: 2rem;
  text-align: center;
}
.sv h1 span {
  font-size: 3.7rem;
}
.ttl {
  position: relative;
  margin: 0 auto 110px;
  max-width: 540px;
  text-align: center;
}
.ttl p {
  position: relative;
  display: inline-block;
  padding: 0 30px;
  font-size: 3.7rem;
  font-weight: 500;
  line-height: 1.2;
  background: #fff;
  z-index: 2;
}
.ttl p span {
  display: block;
  font-size: 1.8rem;
  color: #006da8;
}
.ttl::after {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  background: #000;
  width: 100%;
  height: 2px;
  content: "";
}
.ttl.sub p {
  font-size: 3rem;
}
.ttl.sub p span {
  font-size: 1.5rem;
}
.btnMore a {
  display: block;
  position: relative;
  padding: 10px 50px;
  border: 1px solid #fff;
  box-sizing: border-box;
  color: #fff;
  max-width: 337px;
  width: 90%;
  font-size: 2.1rem;
}
.btnMore a::after {
  position: absolute;
  top: 50%;
  left: 60%;
  background: #fff;
  width: 70%;
  height: 1px;
  content: "";
  transition: all 0.5s ease-in-out;
}
.btnMore a:hover {
  background: #fff;
  color: #51b3df;
  opacity: 1;
}
.btnMore a:hover::after {
  left: 100%;
  opacity: 0;
}
.btnMore.right a {
  text-align: right;
}
.btnMore.right a::after {
  left: auto;
  right: 60%;
}
.btnMore.right a:hover::after {
  right: 100%;
}
@media (max-width: 767px) {
  .sv {
    padding: 30px 0;
    margin-bottom: 50px;
  }
  .sv h1 {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .sv h1 span {
    font-size: 2.2rem;
  }
  .ttl {
    margin: 0 auto 50px;
  }
  .ttl p {
    padding: 0 20px;
    font-size: 2.4rem;
  }
  .ttl p span {
    font-size: 1.4rem;
  }
  .ttl::after {
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    background: #000;
    width: 100%;
    height: 2px;
    content: "";
  }
  .btnMore a {
    padding: 10px 40px;
    width: 80%;
    font-size: 1.6rem;
  }
  .btnMore a::after {
    left: 60%;
    width: 50%;
  }
  .btnMore.right a {
    text-align: left;
  }
  .btnMore.right a::after {
    left: 60%;
    right: auto;
  }
}


/* footer
-------------------------------------------------------------- */
footer {
  position: relative;
  padding: 50px 0 10px;
  background: #006da8;
  text-align: center;
  color: #fff;
}
footer .flex {
  justify-content: center;
  align-items: center;
}
footer nav li {
  position: relative;
}
footer nav li::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #fff;
  content: "";
}
footer nav li:last-child::after {
  content: none;
}
footer nav li a {
  padding: 0 20px;
  font-size: 2rem;
  line-height: 1;
}
footer .name {
  padding: 80px 0 30px;
  font-size: 4.5rem;
  font-weight: 700;
}
footer address {
  font-size: 1.9rem;
  font-style: normal;
  line-height: 1.4;
}
footer .tel {
  padding-top: 30px;
  font-size: 3rem;
}
footer .copy {
  margin-top: 100px;
  font-size: 1.5rem;
}
/*page-top*/
#Pagetop {
  position: fixed;
  bottom: 30px;
  right: 3%;
  padding: 0px 10px;
  background: #006da8;
  cursor: pointer;
  z-index: 999;
}
@media (max-width: 767px) {
  footer {
    padding: 0 0 10px;
  }
  footer .name {
    padding: 50px 0 32px;
    font-size: 2.6rem;
  }
  footer address {
    font-size: 1.4rem;
  }
  footer .tel {
    padding-top: 20px;
    font-size: 2rem;
  }
  footer .copy {
    margin-top: 50px;
    font-size: 1.2rem;
    letter-spacing: 0;
  }
}
