@charset "UTF-8";
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

a:hover {
  opacity: 0.8;
}

.inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}

/*=================================================
アニメーション
==================================================*/
.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}
.fadein.fadein-left {
  -webkit-transform: translate(-30px, 0);
          transform: translate(-30px, 0);
}
.fadein.fadein-right {
  -webkit-transform: translate(30px, 0);
          transform: translate(30px, 0);
}
.fadein.fadein-right2 {
  -webkit-transform: translate(30px, 0);
          transform: translate(30px, 0);
}
.fadein.fadein-up {
  -webkit-transform: translate(0, -30px);
          transform: translate(0, -30px);
}
.fadein.fadein-bottom {
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
.fadein.fadein-bottom2 {
  -webkit-transform: translate(0, 30px);
          transform: translate(0, 30px);
}
.fadein.scrollin {
  opacity: 1 !important;
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
}

.rotation {
  -webkit-transition: all 1s;
  transition: all 1s;
  opacity: 0;
}
.rotation.rotation-x {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
.rotation.rotation-y {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.rotation.rotation-clockwise {
  -webkit-transform: rotate(-170deg);
          transform: rotate(-170deg);
}
.rotation.rotation-counterclockwise {
  -webkit-transform: rotate(170deg);
          transform: rotate(170deg);
}
.rotation.scrollin {
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
  opacity: 1 !important;
}

/*==================================
header
==================================*/
.header {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff;
  -webkit-transition: top 0.3s ease;
  transition: top 0.3s ease;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .header {
    position: relative;
  }
}

.header.is-fixed {
  top: 0;
}

body {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  body {
    padding-top: 0;
  }
}

.header__pc {
  height: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header__pc {
    height: 60px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 440px);
}
@media screen and (max-width: 1280px) {
  .header__inner {
    width: calc(100% - 120px);
  }
}
@media screen and (max-width: 767px) {
  .header__inner {
    width: 100%;
    height: 60px;
  }
}

.header__logo {
  width: 240px;
  margin-left: 50px;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 150px;
    margin-left: 20px;
  }
}

.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__nav ul li a {
  padding: 0 20px;
  padding-bottom: 3px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .header__nav ul li a {
    padding: 0 10px;
  }
}
.header__nav ul li a::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 20px;
  background: #000;
  right: 0;
  top: 3px;
}
.header__nav ul li a::before {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #003067;
  bottom: -1px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  /*変形の時間*/
}
.header__nav ul li a:hover::before {
  -webkit-transform: scale(0.7, 1);
          transform: scale(0.7, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}
.header__nav ul li:last-child a::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__tel {
  position: absolute;
  right: 120px;
  top: 20px;
  font-size: 30px;
  font-weight: 700;
  z-index: 999;
}
.header__tel a {
  color: #003067;
  position: relative;
}
.header__tel a::before {
  position: absolute;
  content: "";
  width: 25px;
  height: 39px;
  background: url("../image/top/header-tel.png");
  left: -40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1280px) {
  .header__tel {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header__tel {
    display: none;
  }
}

.header__contact {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 999;
}
.header__contact a {
  background: #003067;
  width: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  height: 100px;
  position: relative;
}
.header__contact a span {
  margin-top: 30px;
  font-size: 12px;
}
.header__contact a::before {
  position: absolute;
  content: "";
  width: 33px;
  height: 22px;
  background: url("../image/top/header-mail.png");
  background-size: contain;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 30px;
}
@media screen and (max-width: 767px) {
  .header__contact {
    display: none;
  }
}

/* ハンバーガーボタンのデザイン */
.drawer__button {
  position: fixed;
  width: 3rem;
  height: 3rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  right: 10px;
  top: 6px;
  z-index: 999;
  /* メニューを開いている時もクリックできるよう設定 */
}

/* ハンバーガーボタン内の線 */
.drawer__button > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 2px;
  background-color: black;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.drawer__button > span:first-child {
  -webkit-transform: translate(-50%, calc(-50% - 0.5rem));
          transform: translate(-50%, calc(-50% - 0.5rem));
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.drawer__button > span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.drawer__button > span:last-child {
  -webkit-transform: translate(-50%, calc(-50% + 0.5rem));
          transform: translate(-50%, calc(-50% + 0.5rem));
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

/* 展開時のデザイン */
.drawer__button.active > span:first-child {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer__button.active > span:nth-child(2) {
  opacity: 0;
}

.drawer__button.active > span:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          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);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.drawer__nav.active {
  opacity: 1;
  visibility: visible;
}

.drawer__nav__inner {
  position: relative;
  width: 80%;
  height: 100%;
  background-color: white;
  padding: 4rem 1.5rem 1rem;
  margin: 0 0 0 auto;
  overflow: scroll;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.drawer__nav.active .drawer__nav__inner {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer__nav__menu {
  list-style: none;
  padding-left: 0;
}

.drawer__nav__link {
  display: block;
  color: black;
  text-decoration: none;
  padding: 1rem 1rem;
  border-bottom: solid 1px lightgray;
}

/* ハンバーガーメニュー展開時、背景を固定 */
body.active {
  height: 100%;
  overflow: hidden;
}

.drawer__nav-tel {
  margin: auto;
  text-align: center;
  margin-top: 30px;
  margin-left: 20px;
}
.drawer__nav-tel a {
  position: relative;
  font-size: 28px;
  text-align: center;
  border-bottom: none;
  padding: 0;
}
.drawer__nav-tel a::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 30px;
  background: url("../image/top/contact-tel.png");
  background-size: contain;
  left: -8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-repeat: no-repeat;
}

.drawer__nav-recruit {
  width: 100%;
  margin-top: 15px;
}
.drawer__nav-recruit a {
  display: inline-block;
  width: 100%;
  background: #003067;
  padding: 15px 0;
  padding-left: 20px;
  text-align: center;
  color: #fff;
  font-size: 17px;
  position: relative;
  border-bottom: none;
}
.drawer__nav-recruit a::before {
  position: absolute;
  content: "";
  width: 23px;
  height: 23px;
  background: url("../image/icon-recruit.svg");
  margin-left: -40px;
  top: 52%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-repeat: no-repeat;
}

/*==========================================================================
contact
========================================================================== */
.contact {
  padding-top: 150px;
  padding-bottom: 150px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.contact__p {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .contact__p {
    margin-top: 20px;
    font-size: 14px;
  }
}

.contact__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .contact__contents {
    margin-top: 0px;
    display: block;
  }
}

.contact__item {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .contact__item {
    width: 100%;
  }
}
.contact__item a {
  border: 1px solid #606060;
  padding: 30px 30px 29px 65px;
  width: 100%;
  display: block;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}
.contact__item a:hover {
  opacity: 1 !important;
  color: #fff;
  background: #000;
}
@media screen and (max-width: 767px) {
  .contact__item a {
    padding: 10px 10px 10px 30px;
  }
}

.contact__tel a {
  font-size: 30px;
  border-right: none;
  position: relative;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
  line-height: 2.25;
}
@media screen and (max-width: 767px) {
  .contact__tel a {
    font-size: 20px;
    border-right: 1px solid #606060;
    margin-top: 30px;
  }
}
.contact__tel a::before {
  position: absolute;
  content: "";
  background: url("../image/top/contact-tel.png") center center no-repeat;
  background-size: contain;
  width: 29px;
  height: 43px;
  margin-left: -40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .contact__tel a::before {
    width: 20px;
    height: 29px;
    margin-left: -30px;
  }
}
.contact__tel a:hover::before {
  background: url("../image/top/contact-tel-white.png") center center no-repeat;
  background-size: contain;
  width: 29px;
  height: 43px;
  margin-left: -40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .contact__tel a:hover::before {
    width: 20px;
    height: 29px;
    margin-left: -30px;
  }
}

.contact__mail a {
  font-size: 18px;
  padding: 43px 30px;
  position: relative;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
  line-height: 2.25;
}
@media screen and (max-width: 767px) {
  .contact__mail a {
    font-size: 16px;
    padding: 15px 15px 15px 25px;
    margin-top: 20px;
  }
}
.contact__mail a::before {
  position: absolute;
  content: "";
  background: url("../image/top/contact-mail.png") center center no-repeat;
  background-size: contain;
  width: 35px;
  height: 24px;
  margin-left: -45px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .contact__mail a::before {
    width: 24px;
    height: 17px;
    margin-left: -30px;
  }
}
.contact__mail a:hover::before {
  position: absolute;
  content: "";
  background: url("../image/top/contact-mail-white.png") center center no-repeat;
  background-size: contain;
  width: 35px;
  height: 24px;
  margin-left: -45px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .contact__mail a:hover::before {
    width: 24px;
    height: 17px;
    margin-left: -30px;
  }
}
.contact__mail a::after {
  position: absolute;
  content: "";
  background: url("../image/top/button.png") center center no-repeat;
  background-size: contain;
  width: 19px;
  height: 19px;
  margin-left: 20px;
  top: 50.5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.2s 0s ease;
  transition: all 0.2s 0s ease;
  /*transitionの記述を追加*/
}
@media screen and (max-width: 767px) {
  .contact__mail a::after {
    width: 11px;
    height: 11px;
    margin-left: 10px;
  }
}
.contact__mail a:hover::after {
  position: absolute;
  content: "";
  background: url("../image/top/butoon-next-white.png") center center no-repeat;
  background-size: contain;
  width: 19px;
  height: 19px;
  margin-left: 30px;
  top: 50.5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*==========================================================================
footer
========================================================================== */
.footer {
  color: #fff;
  padding: 70px 0;
  position: relative;
}
.footer::before {
  background: #003067;
  z-index: -2;
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
}
.footer::after {
  position: absolute;
  content: "";
  background: url("../image/top/footer-bg.png") center center no-repeat;
  width: 665px;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .footer::after {
    display: none;
  }
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .footer__top {
    display: block;
  }
}

.footer__top-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__logo {
  width: 105px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 80px;
  }
}

.footer__info {
  margin-left: 30px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .footer__info {
    margin-left: 10px;
  }
}

.footer__info1 {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .footer__info1 {
    font-size: 15px;
  }
}

.footer__info2 {
  font-size: 14px;
  line-height: 1.6428571429;
  margin-top: 10px;
}
.footer__info2 a {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer__info2 {
    font-size: 13px;
  }
}

.footer__nav {
  max-width: 350px;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    max-width: 100%;
    margin-top: 20px;
  }
}
.footer__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer__nav ul li {
  width: 50%;
  margin-top: 5px;
  padding-left: 15px;
  position: relative;
}
.footer__nav ul li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.footer__nav ul li a {
  color: #fff;
  font-size: 15px;
}

.footer__bottom {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .footer__bottom {
    margin-top: 50px;
  }
}

.footer__letter {
  font-size: 40px;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
  border-bottom: 1px solid #fff;
}
.footer__letter span {
  font-weight: 200;
}
@media screen and (max-width: 767px) {
  .footer__letter {
    font-size: 28px;
  }
}

.footer__bottom-wrapper {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__bottom-wrapper {
    display: block;
    margin-top: 10px;
  }
}

.footer__copy1 {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .footer__copy1 {
    font-size: 16px;
  }
}

.footer__copy2 {
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .footer__copy2 {
    font-size: 12px;
  }
}

.footer__copyright {
  font-size: 12px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 10px;
  }
}

.footer__bottom-right {
  max-width: 365px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer__bottom-right {
    max-width: 100%;
  }
}

.footer__img {
  max-width: 365px;
  width: 100%;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .footer__img {
    max-width: 375px;
    margin: auto;
    margin-top: 20px;
  }
}

.footer__group-text {
  font-size: 10px;
  letter-spacing: 0.04em;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .footer__group-text {
    max-width: 375px;
    margin: auto;
    margin-top: 5px;
    font-size: 9px;
    letter-spacing: 0.06em;
  }
}

.to-top {
  width: 80px;
  height: 80px;
  margin-bottom: 0;
  padding-bottom: 0;
  z-index: 1000;
  position: fixed;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .to-top {
    width: 50px;
    position: static;
  }
}
.to-top a {
  display: inline-block;
  background: url("../image/top/to-top.svg") center center no-repeat;
  background-size: contain;
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 767px) {
  .to-top a {
    width: 50px;
    height: 50px;
  }
}

.to-top {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.to-top.visible {
  opacity: 1;
  visibility: visible;
}

/*=================================================
cta
==================================================*/
.cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #000000;
  z-index: 1000;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 45px;
  color: #fff;
  z-index: 100;
  border-top: 1px solid #ffffff;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cta.visible {
  opacity: 1;
  visibility: visible;
}

.cta-contact {
  width: calc(50% - 25px);
  border-right: 1px solid #fff;
  background: #003067;
}
.cta-contact a {
  color: #fff !important;
  width: 100%;
  display: inline-block;
  text-align: center;
  font-size: 13px;
  margin-top: 12px;
  position: relative;
  margin-left: 8px;
}
.cta-contact a::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 17px;
  background: url(../image/top/contact-tel-white.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.cta-reserve {
  width: calc(50% - 25px);
  border-right: 1px solid #fff;
  background: #003067;
}
.cta-reserve a {
  color: #fff !important;
  width: 100%;
  display: inline-block;
  text-align: center;
  font-size: 11px;
  margin-top: 13px;
  position: relative;
  margin-left: 8px;
}
.cta-reserve a::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 9px;
  background: url(../image/top/contact-mail-white.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.to-top1 {
  width: 100px;
  margin-bottom: 0;
  padding-bottom: 0;
  z-index: 1000;
  position: fixed;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .to-top1 {
    width: 50px;
    position: static;
  }
}
.to-top1 a {
  display: inline-block;
  background: url("../image/top/to-top.svg") center center no-repeat;
  background-size: contain;
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 767px) {
  .to-top1 a {
    width: 50px;
    height: 50px;
  }
}