html {
  font-size: 62.5%;
}

body {
  background-color: #ffffff;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 1.6rem;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  body.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.pc {
  display: block;
}

.smp {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .smp {
    display: block;
  }
}
header .logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  padding: 0 calc((100% - 900px) / 2);
  background: #ededed;
  z-index: 9999;
}
@media screen and (max-width: 767px) {
  header .logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 105px;
    padding-left: 5px;
  }
}
header .logo a:hover {
  opacity: 0.7;
}
header .logo img {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
header .logo img.pc {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  header .logo img {
    top: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    height: 70px;
  }
  header .logo img.pc {
    display: none;
  }
  header .logo img.smp {
    display: inline-block;
  }
}
header .link {
  position: fixed;
  top: 22px;
  left: calc(50% - 140px);
  z-index: 9999;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  header .link {
    top: 70px;
    left: 7px;
    font-size: 1.2rem;
  }
}
header .link a {
  display: inline-block;
  margin: 0 12px;
}
header .link a:hover {
  opacity: 0.7;
}
header .link span {
  display: inline-block;
  margin: 0 12px;
}
@media screen and (max-width: 767px) {
  header .link a {
    margin: 0 8px;
  }
  header .link span {
    margin: 0 8px;
  }
}
header .corp {
  position: fixed;
  top: 22px;
  right: calc(50% - 450px);
  z-index: 9999;
}
@media screen and (max-width: 767px) {
  header .corp {
    position: fixed;
    top: 22px;
    right: 70px;
  }
}
header .corp a {
  color: #0071c5;
  font-size: 1.4rem;
  font-weight: bold;
}
header .corp a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  header .corp a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header .corp a > * {
    -ms-flex-item-align: center;
        align-self: center;
  }
}
header .corp i {
  margin-right: 3px;
  vertical-align: text-bottom;
  font-size: 21px;
}
@media screen and (max-width: 767px) {
  header .corp span {
    display: inline-block;
    margin-left: 2px;
    font-size: 12px;
    line-height: 1.2;
  }
}
header .head {
  position: relative;
  margin-top: 70px;
  height: 180px;
  background-color: #EDF5FA;
}
@media screen and (max-width: 767px) {
  header .head {
    margin-top: 105px;
    height: auto;
  }
}
header .head .name {
  position: absolute;
  top: 20px;
  left: calc((100% - 900px) / 2);
}
@media screen and (max-width: 767px) {
  header .head .name {
    position: relative;
    top: 0;
    left: 0;
    padding: 15px 20px 25px;
    text-align: center;
  }
  header .head .name img {
    width: 100%;
    max-width: 360px;
  }
}
header .head div {
  position: absolute;
  top: 0;
  right: calc((100% - 900px) / 2);
}
@media screen and (max-width: 767px) {
  header .head div {
    position: relative;
    top: 0;
    right: auto;
    text-align: center;
  }
  header .head div img {
    width: 100%;
    max-width: 375px;
  }
}

.menu-button {
  display: none;
}
@media screen and (max-width: 767px) {
  .menu-button {
    position: fixed;
    top: 25px;
    right: 20px;
    z-index: 9999;
    width: 34px;
    height: 24px;
    display: block;
  }
  .menu-button div {
    width: 34px;
    height: 2px;
    background-color: #4d4d4d;
    margin-bottom: 8px;
  }
  .menu-button.show div {
    width: 34px;
    height: 2px;
    background-color: #4d4d4d;
    margin-bottom: 10px;
  }
  .menu-button.show div:nth-of-type(1) {
    top: 0;
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
    position: relative;
    margin-left: auto;
    margin-right: auto;
  }
  .menu-button.show div:nth-of-type(2) {
    top: 10px;
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
    margin-top: -4px;
    position: relative;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  .menu-button.show div:nth-of-type(3) {
    display: none;
  }
}

.gnav {
  position: sticky;
  top: 70px;
  background: #00338E;
  font-size: 1.4rem;
  z-index: 9999;
}
@media screen and (max-width: 767px) {
  .gnav {
    display: none;
    position: fixed;
    top: 105px;
    left: 0;
    width: 100%;
    height: calc(100vh - 105px);
    background: #00338E;
    font-size: 1.6rem;
    z-index: 999;
  }
}
.gnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .gnav ul {
    display: block;
    width: 100%;
  }
}
.gnav ul li {
  display: table;
  width: 25%;
}
@media screen and (max-width: 767px) {
  .gnav ul li {
    width: 100% !important;
  }
}
.gnav ul li a {
  position: relative;
  display: table-cell;
  height: 60px;
  font-size: 1.5rem;
  line-height: 1.4;
  background: #00338E;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
}
.gnav ul li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 60px;
  background-color: #c8e6fa;
}
@media screen and (max-width: 767px) {
  .gnav ul li a::after {
    display: none;
  }
}
.gnav ul li a span {
  position: relative;
  top: 0;
}
@media screen and (max-width: 767px) {
  .gnav ul li a {
    width: 100%;
    height: 54px;
    /*opacity: 1;
    animation: none;*/
  }
  .gnav ul li a span {
    top: 0;
    -webkit-animation: none;
            animation: none;
  }
  .gnav ul li a br {
    display: none;
  }
}
.gnav ul li a.active, .gnav ul li a:hover {
  background: #b4e1ff;
  color: #333333;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .gnav ul li a.active, .gnav ul li a:hover {
    border-color: #e7f8ff;
  }
}
.gnav ul li:nth-of-type(1) a {
  /*animation-delay: 0.3s * $i;*/
}
.gnav ul li:nth-of-type(1) a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 60px;
  background-color: #c8e6fa;
}
@media screen and (max-width: 767px) {
  .gnav ul li:nth-of-type(1) a::before {
    display: none;
  }
}
.gnav ul li:nth-of-type(1) a span {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.gnav ul li:nth-of-type(2) a {
  /*animation-delay: 0.3s * $i;*/
}
.gnav ul li:nth-of-type(2) a span {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.gnav ul li:nth-of-type(3) a {
  /*animation-delay: 0.3s * $i;*/
}
.gnav ul li:nth-of-type(3) a span {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
.gnav ul li:nth-of-type(4) a {
  /*animation-delay: 0.3s * $i;*/
}
.gnav ul li:nth-of-type(4) a span {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.gnav ul li:nth-of-type(5) a {
  /*animation-delay: 0.3s * $i;*/
}
.gnav ul li:nth-of-type(5) a span {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.gnav ul li:nth-of-type(6) a {
  /*animation-delay: 0.3s * $i;*/
}
.gnav ul li:nth-of-type(6) a span {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.gnav ul li:nth-of-type(7) a {
  /*animation-delay: 0.3s * $i;*/
}
.gnav ul li:nth-of-type(7) a span {
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s;
}
.gnav ul li:nth-of-type(8) a {
  /*animation-delay: 0.3s * $i;*/
}
.gnav ul li:nth-of-type(8) a span {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}

main {
  display: block;
}
main a {
  color: #0071c5;
}
main a:hover {
  opacity: 0.7;
}

footer {
  padding: 30px 0 15px;
  background-image: url(../img/footer_bg.png);
  background-size: cover;
  color: #ffffff;
  text-align: center;
}
footer h2 {
  position: relative;
  padding-bottom: 20px;
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  footer h2 {
    font-size: 2rem;
    padding-bottom: 10px;
  }
}
footer h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 72px;
  height: 1px;
  background-color: #ffffff;
}
footer p {
  margin-top: 20px;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  footer p {
    margin-top: 20px;
    font-size: 1.2rem;
  }
}
footer > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 900px;
  margin: 20px auto 30px;
}
@media screen and (max-width: 767px) {
  footer > div {
    display: block;
    width: 100%;
  }
}
footer > div > div {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 767px) {
  footer > div > div {
    width: 100%;
  }
}
footer > div > div:first-of-type::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  footer > div > div:first-of-type::before {
    display: none;
  }
}
footer > div > div:first-of-type h3 {
  font-size: 1.7rem;
  font-weight: bold;
}
footer > div > div:first-of-type ul li {
  padding-top: 10px;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 3px;
}
@media screen and (max-width: 767px) {
  footer > div > div:first-of-type ul li {
    font-size: 1.4rem;
    letter-spacing: 1px;
  }
}
footer > div > div:first-of-type ul li a {
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  footer > div > div:first-of-type ul li a {
    font-size: 2.4rem;
  }
}
footer > div > div:first-of-type p {
  margin-top: 10px;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  footer > div > div:first-of-type p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  footer > div > div:last-of-type {
    margin-top: 25px;
  }
}
footer > div > div:last-of-type h3 {
  font-size: 1.7rem;
  font-weight: bold;
}
footer > div > div:last-of-type ul {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  footer > div > div:last-of-type ul {
    margin-top: 12px;
  }
}
footer > div > div:last-of-type ul li .btn {
  position: relative;
  display: block;
  width: 300px;
  margin: 0 auto;
  padding: 18px 0 19px;
  border: 1px solid #ffffff;
  border-radius: 50px;
  font-size: 1.8rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  footer > div > div:last-of-type ul li .btn {
    width: calc(100% - 40px);
    max-width: 300px;
    padding: 15px 0 16px;
    font-size: 1.6rem;
  }
}
footer > div > div:last-of-type ul li .btn::after {
  content: url(../img/btn_arrow.png);
  position: absolute;
  top: 51%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
footer > div > div:last-of-type ul li .btn:hover {
  opacity: 0.7;
}