@charset "UTF-8";
/*
Theme Name: asaya
Description: アサヤ測量の公式サイト
Author: ccs
*/

/*---------------------
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 Serif JP";
  font-weight: 400;
  src: url(./asset/font/NotoSerifJP-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Noto Serif JP";
  font-weight: 500;
  src: url(./asset/font/NotoSerifJP-Medium.ttf) format("truetype");
}
@font-face {
  font-family: "Noto Serif JP";
  font-weight: 600;
  src: url(./asset/font/NotoSerifJP-Bold.ttf) format("truetype");
}
/*---------------------
base
---------------------*/
html {
  font-size: 16px;
  color: #333;
  height: 100%;
}

body {
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.016em;
}
body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 999px #F7F7F7 inset;
          box-shadow: 0 0 0px 999px #F7F7F7 inset;
}

/* ---------------------------
animation
--------------------------- */
.fadeInTrigger,
.fadeUpTrigger {
  opacity: 0;
}

.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -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;
}

.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;
}

@-webkit-keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    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;
  }
}
@-webkit-keyframes progress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes progress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
/*---------------------
header
---------------------*/
.Header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}
.Header__inner {
  background-color: #fff;
  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;
  padding: 18px 40px;
}
@media screen and (max-width: 1199px) {
  .Header__inner {
    padding: 9px 16px;
  }
}

.Header-right {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 40px;
}
@media screen and (max-width: 1199px) {
  .Header-right .Btn {
    display: none;
  }
}

/*---------------------
footer
---------------------*/
.Footer {
  -webkit-box-shadow: 0 2px 0 rgb(7, 43, 91) inset;
          box-shadow: 0 2px 0 rgb(7, 43, 91) inset;
  padding-top: 50px;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .Footer {
    padding-top: 40px;
  }
}
.Footer__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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1158px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 1199px) {
  .Footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px 0;
    padding: 0 24px;
  }
}
.Footer__left {
  padding-right: 50px;
}
@media screen and (max-width: 1199px) {
  .Footer__left {
    padding-right: 0;
    width: 100%;
  }
}
.Footer__left > .Logo {
  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: 24px 0;
}
@media screen and (max-width: 1199px) {
  .Footer__left > .Logo {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px 0;
  }
}
.Footer__right {
  border-left: 1px solid #707070;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-left: 50px;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media screen and (max-width: 1199px) {
  .Footer__right {
    border-left: 0px;
    padding-left: 0;
    width: 100%;
  }
}
.Footer__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;
}
@media screen and (max-width: 1199px) {
  .Footer__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px 0;
  }
}
.Footer__item {
  color: #072B5B;
  list-style-type: none;
  width: 20%;
}
@media screen and (max-width: 1199px) {
  .Footer__item {
    width: 100%;
  }
}
.Footer__link {
  color: #072B5B;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .Footer__link:hover {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .Footer__link:active {
    opacity: 0.6;
  }
}
@media screen and (max-width: 1199px) {
  .Footer__link {
    display: block;
  }
}
.Footer__sub {
  margin-top: 16px;
}
@media screen and (max-width: 1199px) {
  .Footer__sub {
    display: none;
  }
}
.Footer__sub-item {
  line-height: 1.25;
  list-style-type: none;
  margin-bottom: 10px;
  padding-left: 22px;
}
@media screen and (max-width: 1199px) {
  .Footer__sub-item {
    margin-bottom: 1rem;
    margin-left: 8px;
  }
}
.Footer__sub-item:last-child {
  margin-bottom: 0;
}
.Footer__sub-item > .Footer__link {
  font-size: 0.875rem;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .Footer__sub-item > .Footer__link {
    font-size: 1rem;
  }
}
.Footer__sub-item > .Footer__link::before {
  background-color: #072B5B;
  content: "";
  height: 1px;
  position: absolute;
  top: 50%;
  left: -22px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 14px;
}
@media screen and (max-width: 1199px) {
  .Footer__sub-item > .Footer__link::before {
    width: 10px;
  }
}

@media screen and (max-width: 1199px) {
  .Footer-sub-child {
    position: relative;
  }
  .Footer-sub-child::before {
    position: absolute;
    top: 12px;
    right: 24px;
    content: "";
    background-color: #072B5B;
    display: inline-block;
    width: 15px;
    height: 1px;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
  }
  .Footer-sub-child::after {
    position: absolute;
    top: 12px;
    right: 31px;
    content: "";
    background-color: #072B5B;
    display: inline-block;
    margin-top: -7px;
    width: 1px;
    height: 15px;
  }
}
@media screen and (max-width: 1199px) {
  .Footer-sub-child.close.Footer-sub-child::after {
    display: none;
  }
}

.Copy {
  background-color: #072B5B;
  display: block;
  padding: 10px 0;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .Copy {
    padding: 8px 0 7px;
  }
}
.Copy__text {
  color: #fff;
  font-size: 0.875rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: right;
}
@media screen and (max-width: 1199px) {
  .Copy__text {
    font-size: 0.75rem;
    text-align: center;
  }
}

/*---------------------
nav
---------------------*/
@media screen and (max-width: 1199px) {
  .Nav {
    display: none;
  }
}
.Nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 40px;
}
.Nav__item {
  list-style-type: none;
}
.Nav__link {
  color: #072B5B;
  cursor: pointer;
  font-size: 1.125rem;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .Nav__link:hover {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .Nav__link:active {
    opacity: 0.6;
  }
}

.Nav-sub {
  display: none;
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
}
.Nav-sub__inner {
  background-color: #072B5B;
  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;
  gap: 0 80px;
  padding: 40px 0;
}
.Nav-sub__img {
  height: 222px;
  -o-object-fit: cover;
     object-fit: cover;
}
.Nav-sub__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 16px;
}
.Nav-sub__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  width: 240px;
}
.Nav-sub__link {
  background-color: #fff;
  border: 1px solid #072B5B;
  color: #072B5B;
  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;
  gap: 0 10px;
  padding: 11px 24px;
  text-decoration: none;
  width: 100%;
}
@media (hover: hover) and (pointer: fine) {
  .Nav-sub__link:hover > span {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .Nav-sub__link:active > span {
    opacity: 0.6;
  }
}

.Btn {
  width: 240px;
}
.Btn--wide {
  margin: 0 auto;
  width: 320px;
}
@media screen and (max-width: 1199px) {
  .Btn--wide {
    width: 295px;
  }
}
.Btn__link {
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 1px #920b45 inset;
          box-shadow: 0 0 0 1px #920b45 inset;
  color: #920B45;
  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;
  font-size: 1.125rem;
  gap: 0 16px;
  padding: 19px 0;
  text-decoration: none;
  width: 100%;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .Btn__link:hover {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .Btn__link:active {
    opacity: 0.6;
  }
}
@media screen and (max-width: 1199px) {
  .Btn__link {
    padding: 15px 0;
  }
}
.Btn__link--blue {
  background-color: #072B5B;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .Btn__link--blue:hover {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .Btn__link--blue:active {
    opacity: 0.8;
  }
}
.Btn__link--red {
  background-color: #920B45;
  border: none;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .Btn__link--red:hover {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .Btn__link--red:active {
    opacity: 0.8;
  }
}
.Btn__link--white {
  -webkit-transition: none;
  transition: none;
}
.Btn__link--white > span {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .Btn__link--white:hover {
    opacity: 1;
  }
  .Btn__link--white:hover > span {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .Btn__link--white:active {
    opacity: 1;
  }
  .Btn__link--white:active > span {
    opacity: 0.6;
  }
}
.Btn__link-tel {
  pointer-events: none;
}
@media screen and (max-width: 1199px) {
  .Btn__link-tel {
    pointer-events: auto;
  }
}

/*---------------------
PageTop_btn
---------------------*/
.Btn-top {
  position: fixed;
  bottom: 96px;
  right: 0;
  z-index: 100;
}
@media screen and (max-width: 1199px) {
  .Btn-top {
    bottom: 64px;
  }
}
.Btn-top__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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #072B5B;
  width: 64px;
  height: 160px;
  padding-top: 8px;
  position: relative;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .Btn-top__link:hover {
    background-color: rgba(7, 43, 91, 0.8);
  }
}
@media (hover: none) {
  .Btn-top__link:active {
    background-color: rgba(7, 43, 91, 0.8);
  }
}
@media screen and (max-width: 1199px) {
  .Btn-top__link {
    width: 40px;
    height: 118px;
    padding-top: 14px;
  }
}
.Btn-top__text {
  color: #fff;
  font-size: 0.625rem;
  text-decoration: none;
}
@media screen and (max-width: 1199px) {
  .Btn-top__text {
    display: none;
  }
}

.Ico-arrow {
  display: block;
  width: 24px;
  position: relative;
  padding-bottom: 68px;
}
@media screen and (max-width: 1199px) {
  .Ico-arrow {
    padding-bottom: 46px;
    width: 15px;
  }
}
.Ico-arrow::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 50%;
  background-color: #fff;
  width: 1px;
  height: 60px;
  display: block;
}
@media screen and (max-width: 1199px) {
  .Ico-arrow::after {
    height: 24px;
  }
}
.Ico-arrow__img {
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1199px) {
  .Ico-arrow__img {
    height: 15px;
  }
}

.Ico-dlone {
  display: block;
  width: 40px;
}
@media screen and (max-width: 1199px) {
  .Ico-dlone {
    width: 30px;
  }
}
.Ico-dlone__img {
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .Ico-dlone__img {
    height: 30px;
  }
}

/*---------------------
Banner
---------------------*/
.Recruit-banner {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  left: 0;
  z-index: 19;
  width: 100%;
}
.Recruit-banner__inner {
  background-color: rgba(255, 255, 255, 0.8);
  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;
  gap: 0 40px;
  padding: 16px 0;
}
@media screen and (max-width: 1199px) {
  .Recruit-banner__inner {
    gap: 0;
    padding: 8px 24px;
  }
}
.Recruit-banner__item {
  width: 400px;
}
@media screen and (max-width: 1199px) {
  .Recruit-banner__item {
    width: 100%;
  }
}
.Recruit-banner__item .Btn__link {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif !important;
  line-height: 1.334;
  font-weight: 600;
  padding: 12px 0;
}
.Recruit-banner__text {
  font-size: 1.25rem;
}
@media screen and (max-width: 1199px) {
  .Recruit-banner__text {
    display: none;
  }
}

/*---------------------
Hamburger-menu
---------------------*/
.Drawer-hidden {
  display: none;
}

@media screen and (max-width: 1199px) {
  .Drawer-open {
    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: transparent;
    cursor: pointer;
    border: none;
    height: 12px;
    width: 16px;
    position: fixed;
    top: 26px;
    right: 24px;
    z-index: 101;
  }
}
@media screen and (max-width: 1199px) {
  .Drawer-open__parts, .Drawer-open__parts::before, .Drawer-open__parts::after {
    content: "";
    display: block;
    height: 1px;
    width: 16px;
    background: #C0C0C0;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
    position: absolute;
  }
}
@media screen and (max-width: 1199px) {
  .Drawer-open__parts::before {
    bottom: 6px;
  }
}
@media screen and (max-width: 1199px) {
  .Drawer-open__parts::after {
    top: 6px;
  }
}
@media screen and (max-width: 1199px) {
  .Drawer-open__parts.active, .Drawer-open__parts.active::before, .Drawer-open__parts.active::after {
    background: #fff;
  }
}

@media screen and (max-width: 1199px) {
  .Drawer-close {
    background-color: transparent;
    cursor: pointer;
    display: none;
    width: 16px;
    height: 12px;
    position: fixed;
    top: 26px;
    right: 24px;
    z-index: 102;
  }
}

.Nav-sp {
  display: none;
}
@media screen and (max-width: 1199px) {
  .Nav-sp {
    background-color: #072B5B;
    display: block;
    padding: 80px 0 153px;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
    -webkit-transition: -webkit-transform 0.5s ease-in-out 0.1s;
    transition: -webkit-transform 0.5s ease-in-out 0.1s;
    transition: transform 0.5s ease-in-out 0.1s;
    transition: transform 0.5s ease-in-out 0.1s, -webkit-transform 0.5s ease-in-out 0.1s;
    z-index: 99;
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
  }
}
@media screen and (max-width: 1199px) {
  .Nav-sp__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;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 1199px) {
  .Nav-sp__item {
    list-style-type: none;
  }
}
@media screen and (max-width: 1199px) {
  .Nav-sp__link {
    color: #fff;
    display: block;
    padding: 16px 24px;
    text-decoration: none;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}
@media screen and (max-width: 1199px) {
  .Nav-sp__btn {
    width: 295px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 1199px) {
  .Nav-sp-child .Nav-sp__link {
    cursor: pointer;
    position: relative;
  }
  .Nav-sp-child .Nav-sp__link::before {
    position: absolute;
    top: 50%;
    right: 24px;
    content: "";
    background-color: #fff;
    display: inline-block;
    width: 15px;
    height: 1px;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
  }
  .Nav-sp-child .Nav-sp__link::after {
    position: absolute;
    top: 50%;
    right: 31px;
    content: "";
    background-color: #fff;
    display: inline-block;
    margin-top: -7px;
    width: 1px;
    height: 15px;
  }
}
@media screen and (max-width: 1199px) {
  .Nav-sp-child.close .Nav-sp__link::after {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .Nav-sp-child__list {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .Nav-sp-child__item {
    list-style-type: none;
    margin-bottom: 1px;
  }
  .Nav-sp-child__item:last-child {
    margin-bottom: 0;
  }
}
.Nav-sp-child__link {
  background-color: #fff;
  color: #072B5B;
  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;
  gap: 0 1rem;
  padding: 16px 32px;
  text-decoration: none;
}
.Nav-sp-child__img {
  display: block;
  height: 24px !important;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.Nav-sp-child__text {
  color: #072B5B;
  padding-left: 16px;
}

@media screen and (max-width: 1199px) {
  #drawer-check:checked ~ .Drawer-open span {
    background: rgba(255, 255, 255, 0);
  }
}

@media screen and (max-width: 1199px) {
  #drawer-check:checked ~ .Drawer-open span::before {
    bottom: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

@media screen and (max-width: 1199px) {
  #drawer-check:checked ~ .Drawer-open span::after {
    top: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

#drawer-check:checked ~ .Nav-sp {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@media screen and (max-width: 1199px) {
  #drawer-check:checked ~ .Drawer-close {
    display: block;
  }
}

/*---------------------
Breadcrumb
---------------------*/
.Breadcrumb {
  background-color: #072B5B;
  line-height: 1;
  padding: 8px 0;
}
@media screen and (max-width: 1199px) {
  .Breadcrumb {
    padding: 8px 36px 7px;
  }
}
.Breadcrumb__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.Breadcrumb__list {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.Breadcrumb__item {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1;
  list-style-type: none;
}
@media screen and (max-width: 1199px) {
  .Breadcrumb__item {
    font-size: 0.75rem;
  }
}
.Breadcrumb__link {
  color: #637ABE;
  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;
}
@media screen and (max-width: 1199px) {
  .Breadcrumb__item + .Breadcrumb__item::before {
    margin: 0 15px;
  }
}

/*---------------------
content
---------------------*/
.Logo__img {
  height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1199px) {
  .Logo__img {
    height: 46px;
  }
}
.Logo__link {
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .Logo__link:hover {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .Logo__link:active {
    opacity: 0.6;
  }
}
.Logo__text {
  font-size: 1.25rem;
}
@media screen and (max-width: 1199px) {
  .Logo__text {
    font-size: 1.125rem;
  }
}

.Ico-mail {
  display: block;
  width: 24px;
}
.Ico-mail__img {
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}

.Ico-menu {
  display: block;
  width: 32px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 1199px) {
  .Ico-menu {
    width: 24px;
  }
}
.Ico-menu--large {
  width: 40px;
}
@media screen and (max-width: 1199px) {
  .Ico-menu--large {
    width: 32px;
  }
}
.Ico-menu__img {
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
.Ico-menu__img--blue {
  -webkit-filter: invert(12%) sepia(55%) saturate(2612%) hue-rotate(198deg) brightness(93%) contrast(96%);
          filter: invert(12%) sepia(55%) saturate(2612%) hue-rotate(198deg) brightness(93%) contrast(96%);
}
.Ico-menu__img--white {
  -webkit-filter: invert(100%) sepia(0%) saturate(2%) hue-rotate(68deg) brightness(105%) contrast(101%);
          filter: invert(100%) sepia(0%) saturate(2%) hue-rotate(68deg) brightness(105%) contrast(101%);
}
.Ico-menu__img--large {
  height: 40px;
}
@media screen and (max-width: 1199px) {
  .Ico-menu__img--large {
    height: 32px;
  }
}

.Wrapper {
  background: -webkit-gradient(linear, left top, right top, from(rgb(223, 228, 243)), to(rgb(99, 122, 190)));
  background: -webkit-linear-gradient(left, rgb(223, 228, 243), rgb(99, 122, 190));
  background: linear-gradient(90deg, rgb(223, 228, 243), rgb(99, 122, 190));
}
.Wrapper__outer {
  background-image: url(./asset/img/bg_/bg_square.png);
  background-position: left top;
  background-repeat: repeat;
}

.Section {
  padding: 100px 0;
}
@media screen and (max-width: 1199px) {
  .Section {
    padding: 80px 16px;
  }
}
.Section__inner {
  max-width: 1200px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 1199px) {
  .Section__inner {
    margin-bottom: 40px;
  }
}
.Section__catch {
  max-width: 960px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 1199px) {
  .Section__catch {
    margin-bottom: 40px;
  }
}
.Section__catch-text {
  color: #072B5B;
}
.Section__content {
  background-color: #fff;
  padding: 64px 68px;
}
@media screen and (max-width: 1199px) {
  .Section__content {
    padding: 24px;
  }
}

.Section-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1199px) {
  .Section-title {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.Section-title--center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.Section-title__text {
  border-bottom: 1px solid #637ABE;
  font-size: 2rem;
  display: inline-block;
  font-weight: normal;
  margin-bottom: 64px;
  padding-bottom: 8px;
}
@media screen and (max-width: 1199px) {
  .Section-title__text {
    font-size: 1.75rem;
    margin-bottom: 42px;
  }
}
.Section-title__text--error {
  border-bottom: none;
  position: relative;
}
.Section-title__text--error:after {
  background-color: #072B5B;
  content: "";
  height: 1px;
  width: 100px;
  position: absolute;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 1199px) {
  .Section-title__text--error {
    text-align: left;
  }
}

.Page-head {
  background-color: #fff;
  padding: 210px 0 120px;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .Page-head {
    padding: 121px 0 57px 40px;
  }
}
.Page-head--company {
  background-image: url(./asset/img/mv_/mv_sub_company_pc.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.Page-head--business {
  background-image: url(./asset/img/mv_/mv_sub_business_pc.jpg);
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1199px) {
  .Page-head--business {
    background-image: url(./asset/img/mv_/mv_sub_business_sp.jpg);
    background-position: center;
  }
}
.Page-head--recruit {
  background-image: url(./asset/img/mv_/mv_sub_recruit_pc.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1199px) {
  .Page-head--recruit {
    background-image: url(./asset/img/mv_/mv_sub_recruit_sp.jpg);
  }
}
.Page-head--other {
  background-image: url(./asset/img/mv_/mv_sub_others_pc.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1199px) {
  .Page-head--other {
    background-image: url(./asset/img/mv_/mv_sub_others_sp.jpg);
  }
}
.Page-head__title {
  color: #fff;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 3rem;
  font-weight: normal;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 1199px) {
  .Page-head__title {
    font-size: 2rem;
  }
}
.Page-head__title--blue {
  color: #072B5B;
}

.Pc-hide {
  display: none !important;
}
@media screen and (max-width: 1199px) {
  .Pc-hide {
    display: block !important;
  }
}

.Sp-hide {
  display: block !important;
}
@media screen and (max-width: 1199px) {
  .Sp-hide {
    display: none !important;
  }
}

/*---------------------
404
---------------------*/
.Error__text {
  margin-bottom: 27px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .Error__text {
    text-align: left;
  }
}
.Error__text:last-of-type {
  margin-bottom: 0;
}
.Error__text--red {
  color: #f00;
}

/*---------------------
loading
---------------------*/
.Loading {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1000;
}
.Loading__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.Loading__img {
  height: 76px;
  -o-object-fit: contain;
     object-fit: contain;
}
.Loading--disable {
  display: none;
}

/*---------------------
top
---------------------*/
.Mv {
  position: relative;
}
.Mv__inner {
  display: block;
  width: 100%;
  height: 100vh;
}
.Mv__img {
  display: block;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.Mv__catch {
  content: "";
  position: absolute;
  bottom: 114px;
  left: 0;
  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;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 1199px) {
  .Mv__catch {
    bottom: inherit;
    top: 120px;
    left: 24px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: auto;
  }
}
.Mv__catch-text {
  color: #fff;
  font-size: clamp(1.875rem, 1.117rem + 3.24vw, 5rem);
  letter-spacing: 0.016em;
}

.Top__title {
  color: #072B5B;
  font-size: 3rem;
  margin-bottom: 72px;
  font-weight: normal;
  letter-spacing: 0.12em;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .Top__title {
    font-size: 2rem;
    margin-bottom: 47px;
  }
}
.Top__text {
  color: #072B5B;
  font-size: 1.25rem;
  line-height: 2.5;
  letter-spacing: 0.016em;
}
@media screen and (max-width: 1199px) {
  .Top__text {
    font-size: 1rem;
    line-height: 2;
  }
}

@media screen and (max-width: 1199px) {
  .Top-company {
    padding-bottom: 40px;
  }
}
.Top-company__inner {
  max-width: 1583px;
  margin: 0 auto;
  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;
  gap: 0 80px;
}
@media screen and (max-width: 1199px) {
  .Top-company__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 40px 0;
  }
}
.Top-company__left {
  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: 40px 0;
  width: 640px;
}
@media screen and (max-width: 1199px) {
  .Top-company__left {
    gap: 1rem 0;
    width: 100%;
  }
}
.Top-company__right {
  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: 60px 0;
  width: 100%;
  max-width: 680px;
}
@media screen and (max-width: 1199px) {
  .Top-company__right {
    gap: 2rem 0;
    width: 100%;
  }
}
.Top-company__figure {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.Top-company__figure--reverse {
  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;
}
@media screen and (max-width: 1199px) {
  .Top-company__figure--reverse {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 1199px) {
  .Top-company__figure {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.Top-company__img {
  height: 322px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1199px) {
  .Top-company__img {
    height: 53.33vw;
  }
}

.Top-Business {
  max-width: 840px;
  margin: 0 auto 140px;
}
@media screen and (max-width: 1199px) {
  .Top-Business {
    margin-bottom: 40px;
    padding: 0 16px;
  }
}
.Top-Business__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 80px;
  margin-top: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1199px) {
  .Top-Business__list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 16px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.Top-Business__item {
  background-color: #fff;
  color: #072B5B;
  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;
  font-size: 1.25rem;
  gap: 23px 0;
  list-style-type: none;
  padding-top: 40px;
  padding-bottom: 17px;
  width: calc((100% - 80px) / 3);
}
@media screen and (max-width: 1199px) {
  .Top-Business__item {
    font-size: 1.125rem;
    gap: 16px 0;
    padding-top: 30px;
    width: calc((100% - 16px) / 2);
  }
}
.Top-Business__img {
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1199px) {
  .Top-Business__img {
    height: 48px;
  }
}

.Top-Recruit__outer {
  background-image: url(./asset/img/bg_/bg_top_recruit_pc.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
}
@media screen and (max-width: 1199px) {
  .Top-Recruit__outer {
    background-image: url(./asset/img/bg_/bg_top_recruit_sp.jpg);
    padding: 40px 16px;
  }
}
.Top-Recruit__inner {
  max-width: 1018px;
  margin: 0 auto;
}
.Top-Recruit .Btn--wide {
  margin-top: 60px;
}
.Top-Recruit__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1199px) {
  .Top-Recruit__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;
    gap: 1rem 0;
    padding-top: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .Top-Recruit__img {
    height: 52.8vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.Top-Recruit__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;
  gap: 0 64px;
}
@media screen and (max-width: 1199px) {
  .Top-Recruit__link {
    -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: 24px 0;
    padding-top: 40px;
  }
}
.Top-Recruit__link-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 400px;
}
@media screen and (max-width: 1199px) {
  .Top-Recruit__link-item {
    width: 100%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .Top-Recruit__link-item > .Btn__link:hover {
    opacity: 1;
  }
  .Top-Recruit__link-item > .Btn__link:hover > span {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .Top-Recruit__link-item > .Btn__link:active {
    opacity: 1;
  }
  .Top-Recruit__link-item > .Btn__link:active > span {
    opacity: 0.6;
  }
}
.Top-Recruit__link-item > .Btn__link > span {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

/*---------------------
Message
---------------------*/
.Message__content {
  max-width: 820px;
  margin: 0 auto;
}
.Message__text {
  line-height: 2rem;
  letter-spacing: 0.016em;
  margin-bottom: 40px;
}
@media screen and (max-width: 1199px) {
  .Message__text {
    margin-bottom: 30px;
  }
}

.Message-name {
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 16px;
}
.Message-name__text {
  color: #072B5B;
}
.Message-name__text--large {
  font-size: 1.25rem;
}

/*---------------------
Philosophy
---------------------*/
.Philosophy__content {
  max-width: 820px;
  margin: 0 auto;
}
.Philosophy__item {
  font-size: 1.25rem;
  list-style-type: none;
  margin-bottom: 40px;
}
.Philosophy__item:last-child {
  margin-bottom: 0;
}

/*---------------------
Company
---------------------*/
.Company__inner {
  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;
  gap: 0 40px;
}
@media screen and (max-width: 1199px) {
  .Company__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px 0;
  }
}
.Company__left {
  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: 45px 0;
  width: 480px;
}
@media screen and (max-width: 1199px) {
  .Company__left {
    width: 100%;
    gap: 1rem 0;
  }
}
.Company__right {
  width: calc(100% - 520px);
}
@media screen and (max-width: 1199px) {
  .Company__right {
    width: 100%;
  }
}
.Company__figure {
  background-color: #072B5B;
}
.Company__img {
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1199px) {
  .Company__img {
    height: 240px;
    width: 100%;
  }
}
.Company__caption {
  color: #fff;
  padding: 8px 24px;
}
.Company__dl {
  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: 1199px) {
  .Company__dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.Company__dl-t {
  color: #637ABE;
  border-bottom: 1px solid #E0E0E0;
  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;
  padding: 12px 24px;
  width: 120px;
}
@media screen and (max-width: 1199px) {
  .Company__dl-t {
    border-bottom: 0px;
    padding: 16px 0 8px;
    width: 100%;
  }
  .Company__dl-t:first-child {
    border-top: 1px solid #E0E0E0;
  }
}
.Company__dl-d {
  border-bottom: 1px solid #E0E0E0;
  padding: 12px 24px;
  width: calc(100% - 120px);
}
@media screen and (max-width: 1199px) {
  .Company__dl-d {
    padding: 8px 0 16px;
    width: 100%;
  }
}
.Company__dl-d > ul li {
  list-style-type: none;
  padding-left: 1rem;
  position: relative;
}
.Company__dl-d > ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: #637ABE;
  border-radius: 50%;
}
.Company__dl-d > dl dt {
  color: #333;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.Company__dl-d > dl dt::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #637ABE;
}
.Company__dl-d > dl dd {
  margin-bottom: 1rem;
}
.Company__dl-d > dl dd:last-child {
  margin-bottom: 0;
}

/*---------------------
History
---------------------*/
.History__inner {
  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;
  gap: 0 40px;
}
@media screen and (max-width: 1199px) {
  .History__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px 0;
  }
}
.History__left {
  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: 45px 0;
  width: 480px;
}
@media screen and (max-width: 1199px) {
  .History__left {
    gap: 1rem 0;
    width: 100%;
  }
}
.History__right {
  width: calc(100% - 520px);
}
@media screen and (max-width: 1199px) {
  .History__right {
    width: 100%;
  }
}
.History__img {
  height: 360px;
}
@media screen and (max-width: 1199px) {
  .History__img {
    height: 64vw;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
}
.History__table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.History__td {
  padding: 24px 0;
}
@media screen and (max-width: 1199px) {
  .History__td {
    display: block;
    font-size: 1rem;
    padding: 24px 0;
  }
}
.History__td:first-child {
  color: #637ABE;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  padding-right: 24px;
  width: 22%;
}
@media screen and (max-width: 1199px) {
  .History__td:first-child {
    font-size: 1.375rem;
    padding: 8px 0;
    line-height: 1;
    width: 100%;
  }
}
.History__td:nth-child(2) {
  border-left: 1px solid #E0E0E0;
  color: #637ABE;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 500;
  padding-left: 24px;
  padding-right: 16px;
  position: relative;
  width: 15%;
}
.History__td:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  background-color: #072B5B;
  border-radius: 100%;
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-top: -3px;
}
@media screen and (max-width: 1199px) {
  .History__td:nth-child(2) {
    border-left: none;
    font-size: 1.125rem;
    padding: 8px 0 5px;
    position: static;
    line-height: 1;
    width: 100%;
  }
  .History__td:nth-child(2)::before {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .History__td:empty {
    display: none;
  }
}

/*---------------------
Qualified
---------------------*/
.Qualified__inner {
  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;
  gap: 0 40px;
}
@media screen and (max-width: 1199px) {
  .Qualified__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px 0;
  }
}
.Qualified__left {
  width: 480px;
}
@media screen and (max-width: 1199px) {
  .Qualified__left {
    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;
    width: 100%;
  }
}
.Qualified__right {
  width: calc(100% - 520px);
}
@media screen and (max-width: 1199px) {
  .Qualified__right {
    width: 100%;
  }
}
.Qualified__img {
  height: 360px;
}
@media screen and (max-width: 1199px) {
  .Qualified__img {
    height: 64vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.Qualified__dl {
  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: 1199px) {
  .Qualified__dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.Qualified__dl-t {
  border-bottom: 1px solid #E0E0E0;
  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;
  padding: 12px 24px;
  width: calc(100% - 100px);
}
@media screen and (max-width: 1199px) {
  .Qualified__dl-t {
    border-bottom: 0px;
    padding: 16px 0 8px;
    width: 100%;
  }
  .Qualified__dl-t:first-child {
    border-top: 1px solid #E0E0E0;
  }
}
.Qualified__dl-d {
  border-bottom: 1px solid #E0E0E0;
  color: #637ABE;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 500;
  padding: 12px 24px;
  text-align: right;
  width: 100px;
}
@media screen and (max-width: 1199px) {
  .Qualified__dl-d {
    padding: 8px 0 16px;
    text-align: left;
    width: 100%;
  }
}

/*---------------------
Google Map
---------------------*/
.Map {
  background-image: url(./asset/img/bg_/bg_googlemap_pc.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 50px 0 0;
}
@media screen and (max-width: 1199px) {
  .Map {
    padding: 40px 28px 0;
  }
}
.Map__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;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  height: 0;
  padding-top: 32.652%;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .Map__inner {
    padding-top: 74.652%;
  }
}
.Map__inner iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: -60px;
}
@media screen and (max-width: 1199px) {
  .Map__inner {
    margin-top: 0;
  }
}

/*---------------------
business
---------------------*/
.Business__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;
  gap: 0 180px;
}
@media screen and (max-width: 1199px) {
  .Business__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px 0;
  }
}
.Business__left {
  position: relative;
  width: calc(100% - 580px);
}
@media screen and (max-width: 1199px) {
  .Business__left {
    width: 100%;
  }
}
.Business__right {
  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: 40px 0;
  width: 400px;
}
@media screen and (max-width: 1199px) {
  .Business__right {
    gap: 16px 0;
    width: 100%;
  }
}
.Business__title {
  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;
  font-size: 1.75rem;
  font-weight: normal;
  gap: 0 12px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1199px) {
  .Business__title {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 24px;
  }
}
.Business__title-text {
  width: calc(100% - 52px);
}
@media screen and (max-width: 1199px) {
  .Business__title-text {
    width: calc(100% - 44px);
  }
}
.Business__list {
  margin: 24px 0 0 1rem;
}
@media screen and (max-width: 1199px) {
  .Business__list {
    margin: 20px 0 0 1rem;
  }
}
.Business__item {
  margin-bottom: 3px;
}
.Business__item:last-child {
  margin-bottom: 0;
}
.Business__left-block {
  background-color: #072B5B;
  color: #fff;
  padding: 48px;
}
@media screen and (max-width: 1199px) {
  .Business__left-block {
    padding: 24px;
  }
}
.Business__left-block--sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}
@media screen and (max-width: 1199px) {
  .Business__left-block--sticky {
    position: static;
  }
}
.Business__right-block {
  background-color: #fff;
}
.Business__left-block-text {
  margin-bottom: 1rem;
}
.Business__caption {
  color: #072B5B;
  padding: 8px 24px;
}

/*---------------------
recruit
---------------------*/
.Recruit__inner {
  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;
  gap: 0 62px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1199px) {
  .Recruit__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
  }
}
.Recruit__inner--reverse {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 1199px) {
  .Recruit__inner--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.Recruit__left {
  margin-top: 100px;
  width: calc(100% - 702px);
}
@media screen and (max-width: 1199px) {
  .Recruit__left {
    margin-top: 0;
    width: 100%;
  }
}
.Recruit__right {
  width: 640px;
}
@media screen and (max-width: 1199px) {
  .Recruit__right {
    margin-top: -24px;
    position: relative;
    width: 100%;
  }
}
.Recruit__content {
  padding: 40px 48px;
}
@media screen and (max-width: 1199px) {
  .Recruit__content {
    padding: 24px;
  }
}
.Recruit__content--num {
  background-image: url(./asset/img/text_/text_1.svg);
  background-repeat: no-repeat;
  background-position: 48px 40px;
  display: block;
}
.Recruit__content--num2 {
  background-image: url(./asset/img/text_/text_2.svg);
  background-repeat: no-repeat;
  background-position: 48px 40px;
  display: block;
}
.Recruit__content--num3 {
  background-image: url(./asset/img/text_/text_3.svg);
  background-repeat: no-repeat;
  background-position: 48px 40px;
  display: block;
}
.Recruit__title {
  color: #072B5B;
  font-size: 1.75rem;
  font-weight: normal;
  margin: 40px 0;
}
@media screen and (max-width: 1199px) {
  .Recruit__figure {
    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: 1199px) {
  .Recruit__img {
    height: 52.8vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.Recruit__text {
  margin-bottom: 24px;
}
.Recruit__text:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 1199px) {
  .Recruit__text:last-of-type {
    margin-bottom: 24px;
  }
}

.Apply {
  max-width: 840px;
}
.Apply__table {
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #072B5B;
  width: 100%;
}
.Apply__th {
  background-color: #EDF0F8;
  border-bottom: 1px solid #072B5B;
  color: #072B5B;
  padding: 12px 24px;
  font-weight: 400;
  width: 200px;
}
@media screen and (max-width: 1199px) {
  .Apply__th {
    display: block;
    border-bottom: none;
    width: 100%;
  }
}
.Apply__td {
  background-color: #fff;
  border-bottom: 1px solid #072B5B;
  padding: 12px 24px;
  width: calc(100% - 200px);
}
@media screen and (max-width: 1199px) {
  .Apply__td {
    display: block;
    width: 100%;
  }
}
.Apply__td:first-of-type {
  border-top: 1px solid #072B5B;
}
@media screen and (max-width: 1199px) {
  .Apply__td:first-of-type {
    border-top: none;
  }
}
.Apply__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: 40px 0;
}
.Apply__item {
  list-style-type: none;
}
.Apply__no-text {
  text-align: center;
}

.Entry {
  max-width: 840px;
  margin: 0 auto;
}
.Entry__text {
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .Entry__text {
    margin-bottom: 40px;
    text-align: left;
  }
}

/*---------------------
contact
---------------------*/
.Other {
  max-width: 960px;
  margin: 0 auto;
}
.Other__content {
  margin-bottom: 40px;
}

.Contact__head {
  padding: 40px 170px 0;
}
@media screen and (max-width: 1199px) {
  .Contact__head {
    padding: 24px 24px 0;
  }
}
.Contact__head--thanks {
  margin-bottom: 40px;
  padding: 40px 158px 0;
}
@media screen and (max-width: 1199px) {
  .Contact__head--thanks {
    padding: 24px 24px 0;
  }
}
.Contact__head--thanks .Progress-bar__list {
  margin-bottom: 40px;
}
@media screen and (max-width: 1199px) {
  .Contact__head--thanks .Progress-bar__list {
    margin-bottom: 24px;
  }
}
.Contact__body {
  padding: 0 170px 40px;
}
@media screen and (max-width: 1199px) {
  .Contact__body {
    padding: 0 24px 40px;
  }
}
.Contact__title {
  color: #920B45;
  font-weight: normal;
  font-size: 1.5rem;
  margin-bottom: 24px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .Contact__title {
    font-size: 1rem;
  }
}
.Contact__text {
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .Contact__text {
    font-size: 0.875rem;
    text-align: left;
  }
}
.Contact__text--left {
  text-align: left;
}

.Progress-bar {
  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;
  padding: 64px 0 0;
}
@media screen and (max-width: 1199px) {
  .Progress-bar {
    padding: 40px 8px 0;
  }
}
.Progress-bar--thanks {
  padding: 100px 0 0;
}
@media screen and (max-width: 1199px) {
  .Progress-bar--thanks {
    padding: 40px 8px 0;
  }
}
.Progress-bar__inner {
  width: 493px;
}
@media screen and (max-width: 1199px) {
  .Progress-bar__inner {
    width: 100%;
  }
}
.Progress-bar__list {
  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;
  margin-bottom: 40px;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .Progress-bar__list {
    margin-bottom: 40px;
  }
}
.Progress-bar__item {
  list-style-type: none;
  position: relative;
  width: 33.3333333333%;
}
.Progress-bar__item::after {
  content: "";
  background-color: #DDD;
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 1px;
  z-index: 2;
}
.Progress-bar__item--left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.Progress-bar__item--center {
  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;
}
.Progress-bar__item--center::before {
  content: "";
  background-color: #DDD;
  position: absolute;
  top: 20px;
  left: 50%;
  width: 100%;
  height: 1px;
  z-index: 2;
}
.Progress-bar__item--center::after {
  left: -50%;
}
.Progress-bar__item--right {
  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;
}
.Progress-bar__item--right::after {
  left: inherit;
  right: 20px;
}
.Progress-bar__item--right .Progress-bar__item-text {
  width: 65px;
}
.Progress-bar__item--current::after, .Progress-bar__item--current::before {
  background-color: #920B45;
}
.Progress-bar__item--none::before {
  background-color: #DDD;
}
.Progress-bar__item-inner {
  color: #DDD;
  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: 10px 0;
  padding-top: 9px;
  position: relative;
}
.Progress-bar__item-inner::before {
  content: "";
  background-color: #DDD;
  position: absolute;
  top: 0;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  z-index: 3;
}
.Progress-bar__item-inner--current {
  color: #920B45;
}
.Progress-bar__item-inner--current::before {
  background-color: #920B45;
}
.Progress-bar__item-text {
  display: inline-block;
  text-align: center;
  width: 40px;
}
.Progress-bar__item-img {
  -webkit-filter: invert(100%) sepia(0%) saturate(2%) hue-rotate(68deg) brightness(105%) contrast(101%);
          filter: invert(100%) sepia(0%) saturate(2%) hue-rotate(68deg) brightness(105%) contrast(101%);
  z-index: 5;
}

.Contact-tel {
  background-color: #F8F3F5;
  padding: 40px 0;
}
@media screen and (max-width: 1199px) {
  .Contact-tel {
    padding: 24px 0;
  }
}
.Contact-tel__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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 24px;
}
@media screen and (max-width: 1199px) {
  .Contact-tel__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px 0;
  }
}
.Contact-tel .Btn__link {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
  pointer-events: none;
}
@media screen and (max-width: 1199px) {
  .Contact-tel .Btn__link {
    pointer-events: auto;
  }
}
.Contact-tel .Btn__link > .Ico-menu__text {
  color: #333;
  font-size: 1.5rem;
}

.mw_wp_form__content {
  background-color: #fff;
  margin-bottom: 50px;
}
.mw_wp_form__inner {
  padding: 64px 139px;
}
@media screen and (max-width: 1199px) {
  .mw_wp_form__inner {
    padding: 24px 14px;
  }
}
.mw_wp_form__input-outer {
  margin-bottom: 24px;
}
.mw_wp_form__input-outer:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 1199px) {
  .mw_wp_form__input-outer {
    margin-bottom: 32px;
  }
}
.mw_wp_form__label-outer {
  width: 100%;
}
.mw_wp_form__label {
  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;
  gap: 0 16px;
  margin-bottom: 8px;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .mw_wp_form__label {
    gap: 0 8px;
  }
}
.mw_wp_form__label-text {
  color: #920B45;
}
@media screen and (max-width: 1199px) {
  .mw_wp_form__label-text {
    font-size: 0.875rem;
  }
}
.mw_wp_form__label-text-nesessary {
  background-color: #F00;
  color: #fff;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.2;
  padding: 6px 12px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .mw_wp_form__label-text-nesessary {
    font-size: 0.75rem;
  }
}
.mw_wp_form__input-inner-outer {
  width: 100%;
}
.mw_wp_form__input-inner-outer .error {
  color: #f00;
  font-size: 0.75rem;
}
@media screen and (max-width: 1199px) {
  .mw_wp_form__input-inner-outer .error {
    font-size: 0.6875rem;
  }
}
.mw_wp_form__check-inner-outer {
  background-color: #FBF0F5;
  padding: 24px 43px;
}
@media screen and (max-width: 1199px) {
  .mw_wp_form__check-inner-outer {
    padding: 24px 16px;
  }
}
.mw_wp_form__input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #F7F7F7;
  border: none;
  padding: 10px 24px;
  resize: vertical;
  width: 100%;
}
.mw_wp_form__input:focus {
  -webkit-box-shadow: 0 0 0 1px #920B45 inset;
          box-shadow: 0 0 0 1px #920B45 inset;
  outline: 0;
}
@media screen and (max-width: 1199px) {
  .mw_wp_form__input {
    width: 100%;
  }
}
.mw_wp_form__label-check {
  display: block;
  line-height: 0;
}
.mw_wp_form__check {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  margin: -1px;
}
.mw_wp_form__check:checked ~ .mwform-checkbox-field-text::after {
  background-image: url(./asset/img/ico_/ico_check.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  content: "";
  display: inline-block;
  width: 20px;
  height: 14px;
  position: absolute;
  left: 6px;
}
@media screen and (max-width: 1199px) {
  .mw_wp_form__check:checked ~ .mwform-checkbox-field-text::after {
    background-size: 16px;
    width: 16px;
    height: 8px;
  }
}
@media screen and (max-width: 1199px) {
  .mw_wp_form__privacy-text {
    font-size: 0.875rem;
  }
}
.mw_wp_form__privacy-link {
  color: #920B45;
  text-decoration: none;
}
.mw_wp_form__controles {
  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;
  gap: 0 40px;
  margin: 40px 0 80px;
}
@media screen and (max-width: 1199px) {
  .mw_wp_form__controles {
    margin-bottom: 40px;
  }
}
.mw_wp_form__btn-outer {
  width: calc((100% - 40px) / 2);
}
.mw_wp_form__btn-outer--back {
  display: none;
}
.mw_wp_form__btn-outer--submit {
  width: 320px;
}
@media screen and (max-width: 1199px) {
  .mw_wp_form__btn-outer--submit {
    width: 96.37%;
  }
}
.mw_wp_form__submit {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background-color: #920B45;
  border: 1px solid transparent;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.3;
  padding: 18px 0;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  width: 100%;
}
@media (hover: hover) and (pointer: fine) {
  .mw_wp_form__submit:hover {
    background-color: rgba(146, 11, 69, 0.8);
  }
}
@media (hover: none) {
  .mw_wp_form__submit:active {
    background-color: rgba(146, 11, 69, 0.8);
  }
}
.mw_wp_form__submit--disabled {
  background-color: #F7F7F7;
  border: 1px solid #E0E0E0;
  color: #E0E0E0;
  pointer-events: none;
}
.mw_wp_form__select {
  position: relative;
}
.mw_wp_form__select::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 19px;
  bottom: 0;
  margin-top: -17px;
  width: 17px;
  height: 15px;
  border: 9px solid transparent;
  border-top: 15px solid #39280C;
  pointer-events: none;
}
.mw_wp_form__select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  -webkit-box-shadow: 0 0 0 1px #39280C inset;
          box-shadow: 0 0 0 1px #39280C inset;
  padding: 13px 30px;
  width: 100%;
}
.mw_wp_form__select select::-ms-expand {
  display: none;
}
.mw_wp_form__select select:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 1px #333 inset;
          box-shadow: 0 0 0 1px #333 inset;
}

.mwform-checkbox-field-text {
  cursor: pointer;
  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;
  margin-bottom: 30px;
  position: relative;
}
.mwform-checkbox-field-text::before {
  content: "";
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 1px #920B45 inset;
          box-shadow: 0 0 0 1px #920B45 inset;
  display: inline-block;
  height: 32px;
  margin-right: 16px;
  width: 32px;
}
@media screen and (max-width: 1199px) {
  .mwform-checkbox-field-text::before {
    height: 20px;
    width: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .mwform-checkbox-field-text {
    font-size: 0.875rem;
    margin-bottom: 24px;
  }
}

.supplement {
  color: #C0C0C0;
  font-size: 0.75rem;
}
@media screen and (max-width: 1199px) {
  .supplement {
    font-size: 0.6875rem;
  }
}
.supplement--none {
  display: none;
}

@media screen and (max-width: 1199px) {
  .mw_wp_form_confirm .mw_wp_form__input-outer:last-of-type {
    gap: 8px 0;
  }
}
@media screen and (max-width: 1199px) {
  .mw_wp_form_confirm .mw_wp_form__label-outer {
    line-height: 1;
  }
}
.mw_wp_form_confirm .mw_wp_form__label-text-nesessary {
  display: none;
}
.mw_wp_form_confirm .mw_wp_form__error-outer {
  display: none;
}
.mw_wp_form_confirm .mw_wp_form__label-outer-check {
  display: none;
}
.mw_wp_form_confirm .mw_wp_form__privacy-text {
  display: none;
}
.mw_wp_form_confirm .mw_wp_form__check-inner-outer {
  display: none;
}
.mw_wp_form_confirm .mw_wp_form__check-text {
  cursor: unset;
}
.mw_wp_form_confirm .mw_wp_form__check-text::before, .mw_wp_form_confirm .mw_wp_form__check:checked ~ .mw_wp_form__check-text::after {
  display: none;
}
.mw_wp_form_confirm .mw_wp_form__controles {
  margin-bottom: 0;
}
@media screen and (max-width: 1199px) {
  .mw_wp_form_confirm .mw_wp_form__controles {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px 0;
  }
}
.mw_wp_form_confirm .mw_wp_form__btn-outer--submit::before {
  background-image: url(./asset/image/ico/ico_arrow_right_white.svg);
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .mw_wp_form_confirm .mw_wp_form__btn-outer--submit:hover::before {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .mw_wp_form_confirm .mw_wp_form__btn-outer--submit:active::before {
    opacity: 0.6;
  }
}
.mw_wp_form_confirm .mw_wp_form__btn-outer .mw_wp_form__submit {
  background-color: #920B45;
  border: none;
  color: #fff;
  opacity: 1;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .mw_wp_form_confirm .mw_wp_form__btn-outer .mw_wp_form__submit:hover {
    color: rgba(255, 255, 255, 0.6);
  }
}
@media (hover: none) {
  .mw_wp_form_confirm .mw_wp_form__btn-outer .mw_wp_form__submit:active {
    color: rgba(255, 255, 255, 0.6);
  }
}
.mw_wp_form_confirm .mw_wp_form__btn-outer--back {
  display: block;
  position: relative;
  width: 240px;
}
@media screen and (max-width: 1199px) {
  .mw_wp_form_confirm .mw_wp_form__btn-outer--back {
    width: 87.71%;
  }
}
.mw_wp_form_confirm .mw_wp_form__btn-outer .mw_wp_form__back {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: 1px solid #920B45;
  color: #920B45;
  font-size: 1.125rem;
  padding: 18px 0;
  width: 100%;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .mw_wp_form_confirm .mw_wp_form__btn-outer .mw_wp_form__back:hover {
    color: rgba(146, 11, 69, 0.6);
  }
}
@media (hover: none) {
  .mw_wp_form_confirm .mw_wp_form__btn-outer .mw_wp_form__back:active {
    color: rgba(146, 11, 69, 0.6);
  }
}
.mw_wp_form_confirm .mw_wp_form__submit-wrap--disabled {
  opacity: 1;
}

.Contact-thanks {
  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: 50px 0;
  margin-bottom: 100px;
}
@media screen and (max-width: 1199px) {
  .Contact-thanks {
    gap: 40px 0;
    margin-bottom: 80px;
  }
}

/*---------------------
privacy
---------------------*/
.Privacy__catch {
  color: #072B5B;
  margin-bottom: 50px;
}
@media screen and (max-width: 1199px) {
  .Privacy__catch {
    margin-bottom: 40px;
  }
}
.Privacy__content {
  margin-bottom: 2rem;
}
@media screen and (max-width: 1199px) {
  .Privacy__content {
    margin-bottom: 1rem;
  }
}
.Privacy__title {
  color: #072B5B;
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 24px;
}
@media screen and (max-width: 1199px) {
  .Privacy__title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
.Privacy__text {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.Privacy__item {
  list-style-type: none;
  padding-left: 1rem;
  position: relative;
}
.Privacy__item:before {
  background-color: #637ABE;
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 50%;
  left: 3px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3px;
  height: 3px;
}
.Privacy__link {
  color: #637ABE;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  padding-right: 1rem;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .Privacy__link:hover {
    opacity: 0.6;
  }
}
@media (hover: none) {
  .Privacy__link:active {
    opacity: 0.6;
  }
}
.Privacy__link:after {
  background-image: url(./asset/img/ico_/ico_external-link.svg);
  background-position: left top;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
}

/* ==========================
  swiperslider
========================== */
.swiperCont {
  /* width: 80%; */
  margin: 0 auto;
  position: relative;
}

.swiper {
  width: 100%;
}

.swiper__img {
  height: 100dvh;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev,
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  background-color: #ccc;
  border-radius: 50%;
  padding: 30px;
}

.swiper-button-next:focus,
.swiper-rtl .swiper-button-prev:focus,
.swiper-button-prev:focus,
.swiper-rtl .swiper-button-next:focus {
  outline: none;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  color: #fff;
  font-size: 24px;
}

.mySwiper {
  margin-top: 10px;
}

.mySwiper .swiper-slide {
  opacity: 0.4;
}

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

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 60px;
}

/* 直線長方形のプログレスバー */
.swiper-pagination-bullet {
  position: relative;
  width: 80px;
  height: 5px;
  border-radius: 0;
  background-color: rgb(224, 224, 224);
  opacity: 1;
}

.swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #072B5B;
}

.swiper-pagination-bullet-active::before {
  -webkit-animation: paginationActive 5s linear forwards;
          animation: paginationActive 5s linear forwards;
}

@-webkit-keyframes paginationActive {
  100% {
    width: 100%;
    opacity: 1;
  }
}

@keyframes paginationActive {
  100% {
    width: 100%;
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */