@charset "UTF-8";
/*---------------------
Reset
---------------------*/
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

@font-face {
  font-family: "Noto Sans JP";
  font-weight: 400;
  src: url(./asset/font/NotoSansJP-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 500;
  src: url(./asset/font/NotoSansJP-Medium.ttf) format("truetype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 600;
  src: url(./asset/font/NotoSansJP-Bold.ttf) format("truetype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 900;
  src: url(./asset/font/NotoSansJP-Black.ttf) format("truetype");
}
/*---------------------
base
---------------------*/
html {
  font-size: 16px;
  color: #021526;
  height: 100%;
}

body {
  font-size: 1rem;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
  font-weight: 200;
}

/* ---------------------------
animation
--------------------------- */
.slide-in {
  position: relative;
  overflow: hidden;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

.Top-works {
  opacity: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 1s ease;
  transition: transform 1s ease, opacity 1s ease, -webkit-transform 1s ease;
  position: relative;
}

.Top-works.left {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.Top-works.visible {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.Top-works__bg,
.Top-works__bg--reverse {
  opacity: 0;
}

.Top-works__bg.visible {
  -webkit-animation-name: bgLRxtendAnime;
          animation-name: bgLRxtendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.Top-works__bg--reverse.visible {
  -webkit-animation-name: bgRLxtendAnime;
          animation-name: bgRLxtendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes bgLRxtendAnime {
  0% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes bgLRxtendAnime {
  0% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: 1;
  }
}
@-webkit-keyframes bgRLxtendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: 1;
  }
}
@keyframes bgRLxtendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeUpAnime {
  0% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeUpAnime {
  0% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
/* 上下のアニメーション*/
.upAnime,
.upAnime2 {
  opacity: 0; /* 事前に透過0 にして消しておく*/
}

.slideAnimeDownUp {
  -webkit-animation-name: slideTextY100;
          animation-name: slideTextY100;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  opacity: 0;
}

.slideAnimeDownUp2 {
  -webkit-animation-name: slideTextY100;
          animation-name: slideTextY100;
  -webkit-animation-duration: 1.6s;
          animation-duration: 1.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
  opacity: 0;
}

@-webkit-keyframes slideTextY100 {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%); /* 要素を上の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0); /* 要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextY100 {
  from {
    -webkit-transform: translateY(100%);
            transform: translateY(100%); /* 要素を上の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0); /* 要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeUpDown {
  -webkit-animation-name: slideTextY-100;
          animation-name: slideTextY-100;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  opacity: 0;
}

.slideAnimeUpDown2 {
  -webkit-animation-name: slideTextY-100;
          animation-name: slideTextY-100;
  -webkit-animation-duration: 1.6s;
          animation-duration: 1.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
  opacity: 0;
}

@-webkit-keyframes slideTextY-100 {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%); /* 要素を下の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0); /* 要素を元の位置に移動*/
    opacity: 1;
  }
}

@keyframes slideTextY-100 {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%); /* 要素を下の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0); /* 要素を元の位置に移動*/
    opacity: 1;
  }
}
/*---------------------
header
---------------------*/
.Header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.Header__inner {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  height: 97px;
  padding-inline: 42px;
}
@media screen and (max-width: 1023.98px) {
  .Header__inner {
    height: 63px;
    padding-inline: 10px 0;
  }
}
.Header__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.Header__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 82px;
}
@media screen and (max-width: 1023.98px) {
  .Header__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 0;
  }
}

.Logo__img {
  height: 33px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
@media screen and (max-width: 1023.98px) {
  .Logo__img {
    height: 22px;
  }
}

/*---------------------
footer
---------------------*/
.Footer {
  background-color: #03346E;
}
.Footer__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-block: 48px 51px;
}
@media print, screen and (min-width: 1400px) {
  .Footer__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 95px;
    padding-block: 112px;
  }
}

.Footer-nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 41px 0;
  margin-bottom: 39px;
}
@media print, screen and (min-width: 1400px) {
  .Footer-nav__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 79px;
    margin-bottom: 0;
  }
}
.Footer-nav__item {
  list-style-type: none;
  padding-left: 1.5rem;
  position: relative;
}
.Footer-nav__item::before {
  background-color: #6EACDA;
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.Footer-nav__link {
  color: #fff;
  font-size: clamp(1rem, 0.97rem + 0.13vw, 1.125rem);
  font-weight: 400;
  text-decoration: none;
}

.Footer .Nav-contact__link {
  background-color: #6EACDA;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0 10px;
  width: inherit;
  height: inherit;
  padding: 11px 21px;
}
@media (hover: hover) and (pointer: fine) {
  .Footer .Nav-contact__link:hover {
    background-color: #6EACDA;
  }
}
@media (hover: none) {
  .Footer .Nav-contact__link:active {
    background-color: #6EACDA;
  }
}

.Footer .Nav-contact .Contact-icon__img {
  display: block;
}

.Footer .Nav-contact__text {
  font-size: 1.125rem;
}

.Copyright {
  background-color: #6EACDA;
  color: #fff;
  font-size: 1.125rem;
  padding: 18px 0 21px;
}
@media print, screen and (min-width: 1400px) {
  .Copyright {
    padding: 40px 50px;
  }
}
.Copyright__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px 0;
}
@media print, screen and (min-width: 1400px) {
  .Copyright__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (max-width: 1023.98px) {
  .Copyright .Logo__img {
    height: 35px;
  }
}

/*---------------------
nav
---------------------*/
@media screen and (max-width: 1023.98px) {
  .Nav__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #fff;
    gap: 35px 0;
    padding-bottom: 38px;
  }
}
.Nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 76px;
}
@media screen and (max-width: 1023.98px) {
  .Nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 42px 0;
    padding-left: 16px;
    padding-top: 89px;
  }
}
.Nav__item {
  list-style-type: none;
}
@media screen and (max-width: 1023.98px) {
  .Nav__item {
    padding-left: 18px;
    position: relative;
  }
  .Nav__item::before {
    background-color: #021526;
    content: "";
    display: inline-block;
    width: 14px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.Nav__link {
  border-bottom: 1px solid transparent;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #021526;
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: border-bottom 0.3s ease-in-out;
  transition: border-bottom 0.3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .Nav__link:hover {
    border-bottom: 1px solid #03346E;
  }
}
@media screen and (hover: hover) and (pointer: fine) and (max-width: 1023.98px) {
  .Nav__link:hover {
    border-bottom: none;
  }
}
@media (hover: none) {
  .Nav__link:active {
    border-bottom: 1px solid #03346E;
  }
}
@media screen and (hover: none) and (max-width: 1023.98px) {
  .Nav__link:active {
    border-bottom: none;
  }
}
@media screen and (max-width: 1023.98px) {
  .Nav__link {
    border-bottom: none;
    -webkit-transition: unset;
    transition: unset;
  }
}
.Nav--footer {
  margin-bottom: 42px;
}
@media screen and (max-width: 1399.98px) {
  .Nav--footer {
    margin-bottom: 40px;
  }
}
.Nav--footer .Nav__list {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem 2.08vw;
}
@media screen and (max-width: 1399.98px) {
  .Nav--footer .Nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px 0;
    height: auto;
    margin-top: 0;
    padding-left: 0;
    padding-top: 0;
  }
}
.Nav--footer .Nav__item {
  margin-bottom: 0;
}
@media screen and (max-width: 1399.98px) {
  .Nav--footer .Nav__link {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1399.98px) {
  .Nav--humburger {
    width: 100%;
    height: 100%;
    top: -150%;
    -webkit-transition: top 0.3s ease-in-out;
    transition: top 0.3s ease-in-out;
  }
}
.Nav--tel {
  display: none;
}
@media screen and (max-width: 1023.98px) {
  .Nav--tel {
    display: block;
  }
}

/*---------------------
humburger
---------------------*/
@media screen and (max-width: 1023.98px) {
  .Humburger-menu__check:not(:checked) ~ .Nav--humburger {
    position: fixed;
    top: -150%;
    left: 0;
    z-index: -1;
  }
}

@media screen and (max-width: 1023.98px) {
  .Humburger-menu__check:checked ~ .Nav--humburger {
    position: fixed;
    display: block;
    left: 0;
    top: 0;
    z-index: -1;
  }
}

.Nav::before {
  content: "";
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #000000;
  opacity: 0.24;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: -100;
}

.Humburger-menu__check:not(:checked) ~ .Nav::before {
  visibility: hidden;
}

.Humburger-menu__check:checked ~ .Nav::before {
  visibility: visible;
}
@media print, screen and (min-width: 1400px) {
  .Humburger-menu__check:checked ~ .Nav::before {
    visibility: hidden;
  }
}

.Humburger-menu__button {
  display: none;
}
@media screen and (max-width: 1023.98px) {
  .Humburger-menu__button {
    background-color: #fff;
    cursor: pointer;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 63px;
    height: 63px;
    z-index: 101;
  }
}

.Humburger-menu__bar {
  background-color: transparent;
  content: "";
  height: 1px;
  width: 34px;
  position: absolute;
}
.Humburger-menu__bar::before {
  content: "";
  display: block;
  height: 2px;
  width: 34px;
  background-color: #021526;
  position: absolute;
  bottom: 7px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.Humburger-menu__bar::after {
  background-color: #021526;
  content: "";
  display: block;
  height: 4px;
  width: 34px;
  position: absolute;
  bottom: -7px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.Humburger-menu__check {
  display: none;
}

.Humburger-menu__check:checked ~ .Humburger-menu__button span::before {
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  height: 3px;
  bottom: 0px;
}
.Humburger-menu__check:checked ~ .Humburger-menu__button span::after {
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  height: 3px;
  bottom: 0px;
}

/*---------------------
Btn
---------------------*/
.Nav-contact__link {
  background-color: #03346E;
  padding-block: 12px;
  padding-inline: 21px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .Nav-contact__link:hover {
    background-color: #6EACDA;
  }
}
@media (hover: none) {
  .Nav-contact__link:active {
    background-color: #6EACDA;
  }
}
@media screen and (max-width: 1023.98px) {
  .Nav-contact__link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px 0;
    padding-block: 0;
    padding-inline: 0;
    width: 63px;
    height: 63px;
    -webkit-transition: unset;
    transition: unset;
  }
}
@media screen and (max-width: 1023.98px) and (hover: hover) and (pointer: fine) {
  .Nav-contact__link:hover {
    background-color: #03346E;
  }
}
@media screen and (max-width: 1023.98px) and (hover: none) {
  .Nav-contact__link:active {
    background-color: #03346E;
  }
}
.Nav-contact__text {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
}
@media screen and (max-width: 1023.98px) {
  .Nav-contact__text {
    font-size: 0.5625rem;
  }
}
.Nav-contact .Contact-icon__img {
  display: none;
}
@media screen and (max-width: 1023.98px) {
  .Nav-contact .Contact-icon__img {
    display: block;
  }
}

.Contact-icon__img {
  -webkit-filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(258deg) brightness(109%) contrast(101%);
          filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(258deg) brightness(109%) contrast(101%);
}

.Tel__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #6EACDA;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
}
.Tel__img {
  -webkit-filter: invert(62%) sepia(78%) saturate(253%) hue-rotate(164deg) brightness(90%) contrast(89%);
          filter: invert(62%) sepia(78%) saturate(253%) hue-rotate(164deg) brightness(90%) contrast(89%);
}

.Btn {
  width: 198px;
}
.Btn__link {
  background-color: #6EACDA;
  color: #03346E;
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  padding-block: 12px;
  position: relative;
  text-decoration: none;
  text-align: center;
}
.Btn__link::after {
  background-color: #03346E;
  height: 17.3205080757px;
  width: 18px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  position: absolute;
  top: 50%;
  right: 7px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.Btn--reverse {
  width: 288px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .Btn--reverse:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@media (hover: none) {
  .Btn--reverse:active {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.Btn--reverse .Btn__link {
  background-color: #fff;
  border: 1px solid #6EACDA;
  color: #6EACDA;
}
.Btn--reverse .Btn__link::after {
  background-color: #6EACDA;
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
  right: inherit;
  left: 7px;
}

/*---------------------
Breadcrumb
---------------------*/
.Breadcrumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 154px 0 84px;
}
@media screen and (max-width: 1023.98px) {
  .Breadcrumb {
    padding: 102px 0 38px;
  }
}
.Breadcrumb__inner {
  max-width: 1380px;
  width: 100%;
}
.Breadcrumb__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.Breadcrumb__item {
  color: #021526;
  font-size: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
  line-height: 1;
  list-style-type: none;
}
@media screen and (max-width: 1023.98px) {
  .Breadcrumb__item {
    line-height: 1.5;
  }
}
.Breadcrumb__link {
  color: #021526;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .Breadcrumb__link:hover {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .Breadcrumb__link:active {
    opacity: 0.6;
  }
}

.Breadcrumb__item + .Breadcrumb__item::before {
  content: "＞";
  margin: 0 16px;
}

/*---------------------
PageTop_btn
---------------------*/
.Btn-top {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  right: 0;
  z-index: 98;
}
.Btn-top__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #6EACDA;
  color: #fff;
  font-size: 0.5625rem;
  width: 62px;
  height: 64px;
  margin-left: 86.83%;
  padding-top: 25px;
  position: relative;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.Btn-top__link::before {
  background-color: #fff;
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -16px;
  height: 16px;
  width: 32px;
  -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
          clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
@media (hover: hover) and (pointer: fine) {
  .Btn-top__link:hover {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .Btn-top__link:active {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1023.98px) {
  .Btn-top__link {
    margin-left: auto;
  }
}

/*---------------------
Wrapper
---------------------*/
.Wrapper {
  background-image: url(./asset/images/bg_/bg.png);
  background-position: left top;
  background-repeat: repeat;
  background-size: 69px;
}

/*---------------------
logo
---------------------*/
.Logo__img {
  height: 33px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
@media screen and (max-width: 1023.98px) {
  .Logo__img {
    height: 22px;
  }
}

/*---------------------
MV
---------------------*/
.Mv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: calc(100vh - 97px);
  margin-top: 97px;
  overflow: hidden;
}
@media screen and (max-width: 1023.98px) {
  .Mv {
    height: calc(100dvh - 63px);
    margin-top: 63px;
    position: relative;
  }
}
.Mv__img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.Mv-copy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F3F3F3;
  -webkit-box-shadow: 4px 11px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 4px 11px 6px rgba(0, 0, 0, 0.16);
  padding-top: 60px;
  position: relative;
  width: 260px;
  height: 98.2%;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 1023.98px) {
  .Mv-copy {
    background-color: transparent;
    -webkit-box-shadow: unset;
            box-shadow: unset;
    padding-top: 0;
    position: absolute;
    bottom: 36px;
    left: 0;
    width: inherit;
    height: auto;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    z-index: 4;
  }
}
.Mv-copy::before {
  background-color: #03346E;
  content: "";
  display: block;
  width: 48px;
  height: 490px;
  position: absolute;
  top: 0;
  right: -48px;
}
@media screen and (max-width: 1023.98px) {
  .Mv-copy::before {
    width: 141px;
    height: 25px;
    top: -30%;
    right: inherit;
    left: 0;
  }
}
.Mv-copy::after {
  background-color: #6EACDA;
  content: "";
  display: block;
  width: 34px;
  height: 228px;
  position: absolute;
  top: 0;
  right: -96px;
}
@media screen and (max-width: 1023.98px) {
  .Mv-copy::after {
    width: 114px;
    height: 18px;
    top: -50%;
    right: inherit;
    left: 0;
  }
}
@media screen and (max-width: 1023.98px) {
  .Mv-copy--sp {
    background-color: #F3F3F3;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    display: inline-block;
    padding-left: 20px;
  }
}
.Mv-copy__block {
  overflow: hidden;
  display: inline-block;
}
.Mv-copy__block-2 {
  border-left: 1px solid #021526;
  display: inline-block;
  white-space: nowrap;
}
@media screen and (max-width: 1023.98px) {
  .Mv-copy__block-2 {
    border-left: none;
  }
}
.Mv-copy__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2.5rem, 2.197rem + 1.29vw, 3.75rem);
  font-weight: 500;
}
.Mv-copy__text--bottom {
  margin-top: 5rem;
}
@media screen and (max-width: 1023.98px) {
  .Mv-copy__text--bottom {
    margin-top: 1rem;
  }
}

.Swiper {
  width: 78%;
  overflow: hidden;
}
@media screen and (max-width: 1023.98px) {
  .Swiper {
    width: 100%;
  }
}
.Swiper::before {
  background-color: #021526;
  position: absolute;
  bottom: 0;
  left: 215px;
  content: "";
  display: block;
  width: 230px;
  height: 238px;
}
@media screen and (max-width: 1023.98px) {
  .Swiper::before {
    display: none;
  }
}

/*---------------------
content
---------------------*/
.Page {
  position: relative;
  overflow: hidden;
  padding-block: 0 119px;
}
@media screen and (max-width: 1023.98px) {
  .Page {
    padding-bottom: 50px;
  }
}
.Page::before {
  background-color: #03346E;
  content: "";
  display: block;
  max-width: 1221px;
  width: 100%;
  height: 15px;
  position: absolute;
  bottom: 67px;
  left: -204px;
}
@media screen and (max-width: 1023.98px) {
  .Page::before {
    max-width: 141px;
    bottom: 20px;
    left: -44px;
  }
}
.Page::after {
  background-color: #6EACDA;
  content: "";
  display: block;
  max-width: 1221px;
  width: 100%;
  height: 15px;
  position: absolute;
  bottom: 30px;
  left: 71px;
}
@media screen and (max-width: 1023.98px) {
  .Page::after {
    max-width: 141px;
    bottom: 0px;
    left: -17px;
  }
}
.Page__title {
  max-width: 1147px;
  position: relative;
}
.Page__title::before {
  background-color: #03346E;
  content: "";
  display: block;
  width: 1221px;
  height: 15px;
  position: absolute;
  top: -101px;
  left: 22.8vw;
}
@media screen and (max-width: 1023.98px) {
  .Page__title::before {
    max-width: 141px;
    top: -54px;
    left: inherit;
    right: -70px;
  }
}
.Page__title::after {
  background-color: #6EACDA;
  content: "";
  display: block;
  width: 1221px;
  height: 15px;
  position: absolute;
  top: -65px;
  left: 37.78vw;
}
@media screen and (max-width: 1023.98px) {
  .Page__title::after {
    max-width: 141px;
    top: -36px;
    left: inherit;
    right: -100px;
  }
}
.Page__h1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1023.98px) {
  .Page__h1 {
    margin-left: 0;
    margin-right: auto;
  }
}
.Page__img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.Page__img--hight {
  height: 37.87vw;
}
@media print, screen and (min-width: 1400px) {
  .Page__img--hight {
    height: 121px;
  }
}

.Section--bg {
  background-color: #F3F3F3;
}
.Section__inner {
  margin: 0 auto;
  max-width: 1400px;
}
@media screen and (max-width: 1399.98px) {
  .Section__inner {
    padding-inline: 24px;
    width: 100%;
  }
}
@media screen and (max-width: 1023.98px) {
  .Section__inner {
    padding-inline: 20px;
  }
}
.Section__inner--w829 {
  max-width: 829px;
  position: relative;
  z-index: 1;
}
.Section__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.5rem, 1.257rem + 1.04vw, 2.5rem);
  -webkit-filter: drop-shadow(0 3px 6px #c3d8e8);
          filter: drop-shadow(0 3px 6px #c3d8e8);
  font-weight: 500;
  margin-bottom: 50px;
  padding-bottom: 24px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 1023.98px) {
  .Section__title {
    margin-bottom: 21px;
    padding-bottom: 9px;
  }
}
.Section__title::after {
  background-color: #6EACDA;
  content: "";
  display: block;
  width: 63px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.Section__dl {
  background-color: #fff;
  border-top: 1px solid #03346E;
  border-left: 1px solid #03346E;
  font-size: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.Section__dl-t {
  border-bottom: 1px solid #03346E;
  border-right: 1px solid #03346E;
  color: #03346E;
  font-weight: 400;
  padding-block: 22px;
  text-align: center;
  width: 25%;
}
@media screen and (max-width: 1023.98px) {
  .Section__dl-t {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.Section__dl-d {
  border-bottom: 1px solid #03346E;
  border-right: 1px solid #03346E;
  padding-block: 22px;
  padding-inline: 43px;
  width: 75%;
}
@media screen and (max-width: 1023.98px) {
  .Section__dl-d {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding-inline: 1rem;
  }
}

.Pc__hide {
  display: none;
}
@media screen and (max-width: 1399.98px) {
  .Pc__hide {
    display: block;
  }
}

.Sp__hide {
  display: block;
}
@media screen and (max-width: 1399.98px) {
  .Sp__hide {
    display: none;
  }
}

/*---------------------
Top
---------------------*/
.Top-about {
  position: relative;
  overflow: hidden;
}
.Top-about__bg {
  position: absolute;
  top: 223px;
  right: 0;
}
@media screen and (max-width: 1023.98px) {
  .Top-about__bg {
    display: none;
  }
}
.Top-about__inner {
  padding-block: 89px 151px;
  position: relative;
}
@media screen and (max-width: 1023.98px) {
  .Top-about__inner {
    padding-block: 87px 97px;
    padding-inline: 20px;
  }
}
.Top-about__inner::after {
  background-image: url(./asset/images/bg_/bg_about.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  content: "";
  width: 268px;
  height: 291px;
  position: absolute;
  bottom: 0;
  left: -92px;
}
@media screen and (max-width: 1023.98px) {
  .Top-about__inner::after {
    display: none;
  }
}
.Top-about__sub-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.5rem, 1.257rem + 1.04vw, 2.5rem);
  font-weight: 500;
  margin-block: 126px 50px;
  text-align: center;
  -webkit-filter: drop-shadow(0 3px 6px #c3d8e8);
          filter: drop-shadow(0 3px 6px #c3d8e8);
}
@media screen and (max-width: 1023.98px) {
  .Top-about__sub-title {
    margin-block: 40px 28px;
  }
}
.Top-about__text {
  font-size: clamp(1.125rem, 1.095rem + 0.13vw, 1.25rem);
  position: relative;
  text-align: center;
  z-index: 3;
}
.Top-about__text + .Top-about__text {
  margin-top: clamp(1.125rem, 1.095rem + 0.13vw, 1.25rem);
}
@media screen and (max-width: 1023.98px) {
  .Top-about__text {
    text-align: left;
  }
}
.Top-about__title {
  position: relative;
}
@media screen and (max-width: 1023.98px) {
  .Top-about__title {
    width: 75%;
  }
}
.Top-about__title::before {
  background-color: #03346E;
  content: "";
  display: block;
  width: 100%;
  height: 15px;
  position: absolute;
  top: 40%;
  left: 464px;
}
@media screen and (max-width: 1023.98px) {
  .Top-about__title::before {
    left: inherit;
    right: -100%;
  }
}
.Top-about__title::after {
  background-color: #6EACDA;
  content: "";
  display: block;
  width: 100%;
  height: 15px;
  position: absolute;
  top: 60%;
  left: 700px;
}
@media screen and (max-width: 1023.98px) {
  .Top-about__title::after {
    left: inherit;
    right: -110%;
  }
}
@media screen and (max-width: 1023.98px) {
  .Top-about .Title__img {
    height: 23.73vw;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.Top-works {
  background-color: #03346E;
  max-width: 1652px;
  position: relative;
  z-index: 3;
}
.Top-works__wrapper {
  overflow: hidden;
}
.Top-works__bg {
  background-color: #021526;
  width: 100%;
  height: 277px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -150px;
}
.Top-works__bg--reverse {
  background-color: #021526;
  width: 100%;
  height: 277px;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -150px;
}
.Top-works--reverse {
  background-color: #6EACDA;
  margin-left: auto;
}
.Top-works__title {
  margin-bottom: 83px;
  width: 100%;
}
@media screen and (max-width: 1023.98px) {
  .Top-works__title {
    margin-bottom: 44px;
    margin-left: 20px;
    width: 67.47%;
  }
}
@media screen and (max-width: 1023.98px) {
  .Top-works__title-img {
    height: 45.33vw;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.Top-works__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1400px;
  margin-left: auto;
  padding-top: 205px;
}
@media screen and (max-width: 1023.98px) {
  .Top-works__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 42px;
    padding-bottom: 30px;
  }
}
.Top-works__content--first {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-top: 0;
}
.Top-works__content--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-left: 0;
  padding-left: 0;
}
@media screen and (max-width: 1023.98px) {
  .Top-works__content--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.Top-works__content--reverse .Top-works__midashi {
  color: #03346E;
}
.Top-works__content--reverse .Top-works__midashi:after {
  background-color: #03346E;
}
.Top-works__content--reverse .Btn__link {
  background-color: #03346E;
  color: #fff;
}
.Top-works__content--reverse .Btn__link::after {
  background-color: #fff;
}
.Top-works__block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 50%;
}
@media screen and (max-width: 1023.98px) {
  .Top-works__block {
    width: 100%;
  }
}
.Top-works__block--text {
  padding-inline: 45px;
}
@media screen and (max-width: 1023.98px) {
  .Top-works__figure {
    width: 75.2vw;
  }
}
@media screen and (max-width: 1023.98px) {
  .Top-works__img {
    height: 48vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.Top-works__midashi {
  color: #6EACDA;
  font-size: clamp(1.125rem, 0.943rem + 0.78vw, 1.875rem);
  margin-bottom: 27px;
  padding-bottom: 1.125rem;
  position: relative;
}
@media screen and (max-width: 1023.98px) {
  .Top-works__midashi {
    margin-top: 30px;
  }
}
.Top-works__midashi::after {
  background-color: #6EACDA;
  content: "";
  display: block;
  width: 63px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.Top-works__text {
  color: #fff;
  font-size: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 1023.98px) {
  .Top-works__list {
    margin-bottom: 68px;
  }
}
.Top-works__item {
  color: #fff;
  font-size: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
  list-style-type: none;
  padding-left: 1.125rem;
  position: relative;
}
.Top-works__item::before {
  background-color: #fff;
  content: "";
  display: inline-block;
  width: 14px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.Top-works__block--text .Btn {
  margin-left: auto;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .Top-works__block--text .Btn:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@media (hover: none) {
  .Top-works__block--text .Btn:active {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.Top-recruit {
  padding-block: 139px 210px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1399.98px) {
  .Top-recruit {
    padding-block: 80px 92px;
  }
}
.Top-recruit::before {
  background-color: #03346E;
  content: "";
  display: block;
  width: 55%;
  height: 15px;
  position: absolute;
  bottom: 13%;
  left: 0;
}
@media screen and (max-width: 1399.98px) {
  .Top-recruit::before {
    width: 15%;
    bottom: 77px;
  }
}
.Top-recruit::after {
  background-color: #6EACDA;
  content: "";
  display: block;
  width: 67%;
  height: 15px;
  position: absolute;
  bottom: 10.5%;
  left: 71px;
}
@media screen and (max-width: 1399.98px) {
  .Top-recruit::after {
    width: 25%;
    bottom: 60px;
    left: 0;
  }
}
.Top-recruit__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1399.98px) {
  .Top-recruit__title-img {
    height: 20.53vw;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.Top-recruit__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1399.98px) {
  .Top-recruit__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.Top-recruit__btn {
  margin-block: 30px;
}
@media screen and (max-width: 1399.98px) {
  .Top-recruit__btn {
    margin-block: 12px 14px;
    padding-right: 13px;
  }
}
.Top-recruit__link {
  background-color: #03346E;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  position: relative;
  text-decoration: none;
  width: 484px;
  height: 89px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 1399.98px) {
  .Top-recruit__link {
    width: 220px;
    height: 50px;
  }
}
.Top-recruit__link::before {
  background-color: #03346E;
  content: "";
  display: block;
  width: 34px;
  height: 89px;
  position: absolute;
  top: 0;
  left: -62px;
}
@media screen and (max-width: 1399.98px) {
  .Top-recruit__link::before {
    width: 23px;
    height: 50px;
    left: -30px;
  }
}
.Top-recruit__link::after {
  background-color: #03346E;
  content: "";
  display: block;
  width: 18px;
  height: 89px;
  position: absolute;
  top: 0;
  left: -108px;
}
@media screen and (max-width: 1399.98px) {
  .Top-recruit__link::after {
    width: 12px;
    height: 50px;
    left: -47px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .Top-recruit__link:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@media (hover: none) {
  .Top-recruit__link:active {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.Top-recruit__text {
  color: #fff;
  font-size: clamp(1.125rem, 0.943rem + 0.78vw, 1.875rem);
  font-weight: 600;
  position: relative;
}
.Top-recruit__text::after {
  background-color: #fff;
  content: "";
  position: absolute;
  top: 50%;
  right: -100px;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  height: 16px;
  width: 32px;
  -webkit-clip-path: polygon(50% 0, 100% 100%, 0 100%);
          clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.Top-recruit-left {
  width: 50%;
}
@media screen and (max-width: 1399.98px) {
  .Top-recruit-left {
    margin-top: 0;
    width: 100%;
  }
}
.Top-recruit-left__figure {
  margin-top: 139px;
}
@media screen and (max-width: 1399.98px) {
  .Top-recruit-left__figure {
    margin-top: 52px;
    margin-left: auto;
    width: 84.8vw;
  }
}
@media screen and (max-width: 1399.98px) {
  .Top-recruit-left__img {
    height: 69.07vw;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
}

.Top-recruit-right {
  margin-top: 36px;
  width: 50%;
}
@media screen and (max-width: 1399.98px) {
  .Top-recruit-right {
    margin-top: 0;
    width: 100%;
  }
}
.Top-recruit-right__inner {
  background-color: #F3F3F3;
  padding-block: 169px 151px;
  padding-inline: 62px 78px;
}
@media screen and (max-width: 1399.98px) {
  .Top-recruit-right__inner {
    padding-block: 45px 54px;
    padding-inline: 21px;
  }
}
.Top-recruit-right__midashi {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.5rem, 1.257rem + 1.04vw, 2.5rem);
  font-weight: 500;
  margin-bottom: 42.3px;
  -webkit-filter: drop-shadow(0 3px 6px #c3d8e8);
          filter: drop-shadow(0 3px 6px #c3d8e8);
}
@media screen and (max-width: 1399.98px) {
  .Top-recruit-right__midashi {
    margin-bottom: 33px;
  }
}
.Top-recruit-right__text {
  font-size: clamp(1.125rem, 1.095rem + 0.13vw, 1.25rem);
}
.Top-recruit-right__text + .Top-recruit-right__text {
  margin-top: clamp(1.125rem, 1.095rem + 0.13vw, 1.25rem);
}

.Top-recruit-contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0 15px;
}
@media screen and (max-width: 1399.98px) {
  .Top-recruit-contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 11px 0;
    padding-right: 13px;
  }
}
.Top-recruit-contact .Tel__link {
  font-size: 1.25rem;
  font-weight: 600;
}
.Top-recruit-contact .Nav-contact__link {
  background-color: #6EACDA;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 15px;
}
@media screen and (max-width: 1399.98px) {
  .Top-recruit-contact .Nav-contact__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 10px;
    width: inherit;
    height: inherit;
    padding: 11px 21px;
  }
}
.Top-recruit-contact .Nav-contact__text {
  font-weight: 600;
}
@media screen and (max-width: 1399.98px) {
  .Top-recruit-contact .Nav-contact__text {
    font-size: 1.125rem;
  }
}

/*---------------------
company
---------------------*/
.Message {
  position: relative;
}
.Message::after {
  background-image: url(./asset/images/bg_/bg_about.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  content: "";
  width: 268px;
  height: 291px;
  position: absolute;
  bottom: 1px;
  left: 168px;
}
@media screen and (max-width: 1023.98px) {
  .Message::after {
    display: none;
  }
}
.Message__inner {
  max-width: 1140px;
  padding-block: 50px 123px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1023.98px) {
  .Message__inner {
    padding-block: 29px 80px;
  }
}
.Message__text {
  font-size: clamp(1.125rem, 1.095rem + 0.13vw, 1.25rem);
  font-weight: 400;
}
.Message__text + .Message__text {
  margin-top: 20px;
}
@media screen and (max-width: 1023.98px) {
  .Message__text + .Message__text {
    margin-top: 1.125rem;
  }
}
.Message__text + .Message__text:last-of-type {
  margin-top: 44px;
}
@media screen and (max-width: 1023.98px) {
  .Message__text + .Message__text:last-of-type {
    margin-top: 29px;
  }
}
.Message__text--center {
  text-align: center;
}

.Company {
  padding-block: 132px;
  position: relative;
}
@media screen and (max-width: 1023.98px) {
  .Company {
    padding-block: 42px 79px;
  }
}
.Company::before {
  background-color: #03346E;
  content: "";
  display: block;
  width: 48px;
  height: 490px;
  position: absolute;
  top: 0;
  left: 260px;
}
@media screen and (max-width: 1023.98px) {
  .Company::before {
    width: 21px;
    height: 108px;
    left: 24px;
  }
}
.Company::after {
  background-color: #6EACDA;
  content: "";
  display: block;
  width: 34px;
  height: 228px;
  position: absolute;
  top: 0;
  left: 331px;
}
@media screen and (max-width: 1023.98px) {
  .Company::after {
    width: 15px;
    height: 98px;
    top: 0;
    left: 48px;
  }
}

.Qualified {
  position: relative;
  padding-block: 123px 143.8px;
}
@media screen and (max-width: 1023.98px) {
  .Qualified {
    padding-block: 84px 87px;
  }
}
.Qualified::before {
  background-color: #03346E;
  content: "";
  display: block;
  width: 841px;
  height: 48px;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1023.98px) {
  .Qualified::before {
    width: 239px;
    height: 28px;
    top: 0;
  }
}
.Qualified::after {
  background-color: #03346E;
  content: "";
  display: block;
  width: 841px;
  height: 48px;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1023.98px) {
  .Qualified::after {
    width: 239px;
    height: 28px;
  }
}
.Qualified__dl {
  font-size: clamp(1.25rem, 1.22rem + 0.13vw, 1.375rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 1023.98px) {
  .Qualified__dl {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}
.Qualified__dl-t {
  border-bottom: 1px solid #03346E;
  padding-block: 30px;
  padding-left: 210px;
  width: 60%;
}
@media screen and (max-width: 1023.98px) {
  .Qualified__dl-t {
    padding-block: 24px;
    padding-left: 0;
    width: 80%;
  }
}
.Qualified__dl-d {
  border-bottom: 1px solid #03346E;
  padding-block: 30px;
  padding-inline: 43px;
  width: 40%;
}
@media screen and (max-width: 1023.98px) {
  .Qualified__dl-d {
    padding-block: 24px;
    padding-inline: 0;
    text-align: right;
    width: 20%;
  }
}

/*---------------------
works
---------------------*/
.Works__inner {
  max-width: 1216px;
  padding-top: 92px;
}
@media screen and (max-width: 1023.98px) {
  .Works__inner {
    padding-top: 57px;
  }
}
.Works__table, .Works__content {
  width: 100%;
}
@media screen and (max-width: 1023.98px) {
  .Works__table, .Works__content {
    border-top: none;
    border-left: none;
  }
}
.Works__thead, .Works__tbody-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1023.98px) {
  .Works__thead, .Works__tbody-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.Works__thead {
  border-top: 1px solid #03346E;
  border-left: 1px solid #03346E;
  color: #03346E;
}
@media screen and (max-width: 1023.98px) {
  .Works__thead {
    display: none;
  }
}
.Works__tbody {
  border-left: 1px solid #03346E;
}
@media screen and (max-width: 1023.98px) {
  .Works__tbody {
    border-top: 1px solid #03346E;
  }
  .Works__tbody + .Works__tbody {
    margin-top: 10px;
  }
}
.Works__label, .Works__data {
  background-color: #fff;
  border-right: 1px solid #03346E;
  border-bottom: 1px solid #03346E;
  font-size: clamp(1rem, 0.97rem + 0.13vw, 1.125rem);
  font-weight: 400;
  padding-block: 23px;
  -webkit-flex-basis: 15%;
      -ms-flex-preferred-size: 15%;
          flex-basis: 15%;
  text-align: center;
}
.Works__label:nth-of-type(3), .Works__data:nth-of-type(3) {
  -webkit-flex-basis: 55%;
      -ms-flex-preferred-size: 55%;
          flex-basis: 55%;
}
@media screen and (max-width: 1023.98px) {
  .Works__label, .Works__data {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding-block: 0;
    width: 100%;
  }
}
.Works__data {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  font-weight: 200;
  padding-block: 10px;
  padding-inline: 30px;
}
.Works__data:nth-of-type(3) {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 1023.98px) {
  .Works__data {
    padding-block: 0;
    padding-inline: 0;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.Works__data--left {
  display: none;
}
@media screen and (max-width: 1023.98px) {
  .Works__data--left {
    border-right: 1px solid #03346E;
    color: #03346E;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding-block: 20px;
    width: 103px;
    text-align: center;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
}
.Works__data--right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1023.98px) {
  .Works__data--right {
    padding: 14px;
    text-align: left;
  }
}
.Works__data--name {
  text-align: left;
}
.Works__block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 72px;
}
.Works__btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  color: #03346E;
  cursor: pointer;
  font-size: clamp(1.375rem, 1.254rem + 0.52vw, 1.875rem);
  font-weight: 300;
  text-decoration: underline;
}
.item {
  display: none;
}

/*---------------------
Recruit
---------------------*/
.Sentence {
  background-color: #F3F3F3;
  height: 818px;
  max-width: 1752px;
  margin-top: 33px;
  margin-left: auto;
  padding-block: 98px 87px;
  padding-inline: 100px;
}
@media screen and (max-width: 1399.98px) {
  .Sentence {
    height: inherit;
    padding-block: 34px 105px;
    padding-inline: 20px 15px;
  }
}
.Sentence__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1399.98px) {
  .Sentence__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.Sentence__left {
  position: relative;
  padding-right: 67px;
  width: calc(100% - 454px);
  z-index: 3;
}
@media screen and (max-width: 1399.98px) {
  .Sentence__left {
    margin-bottom: 1.125rem;
    padding-right: 0;
    position: static;
    width: 100%;
  }
}
.Sentence__text {
  font-size: clamp(1.125rem, 1.095rem + 0.13vw, 1.25rem);
  font-weight: 400;
}
.Sentence__text + .Sentence__text {
  margin-top: 1.25rem;
}
.Sentence__right {
  width: 454px;
  position: relative;
}
@media screen and (max-width: 1399.98px) {
  .Sentence__right {
    width: 100%;
  }
}

.Apply {
  padding-block: 155px 222px;
}
@media screen and (max-width: 1023.98px) {
  .Apply {
    padding-block: 53px 128px;
  }
}
@media screen and (max-width: 1023.98px) {
  .Apply .Section__inner {
    padding-inline: 0;
  }
}
.Apply__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 100px;
}
@media screen and (max-width: 1399.98px) {
  .Apply__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.Apply__block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1023.98px) {
  .Apply__block {
    width: 100%;
  }
}
.Apply__img {
  height: 60.8vw;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
@media screen and (max-width: 1023.98px) {
  .Apply__dl {
    padding-top: 34px;
    padding-inline: 20px;
  }
}
.Apply__dl-t {
  color: #03346E;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
  font-size: clamp(1.125rem, 0.943rem + 0.78vw, 1.875rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 18px;
  padding-bottom: 20px;
  text-align: left;
}
.Apply__dl-t::after {
  background-color: #03346E;
  left: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (max-width: 1399.98px) {
  .Apply__dl-t {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
}
.Apply__dl-d {
  color: #021526;
  font-size: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
  margin-bottom: 36px;
}
.Apply__dl-d:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 1399.98px) {
  .Apply__dl-d {
    margin-bottom: 30px;
  }
}

.Entry {
  position: relative;
  padding-bottom: 111px;
}
@media screen and (max-width: 1399.98px) {
  .Entry {
    padding-inline: 18px;
    padding-bottom: 44px;
  }
}
.Entry::before {
  background-color: #03346E;
  content: "";
  display: block;
  width: 760px;
  height: 96px;
  position: absolute;
  top: -67px;
  right: 0;
  z-index: 3;
}
@media screen and (max-width: 1023.98px) {
  .Entry::before {
    width: 226px;
    height: 55px;
    top: -55px;
  }
}
.Entry::after {
  background-color: #6EACDA;
  content: "";
  display: block;
  width: 463px;
  height: 96px;
  position: absolute;
  bottom: 60px;
  left: 0;
}
@media screen and (max-width: 1023.98px) {
  .Entry::after {
    width: 140px;
    height: 53px;
    bottom: 15px;
  }
}
.Entry__inner {
  background-color: #F3F3F3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-block: 94px 136px;
  position: relative;
}
@media screen and (max-width: 1399.98px) {
  .Entry__inner {
    padding-block: 40px 98px;
  }
}
.Entry__inner:after {
  background-color: #021526;
  content: "";
  display: block;
  width: 260px;
  height: 87px;
  position: absolute;
  top: 29px;
  right: -260px;
}
@media screen and (max-width: 1399.98px) {
  .Entry__inner:after {
    width: 82px;
    height: 50px;
    top: 0;
    right: -20px;
  }
}
.Entry__text {
  font-size: clamp(1rem, 0.879rem + 0.52vw, 1.5rem);
  margin-bottom: 50px;
}
@media screen and (max-width: 1399.98px) {
  .Entry__text {
    margin-bottom: 32px;
    text-align: center;
  }
}
.Entry .Top-recruit-contact {
  gap: 0 35px;
  padding-right: 0;
}
@media screen and (max-width: 1399.98px) {
  .Entry .Top-recruit-contact {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 11px 0;
  }
}
.Entry .Tel__link {
  font-size: clamp(1.25rem, 1.174rem + 0.32vw, 1.563rem);
}
.Entry .Nav-contact__link {
  padding-block: 15px;
  padding-inline: 27px;
}
.Entry .Nav-contact__text {
  font-size: clamp(1.125rem, 1.034rem + 0.39vw, 1.5rem);
}

/*---------------------
Contact
---------------------*/
.Contact {
  padding-block: 131px 185px;
}
@media screen and (max-width: 1023.98px) {
  .Contact {
    padding-block: 38px 76px;
    padding-inline: 18px;
  }
}
.Contact__inner {
  background-color: #F3F3F3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1111px;
  padding-block: 51px 85px;
}
@media screen and (max-width: 1023.98px) {
  .Contact__inner {
    padding-block: 51px 51px;
  }
}
.Contact .Tel__link {
  font-size: clamp(1.25rem, 1.038rem + 0.91vw, 2.125rem);
}
@media screen and (max-width: 1399.98px) {
  .Contact .Tel__img {
    height: 32px;
    width: 32px;
  }
}
.Contact__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 40px;
  margin-top: 32px;
}
@media screen and (max-width: 1023.98px) {
  .Contact__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 25px;
  }
}
.Contact__item {
  font-size: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
  list-style-type: none;
}

.Thanks {
  padding-block: 96px 300px;
}
@media screen and (max-width: 1023.98px) {
  .Thanks {
    padding-block: 54px 80px;
  }
}
.Thanks__inner {
  max-width: 920px;
}
@media screen and (max-width: 1023.98px) {
  .Thanks .Section__title {
    margin-bottom: 54px;
  }
}
.Thanks__title {
  font-size: 1.375rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  margin-bottom: 30px;
}
.Thanks__text {
  font-size: 1.125rem;
}

/*---------------------
Form
---------------------*/
.Contact-form {
  padding-bottom: 92px;
}
.Contact-form__inner {
  max-width: 898px;
}

/* レイアウト */
.bl_form_group:not(:first-of-type) {
  -webkit-margin-before: 28px;
          margin-block-start: 28px;
}

.bl_form_group fieldset {
  display: contents;
}

.bl_form_control {
  -webkit-margin-before: 1.1875em;
          margin-block-start: 1.1875em;
}

.bl_formConfirm_txt + .bl_form_group {
  -webkit-margin-before: 52px;
          margin-block-start: 52px;
}

/* 項目名 */
.bl_form_label {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: inline-grid;
  gap: 0.6em;
  grid-template-columns: 1fr auto;
  font-size: 1.125rem;
  font-weight: 500;
  color: #2B2B2B;
}

/* 必須ラベル */
.bl_form_required {
  background-color: #03346E;
  color: #fff;
  display: inline-block;
  font-size: 1.125rem;
  line-height: 1.2;
  padding-block: 3px;
  padding-inline: 19px;
}
@media screen and (max-width: 1399.98px) {
  .bl_form_required {
    padding-inline: 12px;
  }
}

/* 入力欄、セレクトボックス */
.bl_form :is(input[type=text],
input[type=email],
input[type=tel],
textarea,
select) {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: 1px solid #6EACDA;
  border-radius: 8px;
  inline-size: 100%;
  padding-inline: 0.657em;
  padding-block: 0.657em;
  resize: vertical;
}
@media screen and (max-width: 1399.98px) {
  .bl_form :is(input[type=text],
  input[type=email],
  input[type=tel],
  textarea,
  select) {
    border-radius: 10px;
    padding-block: 0.594em;
  }
}

.bl_form :is(input[type=text], input[type=email], input[type=tel]) {
  inline-size: 50%;
}
@media screen and (max-width: 1399.98px) {
  .bl_form :is(input[type=text], input[type=email], input[type=tel]) {
    width: 100%;
  }
}

.bl_form :is(input[type=text],
input[type=email],
input[type=tel],
textarea)::-webkit-input-placeholder {
  color: #c5c5c5;
}

.bl_form :is(input[type=text],
input[type=email],
input[type=tel],
textarea)::-moz-placeholder {
  color: #c5c5c5;
}

.bl_form :is(input[type=text],
input[type=email],
input[type=tel],
textarea):-ms-input-placeholder {
  color: #c5c5c5;
}

.bl_form :is(input[type=text],
input[type=email],
input[type=tel],
textarea)::-ms-input-placeholder {
  color: #c5c5c5;
}

.bl_form :is(input[type=text],
input[type=email],
input[type=tel],
textarea)::placeholder {
  color: #c5c5c5;
}

.bl_form textarea {
  min-block-size: 5lh;
}

/* フォーカス時のスタイル */
.bl_form :is(input[type=text],
input[type=email],
input[type=tel],
textarea,
select):focus-visible {
  outline: 0;
  -webkit-box-shadow: 0 0 0 2px rgb(3, 52, 110) inset;
          box-shadow: 0 0 0 2px rgb(3, 52, 110) inset;
}

/* ラジオボタン、チェックボックス */
.bl_form .wpcf7-list-item {
  margin: 0;
}

.bl_form_radio,
.bl_form_checkbox {
  display: inline-grid;
  gap: 0.5em 2em;
}

/* オリジナルのラジオボタンとチェックボックスを作成 */
.bl_form :is(input[type=radio], input[type=checkbox], input[type=checkbox]) {
  background-color: #fff;
  block-size: 1px;
  border: none;
  inline-size: 1px;
  -webkit-margin-after: 3px;
          margin-block-end: 3px;
  position: relative;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
}

.bl_form input[type=radio] {
  border-radius: 50%;
}

/* フォーカス時はlabelタグにアウトラインを適用 */
.bl_form label:has(:where(input[type=radio], input[type=checkbox]):focus-visible) {
  outline: 2px solid #005fcc;
  outline-offset: 2px;
}

/* チェック時のスタイルは擬似要素で再現 */
.bl_form :where(input[type=radio], input[type=checkbox]):checked::before {
  content: "";
  inset-block-start: 2px;
  inset-inline-start: 2px;
  position: absolute;
}

.bl_form :where(input[type=radio]):checked::before {
  background-color: #37952f;
  block-size: 10px;
  border-radius: 50%;
  inline-size: 10px;
}

.wpcf7-list-item-label {
  display: inline;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-weight: 500;
}

.wpcf7-list-item-label:before {
  background-color: #fff;
  border: 1px solid #6EACDA;
  display: inline-block;
  inline-size: 20px;
  block-size: 20px;
  -webkit-margin-end: 0.5em;
          margin-inline-end: 0.5em;
}

.bl_form :where(input[type=checkbox]):checked ~ .wpcf7-list-item-label:after {
  block-size: 10px;
  -webkit-border-after: 3px solid #021526;
          border-block-end: 3px solid #021526;
  -webkit-border-start: 3px solid #021526;
          border-inline-start: 3px solid #021526;
  inline-size: 20px;
  rotate: -50deg;
  position: absolute;
  top: 5px;
  left: 0;
}

/* プライバシーポリシー */
.bl_form_consent {
  border-radius: 20px;
  font-size: 1.125rem;
  -webkit-margin-before: 40px;
          margin-block-start: 40px;
}
@media screen and (max-width: 1399.98px) {
  .bl_form_consent {
    border-radius: 10px;
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
  }
}

.wpcf7-acceptance {
  display: inline-block;
  margin-bottom: 30px;
}

.bl_form_consent_desc_link {
  color: #6EACDA !important;
  text-decoration: underline !important;
}

/* バリデーションメッセージ */
.wpcf7-not-valid-tip {
  color: #f00;
}

/* 確認・戻る・送信ボタン */
.bl_form_consent-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1399.98px) {
  .bl_form_consent-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.bl_form_btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2em;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.bl_form_btn:has(.bl_form_back) {
  -webkit-margin-before: 112px;
          margin-block-start: 112px;
}
@media screen and (max-width: 1399.98px) {
  .bl_form_btn:has(.bl_form_back) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-margin-before: 94px;
            margin-block-start: 94px;
  }
}

/* 確認ボタン非活性時 */
.bl_form_confirm[disabled] {
  background-color: #F3F3F3;
  border: 1px solid #e0e0e0;
  color: #e0e0e0;
  cursor: default;
  pointer-events: none;
  -webkit-transition: unset;
  transition: unset;
}

/* 確認・送信ボタン */
.bl_form_submit-outer,
.bl_form_confirm-outer {
  display: inline-block;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.bl_form_submit-outer::before,
.bl_form_confirm-outer::before {
  background-color: #fff;
  height: 17.3205080757px;
  width: 18px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1399.98px) {
  .bl_form_submit-outer,
  .bl_form_confirm-outer {
    width: 100%;
  }
}

.bl_form_confirm,
.bl_form_submit {
  background-color: #6EACDA;
  border: 1px solid #6EACDA;
  color: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  padding-block: 0.8em;
  padding-inline: 1em;
  width: 288px;
}
@media screen and (max-width: 1399.98px) {
  .bl_form_confirm,
  .bl_form_submit {
    width: 100%;
  }
}

.bl_form_confirm-outer:hover,
.bl_form_submit-outer:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.bl_form_confirm-outer:has(.bl_form_confirm[disabled]) {
  -webkit-transition: unset;
  transition: unset;
}

.bl_form_confirm-outer:hover:has(.bl_form_confirm[disabled]) {
  -webkit-transform: none;
          transform: none;
}

/* 戻るボタン */
.bl_form_back-outer {
  display: inline-block;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.bl_form_back-outer::before {
  background-color: #6EACDA;
  height: 17.3205080757px;
  width: 18px;
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
  content: "";
  position: absolute;
  top: 50%;
  left: 22px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.bl_form_back {
  background-color: #fff;
  border: 1px solid #6EACDA;
  color: #6EACDA;
  cursor: pointer;
  font-size: 1.125rem;
  padding-block: 0.973em;
  padding-inline: 1em;
  width: 288px;
}
@media screen and (max-width: 1399.98px) {
  .bl_form_back {
    padding-block: 0.8em;
    width: 100%;
  }
}

.bl_form_back-outer:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

/* 確認画面とメッセージ、スピナーを非表示 */
.bl_formConfirm,
.wpcf7-response-output,
.bl_formConfirm .wpcf7-spinner,
.bl_formConfirm .bl_form_consent {
  display: none;
}

/* 確認画面 */
.bl_formConfirm_txt,
.bl_form_control p {
  font-size: 1.125rem;
}

/* 送信完了画面 */
.bl_formThanks_ttl,
.bl_formThanks_txt {
  text-align: center;
}

.bl_formThanks_ttl {
  font-size: 24px;
  font-weight: 700;
}

.bl_formThanks_txt {
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
}

@media (min-width: 768px) {
  .bl_form_radio,
  .bl_form_checkbox {
    grid-auto-flow: column;
  }
}
/*---------------------
Privacy
---------------------*/
:is(.Privacy__text, .Privacy__dl) {
  font-size: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
}
:is(.Privacy__text, .Privacy__dl) + .Privacy__dl {
  margin-top: 20px;
}
@media screen and (max-width: 1023.98px) {
  :is(.Privacy__text, .Privacy__dl) + .Privacy__dl {
    margin-top: 1rem;
  }
}

.Privacy {
  padding-block: 107px 36px;
}
@media screen and (max-width: 1399.98px) {
  .Privacy {
    padding-block: 39px 14px;
  }
}
.Privacy__inner {
  max-width: 1032px;
}
.Privacy__item {
  list-style-type: none;
  padding-left: 1rem;
  position: relative;
}
.Privacy__item::before {
  background-color: #021526;
  border-radius: 50px;
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.Privacy__link {
  color: #6EACDA;
}

/*---------------------
error
---------------------*/
.Error {
  padding-block: 160px;
}
@media screen and (max-width: 1399.98px) {
  .Error {
    padding-block: 30px 79px;
  }
}
.Error__btn {
  margin-top: 122px;
  width: 100%;
}
@media screen and (max-width: 1399.98px) {
  .Error__btn {
    margin-top: 65px;
  }
}
.Error .Btn {
  margin-left: auto;
  margin-right: auto;
}

/* ==========================
  swiperslider
========================== */
.Mv .mySwiper .swiper-horizontal > .swiper-pagination-bullets,
.Mv .mySwiper .swiper-pagination-bullets.swiper-pagination-horizontal,
.Mv .mySwiper .swiper-pagination-custom,
.Mv .mySwiper .swiper-pagination-fraction {
  width: auto;
  left: 300px;
  bottom: var(--swiper-pagenation-bottom, 28px);
}

.Mv .mySwiper .swiper-pagination-bullet,
.Sentence .swiper-pagination-bullet {
  background-color: #FFFFFF;
  width: 21px;
  height: 21px;
  opacity: 1;
}

.Mv .mySwiper .swiper-pagination-bullet-active,
.Sentence .swiper-pagination-bullet-active {
  background-color: #6EACDA;
}

@media screen and (max-width: 1023.98px) {
  .Mv .mySwiper .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    left: inherit;
    right: 15px;
    bottom: var(--swiper-pagenation-bottom, 20px);
  }
  .Mv .mySwiper .swiper-pagination-bullet,
  .Sentence .swiper-pagination-bullet {
    width: 17px;
    height: 17px;
  }
}
.Sentence .mySwiper {
  position: absolute;
  right: 0;
  content: "";
  z-index: 3;
  bottom: -272px;
}

.Sentence .mySwiper .swiper-slide {
  margin-right: 0 !important;
  width: 200px !important;
  opacity: 0.4;
}

.Sentence .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.Sentence .mySwiper .swiper-slide + .swiper-slide {
  margin-left: 10px !important;
}

.Sentence .mySwiper .swiper-slide img {
  height: 171px;
  -o-object-fit: cover;
     object-fit: cover;
}

.Sentence .swiper-horizontal > .swiper-pagination-bullets,
.Sentence .swiper-pagination-bullets.swiper-pagination-horizontal,
.Sentence .swiper-pagination-custom,
.Sentence .swiper-pagination-fraction {
  width: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: var(--swiper-pagenation-bottom, -22px);
}

@media screen and (max-width: 1399.98px) {
  .Sentence .mySwiper {
    display: none;
  }
  .Sentence .mySwiper2 .swiper-slide img {
    height: 68vw !important;
    width: 100%;
  }
  .Sentence .swiper-horizontal > .swiper-pagination-bullets,
  .Sentence .swiper-pagination-bullets.swiper-pagination-horizontal,
  .Sentence .swiper-pagination-custom,
  .Sentence .swiper-pagination-fraction {
    bottom: var(--swiper-pagenation-bottom, -39px);
  }
}