@charset "UTF-8";
/* CSS Document */
.inner {
  width: 83%;
  margin: 0 auto; }
  @media screen and (max-width: 991px) {
    .inner {
      width: 90%; } }
  @media screen and (max-width: 767px) {
    .inner {
      width: 100%; } }

.site-header {
  background-color: #fff;
  position: relative;
  color: #fff; }
  .site-header #global-nav {
    justify-content: space-between;
    align-items: center; }
    .site-header #global-nav.m_fixed {
      background-color: #fff;
      width: 100%;
      position: fixed;
      top: 0;
      z-index: 999; }
    .site-header #global-nav h1 {
      padding: 1rem 3rem;
      margin: 0; }
      @media screen and (max-width: 991px) {
        .site-header #global-nav h1 {
          padding: 1rem 2rem; } }
      .site-header #global-nav h1 img {
        width: 415px; }
        @media screen and (max-width: 1199px) {
          .site-header #global-nav h1 img {
            width: 315px; } }
        @media screen and (max-width: 991px) {
          .site-header #global-nav h1 img {
            width: 260px; } }
    .site-header #global-nav ul {
      display: flex;
      margin-bottom: 0; }
      .site-header #global-nav ul li a {
        padding: 2.5rem;
        display: block;
        background-color: #009CDE;
        transition: 0.3s; }
        @media screen and (max-width: 991px) {
          .site-header #global-nav ul li a {
            padding: 2rem; } }
        .site-header #global-nav ul li a:hover {
          background-color: #fff;
          color: #304B9A; }
      .site-header #global-nav ul li:last-child a {
        background-color: #304B9A; }
        .site-header #global-nav ul li:last-child a i {
          padding-right: 0.5rem; }
        .site-header #global-nav ul li:last-child a:hover {
          background-color: #fff;
          color: #304B9A; }

@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; } }
@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: 40px; } }
@media screen and (max-width: 575px) {
  .header .header__inner .logo img {
    height: 35px; } }

.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: #304B9A;
    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__item .drawer__nav__link {
        font-size: 20px;
        font-size: 2rem;
        display: block;
        color: #304B9A;
        text-decoration: none;
        padding: 1.5rem 2rem;
        border-top: solid 1px #304B9A;
        transition: 0.3s; }
        @media screen and (max-width: 575px) {
          .drawer__nav .drawer__nav__inner .drawer__nav__menu .drawer__nav__item .drawer__nav__link {
            font-size: 16px;
            font-size: 1.6rem; } }
        .drawer__nav .drawer__nav__inner .drawer__nav__menu .drawer__nav__item .drawer__nav__link:hover {
          background-color: #304B9A;
          color: #fff; }
      .drawer__nav .drawer__nav__inner .drawer__nav__menu .drawer__nav__item:last-child .drawer__nav__link {
        border-bottom: solid 1px #304B9A; }

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

.site-footer {
  background-color: #304B9A;
  position: relative;
  color: #fff; }
  .site-footer::before {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url("../img/footer.png");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto;
    mix-blend-mode: overlay;
    position: absolute;
    z-index: 1; }
    @media screen and (max-width: 767px) {
      .site-footer::before {
        background-size: cover; } }
  .site-footer .d-flex {
    position: relative;
    justify-content: space-between;
    z-index: 1;
    padding: 8rem 0; }
    @media screen and (max-width: 1199px) {
      .site-footer .d-flex {
        padding: 6rem 0; } }
    @media screen and (max-width: 767px) {
      .site-footer .d-flex {
        flex-wrap: wrap; } }
    @media screen and (max-width: 575px) {
      .site-footer .d-flex {
        padding: 4rem 0; } }
    .site-footer .d-flex .footer-about {
      width: 40%; }
      @media screen and (max-width: 1399px) {
        .site-footer .d-flex .footer-about {
          width: 45%; } }
      @media screen and (max-width: 991px) {
        .site-footer .d-flex .footer-about {
          width: 48%; } }
      @media screen and (max-width: 767px) {
        .site-footer .d-flex .footer-about {
          width: 100%;
          margin-bottom: 4rem; } }
      .site-footer .d-flex .footer-about h3 {
        margin-bottom: 2rem;
        width: 80%; }
        @media screen and (max-width: 1199px) {
          .site-footer .d-flex .footer-about h3 {
            margin-bottom: 1rem;
            width: 90%; } }
        @media screen and (max-width: 575px) {
          .site-footer .d-flex .footer-about h3 {
            width: 100%; } }
      .site-footer .d-flex .footer-about p {
        line-height: normal;
        margin-bottom: 2rem; }
        @media screen and (max-width: 1199px) {
          .site-footer .d-flex .footer-about p {
            margin-bottom: 1rem; } }
      .site-footer .d-flex .footer-about ul {
        display: flex;
        margin-bottom: 2rem; }
        @media screen and (max-width: 1199px) {
          .site-footer .d-flex .footer-about ul {
            margin-bottom: 1rem; } }
        .site-footer .d-flex .footer-about ul li {
          position: relative; }
          .site-footer .d-flex .footer-about ul li::after {
            content: '|';
            padding: 0 2rem; }
          .site-footer .d-flex .footer-about ul li:last-child::after {
            content: none; }
          .site-footer .d-flex .footer-about ul li a {
            transition: 0.3s; }
            .site-footer .d-flex .footer-about ul li a:hover {
              color: #009CDE; }
      .site-footer .d-flex .footer-about .tel-box {
        background-color: #fff;
        text-align: center;
        padding: 2rem; }
        @media screen and (max-width: 1199px) {
          .site-footer .d-flex .footer-about .tel-box {
            padding: 1.5rem; } }
        .site-footer .d-flex .footer-about .tel-box h4 {
          font-size: 20px;
          font-size: 2rem;
          color: #333;
          letter-spacing: 2px; }
          @media screen and (max-width: 1199px) {
            .site-footer .d-flex .footer-about .tel-box h4 {
              font-size: 16px;
              font-size: 1.6rem;
              letter-spacing: 1px;
              margin-bottom: 0; } }
        .site-footer .d-flex .footer-about .tel-box p {
          color: #333;
          line-height: 1.3;
          letter-spacing: 2px;
          margin-bottom: 0; }
          @media screen and (max-width: 1199px) {
            .site-footer .d-flex .footer-about .tel-box p {
              font-size: 14px;
              font-size: 1.4rem;
              letter-spacing: 1px;
              line-height: 1.2; } }
          .site-footer .d-flex .footer-about .tel-box p a {
            font-family: "Saira", sans-serif;
            font-size: 40px;
            font-size: 4rem;
            font-weight: bold;
            color: #304B9A; }
            @media screen and (max-width: 1199px) {
              .site-footer .d-flex .footer-about .tel-box p a {
                font-size: 30px;
                font-size: 3rem;
                letter-spacing: 2px; } }
            .site-footer .d-flex .footer-about .tel-box p a i {
              padding-right: 1rem; }
        .site-footer .d-flex .footer-about .tel-box + a {
          margin-top: 1rem;
          display: block;
          border: 1px solid #fff;
          padding: 1rem;
          text-align: center;
          letter-spacing: 2px;
          transition: 0.3s; }
          @media screen and (max-width: 1199px) {
            .site-footer .d-flex .footer-about .tel-box + a {
              letter-spacing: 1px; } }
          .site-footer .d-flex .footer-about .tel-box + a i {
            padding-right: 1rem; }
          .site-footer .d-flex .footer-about .tel-box + a:hover {
            background-color: #fff;
            color: #304B9A; }
    .site-footer .d-flex .footer-group {
      width: 40%; }
      @media screen and (max-width: 1399px) {
        .site-footer .d-flex .footer-group {
          width: 45%; } }
      @media screen and (max-width: 991px) {
        .site-footer .d-flex .footer-group {
          width: 50%; } }
      @media screen and (max-width: 767px) {
        .site-footer .d-flex .footer-group {
          width: 100%; } }
      .site-footer .d-flex .footer-group h4 {
        border-left: 6px solid #fff;
        padding-left: 1em;
        font-size: 25px;
        font-size: 2.5rem;
        margin-bottom: 3rem; }
        @media screen and (max-width: 1199px) {
          .site-footer .d-flex .footer-group h4 {
            font-size: 20px;
            font-size: 2rem; } }
        @media screen and (max-width: 575px) {
          .site-footer .d-flex .footer-group h4 {
            margin-bottom: 1.5rem; } }
      .site-footer .d-flex .footer-group ul li {
        margin-top: 1rem; }
        .site-footer .d-flex .footer-group ul li a {
          display: block;
          background-color: #009CDE;
          color: #fff;
          text-align: center;
          font-size: 20px;
          font-size: 2rem;
          padding: 2.5rem;
          transition: 0.3s; }
          @media screen and (max-width: 1199px) {
            .site-footer .d-flex .footer-group ul li a {
              font-size: 16px;
              font-size: 1.6rem;
              padding: 2rem; } }
          @media screen and (max-width: 575px) {
            .site-footer .d-flex .footer-group ul li a {
              padding: 1rem; } }
          .site-footer .d-flex .footer-group ul li a i {
            padding-left: 0.5rem; }
          .site-footer .d-flex .footer-group ul li a:hover {
            background-color: #fff;
            color: #009CDE; }
        .site-footer .d-flex .footer-group ul li:nth-child(2) {
          display: block;
          background-color: #009CDE;
          color: #fff;
          text-align: center;
          font-size: 20px;
          font-size: 2rem;
          padding: 2.5rem; }
          @media screen and (max-width: 1199px) {
            .site-footer .d-flex .footer-group ul li:nth-child(2) {
              font-size: 16px;
              font-size: 1.6rem;
              padding: 2rem; } }
          @media screen and (max-width: 575px) {
            .site-footer .d-flex .footer-group ul li:nth-child(2) {
              font-size: 16px;
              font-size: 1.6rem;
              padding: 1rem; } }
  .site-footer .copyright {
    display: block;
    border-top: 1px solid #fff;
    text-align: center; }
    .site-footer .copyright p {
      margin: 0;
      padding: 2rem 0; }
      @media screen and (max-width: 575px) {
        .site-footer .copyright p {
          font-size: 14px;
          font-size: 1.4rem;
          padding: 1rem 0; } }

.page-link01 {
  color: #fff;
  background: #009CDE;
  font-size: 20px;
  font-size: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  width: 250px;
  padding: 1rem 2rem;
  cursor: pointer;
  vertical-align: middle;
  text-decoration: none;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s; }
  @media screen and (max-width: 1199px) {
    .page-link01 {
      font-size: 18px;
      font-size: 1.8rem;
      width: 200px; } }
  @media screen and (max-width: 575px) {
    .page-link01 {
      font-size: 16px;
      font-size: 1.6rem; } }
  .page-link01 span {
    position: relative; }
  .page-link01::after {
    font-family: "Font Awesome 5 Free";
    content: "\f0da";
    font-weight: 900;
    color: #fff;
    position: absolute;
    right: 20px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }
  .page-link01::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    background: #304B9A; }
  .page-link01:hover {
    background: #304B9A; }
  .page-link01:hover::after {
    right: 10px; }
  .page-link01:hover::before {
    -webkit-transform: translateX(0%);
    transform: translateX(0%); }

.page-link02 {
  font-family: "Saira", sans-serif;
  color: #fff;
  background: #304B9A;
  font-size: 20px;
  font-size: 2rem;
  position: relative;
  display: flex;
  align-items: center;
  width: 250px;
  padding: 1rem 2rem;
  cursor: pointer;
  vertical-align: middle;
  text-decoration: none;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s; }
  @media screen and (max-width: 1199px) {
    .page-link02 {
      font-size: 18px;
      font-size: 1.8rem;
      width: 200px; } }
  @media screen and (max-width: 575px) {
    .page-link02 {
      font-size: 16px;
      font-size: 1.6rem;
      width: 110px;
      padding: 0.5rem 2rem; } }
  .page-link02 span {
    position: relative; }
  .page-link02::after {
    font-family: "Font Awesome 5 Free";
    content: "\f0da";
    font-weight: 900;
    color: #fff;
    position: absolute;
    right: 20px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out; }
  .page-link02::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    background: #009CDE; }
  .page-link02:hover {
    background: #009CDE; }
  .page-link02:hover::after {
    right: 10px; }
  .page-link02:hover::before {
    -webkit-transform: translateX(0%);
    transform: translateX(0%); }

#ul-header {
  background-size: cover;
  background-position: center; }
  @media screen and (max-width: 767px) {
    #ul-header {
      margin-top: 74px; } }
  #ul-header .container {
    position: relative;
    display: flex;
    align-items: center;
    height: 300px; }
    @media screen and (max-width: 991px) {
      #ul-header .container {
        height: 270px; } }
    @media screen and (max-width: 767px) {
      #ul-header .container {
        height: 250px; } }
    @media screen and (max-width: 575px) {
      #ul-header .container {
        height: 220px; } }
  #ul-header h1 {
    font-size: 50px;
    font-size: 5rem;
    color: #fff;
    letter-spacing: 0.2em; }
    @media screen and (max-width: 991px) {
      #ul-header h1 {
        font-size: 40px;
        font-size: 4rem;
        letter-spacing: 0.15em; } }
    @media screen and (max-width: 575px) {
      #ul-header h1 {
        font-size: 35px;
        font-size: 3.5rem;
        letter-spacing: 0.1em; } }
  #ul-header .subtitle {
    position: absolute;
    right: 0;
    bottom: -2rem;
    font-family: "Saira", sans-serif;
    font-size: 120px;
    font-size: 12rem;
    font-weight: 100;
    line-height: 1;
    color: #fff;
    pointer-events: none; }
    @media screen and (max-width: 991px) {
      #ul-header .subtitle {
        font-size: 100px;
        font-size: 10rem;
        bottom: -1.5rem; } }
    @media screen and (max-width: 767px) {
      #ul-header .subtitle {
        font-size: 90px;
        font-size: 9rem; } }
    @media screen and (max-width: 767px) {
      #ul-header .subtitle {
        font-size: 70px;
        font-size: 7rem;
        bottom: -1rem; } }

/* トップへ戻るボタン */
#page-top {
  position: fixed;
  font-size: 75%;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1000; }
  #page-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: #a0a0a0;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: opacity 0.3s ease, transform 0.3s ease; }
    #page-top a:hover {
      opacity: 0.8;
      transform: translateY(-2px); }
    #page-top a:focus-visible {
      outline: 2px solid #fff;
      outline-offset: -2px; }
  #page-top img {
    width: 22px;
    height: auto; }

/* ページ内リンク調節 */
.anchor {
  display: block;
  padding-top: 80px;
  margin-top: -80px; }

#inpage-link {
  background-color: #333; }
  #inpage-link ul {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    margin-bottom: 0; }
    @media screen and (max-width: 767px) {
      #inpage-link ul {
        height: 55px; } }
    @media screen and (max-width: 575px) {
      #inpage-link ul {
        height: 100px;
        flex-wrap: wrap;
        justify-content: flex-start;
        padding: 1rem 0; } }
    #inpage-link ul li {
      padding: 0 1.5em;
      border-right: solid 1px #fff; }
      #inpage-link ul li:last-child {
        border-right: none; }
      #inpage-link ul li a {
        font-size: 20px;
        font-size: 2rem;
        color: #fff;
        letter-spacing: 0.2em; }
        @media screen and (max-width: 767px) {
          #inpage-link ul li a {
            font-size: 16px;
            font-size: 1.6rem; } }
