@charset "UTF-8";
.u-desktop {
  display: block;
}

@media screen and (max-width: 1023px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}

@media screen and (max-width: 1023px) {
  .u-mobile {
    display: block;
  }
}

/* FontFamily */
body {
  font-family: "Noto Sans JP", sans-serif;
}

/* font-weight */
/* リキッドレイアウト対応 */
html {
  font-size: 16px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 1010px) {
  html {
    font-size: 1.58416vw;
  }
}

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

@media screen and (max-width: 375px) {
  html {
    font-size: 4.26667vw;
  }
}

/* pcの電話番号発信対応 */
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.btn {
  display: inline-block;
  width: 100%;
  max-width: 250px;
  max-width: 15.625rem;
  background-color: #E09446;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding: 17px;
  padding: 1.0625rem;
  border-radius: 0.3125rem;
}

.copyright {
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
}

.drawer-btn {
  position: fixed;
  z-index: 9999;
  top: 20px;
  right: 10px;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

.drawer-btn__line {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #0093dd;
  width: 21px;
  width: 1.3125rem;
}

.drawer-btn__menu {
  position: absolute;
  font-size: 8px;
  bottom: 4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.drawer-btn__line:nth-of-type(1) {
  top: 17px;
}

.drawer-btn__line:nth-of-type(2) {
  top: 23px;
}

.drawer-btn__line:nth-of-type(3) {
  top: 29px;
}

.drawer-btn.active span:nth-of-type(1) {
  top: 19px;
  left: 12px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 50%;
}

.drawer-btn.active span:nth-of-type(2) {
  display: none;
}

.drawer-btn.active span:nth-of-type(3) {
  top: 31px;
  left: 12px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 50%;
}

.drawer-btn.active .drawer-btn__menu {
  display: none;
}

.entry-link-contents__pc {
  display: block;
}

@media screen and (max-width: 767px) {
  .entry-link-contents__pc {
    display: none;
  }
}

.entry-link {
  position: fixed;
  top: 75%;
  right: 0;
  background-color: #E09446;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  padding: 12px 26px;
  padding: 0.75rem 1.625rem;
  border-radius: 1.25rem 0 0 1.25rem;
  z-index: 999;
}

.entry-link img {
  padding-top: 10px;
  padding-top: 0.625rem;
  margin: 0 auto;
  max-width: 52px;
  max-width: 3.25rem;
}

.entry-link-contents__sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .entry-link-contents__sp {
    display: block;
  }
}

.entry-link-wrapper__sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .entry-link-wrapper__sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: fixed;
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
    z-index: 999;
    background-color: #E09446;
    width: 100%;
    padding: 0.75rem 1.625rem;
  }
}

.entry-link__sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .entry-link__sp {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    color: #fff;
    z-index: 999;
  }
}

.entry-img__sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .entry-img__sp {
    display: inline-block;
    width: 1.5625rem;
    height: 1.875rem;
    margin-right: 0.9375rem;
  }
}

.footer {
  padding: 35px;
  padding: 2.1875rem;
  background-color: #004762;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 1.25rem;
  }
}

@use "global" as *;
.form__list:not(:last-of-type) {
  margin-bottom: 35px;
  margin-bottom: 2.1875rem;
}

.form__label {
  display: inline-block;
  margin-right: 5px;
  margin-right: 0.3125rem;
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 18px;
  margin-bottom: 1.125rem;
  font-family: Noto Serif JP;
}

@media screen and (max-width: 767px) {
  .form__label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}

.form__text {
  display: block;
  border: 2px solid #d0d0d0;
  width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 12px 20px;
  padding: 0.75rem 1.25rem;
  border-radius: 0.3125rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.form__textarea {
  border: 2px solid #d0d0d0;
  width: 100%;
  border-radius: 0.3125rem;
  height: 180px;
  height: 11.25rem;
  padding: 12px 20px;
  padding: 0.75rem 1.25rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.form__file-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 0;
  padding: 0.875rem 0;
  border-top: 1px solid #C1C2C3;
}

.form__file-wrapper:last-of-type {
  border-bottom: 1px solid #C1C2C3;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.form__file-name {
  font-size: 14px;
  font-size: 0.875rem;
  margin-right: 23px;
  margin-right: 1.4375rem;
  width: 80px;
  width: 5rem;
  font-family: Noto Serif JP;
}

.form__file {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 3px;
  padding: 0.1875rem;
  border-radius: 2px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.form__detail {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.78571429;
  margin-bottom: 100px;
  margin-bottom: 6.25rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

@media screen and (max-width: 767px) {
  .form__detail {
    margin-bottom: 3rem;
  }
}

.form__privacy {
  margin-bottom: 95px;
  margin-bottom: 5.9375rem;
}

@media screen and (max-width: 767px) {
  .form__privacy {
    margin-bottom: 3rem;
  }
}

.form__privacy-area {
  height: 160px;
  height: 10rem;
  padding: 15px 20px;
  padding: 0.9375rem 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.14285714;
  border: 1px solid #E5E4DF;
  overflow: scroll;
  margin-bottom: 21px;
  margin-bottom: 1.3125rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.form__check {
  display: none;
}

.form__check-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.form__check + span {
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 36px;
  padding: 0 0 0 2.25rem;
  position: relative;
}

.form__check + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .16);
  border-radius: 2px;
  content: "";
  display: block;
  height: 30px;
  height: 1.875rem;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  width: 1.875rem;
}

.form__check + span::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 3px solid rgba(0, 0, 0, .32);
  border-left: 3px solid rgba(0, 0, 0, .32);
  content: "";
  display: block;
  height: 0.6em;
  left: 8px;
  left: 0.5rem;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 1em;
}

.form__check:checked + span::after {
  opacity: 1;
}

::-webkit-input-placeholder {
  color: #d0d0d0;
}

::-moz-placeholder {
  color: #d0d0d0;
}

::-ms-input-placeholder {
  color: #d0d0d0;
}

::placeholder {
  color: #d0d0d0;
}

.form__submit-wrapper {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.form__submit {
  display: inline-block;
  width: 250px;
  width: 15.625rem;
  background-color: #E09446;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  padding: 17px;
  padding: 1.0625rem;
  border-radius: 0.3125rem;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .form__submit {
    font-size: 1.25rem;
  }
}

.form__message {
  text-align: center;
  display: none;
  color: #004762;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.header-menu a {
  display: inline-block;
  color: #0083B5;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}



.header-menu a:not(:last-of-type) {
  margin-right: 25px;
  margin-right: 1.5625rem;
}

@media screen and (max-width: 1200px) {
  .header-menu a:not(:last-of-type) {
    margin-right: 1.25rem;
  }
}

@media screen and (max-width: 1064px) {
  .header-menu a:not(:last-of-type) {
    margin-right: 0.85rem;
  }

}

.header {
  width: 100%;
  position: fixed;
  z-index: 998;
  background: #fff;
  opacity: 0.8;
}

.header__wrapper {
  padding: 23px 49px;
  padding: 1.4375rem 3.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1200px) {
  .header__wrapper {
    padding: 1.4375rem 0.9375rem;
  }
}

.header__logoarea a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo {
  width: 110px;
  width: 6.875rem;
  margin-right: 19px;
  margin-right: 1.1875rem;
}

.header__name {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Poppins", sans-serif;
  color: #0083B5;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .header__name {
    display: none;
  }
}

.interview-item {
  position: relative;
}

.interview-item__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, .85);
  text-align: center;
  padding: 20px;
  padding: 1.25rem;
}

.interview-item__post {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.interview-item__name {
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.interview-item__btn {
  width: 100%;
  max-width: 250px;
  max-width: 15.625rem;
  display: inline-block;
  color: #fff;
  background-color: #0093dd;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding: 8px;
  padding: 0.5rem;
  border-radius: 0.3125rem;
  cursor: pointer;
}

.l-inner {
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1060px;
}

@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* モーダルウィンドウ */
.modal-window,
.modal-window--2 ,
.modal-window--3 {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  border-radius: 5px;
  z-index: 99999;
}

@media screen and (max-width: 767px) {
  .modal-window,
  .modal-window--2 ,
  .modal-window--3 {
    background-color: transparent;
  }
}

.modal-window__overray {
  position: relative;
  height: 100vh;
  background-color: rgba(0, 0, 0, .6);
  z-index: 1;
}

_::-webkit-full-page-media, _:future, :root
.modal-window__overray {
  position: relative;
  height: 104vh;
  background-color: rgba(0, 0, 0, .6);
  z-index: 1;
}

.modal-window__body {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 40px 33px;
  padding: 2.5rem 2.0625rem;
  max-width: 820px;
  max-width: 51.25rem;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  .modal-window__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.5625rem 0.9375rem;
  }
}

.modal-left {
  margin-right: 31px;
  margin-right: 1.9375rem;
}

@media screen and (max-width: 767px) {
  .modal-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.modal-img {
  width: 230px;
  width: 14.375rem;
  height: 255px;
  height: 15.9375rem;
  margin-bottom: 19px;
  margin-bottom: 1.1875rem;
}

@media screen and (max-width: 767px) {
  .modal-img {
    width: 8.4375rem;
    height: 9.375rem;
    margin-right: 0.4375rem;
  }
}

.modal-img img {
  width: 230px;
  width: 14.375rem;
  height: 255px;
  height: 15.9375rem;
}

@media screen and (max-width: 767px) {
  .modal-img img {
    width: 8.4375rem;
    height: 9.375rem;
  }
}

.modal-company {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 23px;
  margin-bottom: 1.4375rem;
}

@media screen and (max-width: 767px) {
  .modal-company {
    margin-bottom: 0.3125rem;
    font-size: 0.75rem;
  }
}

.modal-name {
  font-size: 24px;
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .modal-name {
    margin-bottom: 1.875rem;
  }
}

.modal-head {
  font-size: 24px;
  font-size: 1.5rem;
  padding-bottom: 26px;
  padding-bottom: 1.625rem;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
  border-bottom: 1px solid #165b6f;
}

.modal-head:nth-last-of-type(2) {
  margin-top: 30px;
  margin-top: 1.875rem;
}

@media screen and (max-width: 767px) {
  .modal-head {
    padding-bottom: 0.3125rem;
    margin-bottom: 0.3125rem;
  }
}

.modal-text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.9;
}

/* 閉じるボタン */
.button-close {
  position: absolute;
  top: 5%;
  right: -1%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 9999;
}

.button-close img {
  width: 21px;
  width: 1.3125rem;
  height: 21px;
  height: 1.3125rem;
}

.recruit-flow__caption {
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 34px;
  margin-bottom: 2.125rem;
  text-align: center;
}

.recruit-flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .recruit-flow__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.recruit-flow__list:not(:last-of-type) {
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}

.recruit-flow__head {
  text-align: center;
  background-color: #0093dd;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding: 2px 30px;
  padding: 0.125rem 1.875rem;
  min-width: 160px;
  min-width: 10rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .recruit-flow__head {
    padding: 0.9375rem 1.875rem 0.9375rem 5rem;
    text-align: left;
  }
}

.recruit-flow__number {
  display: block;
  font-size: 30px;
  font-size: 1.875rem;
  font-family: "Poppins", sans-serif;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .recruit-flow__number {
    display: inline-block;
  }
}

.recruit-flow__content {
  width: 100%;
  border: 2px solid #c9edff;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding: 20px 30px;
  padding: 1.25rem 1.875rem;
}

@media screen and (max-width: 767px) {
  .recruit-flow__content {
    border-top: none;
    font-size: 1rem;
  }
}

.dot-pc01 {
  display: inline-block;
  position: absolute;
  bottom: -4.5px;
  bottom: -0.28125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2px;
  width: 0.125rem;
  height: 2px;
  height: 0.125rem;
  background: #0093dd;
}

@media screen and (max-width: 767px) {
  .dot-pc01 {
    display: none;
  }
}

.dot-pc02 {
  display: inline-block;
  position: absolute;
  bottom: -12.5px;
  bottom: -0.78125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2px;
  width: 0.125rem;
  height: 2px;
  height: 0.125rem;
  background: #0093dd;
}

@media screen and (max-width: 767px) {
  .dot-pc02 {
    display: none;
  }
}

.dot-pc03 {
  display: inline-block;
  position: absolute;
  bottom: -20.5px;
  bottom: -1.28125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2px;
  width: 0.125rem;
  height: 2px;
  height: 0.125rem;
  background: #0093dd;
}

@media screen and (max-width: 767px) {
  .dot-pc03 {
    display: none;
  }
}

.recruit-table {
  padding: 0 100px 50px;
  padding: 0 6.25rem 3.125rem;
  color: #2a3240;
}

@media screen and (max-width: 767px) {
  .recruit-table {
    padding: 0 1.875rem 3.125rem;
  }
}

@media screen and (max-width: 767px) {
  .recruit-table__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.recruit-table__caption {
  padding-top: 57px;
  padding-top: 3.5625rem;
  font-size: 24px;
  font-size: 1.5rem;
  padding-bottom: 37px;
  padding-bottom: 2.3125rem;
}

@media screen and (max-width: 767px) {
  .recruit-table__caption {
    padding: 2.5rem 0 1.875rem 0;
  }
}

.recruit-table__name {
  font-size: 18px;
  font-size: 1.125rem;
  padding: 13px 31px 12px 0;
  padding: 0.8125rem 1.9375rem 0.75rem 0;
  border-bottom: 1px solid #c1c2c3;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  vertical-align: top;
  min-width: 116px;
  min-width: 7.25rem;
  white-space: nowrap;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .recruit-table__name {
    text-align: center;
    padding: 0.75rem 0;
    border: none;
    margin-top: 1.25rem;
  }
}

.recruit-table__content {
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  padding-top: 11px;
  padding-top: 0.6875rem;
  border-bottom: 1px solid #c1c2c3;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  vertical-align: inherit;
}

@media screen and (max-width: 767px) {
  .recruit-table__content {
    text-align: center;
    font-size: 1rem;
    padding-bottom: 2.5rem;
  }
}

@use "global" as *;
.required {
  color: #FD3A3A;
  border: 1px solid #FD3A3A;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
  padding-left: 3px;
  padding-left: 0.1875rem;
  padding-right: 3px;
  padding-right: 0.1875rem;
  display: inline-block;
  font-family: Noto Serif JP;
}

.section-bg {
  font-size: 200px;
  font-size: 12.5rem;
  color: #0083B5;
  opacity: 0.1;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .section-bg {
    font-size: 4.375rem;
  }
}

.section-title {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  color: #0083B5;
}

@media screen and (max-width: 767px) {
  .section-title {
    font-size: 1.25rem;
  }
}

.sp-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 188px;
  width: 11.75rem;
  height: 100vh;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 9998;
  border-radius: 1.875rem 0 0 1.875rem;
}

.sp-menu__img {
  width: 110px;
  width: 6.875rem;
  position: absolute;
  z-index: 999;
  top: 20%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.sp-menu.panelactive {
  right: 0;
}

.sp-menu.panelactive .sp-menu-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.body.panelactive {
  overflow: hidden;
}

/*ナビゲーション*/
.sp-menu__lists {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.sp-menu__list:not(:last-of-type) {
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}

.sp-menu__list a {
  display: block;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  font-size: 0.875rem;
  color: #0083B5;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}

.welfare-card {
  position: relative;
}

.welfare-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, .85);
  padding: 45px 30px 56px;
  padding: 2.8125rem 1.875rem 3.5rem;
  color: #4F5661;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .welfare-card__content {
    padding: 1.5625rem 0.9375rem 1.25rem;
  }
}

.welfare-card__name {
  font-size: 20px;
  font-size: 1.25rem;
  padding-bottom: 14px;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid #4F5661;
  margin-bottom: 26px;
  margin-bottom: 1.625rem;
  min-height: 65px;
  min-height: 4.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .welfare-card__name {
    min-height: 4.6875rem;
  }
}

@media screen and (max-width: 375px) {
  .welfare-card__name {
    min-height: 3.75rem;
    margin-bottom: 0.9375rem;
  }
}

.welfare__card:nth-of-type(9) .welfare-card__name {
  line-height: 1.3;
}

.welfare-card__text {
  font-size: 14px;
  font-size: 0.875rem;
  min-height: 55px;
}

@media screen and (max-width: 767px) {
  .welfare-card__text {
    min-height: 5rem;
  }
}

@media screen and (max-width: 375px) {
  .welfare-card__text {
    min-height: 0;
    min-height: initial;
  }
}

.culture {
  position: relative;
  background-color: #F4FBFF;
  padding-top: 193px;
  padding-top: 12.0625rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}

@media screen and (max-width: 767px) {
  .culture {
    overflow: hidden;
    padding-top: 5rem;
    padding-bottom: 3.125rem;
  }
}

.culture__bg {
  position: absolute;
  top: 50px;
  top: 3.125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.culture__title {
  margin-bottom: 57px;
  margin-bottom: 3.5625rem;
}

@media screen and (max-width: 767px) {
  .culture__title {
    text-align: center;
    margin-bottom: 1.5625rem;
    font-size: 1.5625rem;
    padding: 0 1.25rem;
  }
}

.culture__item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.culture__item:not(:last-of-type) {
  margin-bottom: 70px;
  margin-bottom: 4.375rem;
}

.culture__content-wrapper {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 60%;
  padding: 32px 8% 32px 32px;
  padding: 2rem 8% 2rem 2rem;
}

@media screen and (max-width: 767px) {
  .culture__content-wrapper {
    position: static;
    position: initial;
    width: 100%;
    padding: 1.25rem;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.culture__content-wrapper::before {
  position: absolute;
  top: 97px;
  top: 6.0625rem;
  left: 0;
  content: "";
  width: 90%;
  height: 1px;
  background-color: #004762;
}

@media screen and (max-width: 767px) {
  .culture__content-wrapper::before {
    display: none;
  }
}

.culture__item:nth-of-type(2n + 1) .culture__content-wrapper::before {
  left: auto;
  right: 0;
}

.culture__item:nth-of-type(2n + 1) .culture__content-wrapper {
  right: 0;
  padding: 32px 32px 32px 8%;
  padding: 2rem 2rem 2rem 8%;
}

.culture__item:nth-of-type(2n) .culture__content-wrapper {
  background-image: url(../images/top/culture_bg1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.culture__item:nth-of-type(2n + 1) .culture__content-wrapper {
  background-image: url(../images/top/culture_bg2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.culture__item:nth-of-type(2n) .culture__content {
  max-width: 500px;
  max-width: 31.25rem;
  margin-left: auto;
}

.culture__img {
  width: 60%;
}

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

.culture__item:nth-of-type(2n) .culture__img {
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .culture__item:nth-of-type(2n) .culture__img {
    margin-left: 0;
  }
}

.culture__head {
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 71px;
  margin-bottom: 4.4375rem;
}

@media screen and (max-width: 767px) {
  .culture__head {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
  }
}

.culture__text {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 2.14285714;
}

@use "global" as *;
.entry {
  position: relative;
  padding-top: 275px;
  padding-top: 17.1875rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}

@media screen and (max-width: 767px) {
  .entry {
    padding-top: 10.625rem;
  }
}

.entry__inner {
  max-width: 780px;
  max-width: 48.75rem;
}

.entry__bg {
  position: absolute;
  top: 125px;
  top: 7.8125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.entry__title {
  margin-bottom: 55px;
  margin-bottom: 3.4375rem;
}

.entry__message {
  text-align: center;
  margin-bottom: 34px;
  margin-bottom: 2.125rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.interview {
  position: relative;
  background-image: url(../images/top/interview_bg.png);
  padding-top: 193px;
  padding-top: 12.0625rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .interview {
    padding-top: 3.75rem;
    padding-bottom: 1.5625rem;
  }
}

.interview__bg {
  position: absolute;
  top: 40px;
  top: 2.5rem;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  color: #fff;
  opacity: 0.15;
}

@media screen and (max-width: 767px) {
  .interview__bg {
    top: 1.25rem;
  }
}

.interview__inner {
  max-width: 980px;
  max-width: 61.25rem;
}

.interview__title {
  color: #fff;
  margin-bottom: 87px;
  margin-bottom: 5.4375rem;
}

@media screen and (max-width: 767px) {
  .interview__title {
    margin-bottom: 2.5rem;
  }
}

.interview__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-right: -30px;
}

@media screen and (max-width: 767px) {
  .interview__items {
    display: block;
    margin: 0 auto;
  }
}

.interview__item {
  width: calc(50% - 30px);
}

@media screen and (max-width: 767px) {
  .interview__item {
    width: 100%;
    margin-bottom: 1.875rem;
  }
}

.interview__item:first-child {
  margin-right: 30px;
}

.interview__item:last-child {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .interview__item:not(:last-of-type) {
    margin-right: 0;
  }
}

.l-recruit {
  margin-bottom: 100px;
  margin-bottom: 6.25rem;
}

.l-welfare {
  margin-bottom: 100px;
  margin-bottom: 6.25rem;
}

@media screen and (max-width: 767px) {
  .l-welfare {
    margin-bottom: 3.125rem;
  }
}

.l-works {
  margin-bottom: 70px;
  margin-bottom: 4.375rem;
}

.main-visual {
  position: relative;
}

.main-visual__mark {
  display: none;
}

@media screen and (max-width: 767px) {
  .main-visual__mark {
    display: block;
    position: absolute;
    top: 3.75rem;
    right: 0;
    max-width: 18.75rem;
  }
}

.main-visual__img {
  height: 100%;
}

.main-visual__wrapper {
  position: absolute;
  width: 60%;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  color: #fff;
}

.main-visual__title {
  font-size: 30px;
  font-size: 1.875rem;
  padding-left: 10%;
  padding-bottom: 24px;
  border-bottom: 1px solid #fff;
}

@media screen and (max-width: 767px) {
  .main-visual__title {
    white-space: nowrap;
  }
}

.main-visual__message {
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 1.68;
  padding-left: 10%;
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  .main-visual__message {
    font-size: 1.25rem;
    white-space: nowrap;
  }
}

.main-visual__scroll {
  position: absolute;
  left: 30%;
  bottom: 0;
  width: 8px;
  width: 0.5rem;
  color: #fff;
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: lighter;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}



/*スクロールダウン全体の場所*/
.scrolldown2{
  /*描画位置※位置は適宜調整してください*/
position:absolute;
bottom:0px;
left:50%;
}

/*Scrollテキストの描写*/
.scrolldown2 span{
  /*描画位置*/
position: absolute;
left:10px;
bottom:215px;
  /*テキストの形状*/
color: #fff;
font-size: 0.7rem;
letter-spacing: 0.05em;
font-size: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: lighter;
/*縦書き設定*/
-ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom:0;
  left:-4px;
  /*丸の形状*/
width:10px;
height:10px;
border-radius: 50%;
background:#fff;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
animation:
  circlemove 1.6s ease-in-out infinite,
  cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
    0%{bottom:255px;}
   100%{bottom:-5px;}
}

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
    0%{opacity:0}
   50%{opacity:1;}
  80%{opacity:0.9;}
100%{opacity:0;}
}

/* 線の描写 */
.scrolldown2:after{
content:"";
  /*描画位置*/
position: absolute;
bottom:0;
left:0;
  /*線の形状*/
width:2px;
height: 255px;
background:#fff;
}

@media screen and (max-width: 1150px) {


/*スクロールダウン全体の場所*/
.scrolldown2{
  /*描画位置※位置は適宜調整してください*/
position:absolute;
bottom:0px;
left:50%;
}

/*Scrollテキストの描写*/
.scrolldown2 span{
  /*描画位置*/
position: absolute;
left:10px;
bottom:155px;
  /*テキストの形状*/
color: #fff;
font-size: 0.7rem;
letter-spacing: 0.05em;
font-size: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: lighter;
/*縦書き設定*/
-ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom:0;
  left:-4px;
  /*丸の形状*/
width:10px;
height:10px;
border-radius: 50%;
background:#fff;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
animation:
  circlemove 1.6s ease-in-out infinite,
  cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
  0%{bottom:195px;}
 100%{bottom:-5px;}
}

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
  0%{opacity:0}
 50%{opacity:1;}
80%{opacity:0.9;}
100%{opacity:0;}
}

/* 線の描写 */
.scrolldown2:after{
  content:"";
    /*描画位置*/
  position: absolute;
  bottom:0;
  left:0;
    /*線の形状*/
  width:2px;
  height: 195px;
  background:#fff;
  }
  


}

@media screen and (max-width: 1000px) {


/*スクロールダウン全体の場所*/
.scrolldown2{
  /*描画位置※位置は適宜調整してください*/
position:absolute;
bottom:0px;
left:50%;
}

/*Scrollテキストの描写*/
.scrolldown2 span{
  /*描画位置*/
position: absolute;
left:10px;
bottom:105px;
  /*テキストの形状*/
color: #fff;
font-size: 0.7rem;
letter-spacing: 0.05em;
font-size: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: lighter;
/*縦書き設定*/
-ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom:0;
  left:-4px;
  /*丸の形状*/
width:10px;
height:10px;
border-radius: 50%;
background:#fff;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
animation:
  circlemove 1.6s ease-in-out infinite,
  cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
  0%{bottom:145px;}
 100%{bottom:-5px;}
}

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
  0%{opacity:0}
 50%{opacity:1;}
80%{opacity:0.9;}
100%{opacity:0;}
}

/* 線の描写 */
.scrolldown2:after{
  content:"";
    /*描画位置*/
  position: absolute;
  bottom:0;
  left:0;
    /*線の形状*/
  width:2px;
  height: 145px;
  background:#fff;
  }
  


}


@media screen and (max-width: 767px) {
  .main-visual__scroll {
    display: none;
  }
}

.message {
  background-image: url(../images/top/message_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 70px;
  padding-bottom: 4.375rem;
}

.message__bg {
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 767px) {
  .message__bg {
    top: 2.5rem;
  }
}

.message__inner {
  max-width: 1050px;
  max-width: 65.625rem;
  position: relative;
}

.message__inner::before {
  position: absolute;
  top: 80px;
  top: 5rem;
  right: 0;
  content: "";
  width: 50%;
  height: 1px;
  background-color: #165B6F;
}

.message__body__pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .message__body__pc {
    display: none;
  }
}

.message__body__sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .message__body__sp {
    display: block;
  }
}

.message__img {
  width: 45%;
  margin-right: 73px;
  margin-right: 4.5625rem;
}

@media screen and (max-width: 767px) {
  .message__img {
    width: 100%;
    margin-right: 0;
  }
}

.message__post {
  font-size: 14px;
  font-size: 0.875rem;
  display: block;
}

.message__name {
  font-size: 30px;
  font-size: 1.875rem;
  margin-bottom: 82px;
  margin-bottom: 5.125rem;
}

@media screen and (max-width: 767px) {
  .message__name {
    margin-bottom: 2.5rem;
  }
}

.message__sub-name {
  font-size: 12px;
  font-size: 0.75rem;
  vertical-align: middle;
}

.message__text {
  background-color: #fff;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.875;
  letter-spacing: .05em;
}

.qa {
  position: relative;
  padding-top: 195px;
  padding-top: 12.1875rem;
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
  background-image: url(../images/top/qa_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .qa {
    padding-top: 4.375rem;
    padding-bottom: 3.125rem;
  }
}

.qa__inner {
  max-width: 950px;
  max-width: 59.375rem;
}

.qa__bg {
  position: absolute;
  top: 50px;
  top: 3.125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .qa__bg {
    top: 1.875rem;
  }
}

.qa__title {
  margin-bottom: 55px;
  margin-bottom: 3.4375rem;
}

@media screen and (max-width: 767px) {
  .qa__title {
    text-align: left;
    margin-bottom: 1.5625rem;
    font-size: 1.5625rem;
  }
}

.qa__head {
  display: block;
  position: relative;
  cursor: pointer;
  padding: 24px 50px;
  padding: 1.5rem 3.125rem;
  color: #0083B5;
  background-color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
}

.qa__head:not(:first-of-type) {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.qa__head:after {
  content: "";
  position: absolute;
  right: 25px;
  top: 38%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.qa__head.open:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 45%;
}

.qa__content {
  display: none;
  padding: 15px 50px;
  padding: 0.9375rem 3.125rem;
  background-color: rgba(255, 255, 255, .4);
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.qa__btn {
  padding-top: 51px;
  padding-top: 3.1875rem;
  text-align: center;
}

.recruit {
  position: relative;
  padding-top: 195px;
  padding-top: 12.1875rem;
}

@media screen and (max-width: 767px) {
  .recruit {
    padding-top: 4.375rem;
  }
}

.recruit__inner {
  max-width: 950px;
  max-width: 59.375rem;
}

.recruit__bg {
  position: absolute;
  top: 50px;
  top: 3.125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .recruit__bg {
    top: 1.875rem;
  }
}

.recruit__title {
  margin-bottom: 62px;
  margin-bottom: 3.875rem;
}

@media screen and (max-width: 767px) {
  .recruit__title {
    text-align: center;
    margin-bottom: 1.5625rem;
    font-size: 1.5625rem;
  }
}

.recruit__head {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 29px;
  margin-bottom: 1.8125rem;
}

.recruit__lists {
  text-align: center;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}

.recruit__list:not(:last-of-type) {
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}

.recruit__skill {
  font-size: 18px;
  font-size: 1.125rem;
  color: #0083B5;
  margin-bottom: 13px;
  margin-bottom: 0.8125rem;
}

.recruit__text {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.78571429;
}

.recruit__table {
  background-color: #F4FBFF;
}

.recruit__table:not(:last-of-type) {
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}

.recruit__table:last-of-type {
  margin-bottom: 107px;
  margin-bottom: 6.6875rem;
}

@media screen and (max-width: 767px) {
  .recruit__table:last-of-type {
    margin-bottom: 4.375rem;
  }
}

.recruit__caption {
  background-color: #F4FBFF;
}

.recruit__flow {
  max-width: 800px;
  max-width: 50rem;
  margin: 0 auto 50px;
  margin: 0 auto 3.125rem;
}

.recruit__btn {
  text-align: center;
}

.sewerage-road {
  position: relative;
  color: #fff;
}

.sewerage-road__bg {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  opacity: 0.2;
  z-index: 2;
}

.sewerage-road__item .sewerage-road__bg {
  right: auto;
  left: 0;
}

.sewerage-road__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .sewerage-road__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.sewerage-road__item {
  position: relative;
  width: 50%;
  min-height: 800px;
  min-height: 50rem;
}

@media screen and (max-width: 767px) {
  .sewerage-road__item {
    width: 100%;
    min-height: auto;
  }
}

@media screen and (max-width: 767px) {
  .sewerage-road__item:nth-child(1) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media screen and (max-width: 767px) {
  .sewerage-road__item:nth-child(2) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media screen and (max-width: 767px) {
  .sewerage-road__item:nth-child(3) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

@media screen and (max-width: 767px) {
  .sewerage-road__item:nth-child(4) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

.sewerage-road__item:first-of-type {
  background-image: url(../images/top/sewerage_bg1.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.sewerage-road__item:nth-of-type(4) {
  background-image: url(../images/top/sewerage_bg4.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.sewerage-road__item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.sewerage-road__item:first-of-type::before,
.sewerage-road__item:nth-of-type(2)::before {
  background-color: #20596f;
}

.sewerage-road__item:nth-of-type(3)::before,
.sewerage-road__item:nth-of-type(4)::before {
  background-color: #23434E;
}

.sewerage-road__item:first-of-type::after,
.sewerage-road__item:nth-of-type(4)::after {
  position: absolute;
  left: 0;
  right: 0;
  content: "";
  background-color: #fff;
  height: 1px;
}

@media screen and (max-width: 767px) {
  .sewerage-road__item:first-of-type::after,
  .sewerage-road__item:nth-of-type(4)::after {
    display: none;
  }
}

.sewerage-road__item:first-of-type::after {
  top: 316px;
  top: 19.75rem;
}

.sewerage-road__item:nth-of-type(4)::after {
  top: 235px;
  top: 14.6875rem;
}

.sewerage-road__content {
  position: relative;
  z-index: 2;
  line-height: 2.14285714;
}

.sewerage-road__item:first-of-type .sewerage-road__content {
  padding: 260px 30px 0;
  padding: 16.25rem 1.875rem 0;
  max-width: 500px;
  max-width: 31.25rem;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .sewerage-road__item:first-of-type .sewerage-road__content {
    padding: 2.5rem 1.25rem;
  }
}

.sewerage-road__item:nth-of-type(4) .sewerage-road__content {
  padding: 169px 30px 0;
  padding: 10.5625rem 1.875rem 0;
  max-width: 500px;
  max-width: 31.25rem;
}

@media screen and (max-width: 767px) {
  .sewerage-road__item:nth-of-type(4) .sewerage-road__content {
    padding: 2.5rem 1.25rem;
  }
}

.sewerage-road__item:nth-of-type(2) .sewerage-road__title-wrapper {
  position: absolute;
  top: 10%;
  left: 10%;
}

.sewerage-road__item:nth-of-type(3) .sewerage-road__title-wrapper {
  position: absolute;
  top: 10%;
  right: 10%;
}

_::-webkit-full-page-media, _:future, :root .sewerage-road__item:nth-of-type(3) .sewerage-road__title-wrapper {
  position: absolute;
  top: 10%;
  right: 25%;
}

@media screen and (max-width: 767px) {
  _::-webkit-full-page-media, _:future, :root .sewerage-road__item:nth-of-type(3) .sewerage-road__title-wrapper {
    right: 20%;
  }
}

.sewerage-road__title {
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: normal;
  line-height: 1.2;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

@media screen and (max-width: 767px) {
  .sewerage-road__title {
    font-size: 1.75rem;
  }
}

.sewerage-road__head {
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 64px;
  margin-bottom: 4rem;
}

@media screen and (max-width: 767px) {
  .sewerage-road__head {
    margin-bottom: 1.875rem;
  }
}

.sewerage-road__text {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.sewerage-road__img {
  padding-top: 160px;
  padding-top: 10rem;
  max-width: 500px;
  max-width: 31.25rem;
}

@media screen and (max-width: 767px) {
  .sewerage-road__img {
    padding-top: 2.5rem;
    max-width: 17.5rem;
  }
}

.sewerage-road__item:nth-of-type(2) .sewerage-road__img {
  margin-left: auto;
}

.welfare {
  padding-top: 225px;
  padding-top: 14.0625rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .welfare {
    padding-top: 5rem;
  }
}

.welfare__bg {
  position: absolute;
  top: 80px;
  top: 5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .welfare__bg {
    top: 1.875rem;
  }
}

.welfare__title {
  margin-bottom: 55px;
  margin-bottom: 3.4375rem;
}

@media screen and (max-width: 767px) {
  .welfare__title {
    text-align: center;
    margin-bottom: 1.5625rem;
    font-size: 1.5625rem;
  }
}

.welfare__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: -50px;
  margin-bottom: -3.125rem;
}

@media screen and (max-width: 767px) {
  .welfare__cards {
    margin-bottom: 0;
  }
}

.welfare__card {
  width: 33.33333%;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
          box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
}

@media screen and (max-width: 767px) {
  .welfare__card {
    width: 50%;
  }
}

@media screen and (max-width: 550px) {
  .welfare__card {
    width: 100%;
  }
}

.works {
  position: relative;
  padding-top: 225px;
  padding-top: 14.0625rem;
}

@media screen and (max-width: 767px) {
  .works {
    padding-top: 3.75rem;
  }
}

.works__bg {
  position: absolute;
  top: 80px;
  top: 5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .works__bg {
    top: 1.875rem;
  }
}

.works__title {
  margin-bottom: 55px;
  margin-bottom: 3.4375rem;
}

@media screen and (max-width: 767px) {
  .works__title {
    text-align: center;
    margin-bottom: 1.5625rem;
    font-size: 1.5625rem;
  }
}

.works__message {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 2.14285714;
  max-width: 794px;
  max-width: 49.625rem;
  margin: 0 auto 54px;
  margin: 0 auto 3.375rem;
  letter-spacing: 0.05em;
}

.overflow {
  overflow: hidden;
}

.loopslide-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 400vw;
  height: 300px;
  height: 18.75rem;
  overflow: hidden;
}

.loopslide-pc img {
  width: auto;
  height: 100%;
}

.loopslide-pc img:first-child {
  -webkit-animation: slide-pc__1 100s -50s linear infinite;
          animation: slide-pc__1 100s -50s linear infinite;
}

.loopslide-pc img:last-child {
  -webkit-animation: slide-pc__2 100s linear infinite;
          animation: slide-pc__2 100s linear infinite;
}

@-webkit-keyframes slide-pc__1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes slide-pc__1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@-webkit-keyframes slide-pc__2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}

@keyframes slide-pc__2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}

.loopslide-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 400vw;
  height: 150px;
  height: 9.375rem;
  overflow: hidden;
}

.loopslide-sp .slide-sp__1 {
  width: auto;
  height: 100%;
}

.loopslide-sp .slide-sp__1:first-child {
  -webkit-animation: slide-sp__1 80s -40s linear infinite;
          animation: slide-sp__1 80s -40s linear infinite;
}

.loopslide-sp .slide-sp__1:last-child {
  -webkit-animation: slide-sp__2 80s linear infinite;
          animation: slide-sp__2 80s linear infinite;
}

.loopslide-sp .slide-sp__2 {
  width: auto;
  height: 100%;
}

.loopslide-sp .slide-sp__2:first-child {
  -webkit-animation: slide-sp__3 70s -35s linear infinite;
          animation: slide-sp__3 70s -35s linear infinite;
}

.loopslide-sp .slide-sp__2:last-child {
  -webkit-animation: slide-sp__4 70s linear infinite;
          animation: slide-sp__4 70s linear infinite;
}

@-webkit-keyframes slide-sp__1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes slide-sp__1 {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@-webkit-keyframes slide-sp__2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}

@keyframes slide-sp__2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}

@-webkit-keyframes slide-sp__3 {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes slide-sp__3 {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@-webkit-keyframes slide-sp__4 {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slide-sp__4 {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
