@charset "UTF-8";
/* CSS Document */
.site-header #global-nav {
  padding: 2rem 4rem;
  background-color: #fff;
  align-items: center;
  justify-content: space-between;
  filter: drop-shadow(0px 5px 6px rgba(0, 0, 0, 0.2));
  z-index: 2;
  position: relative; }
  @media screen and (max-width: 1399px) {
    .site-header #global-nav {
      padding: 2rem; } }
  .site-header #global-nav.m_fixed {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999; }
  .site-header #global-nav .header-logo {
    width: 20%;
    margin-bottom: 0; }
    @media screen and (max-width: 1199px) {
      .site-header #global-nav .header-logo {
        width: 30%; } }
    .site-header #global-nav .header-logo img {
      height: 40px;
      width: auto; }
      @media screen and (max-width: 1199px) {
        .site-header #global-nav .header-logo img {
          height: auto; } }
  .site-header #global-nav ul {
    width: 80%;
    margin-bottom: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center; }
    @media screen and (max-width: 1199px) {
      .site-header #global-nav ul {
        width: 70%;
        flex-wrap: wrap; } }
    .site-header #global-nav ul li a {
      font-size: 14px;
      font-size: 1.4rem;
      color: #333333;
      transition: 0.3s; }
      .site-header #global-nav ul li a:hover {
        color: #0081C9; }
      .site-header #global-nav ul li a::before {
        content: '｜';
        padding: 0 0.5rem; }
    .site-header #global-nav ul li:first-child a::before {
      content: none; }
    .site-header #global-nav ul li:last-child a {
      display: inline-block;
      border: 1px solid #0081C9;
      background: #0081C9;
      padding: 0.5rem 1rem;
      border-radius: 0.5rem;
      margin-left: 1.5em;
      color: #fff; }
      .site-header #global-nav ul li:last-child a:hover {
        background: #fff;
        color: #0081C9; }
      .site-header #global-nav ul li:last-child a::before {
        content: none; }

@media screen and (max-width: 767px) {
  .header {
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    position: fixed;
    z-index: 2000;
    transition: 0.3s;
    background: #fff;
    filter: drop-shadow(0px 5px 6px rgba(0, 0, 0, 0.2)); } }
@media screen and (max-width: 767px) {
  .header .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem; } }
@media screen and (max-width: 767px) {
  .header .header__inner .logo img {
    height: 45px; } }
@media screen and (max-width: 575px) {
  .header .header__inner .logo img {
    height: 40px; } }

.drawer__button {
  position: relative;
  width: 4rem;
  height: 4rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 999; }
  .drawer__button > span {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4rem;
    height: 2px;
    background-color: #0081C9;
    transform: translateX(-50%); }
  .drawer__button > span:first-child {
    transform: translate(-50%, calc(-50% - 1rem));
    transition: transform 0.3s ease; }
  .drawer__button > span:nth-child(2) {
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease; }
  .drawer__button > span:last-child {
    transform: translate(-50%, calc(-50% + 1rem));
    transition: transform 0.3s ease; }

.drawer__button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg); }
.drawer__button.active > span:nth-child(2) {
  opacity: 0; }
.drawer__button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg); }

.drawer__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden; }
  .drawer__nav .drawer__nav__inner {
    position: relative;
    width: 60%;
    height: 100%;
    background-color: #fff;
    padding: 0;
    margin: 0 0 0 auto;
    overflow: scroll;
    transform: translateX(100%);
    transition: transform 0.3s ease; }
    .drawer__nav .drawer__nav__inner .drawer__nav__menu {
      list-style: none;
      padding: 0;
      padding-top: 79px;
      margin: 0; }
      .drawer__nav .drawer__nav__inner .drawer__nav__menu .drawer__nav__link {
        font-size: 20px;
        font-size: 2rem;
        display: block;
        color: #0081C9;
        text-decoration: none;
        padding: 1.5rem 2rem;
        border-top: solid 1px #0081C9;
        transition: 0.3s; }
        @media screen and (max-width: 575px) {
          .drawer__nav .drawer__nav__inner .drawer__nav__menu .drawer__nav__link {
            font-size: 16px;
            font-size: 1.6rem; } }
        .drawer__nav .drawer__nav__inner .drawer__nav__menu .drawer__nav__link:hover {
          background-color: #0081C9;
          color: #fff; }

.drawer__nav.active {
  opacity: 1;
  visibility: visible; }
  .drawer__nav.active .drawer__nav__inner {
    transform: translateX(0); }

body.active {
  height: 100%;
  overflow: hidden; }

footer {
  border-top: 1px solid #0081C9;
  padding: 3rem 0 0; }
  footer .flex-container {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 2.5rem; }
    @media screen and (max-width: 767px) {
      footer .flex-container {
        flex-wrap: wrap; } }
    footer .flex-container .footer-about {
      width: 55%; }
      @media screen and (max-width: 1199px) {
        footer .flex-container .footer-about {
          width: 70%; } }
      @media screen and (max-width: 767px) {
        footer .flex-container .footer-about {
          width: 100%; } }
      footer .flex-container .footer-about h4 {
        font-size: 18px;
        font-size: 1.8rem;
        font-weight: bold; }
        @media screen and (max-width: 575px) {
          footer .flex-container .footer-about h4 {
            text-align: center; } }
      footer .flex-container .footer-about ul {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 0; }
        @media screen and (max-width: 575px) {
          footer .flex-container .footer-about ul {
            margin-top: 0; } }
        footer .flex-container .footer-about ul li {
          line-height: 2;
          width: 50%;
          position: relative; }
          @media screen and (max-width: 575px) {
            footer .flex-container .footer-about ul li {
              width: 100%;
              text-align: center; } }
          footer .flex-container .footer-about ul li span {
            color: #0081C9; }
    footer .flex-container .footer-link {
      width: 45%;
      text-align: end; }
      @media screen and (max-width: 1199px) {
        footer .flex-container .footer-link {
          width: 30%; } }
      @media screen and (max-width: 767px) {
        footer .flex-container .footer-link {
          text-align: left;
          width: 100%;
          margin-top: 1.5rem; } }
      footer .flex-container .footer-link a {
        display: block; }
        @media screen and (max-width: 575px) {
          footer .flex-container .footer-link a {
            text-align: center; } }
        footer .flex-container .footer-link a:hover img {
          opacity: 0.5; }
        footer .flex-container .footer-link a img {
          transition: 0.3s;
          height: 86px;
          width: auto;
          border: 1px solid #666; }
          @media screen and (max-width: 1199px) {
            footer .flex-container .footer-link a img {
              height: auto; } }
  footer p.copyright {
    font-size: 14px;
    font-size: 1.4rem;
    text-align: center;
    background: #0081C9;
    color: #fff;
    padding: 1rem 0;
    margin-bottom: 0; }

section {
  padding: 8rem 0; }
  @media screen and (max-width: 1199px) {
    section {
      padding: 5rem 0; } }
  @media screen and (max-width: 575px) {
    section {
      padding: 5rem 1rem; } }

.inner {
  width: 85%;
  margin: auto; }
  @media screen and (max-width: 991px) {
    .inner {
      width: 100%; } }
  @media screen and (max-width: 575px) {
    .inner {
      width: 90%; } }

h3 {
  font-size: 37px;
  font-size: 3.7rem;
  color: #0081C9;
  line-height: 0.8; }
  @media screen and (max-width: 767px) {
    h3 {
      font-size: 35px;
      font-size: 3.5rem; } }
  @media screen and (max-width: 575px) {
    h3 {
      font-size: 25px;
      font-size: 2.5rem;
      line-height: 1; } }
  h3 span {
    font-size: 16px;
    font-size: 1.6rem;
    color: #333333; }
