@charset "UTF-8";
/* CSS Document */
*, *:before, *:after {
  box-sizing: border-box;
}
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #000;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.7rem;
  line-height: 1.8;
  text-align: justify;
}

#wrapper {
  overflow: hidden;
}

section {
  margin: 0 auto 80px;
}
@media (max-width: 500px) {
  section {
    margin-bottom: 60px;
  }
}

.section-inner {
  padding: 0 2%;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section-inner {
    padding: 0 4%;
  }
}
@media (max-width: 500px) {
  .section-inner {
    padding: 0 6%;
  }
}

h1,h2 {
  font-weight: 700;
  line-height: 1.3;
  color: #274870;
}
h3 {
  font-weight: 600;
  line-height: 1.3;
}
.ttl-sub {
  font-weight: 500;
  line-height: 1.3;
}
ul {
  list-style-type: none;
}
img {
  width: 100%;
  vertical-align:top;
}
a {
  color: #333;
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: .8;
    transition: .3s;
  }
}
a:visited {
  opacity: 1;
}

[id] {
  scroll-margin-top: 90px;
}

@media (max-width: 768px) {
  [id] {
    scroll-margin-top: 80px;
  }
}

@media (min-width: 768px) {
  a[href^="tel:"] {
      pointer-events: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .opacity-link:hover {
    opacity: .6;
    transition: .3s;
  }
}

.no-break {
  white-space: nowrap;
}
@media (max-width: 380px) {
  .no-break {
    white-space: normal;
  }
}

.br-400 {
  display: block;
}
@media (max-width: 500px) {
  .br-400 {
    display: none;
  }
}
.br-420 {
  display: none;
}
@media (max-width: 420px) {
  .br-420 {
    display: block;
  }
}
.br-450 {
  display: none;
}
@media (max-width: 450px) {
  .br-450 {
    display: block;
  }
}
.br-500 {
  display: none;
}
@media (max-width: 500px) {
  .br-500 {
    display: block;
  }
}
.br-520 {
  display: none;
}
@media (max-width: 520px) {
  .br-520 {
    display: block;
  }
}
.br-1000 {
  display: none;
}
@media (max-width: 1000px) {
  .br-1000 {
    display: block;
  }
}



/* =================================
font-size 
================================= */

.fs-52-24 { font-size: 5.2rem; }
.fs-44-25 { font-size: 4.4rem; }
.fs-32-24 { font-size: 3.2rem; }
.fs-32-20 { font-size: 3.2rem; }
.fs-24-20 { font-size: 2.4rem; }
.fs-24-16 { font-size: 2.4rem; }
.fs-17-16 { font-size: 1.7rem; }
.fs-16-14 { font-size: 1.6rem; }
.fs-14-11 { font-size: 1.4rem; }
.fs-14 { font-size: 1.4rem; }
.fs-13 { font-size: 1.3rem; }
.fs-12-11 { font-size: 1.2rem; }

@media screen and (max-width: 900px) {
  .fs-52-24 { font-size: 3.2rem; }
  .fs-44-25 { font-size: 3.0rem; }
  .fs-32-24 { font-size: 2.6rem; }
  .fs-32-20 { font-size: 2.4rem; }
  .fs-24-20 { font-size: 2.2rem; }
  .fs-24-16 { font-size: 2.0rem; }
}

@media screen and (max-width: 500px) {
  .fs-52-24 { font-size: 2.6rem; }
  .fs-44-25 { font-size: 2.5rem; }
  .fs-32-24 { font-size: 2.2rem; }
  .fs-32-20 { font-size: 2.0rem; }
  .fs-24-20 { font-size: 2.0rem; }
  .fs-24-16 { font-size: 1.8rem; }
  .fs-17-16 { font-size: 1.6rem; }
  .fs-16-14 { font-size: 1.4rem; }
  .fs-14-11 { font-size: 1.1rem; }
  .fs-12-11 { font-size: 1.1rem; }
}



/* =========================
  header
========================= */

/* =========================
  header
========================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 90px;
  background: linear-gradient(-98deg, #274870 0%, #143150 100%);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2%;
}
.header__logo {
  position: relative;
  z-index: 120;
  width: 210px;
  flex-shrink: 0;
}
.header__nav {
  flex: 1;
}
.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
}
.header__nav-link {
  display: block;
  color: #fff;
  line-height: 1.4;
}
.header__nav-item {
  position: relative;
}
.header__sub-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  padding: 10px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 200;
}
.header__sub-menu li {
  text-align: center;
}
.header__sub-menu a {
  display: block;
  padding: 5px 0;
  color: #333;
  font-weight: 600;
}
.header__nav-item--has-sub:hover .header__sub-menu {
  opacity: 1;
  visibility: visible;
}
.header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 120px;
  min-height: 46px;
  padding: 10px;
  color: #fff;
  background: #00bce3;
  border-radius: 3px;
}
.header__btn--recruit {
  color: #143150;
  background: #eceff2;
}
.header__menu-btn {
  display: none;
}
.header__menu-txt {
  display: block;
  color: #143150;
  line-height: 1;
  font-size: 1.2rem;
  font-weight: 700;
}
.header__menu-line {
  display: block;
  width: 26px;
  height: 2px;
  background: #143150;
  transition: transform .3s, opacity .3s;
}

@media screen and (max-width: 1024px) {
  .header__nav-list {
    gap: 15px;
  }
}

@media screen and (max-width: 950px) {
  body.is-menu-open {
    overflow: hidden;
  }
  .header__inner {
    padding: 0 4%;
  }
  .header__logo {
    width: 190px;
  }
  .header__menu-btn {
    position: relative;
    z-index: 120;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 64px;
    height: 64px;
    padding: 8px;
    border: none;
    background: #eceff2;
    border-radius: 6px;
    cursor: pointer;
    
  }
  .header__nav {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 130px 40px 50px;
    background: linear-gradient(-98deg, #274870 0%, #143150 100%);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
  }
  .header__nav-list {
    display: block;
    width: 100%;
    max-width: 520px;
  }
  .header__nav-item + .header__nav-item {
    margin-top: 40px;
  }
  .header__nav-link {
    color: #fff;
    font-size: 2rem;
  }
  .header__btn {
    justify-content: center;
    max-width: none;
    font-size: 2rem;
    border-radius: 10px;
  }
  .header.is-open .header__nav {
    opacity: 1;
    visibility: visible;
  }
  .header.is-open .header__menu-txt {
    font-size: 1.1rem;
  }
  .header.is-open .header__menu-line:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }
  .header.is-open .header__menu-line:last-of-type {
    transform: translateY(-4px) rotate(-45deg);
  }
}

@media screen and (max-width: 768px) {
  .header {
    height: 80px;
  }
  .header__inner {
    padding: 0 4%;
  }
  .header__logo {
    width: 170px;
  }
  .header__menu-btn {
    width: 60px;
    height: 60px;
  }
  .header__nav-item + .header__nav-item {
    margin-top: 30px;
  }
  .header__nav-link {
    font-size: 2rem;
  }
  .header__btn {
    font-size: 2rem;
  }
}

@media screen and (max-width: 500px) {
  .header {
    height: 65px;
  }
  .header__inner {
    padding: 0 6%;
  }
  .header__logo {
    width: 150px;
  }
  .header__menu-btn {
    gap: 6px;
    width: 52px;
    height: 52px;
    padding: 6px;
    border-radius: 5px;
  }
  .header__menu-txt {
    font-size: 1rem;
  }
  .header__menu-line {
    width: 22px;
  }
  .header__btn {
    min-height: 60px;
    font-size: 2rem;
    border-radius: 8px;
  }
  .header.is-open .header__menu-txt {
      font-size: 1rem;
    }
  .header.is-open .header__menu-line:nth-child(2) {
    transform: translateY(4px) rotate(45deg);
  }
  .header.is-open .header__menu-line:last-of-type {
    transform: translateY(-4px) rotate(-45deg);
  }
}



/* =================================
メインビジュアル
================================= */

.mv {
  position: relative;
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-bottom: 0;
}
.mv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.9) 20%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.3) 60%,
    rgba(0, 0, 0, 0) 75%
  );
}
.mv__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-shadow:
  0 0 6px rgba(0, 0, 0, 0.4),
  0 0 12px rgba(0, 0, 0, 0.3);
}

.mv .page-head__inner {
  margin-bottom: 80px;
}
.mv__ttl {
  margin-bottom: 30px;
}
.mv__txt {
  line-height: 2.6;
}

@media screen and (max-width: 768px) {
  .mv::before {
    background: rgba(0, 0, 0, 0.5);
  }
  .mv .page-head__inner {
    margin-bottom: 60px;
    }
    .mv__ttl {
    margin-bottom: 20px;
    }
    .mv__txt {
    line-height: 2.2;
    }
}

@media screen and (max-width: 500px) {
  .mv .page-head__inner {
    margin-bottom: 30px;
    }
    .mv__ttl {
    margin-bottom: 10px;
    }
    .mv__txt {
        font-size: 1.6rem;
    line-height: 2;
    }
}

@media screen and (max-width: 340px) {
  .mv .page-head__inner {
    margin-bottom: 20px;
    }
    .mv__ttl {
    margin-bottom: 10px;
    }
    .mv__txt {
    line-height: 1.8;
    }
}


/* =================================
パンくず
================================= */

.breadcrumb {
  margin: 15px 0 40px;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
}
.breadcrumb__item {
  font-size: 1.2rem;
}
.breadcrumb__item + .breadcrumb__item::before {
  content: ">";
  margin: 0 2px 0 8px;
}

@media screen and (max-width: 768px) {
  .breadcrumb {
    margin: 10px 0 40px;
  }
}

@media screen and (max-width: 500px) {
  .breadcrumb {
    margin-bottom: 40px;
  }
  .breadcrumb__item {
    font-size: 1.1rem;
  }
}


/* =================================
contact-sec
================================= */

.contact-sec__wrap {
  display: flex;
  align-items: center;
}
.contact-sec__left,
.contact-sec__right {
  flex: 1;
  padding: 5px 40px;
}
.contact-sec__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 1px solid #bdbdbd;
}
.contact-sec__ttl-en {
  font-family: "Oswald", sans-serif;
  font-size: 2.4rem;
  font-weight: 200;
  color: #b3b3b3;
  line-height: 1;
}
.contact-sec__ttl-ja {
  font-size: 3.2rem;
  margin-bottom: 15px;
}
.contact-sec__box {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  min-height: 100px;
  padding: 5px 25px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.contact-sec__icon {
  width: 45px;
  height: auto;
  flex-shrink: 0;
}
.contact-sec__info {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.contact-sec__tel,.contact-sec__form {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1.2;
  width: 100%;
  text-align: center;
}
.contact-sec__tel {
  border-bottom: 1px solid #000;
}
.contact-sec__time {
  margin-top: 8px;
  font-size: 1.6rem;
  line-height: 1.4;
}

@media (hover: hover) and (pointer: fine) {
  .contact-sec__box {
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .contact-sec__box:hover {
    transform: translateY(4px);
    opacity: 1;
  }
}

@media screen and (max-width: 1000px) {
  .contact-sec__left,
  .contact-sec__right {
    flex: 1;
    padding: 5px 0;
  }
  .contact-sec__left {
    padding-right: 20px;
  }
  .contact-sec__right {
    padding-left: 20px;
  }
  .contact-sec__box {
    padding: 5px 20px;
  }
}

@media screen and (max-width: 870px) {
  .contact-sec__wrap {
    flex-direction: column;
  }
  .contact-sec__ttl-ja {
    border-bottom: 1px solid #bdbdbd;
    margin-bottom: 20px;
  }
  .contact-sec__left {
    padding: 0;
    margin-bottom: 40px;
  }
  .contact-sec__right {
    padding: 0;
    border-left: none;
    max-width: 458px;
    width: 100%;
  }
}


/* =========================
  footer
========================= */

.footer {
  position: relative;
  margin-top: 0;
  padding: 40px 0 60px;
  background: linear-gradient( -98deg, #274870 0%, #143150 100% );
}
.footer__inner {
  position: relative;
}
.footer__nav-wrap {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0 18px;
}
.footer__col {
  min-width: 0;
}
.footer__col--top {
  grid-column: 1 / -1;
  margin-bottom: 34px;
}
.footer__ttl {
  display: block;
  padding-bottom: 10px;
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255, 255, 255, 1);
}
.footer__ttl--top {
  margin-bottom: 0;
}
.footer__ttl--second {
  margin-top: 22px;
}
.footer__list {
  margin-top: 14px;
}
.footer__item + .footer__item {
  margin-top: 5px;
}
.footer__link {
  color: #fff;
  line-height: 1.45;
}
.footer__contact {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 175px;
  min-height: 48px;
  margin-top: 20px;
  padding: 10px 20px;
  color: #fff;
  background: #00bce3;
  border-radius: 4px;
}
.footer__col--policy {
  display: none;
}
.footer__policy {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 1);
  align-items: center;
}
.footer__policy-link {
  color: #fff;
  line-height: 1.5;
}
.footer__bottom {
  margin-top: 30px;
  text-align: center;
}
.footer__logo {
  max-width: 330px;
  margin: 0 auto;
}
.footer__copy {
  margin-top: 20px;
  color: #fff;
  line-height: 1.5;
}
.footer__pagetop {
  position: fixed;
  right: 35px;
  bottom: 60px;
  z-index: 100;
  width: 90px;
  height: 90px;
  background: rgba(233, 233, 233, 0.8);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.footer__pagetop.is-show {
  opacity: 1;
  visibility: visible;
}
.footer__pagetop::before {
  content: "";
  position: absolute;
  top: 56%;
  left: 50%;
  width: 18px;
  height: 18px;
  border-top: 3px solid #274870;
  border-left: 3px solid #274870;
  transform: translate(-50%, -50%) rotate(45deg);
}

@media screen and (max-width: 1100px) {
  .footer__nav-wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
  }
  .footer__col--top {
    grid-column: 1 / -1;
    margin-bottom: 25px;
  }
  .footer__policy {
    margin-top: 45px;
  }
  .footer__pagetop {
    width: 74px;
    height: 74px;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 38px 0 35px;
  }
  .footer__inner {
    display: flex;
    flex-direction: column;
  }
  .footer__nav-wrap {
    display: block;
  }
  .footer__col--top {
    margin-bottom: 0;
  }
  .footer__col + .footer__col {
    margin-top: 18px;
  }
  .footer__ttl {
    padding-bottom: 0;
    border-bottom: none;
  }
  .footer__ttl--top {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 1);
  }
  .footer__ttl--second {
    margin-top: 20px;
  }
  .footer__list {
    display: none;
  }
  .footer__col--policy {
    display: block;
    margin-top: 20px;
  }
  .footer__policy {
    margin-top: 20px;
    padding-top: 0;
    border-top: none;
  }
  .footer__policy-link {
    display: none;
  }
  .footer__policy-link:first-child {
    display: block;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
  }
  .footer__policy__ttl {
    display: none;
  }
  .footer__contact {
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: 70px;
    margin-top: 30px;
  }
  .footer__logo {
    width: 430px;
    max-width: 100%;
  }
  .footer__copy {
    margin-top: 20px;
    font-size: 1.3rem;
    line-height: 1.5;
  }
  .footer__pagetop {
    bottom: 40px;
    right: 40px;
  }
  .footer__pagetop::before {
    width: 16px;
    height: 16px;
  }
}

@media screen and (max-width: 500px) {
  .footer {
    padding: 30px 0;
  }
  .footer__col + .footer__col {
    margin-top: 16px;
  }
  .footer__ttl--top {
    padding-bottom: 10px;
  }
  .footer__ttl--second {
    margin-top: 15px;
  }
  .footer__policy-link:first-child {
    font-size: 1.4rem;
  }
  .footer__contact {
    min-height: 60px;
  }
  .footer__bottom {
    margin-top: 20px;
  }
  .footer__logo {
    width: 300px;
  }
  .footer__copy {
    margin-top: 16px;
  }
  .footer__pagetop {
    bottom: 50px;
    right: 20px;
    width: 65px;
    height: 65px;
  }
  .footer__pagetop::before {
    width: 14px;
    height: 14px;
    border-top: 2px solid #274870;
    border-left: 2px solid #274870;
  }
}
