@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Noto Sans JP", sans-serif;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

body.drawer-open {
  overflow: hidden;
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.7204301075vw;
  }
}
@media (min-width: 930px) {
  html {
    font-size: 16px;
  }
}

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

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

body {
  overflow-x: clip;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

body.fade-in {
  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 body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

/* 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 */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
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;
}

.l-inner {
  max-width: 600px;
  max-width: 37.5rem;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 980px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.p-404 {
  height: 100vh;
  padding-top: 89px;
  padding-top: 5.5625rem;
  padding-bottom: 110px;
  padding-bottom: 6.875rem;
  background: url(../images/common/mv_404_sp.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-404 {
    background: url(../images/common/mv_404.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-top: 11rem;
    padding-bottom: 6rem;
    height: 48rem;
  }
}

.p-404__content {
  border: 3px solid #fff;
  padding-top: 116px;
  padding-top: 7.25rem;
  padding-bottom: 116px;
  padding-bottom: 7.25rem;
  background: rgba(255, 255, 255, .5);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  padding-left: 30px;
  padding-left: 1.875rem;
  padding-right: 30px;
  padding-right: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-404__content {
    padding-left: 0;
    padding-left: initial;
    padding-right: 0;
    padding-right: initial;
  }
}

.p-404__block {
  max-width: 650px;
  max-width: 40.625rem;
  margin-inline: auto;
}

.p-404__title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-404__title {
  color: #0B2B4A;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-404__title {
    font-size: 2.5rem;
  }
}

.p-404__number {
  color: rgba(11, 43, 74, .15);
  letter-spacing: 0.05em;
  line-height: 1;
  font-size: 68px;
  font-size: 4.25rem;
  margin-left: 15px;
  margin-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-404__number {
    margin-left: 1.375rem;
    font-size: 8rem;
  }
}

.p-404__text-wrapper {
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-404__text-wrapper {
    margin-top: 1.5rem;
  }
}

.p-404__text {
  line-height: 1.6;
  font-weight: 400;
  color: #0B2B4A;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-404__text {
    font-size: 1.125rem;
  }
}

.p-404__btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-404__btn-wrapper {
    margin-top: 1.5rem;
  }
}

.p-404__btn {
  background: #6d6d6d;
  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;
  border: 1px solid #6d6d6d;
  border-radius: 2.5rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 140px;
  width: 8.75rem;
  padding: 6px 10px;
  padding: 0.375rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-404__btn {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1.375rem;
    padding-right: 0.875rem;
    width: 15.625rem;
  }
}

.p-404__btn-text {
  font-weight: 500;
  color: #fff;
  font-size: 10px;
  font-size: 0.625rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-404__btn-text {
    letter-spacing: 0.1em;
    font-size: 1rem;
  }
}

.p-404__btn:hover {
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.p-404__btn:hover .p-404__text {
  color: #fff;
}

.p-404__btn svg {
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-404__btn svg {
    width: 2rem;
    height: 2rem;
  }
}

.p-404__btn circle,
.p-404__btn path {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.p-404__btn:hover circle {
  fill: #6d6d6d;
  opacity: 1;
}

.p-404__btn:hover path {
  fill: #fff;
}

.p-404__btn:hover .p-404__btn-text {
  color: #6d6d6d;
}

.p-contact {
  background: #D8F3F8;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  padding-top: 64px;
  padding-top: 4rem;
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding-top: 7.0625rem;
    padding-bottom: 6.625rem;
  }
}

.p-contact--recruit {
  margin-top: 0;
  margin-top: initial;
}

.p-contact__top-text {
  text-align: center;
  color: #0B2B4A;
  letter-spacing: 0.025em;
  line-height: 1.8125;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-contact__top-text {
    font-size: 1rem;
  }
}

.p-detail {
  padding-top: 40px;
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-detail {
    padding-top: 3.5rem;
  }
}

.p-detail__content {
  position: relative;
  z-index: 3;
}

.p-info-page .p-detail {
  padding-top: 34px;
  padding-top: 2.125rem;
  background: #00B2D0;
  color: #fff;
}

.p-info-page .p-detail--requirements {
  padding-top: 24px;
  padding-top: 1.5rem;
}

.p-info-page .p-detail--benefits {
  padding-top: 56px;
  padding-top: 3.5rem;
  padding-bottom: 72px;
  padding-bottom: 4.5rem;
}

.p-info-page .p-detail .p-tell__title-wrapper {
  border-bottom-color: rgba(255, 255, 255, .9);
}

.p-info-page .p-detail .p-tell__title {
  color: #fff;
}

.p-drawer-icon {
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 9999px;
  width: 44px;
  width: 2.75rem;
  height: 44px;
  height: 2.75rem;
  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;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-drawer-icon {
    display: none;
  }
}

.p-drawer-icon.is-active {
  position: relative;
  z-index: 10001;
  background: #222;
}
.p-drawer-icon.is-active .p-drawer-icon__bars {
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
}
.p-drawer-icon.is-active .p-drawer-icon__bar1 {
  background: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.p-drawer-icon.is-active .p-drawer-icon__bar3 {
  background: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.p-drawer-icon__bars {
  position: relative;
  width: 28px;
  width: 1.75rem;
  height: 8px;
  height: 0.5rem;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  gap: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-drawer-icon__bars {
    gap: 0.5rem;
    width: 1.75rem;
    height: 0.75rem;
  }
}

.p-drawer-icon__bar1 {
  height: 2px;
  background: #333;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 28px;
  width: 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-drawer-icon__bar1 {
    width: 1.75rem;
  }
}

.p-drawer-icon__bar3 {
  height: 2px;
  background: #333;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 28px;
  width: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-drawer-icon__bar3 {
    width: 1.75rem;
  }
}

.p-drawer-content {
  width: 100%;
  height: 100dvh;
  position: fixed;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  background: #0B2B4A;
  z-index: 9998;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-top: 125px;
  padding-top: 7.8125rem;
  padding-left: 32px;
  padding-left: 2rem;
  padding-right: 32px;
  padding-right: 2rem;
}
@media screen and (min-width: 768px) {
  .p-drawer-content {
    padding-top: 0.5rem;
    padding-left: 0;
    padding-left: initial;
    padding-right: 0;
    padding-right: initial;
  }
}

.p-drawer-content.is-active {
  visibility: visible;
  opacity: 1;
}

.p-drawer-content__items {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 100dvh;
}
@media screen and (min-width: 768px) {
  .p-drawer-content__items {
    max-width: 62rem;
    width: 100%;
    padding-top: 4rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-drawer-content__list {
  text-align: center;
}

.p-drawer-content__list + .p-drawer-content__list {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-drawer-content__link {
  font-size: 16px;
  font-size: 1rem;
  display: block;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
}

.p-drawer-content--recruit {
  top: 72px;
  top: 4.5rem;
  padding-top: 34px;
  padding-top: 2.125rem;
  padding-left: 87px;
  padding-left: 5.4375rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}

.p-drawer-content--recruit .p-drawer-content__items {
  height: auto;
}

.p-drawer-content--recruit .p-drawer-content__list {
  text-align: left;
}

.p-drawer-content--recruit .p-drawer-content__list + .p-drawer-content__list {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-drawer-content--recruit .p-drawer-content__link {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  gap: 0.4375rem;
  min-height: 26px;
  min-height: 1.625rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.4444444444;
  text-transform: none;
}

.p-drawer-content--recruit .p-drawer-content__link::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 16.675px;
  width: 1.0421875rem;
  height: 16.675px;
  height: 1.0421875rem;
  background: #00b2d0;
  border-radius: 50%;
}

.p-drawer-content--recruit .p-drawer-content__link::after {
  content: "";
  position: absolute;
  left: 6.2px;
  left: 0.3875rem;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 3.2px solid transparent;
  border-top: 0.2rem solid transparent;
  border-bottom: 3.2px solid transparent;
  border-bottom: 0.2rem solid transparent;
  border-left: 4.4px solid #fff;
  border-left: 0.275rem solid #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-drawer-content--recruit .p-drawer-content__list--button {
  margin-top: 51px;
  margin-top: 3.1875rem;
  margin-left: -5px;
  margin-left: -0.3125rem;
}

.p-drawer-content__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 212px;
  width: 13.25rem;
  min-height: 48px;
  min-height: 3rem;
  border-radius: 9999px;
  background: #f18d00;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.075em;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.p-drawer-content__button:hover {
  background: #fff;
  color: #f18d00;
}

.p-drawer-content--recruit .p-drawer-content__list--corporate {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}

.p-footer {
  background: #0b2b4a;
  position: relative;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 28px;
  padding-bottom: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-footer {
    min-height: 23.0625rem;
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
  }
}

.p-footer__content {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-footer__content {
    display: grid;
    grid-template-columns: 30rem 24.1875rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 3.8888888889vw;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__detail {
    max-width: 28.6875rem;
    width: 100%;
  }
}

.p-footer__company {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4444444444;
  color: #fff;
}

.p-footer__address-wrapper {
  margin-top: 12px;
  margin-top: 0.75rem;
}

.p-footer__address {
  color: #fff;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.5625;
}

.p-footer__tel-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  row-gap: 4px;
  row-gap: 0.25rem;
}

.p-footer__tel {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5625;
}

.p-footer__nav {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-footer__nav {
    display: contents;
    margin-top: 0;
    margin-top: initial;
  }
}

.p-footer__nav-group + .p-footer__nav-group {
  margin-top: 28px;
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-group + .p-footer__nav-group {
    margin-top: 0;
    margin-top: initial;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__nav-group--service {
    grid-column: 1;
    grid-row: 3;
    margin-top: 0.5625rem;
    width: 9.4375rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.p-footer__nav-title {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  border-bottom: 1px solid #b5b5b5;
  width: 151px;
  width: 9.4375rem;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-title {
    grid-column: 1;
    grid-row: 2;
  }
}

.p-footer__nav-group:not(.p-footer__nav-group--service) .p-footer__lists {
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .p-footer__nav-group:not(.p-footer__nav-group--service) {
    grid-column: 2;
    grid-row: 2/span 2;
  }
}
.p-footer__lists--sub {
  margin-top: 30px !important;
  margin-top: 1.875rem !important;
}

.p-footer__list + .p-footer__list {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-footer__link {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  gap: 0.375rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5625;
  color: #fff;
}

.p-footer__link::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 15.325px;
  width: 0.9578125rem;
  height: 15.325px;
  height: 0.9578125rem;
  background: #00b2d0;
  border-radius: 50%;
}

.p-footer__link::after {
  content: "";
  position: absolute;
  left: 6px;
  left: 0.375rem;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-top: 0.1875rem solid transparent;
  border-bottom: 3px solid transparent;
  border-bottom: 0.1875rem solid transparent;
  border-left: 4px solid #fff;
  border-left: 0.25rem solid #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-footer__small {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__small {
    margin-top: 4.125rem;
  }
}

.p-footer__small small {
  line-height: 1.5625;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.mt8 {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-footer__right {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-footer__right {
    display: grid;
    grid-template-columns: 9.4375rem 12.1875rem;
    -webkit-column-gap: 4.0277777778vw;
       -moz-column-gap: 4.0277777778vw;
            column-gap: 4.0277777778vw;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 24.1875rem;
    margin-top: 0;
    margin-top: initial;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__right > .p-footer__link {
    grid-column: 1;
    grid-row: 1;
  }
}
.p-form {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-form {
    margin-top: 4rem;
  }
}

.p-form__row-wrapper + .p-form__row-wrapper {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-form__row--textarea {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-form__row + .p-form__row {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-form__dt-wrapper {
  width: 100px;
  width: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-form__dt-wrapper {
    padding-top: 0.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 16.0625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-form__row:first-child .p-form__dt-wrapper {
    padding-top: 0;
    padding-top: initial;
  }
}

.p-form__dt {
  color: #0B2B4A;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #0B2B4A;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-form__dt {
    font-size: 1.125rem;
  }
}

.p-form__dt span {
  color: #0B2B4A;
  font-size: 10px;
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-form__dt span {
    font-size: 0.875rem;
  }
}

.p-form__need {
  color: #e87372;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.3;
  letter-spacing: 0.025em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-form__need {
    font-size: 1rem;
  }
}

.p-form__need--black {
  color: #0B2B4A;
}

.wpcf7-spinner {
  display: none;
}

.p-form__description--radio {
  /* デフォルトのボタン */
  /* チェック前のボタン */
  /* チェック後のボタン */
}
.p-form__description--radio .wpcf7-list-item-label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #0B2B4A;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-form__description--radio .wpcf7-list-item-label {
    font-size: 1rem;
  }
}
.p-form__description--radio input[type=radio] {
  opacity: 0;
  /* デフォルトのボタンを非表示 */
  position: absolute;
}
.p-form__description--radio .wpcf7-list-item-label::before {
  background: #fff;
  border-radius: 100%;
  /* ラジオボタンっぽく丸くする */
  content: "";
  margin-bottom: auto;
  margin-right: 0.5em;
  margin-top: auto;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-form__description--radio .wpcf7-list-item-label::before {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.p-form__description--radio input[type=radio]:checked + .wpcf7-list-item-label::before {
  background-color: #363636;
  /* チェック後の中心の色 */
  -webkit-box-shadow: inset 0 0 0 4px #fff;
          box-shadow: inset 0 0 0 4px #fff;
  /* 中心の色のスタイル */
}
.p-form__description--radio .custom-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 18px;
  row-gap: 1.125rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-form__description--radio .custom-radio {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.wpcf7-list-item {
  margin-left: 0;
  margin-left: initial;
}
@media screen and (min-width: 768px) {
  .wpcf7-list-item {
    margin-right: 1.75rem;
  }
}

.p-form__description {
  width: calc(100% - 6rem);
  margin-left: 22px;
  margin-left: 1.375rem;
  font-size: 12px;
  font-size: 0.75rem;
  word-wrap: break-word;
  color: #0B2B4A;
  padding-top: 0;
  padding-top: initial;
}
@media screen and (min-width: 768px) {
  .p-form__description {
    font-size: 1rem;
    line-height: 1.2;
    margin-left: 0.5625rem;
    width: calc(100% - 12.5rem);
  }
}

.p-form__description-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-form__description-row {
    gap: 1.5625rem;
  }
}

.p-form input[type=text],
.p-form input[type=tel],
.p-form input[type=email] {
  width: 100%;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.2;
  padding: 10px 12px;
  padding: 0.625rem 0.75rem;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-form input[type=text],
  .p-form input[type=tel],
  .p-form input[type=email] {
    font-size: 1.125rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.6875rem;
    padding-right: 0.6875rem;
    width: 28.25rem;
  }
}

.p-form textarea {
  background: #fff;
  width: 100%;
  height: 150px;
  height: 9.375rem;
  font-size: 12px;
  font-size: 0.75rem;
  padding: 10px 12px;
  padding: 0.625rem 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-form textarea {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.6875rem;
    padding-right: 0.6875rem;
    font-size: 1.125rem;
    height: 11.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-form__description-row input[type=text] {
    width: 11.25rem;
  }
}

.p-form__btn-wrapper {
  margin-top: 36px;
  margin-top: 2.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-form__btn-wrapper {
    gap: 1.25rem;
    margin-top: 5.9375rem;
  }
}

.p-form__btn-outside {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-form__btn-outside {
    width: 20.1875rem;
  }
}

.p-form__btn-outside:hover {
  -webkit-transform: translateY(0.3125rem);
          transform: translateY(0.3125rem);
}

.p-form__btn-outside::before {
  position: absolute;
  content: "";
  background: #04190f;
  width: 100%;
  height: 5px;
  height: 0.3125rem;
  bottom: -5px;
  bottom: -0.3125rem;
  left: 0;
  right: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.p-form__btn-outside:hover::before {
  -webkit-transform: translateY(-0.3125rem);
          transform: translateY(-0.3125rem);
}

.p-form__btn {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-form__btn {
    width: auto;
    width: initial;
  }
}

.p-form__btn input[type=submit],
.p-form__btn input[type=button] {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: relative;
  background: #1b4431;
  width: 100%;
  text-align: left;
  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;
  padding-top: 6px;
  padding-top: 0.375rem;
  padding-bottom: 6px;
  padding-bottom: 0.375rem;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .p-form__btn input[type=submit],
  .p-form__btn input[type=button] {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    width: 20.1875rem;
    font-size: 1.0625rem;
  }
}

.p-form__btn input[type=submit]:hover,
.p-form__btn input[type=button]:hover {
  background: #fff;
  color: #04190f;
  cursor: pointer;
}

.p-form__btn--blue:hover input[type=submit] {
  color: #0B2B4A;
}

.p-form__btn-outside--blue,
.p-contact:not(.p-contact--recruit) .p-form__btn-outside {
  max-width: 430px;
  max-width: 26.875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-form__btn-outside--blue,
  .p-contact:not(.p-contact--recruit) .p-form__btn-outside {
    width: 26.875rem;
  }
}

.p-form__btn-outside--blue:hover,
.p-contact:not(.p-contact--recruit) .p-form__btn-outside:hover {
  -webkit-transform: none;
          transform: none;
}

.p-form__btn-outside--blue .p-form__btn,
.p-contact:not(.p-contact--recruit) .p-form__btn-outside .p-form__btn {
  width: 100%;
}

.p-form__btn-outside--blue .p-form__btn input[type=submit],
.p-form__btn-outside--blue .p-form__btn input[type=button],
.p-contact:not(.p-contact--recruit) .p-form__btn-outside .p-form__btn input[type=submit],
.p-contact:not(.p-contact--recruit) .p-form__btn-outside .p-form__btn input[type=button] {
  width: 100%;
  min-height: 55px;
  min-height: 3.4375rem;
  padding: 10px 58px 10px 31px;
  padding: 0.625rem 3.625rem 0.625rem 1.9375rem;
  color: #0B2B4A;
  background: rgba(255, 255, 255, .6);
  border: 1px solid #0B2B4A;
  border-radius: 1.875rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.7777777778;
}
@media screen and (min-width: 768px) {
  .p-form__btn-outside--blue .p-form__btn input[type=submit],
  .p-form__btn-outside--blue .p-form__btn input[type=button],
  .p-contact:not(.p-contact--recruit) .p-form__btn-outside .p-form__btn input[type=submit],
  .p-contact:not(.p-contact--recruit) .p-form__btn-outside .p-form__btn input[type=button] {
    width: 26.875rem;
    font-size: 1.375rem;
  }
}

.p-form__btn-outside--blue::before,
.p-contact:not(.p-contact--recruit) .p-form__btn-outside::before {
  position: absolute;
  content: "";
  background: #00B2D0;
  border-radius: 9999px;
  top: 50%;
  left: auto;
  left: initial;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
  right: 17px;
  right: 1.0625rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 1;
}

.p-contact:not(.p-contact--recruit) .p-form__btn-outside:hover::before {
  -webkit-transform: translate(0.25rem, -50%);
          transform: translate(0.25rem, -50%);
}

.p-form__btn-outside--blue::after,
.p-contact:not(.p-contact--recruit) .p-form__btn-outside::after {
  position: absolute;
  content: "";
  top: 50%;
  left: auto;
  left: initial;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 24px;
  right: 1.5rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 2;
  pointer-events: none;
  background: url(../images/contact/triangle.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  aspect-ratio: 6/9;
  width: 6px;
  width: 0.375rem;
  height: auto;
}

.p-contact:not(.p-contact--recruit) .p-form__btn-outside:hover::after {
  -webkit-transform: translate(0.25rem, -50%);
          transform: translate(0.25rem, -50%);
}

.p-form__btn-outside--blue:hover::before,
.p-contact:not(.p-contact--recruit) .p-form__btn-outside:hover::before {
  background: #00B2D0;
}

.p-form__btn-outside--blue:hover .p-form__btn input[type=submit],
.p-form__btn-outside--blue:hover .p-form__btn input[type=button],
.p-contact:not(.p-contact--recruit) .p-form__btn-outside:hover .p-form__btn input[type=submit],
.p-contact:not(.p-contact--recruit) .p-form__btn-outside:hover .p-form__btn input[type=button] {
  background: #0b2b4a;
  cursor: pointer;
  border: 1px solid #fff;
  color: #fff;
}

.p-contact:not(.p-contact--recruit) input[type=submit],
.p-contact:not(.p-contact--recruit) input[type=button],
.p-contact:not(.p-contact--recruit) button[type=submit],
.p-contact:not(.p-contact--recruit) button[type=button] {
  width: 100%;
  max-width: 430px;
  max-width: 26.875rem;
  min-height: 55px;
  min-height: 3.4375rem;
  padding: 10px 58px 10px 31px;
  padding: 0.625rem 3.625rem 0.625rem 1.9375rem;
  color: #0B2B4A;
  background-color: rgba(255, 255, 255, .6);
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2722.608%27%20height%3D%2722.608%27%20viewBox%3D%270%200%2022.608%2022.608%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Ccircle%20cx%3D%2711.304%27%20cy%3D%2711.304%27%20r%3D%2711.304%27%20fill%3D%27%2300B2D0%27/%3E%3Cpath%20d%3D%27M9.529%206.878L15.43%2011.304L9.529%2015.73V6.878Z%27%20fill%3D%27white%27/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 17px center;
  background-position: right 1.0625rem center;
  background-size: 1.375rem 1.375rem;
  border: 1px solid #0B2B4A;
  border-radius: 9999px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.7777777778;
  text-align: center;
  -webkit-transition: background-color 0.3s ease, background-position 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, background-position 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-contact:not(.p-contact--recruit) input[type=submit],
  .p-contact:not(.p-contact--recruit) input[type=button],
  .p-contact:not(.p-contact--recruit) button[type=submit],
  .p-contact:not(.p-contact--recruit) button[type=button] {
    font-size: 1.375rem;
  }
}

.p-form__btn-outside--blue .p-form__btn input[type=submit],
.p-form__btn-outside--blue .p-form__btn input[type=button],
.p-contact:not(.p-contact--recruit) .p-form__btn-outside .p-form__btn input[type=submit],
.p-contact:not(.p-contact--recruit) .p-form__btn-outside .p-form__btn input[type=button] {
  background-image: none;
}

.p-contact:not(.p-contact--recruit) input[type=submit]:hover,
.p-contact:not(.p-contact--recruit) input[type=button]:hover,
.p-contact:not(.p-contact--recruit) button[type=submit]:hover,
.p-contact:not(.p-contact--recruit) button[type=button]:hover {
  background-color: #0b2b4a;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2722.608%27%20height%3D%2722.608%27%20viewBox%3D%270%200%2022.608%2022.608%27%20fill%3D%27none%27%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%3E%3Ccircle%20cx%3D%2711.304%27%20cy%3D%2711.304%27%20r%3D%2711.304%27%20fill%3D%27%2300B2D0%27/%3E%3Cpath%20d%3D%27M9.529%206.878L15.43%2011.304L9.529%2015.73V6.878Z%27%20fill%3D%27white%27/%3E%3C/svg%3E");
  background-position: right 13px center;
  background-position: right 0.8125rem center;
  border-color: #fff;
  color: #fff;
  cursor: pointer;
}

.p-form__btn-outside--blue:hover .p-form__btn input[type=submit],
.p-form__btn-outside--blue:hover .p-form__btn input[type=button],
.p-contact:not(.p-contact--recruit) .p-form__btn-outside:hover .p-form__btn input[type=submit],
.p-contact:not(.p-contact--recruit) .p-form__btn-outside:hover .p-form__btn input[type=button] {
  background-image: none;
}

input::-webkit-input-placeholder {
  color: rgba(11, 43, 74, .3);
  line-height: 1.2;
}

input::-moz-placeholder {
  color: rgba(11, 43, 74, .3);
  line-height: 1.2;
}

input::-ms-input-placeholder {
  color: rgba(11, 43, 74, .3);
  line-height: 1.2;
}

input::placeholder {
  color: rgba(11, 43, 74, .3);
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  input::-webkit-input-placeholder {
    font-size: 1.125rem;
  }
  input::-moz-placeholder {
    font-size: 1.125rem;
  }
  input::-ms-input-placeholder {
    font-size: 1.125rem;
  }
  input::placeholder {
    font-size: 1.125rem;
  }
}

.p-header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  height: 70px;
  height: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 5.4375rem;
  }
}

.p-header__inner {
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.p-header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
  height: 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-header__content {
    height: 5.4375rem;
  }
}

.p-header__logo {
  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;
}

.p-header__home {
  display: inline-block;
  width: 240px;
  width: 15rem;
}
@media screen and (min-width: 768px) {
  .p-header__home {
    width: min(26.375rem, 29.3055555556vw);
  }
}

.p-header__home img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    display: block;
    margin-left: auto;
  }
}

.p-header__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(88px, 6.1111111111vw);
  gap: min(5.5rem, 6.1111111111vw);
}

@media screen and (min-width: 768px) {
  .p-header__list--business {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 5.4375rem;
  }
}

.p-header__link {
  color: #0B2B4A;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.4705882353;
}

.p-header__link--button {
  padding: 0;
  border: none;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.p-header__mega {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__mega {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    width: 100%;
    min-height: 10.9375rem;
    padding-top: 2.625rem;
    padding-bottom: 2.625rem;
    background: #0B2B4A;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateY(-0.5rem);
            transform: translateY(-0.5rem);
    -webkit-transition: opacity 0.25s ease, visibility 0.25s ease, -webkit-transform 0.25s ease;
    transition: opacity 0.25s ease, visibility 0.25s ease, -webkit-transform 0.25s ease;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
  }
}

@media screen and (min-width: 768px) {
  .p-header__list--business:hover .p-header__mega,
  .p-header__list--business:focus-within .p-header__mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@media screen and (min-width: 768px) {
  .p-header__mega-inner {
    display: grid;
    grid-template-columns: 13.75rem minmax(0, 33.75rem);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 7.875rem;
       -moz-column-gap: 7.875rem;
            column-gap: 7.875rem;
    width: 100%;
    max-width: 58.125rem;
    min-height: 5.6875rem;
    margin-inline: auto;
    padding-inline: 1.5625rem;
  }
}

.p-header__mega-title {
  color: #fff;
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 500;
  line-height: 1.44;
  letter-spacing: 0.4em;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .p-header__mega-lists {
    display: grid;
    grid-template-columns: repeat(2, -webkit-max-content);
    grid-template-columns: repeat(2, max-content);
    -webkit-column-gap: 5.5rem;
       -moz-column-gap: 5.5rem;
            column-gap: 5.5rem;
    row-gap: 1.875rem;
  }
}

.p-header__mega-link {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 29px;
  padding-left: 1.8125rem;
  color: #fff;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1.4210526316;
  letter-spacing: 0.4em;
  white-space: nowrap;
}

.p-header__mega-link::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  content: "";
  width: 21px;
  width: 1.3125rem;
  height: 21px;
  height: 1.3125rem;
  border-radius: 50%;
  background: #00B2D0;
}

.p-header__mega-link::after {
  position: absolute;
  top: 50%;
  left: 8px;
  left: 0.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-top: 0.25rem solid transparent;
  border-bottom: 4px solid transparent;
  border-bottom: 0.25rem solid transparent;
  border-left: 6px solid #fff;
  border-left: 0.375rem solid #fff;
}

.p-header__drawer {
  margin-left: auto;
}

.p-health {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 72px;
  padding-bottom: 4.5rem;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .p-health {
    padding-top: 3rem;
    padding-bottom: 6rem;
  }
}

.p-health__title {
  text-align: center;
}

.p-health__content {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-health__content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4.5rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 3rem;
  }
}

@media screen and (min-width: 768px) {
  .p-health__text-wrapper {
    max-width: 28.5625rem;
    width: 100%;
  }
}

.p-health__lead {
  color: #0b2b4a;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  line-height: 1.8125;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-health__lead {
    font-size: 1.125rem;
  }
}

.p-health__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  color: #0B2B4A;
  line-height: 1.8125;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 768px) {
  .p-health__text {
    font-size: 1rem;
  }
}

.p-health__img {
  margin-left: auto;
  margin-right: auto;
  margin-top: 32px;
  margin-top: 2rem;
  max-width: 220px;
  max-width: 13.75rem;
  width: 70%;
}
@media screen and (min-width: 768px) {
  .p-health__img {
    margin: 0;
    max-width: 12.5rem;
    width: 100%;
  }
}

.p-health__img img {
  display: block;
  height: auto;
  width: 100%;
}

.p-information-mv {
  padding-top: 136px;
  padding-top: 8.5rem;
}

.p-information-mv__title {
  text-align: center;
}

.p-information-mv__en {
  width: 280px;
  width: 17.5rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-information-mv__en {
    width: 28.3125rem;
  }
}

.p-information-mv__ja {
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.4583333333;
  font-weight: 400;
  display: block;
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-information-mv__text-wrapper {
  margin-top: 48px;
  margin-top: 3rem;
}

.p-information-mv__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.p-info-page {
  overflow: hidden;
  color: #0B2B4A;
}

.p-info-page .p-information-mv {
  position: relative;
  margin-top: 72px;
  margin-top: 4.5rem;
  padding-top: 72px;
  padding-top: 4.5rem;
  padding-bottom: 44px;
  padding-bottom: 2.75rem;
  background: #00B2D0;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-info-page .p-information-mv {
    margin-top: 5.75rem;
    padding-top: 5rem;
    padding-bottom: 3.375rem;
  }
}

.p-info-page .p-information-mv::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: min(420px, 54vw);
  width: min(26.25rem, 54vw);
  height: min(520px, 72vw);
  height: min(32.5rem, 72vw);
  background: linear-gradient(135deg, #071D2E 0%, #16395C 52%, #071D2E 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 0;
}

.p-info-page .p-information-mv::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 96px;
  width: 6rem;
  height: 118px;
  height: 7.375rem;
  background: #F18D00;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .p-info-page .p-information-mv::after {
    width: 10.625rem;
    height: 13rem;
  }
}

.p-info-page .p-information-mv .l-inner,
.p-info-page .p-information-mv__content {
  position: relative;
  z-index: 1;
}

.p-info-page .p-information-mv__title {
  text-align: left;
}

.p-info-page .p-information-mv__en {
  color: #fff;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.05;
  letter-spacing: 0.075em;
}
@media screen and (min-width: 768px) {
  .p-info-page .p-information-mv__en {
    font-size: 4.3125rem;
  }
}

.p-info-page .p-information-mv__ja {
  color: #fff;
  margin-top: 8px;
  margin-top: 0.5rem;
  font-weight: 500;
}

.p-info-page .p-information-mv__inner {
  max-width: 1050px;
  max-width: 65.625rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
}

.p-info-page .p-information-mv__text-wrapper {
  margin-top: 28px;
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-info-page .p-information-mv__text-wrapper {
    margin-top: 2.125rem;
  }
}

.p-info-page .p-information-mv__text {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.75;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-info-page .p-information-mv__text {
    font-size: 1rem;
  }
}

.p-info-page--notice .p-information-mv {
  padding-bottom: 44px;
  padding-bottom: 2.75rem;
}
@media screen and (min-width: 768px) {
  .p-info-page--notice .p-information-mv {
    padding-top: 4.6875rem;
    padding-bottom: 16.875rem;
  }
}

.p-info-page--notice .p-information-mv::before {
  width: min(420px, 70vw);
  width: min(26.25rem, 70vw);
  height: min(517px, 96vw);
  height: min(32.3125rem, 96vw);
}

.p-info-page--notice .p-information-mv__title {
  margin-left: 0;
}

.p-info-page--notice .p-information-mv__ja {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4583333333;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-info-page--notice .p-information-mv__ja {
    font-size: 1.5rem;
  }
}

.p-info-notice {
  max-width: 930px;
  max-width: 58.125rem;
  margin-top: 72px;
  margin-top: 4.5rem;
  border-top: 2px solid #f1cc04;
  border-top: 0.125rem solid #f1cc04;
  border-bottom: 2px solid #f1cc04;
  border-bottom: 0.125rem solid #f1cc04;
  padding-top: 30px;
  padding-top: 1.875rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-info-notice {
    margin-top: 5.1875rem;
    padding-top: 2.125rem;
    padding-bottom: 1.8125rem;
  }
}

.p-info-notice__title {
  color: #f1cc00;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.05em;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-info-notice__title {
    font-size: 2.4375rem;
  }
}

.p-info-notice__text {
  color: #fff;
  margin-top: 32px;
  margin-top: 2rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-info-notice__text {
    margin-top: 4.1875rem;
    font-size: 1.375rem;
  }
}

.p-mv {
  margin-top: 70px;
  margin-top: 4.375rem;
  position: relative;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .p-mv {
    margin-top: 5.4375rem;
  }
}

.p-mv__img {
  width: 100%;
}

.p-mv__img video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 900/832;
}
@media screen and (min-width: 768px) {
  .p-mv__img video {
    aspect-ratio: 1920/832;
  }
}

.p-mv__img.u-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-mv__img.u-mobile {
    display: none;
  }
}

.p-mv__img.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-mv__img.u-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-page-mv {
  overflow-x: clip;
  margin-top: 87px;
  margin-top: 5.4375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-page-mv {
    height: 27.0833333333vw;
  }
}

@media screen and (min-width: 768px) {
  .p-page-mv--sitemap {
    height: 13.6111111111vw;
  }
}

.p-page-mv::before {
  position: absolute;
  content: "";
  background: url(../images/common/page_mv_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: auto;
  aspect-ratio: 930/1150;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-page-mv::before {
    width: 64.5833333333vw;
  }
}

.p-page-mv--sitemap {
  background: #D8F3F8;
}

.p-page-mv--sitemap::before {
  display: none;
}

.p-page-mv--privacy {
  padding-bottom: 0;
  padding-bottom: initial;
}
@media screen and (min-width: 768px) {
  .p-page-mv--privacy {
    padding-bottom: 6rem;
  }
}

.p-page-mv--about::before {
  display: none;
}

.p-page-mv__inner {
  max-width: 1400px;
  max-width: 87.5rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

.p-page-mv__img {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  width: 100vw;
  margin-top: 128px;
  margin-top: 8rem;
}
@media screen and (min-width: 768px) {
  .p-page-mv__img {
    margin-top: 0;
    margin-top: initial;
    height: 27.7777777778vw;
  }
}

.p-page-mv__img--sitemap {
  margin-top: 0;
  margin-top: initial;
}
@media screen and (min-width: 768px) {
  .p-page-mv__img--sitemap {
    width: 95vw;
    height: 12.9305555556vw;
  }
}

.p-page-mv__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 375/202;
}
@media screen and (min-width: 768px) {
  .p-page-mv__img img {
    aspect-ratio: 1400/400;
  }
}

.p-page-mv__img--sitemap img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 375/202;
}
@media screen and (min-width: 768px) {
  .p-page-mv__img--sitemap img {
    aspect-ratio: 1329/196;
  }
}

.p-page-mv__detail {
  left: 0;
  position: absolute;
  z-index: 10;
  width: 325px;
  width: 20.3125rem;
  top: -56px;
  top: -3.5rem;
}
@media screen and (min-width: 768px) {
  .p-page-mv__detail {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: min(4rem, 4.5714285714vw);
    width: min(30.875rem, 35.2857142857vw);
  }
}

.p-page-mv__detail img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-page-mv__detail--sitemap {
  width: 250px;
  width: 15.625rem;
  left: 20px;
  left: 1.25rem;
  top: 24px;
  top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-page-mv__detail--sitemap {
    width: min(21rem, 24vw);
    left: min(4rem, 4.5714285714vw);
    top: 50%;
  }
}

.p-recruit-contact {
  margin-top: 40px;
  margin-top: 2.5rem;
  padding-top: 56px;
  padding-top: 3.5rem;
  padding-bottom: 56px;
  padding-bottom: 3.5rem;
  background: #f1f7f2;
}
@media screen and (min-width: 768px) {
  .p-recruit-contact {
    margin-top: 5rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.p-info-page .p-recruit-contact {
  margin-top: 0;
  padding-top: 56px;
  padding-top: 3.5rem;
  padding-bottom: 56px;
  padding-bottom: 3.5rem;
  background: #D8F3F8;
}
@media screen and (min-width: 768px) {
  .p-info-page .p-recruit-contact {
    padding-top: 4rem;
    padding-bottom: 4.125rem;
  }
}

.p-info-page .p-recruit-contact__content {
  max-width: 930px;
  max-width: 58.125rem;
  margin-inline: auto;
}

.p-info-page .p-recruit-contact .p-tell__title-wrapper {
  border-bottom-color: #0B2B4A;
}

.p-info-page .p-recruit-contact .p-tell__title {
  color: #0B2B4A;
}

.p-info-page .p-recruit-contact .p-form {
  margin-top: 42px;
  margin-top: 2.625rem;
}

.p-info-page .p-recruit-contact .p-form__dt,
.p-info-page .p-recruit-contact .p-form__dt span,
.p-info-page .p-recruit-contact .p-form__description,
.p-info-page .p-recruit-contact .p-form__description--radio .wpcf7-list-item-label {
  color: #0B2B4A;
}

.p-info-page .p-recruit-contact .p-form input[type=text],
.p-info-page .p-recruit-contact .p-form input[type=tel],
.p-info-page .p-recruit-contact .p-form input[type=email] {
  border: 0;
  background: #fff;
}

.p-info-page .p-recruit-contact .p-form textarea {
  border: 0;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-info-page .p-recruit-contact .p-form textarea {
    height: 14rem;
  }
}

.p-info-page .p-recruit-contact .p-form__btn-wrapper {
  margin-top: 42px;
  margin-top: 2.625rem;
}

.p-info-page .p-recruit-contact .p-form__btn-outside,
.p-info-page .p-recruit-contact .p-form__btn-outside--blue {
  max-width: 334px;
  max-width: 20.875rem;
  margin-inline: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-info-page .p-recruit-contact .p-form__btn-outside,
  .p-info-page .p-recruit-contact .p-form__btn-outside--blue {
    width: 20.875rem;
  }
}

.p-info-page .p-recruit-contact .p-form__btn-outside::before,
.p-info-page .p-recruit-contact .p-form__btn-outside::after {
  display: none;
}

.p-info-page .p-recruit-contact .p-form__btn input[type=submit],
.p-info-page .p-recruit-contact .p-form__btn input[type=button],
.p-info-page .p-recruit-contact input[type=submit],
.p-info-page .p-recruit-contact input[type=button] {
  width: 100%;
  min-height: 64px;
  min-height: 4rem;
  padding: 12px 24px;
  padding: 0.75rem 1.5rem;
  border: 2px solid #F5F5F5;
  border-radius: 4.1875rem;
  background: #F18D00;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-info-page .p-recruit-contact .p-form__btn input[type=submit],
  .p-info-page .p-recruit-contact .p-form__btn input[type=button],
  .p-info-page .p-recruit-contact input[type=submit],
  .p-info-page .p-recruit-contact input[type=button] {
    width: 20.875rem;
    min-height: 4.6875rem;
    font-size: 1.375rem;
  }
}

.p-info-page .p-recruit-contact .p-form__btn input[type=submit]:hover,
.p-info-page .p-recruit-contact .p-form__btn input[type=button]:hover,
.p-info-page .p-recruit-contact input[type=submit]:hover,
.p-info-page .p-recruit-contact input[type=button]:hover {
  background: #0B2B4A;
  color: #fff;
}

.p-recruit-footer {
  background: #fff;
  padding-top: 28px;
  padding-top: 1.75rem;
  padding-bottom: 28px;
  padding-bottom: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-footer {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }
}

.p-recruit-footer__lists {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-footer__lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.5rem;
  }
}

.p-recruit-footer__link {
  font-size: 16px;
  font-size: 1rem;
  color: #00B2D0;
  line-height: 1.5;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.p-recruit-footer__link:hover {
  opacity: 0.7;
}

.p-recruit-footer__detail {
  width: 100%;
  max-width: 930px;
  max-width: 58.125rem;
  margin-top: 42px;
  margin-top: 2.625rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-recruit-footer__detail {
    margin-top: 2.8125rem;
  }
}

.p-recruit-footer__name {
  color: #00B2D0;
  font-weight: 500;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-footer__name {
    font-size: 1.125rem;
  }
}

.p-recruit-footer__address {
  color: #00B2D0;
  line-height: 1.5625;
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 6px;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-footer__address {
    margin-top: 0.5rem;
    font-size: 1rem;
  }
}

.p-recruit-footer__tel-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  gap: 0.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2px;
  margin-top: 0.125rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-footer__tel-wrapper {
    gap: 1.125rem;
  }
}

.p-recruit-footer__tel {
  color: #00B2D0;
  line-height: 1.5625;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-footer__tel {
    font-size: 1rem;
  }
}

.p-recruit-footer__small {
  text-align: center;
  margin-top: 42px;
  margin-top: 2.625rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-footer__small {
    margin-top: 3.3125rem;
  }
}

.p-recruit-footer__small small {
  color: #00B2D0;
  line-height: 1.5625;
  font-size: 10px;
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-footer__small small {
    font-size: 1rem;
  }
}

.p-recruit-header {
  background: #fff;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 72px;
  height: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-header {
    height: 5.75rem;
  }
}

.p-recruit-header__inner {
  padding-left: 15px;
  padding-left: 0.9375rem;
  padding-right: 15px;
  padding-right: 0.9375rem;
}

.p-recruit-header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 72px;
  height: 4.5rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-header__content {
    height: 5.75rem;
  }
}

.p-recruit-header__home-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  gap: 0.75rem;
  width: 280px;
  width: 17.5rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-header__home-link {
    width: min(38.6875rem, 44.2142857143vw);
  }
}

.p-recruit-header__home-link img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.p-recruit-header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-recruit-header__nav {
    display: block;
    margin-left: auto;
  }
}

.p-recruit-header__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(58px, 4.1428571429vw);
  gap: min(3.625rem, 4.1428571429vw);
}

.p-recruit-header__link {
  font-size: min(14px, 1vw);
  font-size: min(0.875rem, 1vw);
  line-height: 1.4705882353;
  font-weight: 700;
  display: block;
  color: #0b2b4a;
}

.p-recruit-header__link-btn {
  background: #f18d00;
  border-radius: 9999px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(212px, 15.1428571429vw);
  width: min(13.25rem, 15.1428571429vw);
  color: #fff;
  font-weight: 700;
  font-family: "Archivo Narrow", sans-serif;
  padding-top: 10px;
  padding-top: 0.625rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: min(17px, 1.2142857143vw);
  font-size: min(1.0625rem, 1.2142857143vw);
  letter-spacing: 0.075em;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.p-recruit-header__link-btn:hover {
  background: #fff;
  color: #f18d00;
}

.p-recruit-table {
  width: 100%;
  border-collapse: collapse;
}

.p-recruit-table__title {
  background: #f1f7f2;
  padding-top: 8px;
  padding-top: 0.5rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  vertical-align: middle;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-size: 14px;
  font-size: 0.875rem;
  padding-left: 12px;
  padding-left: 0.75rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-recruit-table__title {
    text-align: center;
    display: table-cell;
    padding-left: 0;
    padding-left: initial;
    font-size: 1rem;
    width: 15rem;
  }
}

.p-recruit-table__text {
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-size: 14px;
  font-size: 0.875rem;
  padding-top: 8px;
  padding-top: 0.5rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  padding-left: 12px;
  padding-left: 0.75rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-recruit-table__text {
    font-size: 1rem;
    padding-left: 1.25rem;
    display: table-cell;
  }
}

.p-recruit-table tr {
  border-bottom: 1px solid #000;
}

.p-info-page .p-detail .p-recruit-table {
  color: #fff;
}

.p-info-page .p-detail .p-recruit-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, .85);
}

.p-info-page .p-detail .p-recruit-table__title {
  background: rgba(255, 255, 255, .22);
  color: #fff;
}

.p-info-page .p-detail .p-recruit-table__text {
  color: #fff;
}

.p-recruit-word__submit-wrapper {
  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;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-word__submit-wrapper {
    margin-top: 6.9375rem;
  }
}

.p-recruit-word__submit {
  background: #f18d00;
  font-family: "Archivo Narrow", sans-serif;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  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;
  border-radius: 9999px;
  border: 1px solid #88c93d;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width: 100%;
  padding-top: 12px;
  padding-top: 0.75rem;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-word__submit {
    font-size: 1.5rem;
    width: 27.375rem;
    height: 6.1875rem;
  }
}

.p-recruit-word__submit:hover {
  background: #fff;
  color: #88c93d;
}

.p-single-news__title {
  font-size: 24px;
  font-size: 1.5rem;
  padding-bottom: 4px;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #000;
  font-weight: 400;
  color: #0B2B4A;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-single-news__title {
    padding-bottom: 0.5rem;
    font-size: 2.5rem;
  }
}

.p-single-news__content {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-single-news__content {
    margin-top: 2rem;
  }
}

.p-single-news__content p {
  line-height: 2;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-single-news__content p {
    font-size: 1rem;
  }
}

.p-tell {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-tell {
    padding-top: 3.5rem;
    padding-bottom: 6.75rem;
  }
}

.p-tell__title-wrapper {
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #000;
}

.p-tell__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4583333333;
  letter-spacing: 0.05em;
}

.p-tell__block {
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  padding-left: 8px;
  padding-left: 0.5rem;
}

.p-tell__text {
  line-height: 1.8125;
  letter-spacing: 0.025em;
  color: #0B2B4A;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-tell__text {
    font-size: 1rem;
  }
}

.p-info-page .p-tell {
  padding-top: 34px;
  padding-top: 2.125rem;
  padding-bottom: 72px;
  padding-bottom: 4.5rem;
  background: #D8F3F8;
}
@media screen and (min-width: 768px) {
  .p-info-page .p-tell {
    padding-top: 2.25rem;
    padding-bottom: 5.25rem;
  }
}

.p-info-page .p-tell__title-wrapper {
  border-bottom-color: #0B2B4A;
}

.p-info-page .p-tell__title {
  color: #0B2B4A;
}

.p-info-page .p-tell__block {
  padding-top: 24px;
  padding-top: 1.5rem;
}

.p-top-about {
  padding-top: 37px;
  padding-top: 2.3125rem;
  padding-bottom: 99px;
  padding-bottom: 6.1875rem;
  overflow-x: clip;
  background: url(../images/top/about_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  color: #0b2b4a;
}

.p-top-about__title {
  text-align: center;
  position: relative;
  z-index: 1;
}

.p-top-about .c-main-title__ja {
  color: #0b2b4a;
}

.p-top-about__content {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-about__content {
    margin-top: 2.625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-about__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4.375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-about__row:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.p-top-about__row + .p-top-about__row {
  margin-top: 38px;
  margin-top: 2.375rem;
}

@media screen and (min-width: 768px) {
  .p-top-about__img {
    max-width: 26.875rem;
    width: 100%;
  }
}

.p-top-about__img img {
  aspect-ratio: 430/232;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.p-top-about__detail {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-top-about__detail {
    margin-top: 0;
    margin-top: initial;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-top-about__detailTitle {
  text-align: center;
  color: #0b2b4a;
  border-top: 1px solid #0b2b4a;
  border-bottom: 1px solid #0b2b4a;
  font-weight: 400;
  line-height: 1.44;
  padding-top: 8px;
  padding-top: 0.5rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-top-about__detailTitle {
    font-size: 1.5625rem;
    letter-spacing: 0.2em;
  }
}

.p-top-about__text {
  color: #0b2b4a;
  line-height: 1.8125;
  letter-spacing: 0.05em;
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-top-about__text {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.p-top-about__btn {
  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: relative;
  z-index: 10;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-top-about__btn {
    margin-top: 4.875rem;
  }
}

.p-top-about .c-main-btn__text {
  color: #0b2b4a;
}

.p-top-about .c-main-btn {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 430px;
  max-width: 26.875rem;
  min-height: 55px;
  min-height: 3.4375rem;
  padding: 10px 17px 10px 31px;
  padding: 0.625rem 1.0625rem 0.625rem 1.9375rem;
  background: rgba(255, 255, 255, .6);
  border: 1px solid #0b2b4a;
  border-radius: 1.875rem;
  gap: 16px;
  gap: 1rem;
  -webkit-transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.p-top-about .c-main-btn::before,
.p-top-about .c-main-btn:hover::before {
  content: none;
}

.p-top-about .c-main-btn:hover {
  background: #0b2b4a;
  border: 1px solid #fff;
  -webkit-transform: none;
          transform: none;
}

.p-top-about .c-main-btn:hover .c-main-btn__text {
  color: #fff;
}

.p-top-about .c-main-btn__text {
  line-height: 1.7777777778;
  letter-spacing: 0.2em;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-about .c-main-btn__text {
    font-size: 1.125rem;
  }
}

.p-top-about .c-main-btn__text span {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-top-about .c-main-btn__text span {
    font-size: 1.375rem;
  }
}

.p-top-about .c-main-btn__arrow {
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 22.608px;
  width: 1.413rem;
  height: 22.608px;
  height: 1.413rem;
  margin-left: auto;
  background: #00b2d0;
  border-radius: 50%;
}

.p-top-about .c-main-btn__arrow svg {
  display: none;
}

.p-top-about .c-main-btn__arrow::before {
  content: none;
}

.p-top-about .c-main-btn__arrow::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: 2px;
  margin-left: 0.125rem;
  border-top: 4.4px solid transparent;
  border-top: 0.275rem solid transparent;
  border-bottom: 4.4px solid transparent;
  border-bottom: 0.275rem solid transparent;
  border-left: 5.9px solid #fff;
  border-left: 0.36875rem solid #fff;
}

.p-top-news {
  background: url(../images/top/news_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  color: #fff;
  position: relative;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .p-top-news {
    padding-top: 2.9375rem;
    padding-bottom: 5.125rem;
  }
}

.p-top-news--home {
  padding-top: 160px;
  padding-top: 10rem;
}
@media screen and (min-width: 768px) {
  .p-top-news--home {
    padding-top: 12.5rem;
  }
}

.p-top-news__title {
  text-align: center;
}

.p-top-news .c-main-title__en,
.p-top-news .c-main-title__ja {
  color: #fff;
}

.p-top-news__content {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-news__content {
    margin-top: 2.5rem;
  }
}

.p-top-news__link {
  display: block;
}

.p-top-news__row {
  border-top: 1px solid #b5b5b5;
  padding: 12px;
  padding: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-top-news__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.p-top-news__date {
  letter-spacing: 0.025em;
  line-height: 1.8125;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-news__date {
    font-size: 1rem;
    width: 11rem;
  }
}

.p-top-news__text {
  letter-spacing: 0.025em;
  line-height: 1.8125;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-news__text {
    font-size: 1rem;
    width: calc(100% - 11rem);
  }
}

.p-top-news__btn-wrapper {
  margin-top: 24px;
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-top-news__btn-wrapper {
    margin-top: 2.6875rem;
  }
}

.p-top-news__btn {
  margin-left: auto;
  margin-top: 24px;
  margin-top: 1.5rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-top-news__btn {
    margin-top: 2.6875rem;
  }
}

.p-top-news .c-main-btn {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 430px;
  max-width: 26.875rem;
  min-height: 55px;
  min-height: 3.4375rem;
  padding: 10px 17px 10px 31px;
  padding: 0.625rem 1.0625rem 0.625rem 1.9375rem;
  background: rgba(255, 255, 255, .6);
  border: 1px solid #0b2b4a;
  border-radius: 1.875rem;
  gap: 16px;
  gap: 1rem;
  -webkit-transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.p-top-news .c-main-btn::before,
.p-top-news .c-main-btn:hover::before {
  content: none;
}

.p-top-news .c-main-btn:hover {
  background: #0b2b4a;
  border: 1px solid #fff;
  -webkit-transform: none;
          transform: none;
}

.p-top-news .c-main-btn__text {
  color: #0B2B4A;
}

.p-top-news .c-main-btn:hover .c-main-btn__text {
  color: #fff;
}

.p-top-news .c-main-btn__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7777777778;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .p-top-news .c-main-btn__text {
    font-size: 1.125rem;
  }
}

.p-top-news .c-main-btn__text span {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-top-news .c-main-btn__text span {
    font-size: 1.375rem;
  }
}

.p-top-news .c-main-btn__arrow {
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 22.608px;
  width: 1.413rem;
  height: 22.608px;
  height: 1.413rem;
  margin-left: auto;
  background: #00b2d0;
  border-radius: 50%;
}

.p-top-news .c-main-btn__arrow svg {
  display: none;
}

.p-top-news .c-main-btn__arrow::before {
  content: none;
}

.p-top-news .c-main-btn__arrow::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: 2px;
  margin-left: 0.125rem;
  border-top: 4.4px solid transparent;
  border-top: 0.275rem solid transparent;
  border-bottom: 4.4px solid transparent;
  border-bottom: 0.275rem solid transparent;
  border-left: 5.9px solid #fff;
  border-left: 0.36875rem solid #fff;
}

.p-top-news__single {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-news__single {
    margin-top: 4rem;
  }
}

.p-top-news::before {
  position: absolute;
  content: "";
  background: url(../images/top/top_news_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100vw;
  height: auto;
  aspect-ratio: 1400/1727;
  top: -320px;
  top: -20rem;
  left: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-top-news::before {
    top: -58.3125rem;
  }
}

.p-top-recruit {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  position: relative;
  overflow-x: clip;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-top-recruit {
    padding-top: 4rem;
    padding-bottom: 5.3125rem;
  }
}

.p-top-recruit__content {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-recruit__content {
    margin-top: 3.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-recruit__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4.375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-recruit__img {
    max-width: 26.875rem;
  }
}

.p-top-recruit__img img {
  aspect-ratio: 430/232;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.p-top-recruit__detail {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-top-recruit__detail {
    margin-top: 0;
    margin-top: initial;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-top-recruit__text {
  line-height: 1.8125;
  letter-spacing: 0.025em;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-recruit__text {
    font-size: 1rem;
  }
}

.p-top-recruit__btn {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-recruit__btn {
    margin-top: 2.6875rem;
  }
}

.p-top-recruit .c-main-btn {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 430px;
  max-width: 26.875rem;
  min-height: 55px;
  min-height: 3.4375rem;
  padding: 10px 17px 10px 31px;
  padding: 0.625rem 1.0625rem 0.625rem 1.9375rem;
  background: rgba(255, 255, 255, .6);
  border: 1px solid #0b2b4a;
  border-radius: 1.875rem;
  gap: 16px;
  gap: 1rem;
  -webkit-transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.p-top-recruit .c-main-btn::before,
.p-top-recruit .c-main-btn:hover::before {
  content: none;
}

.p-top-recruit .c-main-btn:hover {
  background: #0b2b4a;
  border: 1px solid #fff;
  -webkit-transform: none;
          transform: none;
}

.p-top-recruit .c-main-btn__text {
  color: #0b2b4a;
}

.p-top-recruit .c-main-btn:hover .c-main-btn__text {
  color: #fff;
}

.p-top-recruit .c-main-btn__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7777777778;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .p-top-recruit .c-main-btn__text {
    font-size: 1.125rem;
  }
}

.p-top-recruit .c-main-btn__text span {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-top-recruit .c-main-btn__text span {
    font-size: 1.375rem;
  }
}

.p-top-recruit .c-main-btn__arrow {
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 22.608px;
  width: 1.413rem;
  height: 22.608px;
  height: 1.413rem;
  margin-left: auto;
  background: #00b2d0;
  border-radius: 50%;
}

.p-top-recruit .c-main-btn__arrow svg {
  display: none;
}

.p-top-recruit .c-main-btn__arrow::before {
  content: none;
}

.p-top-recruit .c-main-btn__arrow::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: 2px;
  margin-left: 0.125rem;
  border-top: 4.4px solid transparent;
  border-top: 0.275rem solid transparent;
  border-bottom: 4.4px solid transparent;
  border-bottom: 0.275rem solid transparent;
  border-left: 5.9px solid #fff;
  border-left: 0.36875rem solid #fff;
}

.p-top-sdgs {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .p-top-sdgs {
    padding-top: 3.75rem;
    padding-bottom: 8rem;
  }
}

.p-top-sdgs__title {
  text-align: center;
}

.p-top-sdgs__content {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-sdgs__content {
    margin-top: 2.5rem;
  }
}

.p-top-sdgs__topText {
  text-align: center;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  color: #0B2B4A;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-sdgs__topText {
    font-size: 1.125rem;
  }
}

.p-top-sdgs__row {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-sdgs__row {
    margin-top: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 3.5rem;
  }
}

.p-top-sdgs__img {
  max-width: 200px;
  max-width: 12.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-top-sdgs__img {
    margin-left: 0;
    margin-left: initial;
    margin-right: 0;
    margin-right: initial;
    max-width: 20.8125rem;
  }
}

.p-top-sdgs__img img {
  aspect-ratio: 333/413;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.p-top-sdgs__detail {
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-top-sdgs__detail {
    margin-top: 0;
    margin-top: initial;
    max-width: 27.1875rem;
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.p-top-sdgs__text {
  line-height: 1.8125;
  letter-spacing: 0.025em;
  color: #0B2B4A;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-sdgs__text {
    font-size: 1rem;
  }
}

.p-top-sdgs .c-main-btn {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 430px;
  max-width: 26.875rem;
  min-height: 55px;
  min-height: 3.4375rem;
  padding: 10px 17px 10px 31px;
  padding: 0.625rem 1.0625rem 0.625rem 1.9375rem;
  background: rgba(255, 255, 255, .6);
  border: 1px solid #0b2b4a;
  border-radius: 1.875rem;
  gap: 16px;
  gap: 1rem;
  -webkit-transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.p-top-sdgs .c-main-btn::before,
.p-top-sdgs .c-main-btn:hover::before {
  content: none;
}

.p-top-sdgs .c-main-btn:hover {
  background: #0b2b4a;
  border: 1px solid #fff;
  -webkit-transform: none;
          transform: none;
}

.p-top-sdgs .c-main-btn__text {
  color: #0B2B4A;
}

.p-top-sdgs .c-main-btn:hover .c-main-btn__text {
  color: #fff;
}

.p-top-sdgs .c-main-btn__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7777777778;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .p-top-sdgs .c-main-btn__text {
    font-size: 1.125rem;
  }
}

.p-top-sdgs .c-main-btn__text span {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-top-sdgs .c-main-btn__text span {
    font-size: 1.375rem;
  }
}

.p-top-sdgs .c-main-btn__arrow {
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 22.608px;
  width: 1.413rem;
  height: 22.608px;
  height: 1.413rem;
  margin-left: auto;
  background: #00b2d0;
  border-radius: 50%;
}

.p-top-sdgs .c-main-btn__arrow svg {
  display: none;
}

.p-top-sdgs .c-main-btn__arrow::before {
  content: none;
}

.p-top-sdgs .c-main-btn__arrow::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: 2px;
  margin-left: 0.125rem;
  border-top: 4.4px solid transparent;
  border-top: 0.275rem solid transparent;
  border-bottom: 4.4px solid transparent;
  border-bottom: 0.275rem solid transparent;
  border-left: 5.9px solid #fff;
  border-left: 0.36875rem solid #fff;
}

.p-top-service {
  padding-top: 56px;
  padding-top: 3.5rem;
  padding-bottom: 72px;
  padding-bottom: 4.5rem;
  overflow-x: clip;
  background: url(../images/common/service_bg.jpg) no-repeat center center/cover;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-service {
    padding-top: 1.75rem;
    padding-bottom: 6.5625rem;
  }
}

.p-top-service::before {
  position: absolute;
  content: "";
  background: url(../images/common/top_service_top.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 264px;
  width: 16.5rem;
  height: auto;
  aspect-ratio: 264/326;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

.p-top-service::after {
  position: absolute;
  content: "";
  background: url(../images/common/top_service_bottom.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 700px;
  width: 43.75rem;
  height: auto;
  aspect-ratio: 701/864;
  -o-object-fit: cover;
     object-fit: cover;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.p-top-service__inner {
  max-width: 1100px;
  max-width: 68.75rem;
}

.p-top-service__topText {
  color: #fff;
  line-height: 2.0869565217;
  letter-spacing: 0.05em;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-top-service__topText {
    font-size: 1.4375rem;
  }
}

.p-top-service__title {
  margin-top: 24px;
  margin-top: 1.5rem;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-top-service__title {
    margin-top: 2.5rem;
  }
}

.p-top-service__title .c-main-title__ja {
  margin-top: 10px;
  margin-top: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-top-service__title .c-main-title__ja {
    margin-top: 1.25rem;
    font-size: 2.0625rem;
  }
}

.p-top-service__content {
  margin-top: 56px;
  margin-top: 3.5rem;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-top-service__content {
    margin-top: 5.625rem;
  }
}

.p-top-service__item {
  display: grid;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-service__item {
    grid-template-columns: 26.875rem minmax(0, 24.375rem);
    gap: 3.6875rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-top-service__item + .p-top-service__item {
  margin-top: 56px;
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-service__item + .p-top-service__item {
    margin-top: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-service__item--inspection {
    grid-template-columns: minmax(0, 24.375rem) 26.875rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media screen and (min-width: 768px) {
  .p-top-service__item--inspection .p-top-service__img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media screen and (min-width: 768px) {
  .p-top-service__item--inspection .p-top-service__detail {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media screen and (min-width: 768px) {
  .p-top-service__item--design {
    margin-top: 1.25rem;
  }
}

.p-top-service__item--cross {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (min-width: 768px) {
  .p-top-service__item--cross {
    grid-template-columns: minmax(0, 24.375rem) minmax(0, 39.125rem);
    gap: 1.875rem;
    margin-top: 4.9375rem;
  }
}

.p-top-service__img img {
  aspect-ratio: 430/285;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.p-top-service__item--survey .p-top-service__img img {
  -o-object-position: center center;
     object-position: center center;
}

.p-top-service__item--inspection .p-top-service__img img {
  -o-object-position: center center;
     object-position: center center;
}

.p-top-service__item--design .p-top-service__img img {
  -o-object-position: 28% center;
     object-position: 28% center;
}

.p-top-service__heading {
  position: relative;
  padding-left: 22px;
  padding-left: 1.375rem;
}

.p-top-service__heading::before {
  content: "";
  position: absolute;
  top: 2px;
  top: 0.125rem;
  left: 0;
  width: 10px;
  width: 0.625rem;
  height: 73px;
  height: 4.5625rem;
  border-radius: 0.3125rem;
  background: -webkit-gradient(linear, left bottom, left top, from(#00b2d0), to(#96edf8));
  background: linear-gradient(0deg, #00b2d0 0%, #96edf8 100%);
}

.p-top-service__subTitle {
  color: #fff;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.36em;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-service__subTitle {
    font-size: 1.875rem;
  }
}

.p-top-service__en {
  margin-top: 2px;
  margin-top: 0.125rem;
  color: rgba(255, 255, 255, .55);
  font-family: "Archivo Narrow", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.025em;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-top-service__en {
    font-size: 1.5rem;
  }
}

.p-top-service__text {
  margin-top: 24px;
  margin-top: 1.5rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.8125;
  letter-spacing: 0.025em;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-service__text {
    font-size: 1rem;
  }
}

.p-top-service__btn {
  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;
  gap: 18px;
  gap: 1.125rem;
  width: min(303px, 100%);
  width: min(18.9375rem, 100%);
  min-height: 37px;
  min-height: 2.3125rem;
  margin-top: 24px;
  margin-top: 1.5rem;
  padding: 7px 12px 7px 24px;
  padding: 0.4375rem 0.75rem 0.4375rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 1.875rem;
  background: rgba(255, 255, 255, .6);
  color: #0b2b4a;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.025em;
  font-size: 15px;
  font-size: 0.9375rem;
  -webkit-transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-top-service__btn {
    font-size: 1rem;
  }
}

.p-top-service__btn:hover {
  background: #0b2b4a;
  border-color: #fff;
  color: #fff;
}

.p-top-service__btn-label {
  font-size: 19px;
  font-size: 1.1875rem;
}

.p-top-service__btn::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
  background: url(../images/top/top_service_icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.p-top-service__btn:hover::after {
  -webkit-transform: translateX(0.25rem);
          transform: translateX(0.25rem);
}

.p-top-service__thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-top-service__thumbs {
    gap: 1.125rem;
  }
}

.p-top-service__thumb {
  min-width: 0;
}

.p-top-service__thumb img {
  aspect-ratio: 196/286;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.p-top-service__thumb:nth-child(1) img {
  -o-object-position: 48% center;
     object-position: 48% center;
}

.p-top-service__thumb:nth-child(2) img {
  -o-object-position: center center;
     object-position: center center;
}

.p-top-service__thumb:nth-child(3) img {
  -o-object-position: 19% center;
     object-position: 19% center;
}

.p-top-service__img {
  position: relative;
  z-index: 3;
}

.p-top-service__img--survey,
.p-top-service__thumbs--cross {
  position: relative;
}

.p-top-service__img--survey--1::before,
.p-top-service__img--survey--3::before {
  position: absolute;
  content: "";
  background: url(../images/top/survey_back1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 190px;
  width: 11.875rem;
  height: auto;
  aspect-ratio: 437/349;
  top: -24px;
  top: -1.5rem;
  left: -80px;
  left: -5rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-top-service__img--survey--1::before,
  .p-top-service__img--survey--3::before {
    width: 27.25rem;
  }
}

.p-top-service__img--survey--2::before,
.p-top-service__thumbs--cross::before {
  position: absolute;
  content: "";
  background: url(../images/top/survey_back1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 190px;
  width: 11.875rem;
  height: auto;
  aspect-ratio: 437/349;
  top: -24px;
  top: -1.5rem;
  right: -80px;
  right: -5rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-top-service__img--survey--2::before,
  .p-top-service__thumbs--cross::before {
    width: 27.25rem;
  }
}

.p-totop {
  position: fixed;
  right: 5px;
  right: 0.3125rem;
  bottom: 40px;
  bottom: 2.5rem;
  z-index: 100;
  display: block;
  width: 80px;
  width: 5rem;
  height: 80px;
  height: 5rem;
  line-height: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(0.75rem);
          transform: translateY(0.75rem);
  -webkit-transition: opacity 0.35s ease, visibility 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, visibility 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease, -webkit-transform 0.35s ease;
}
@media screen and (min-width: 768px) {
  .p-totop {
    display: none !important;
  }
}

.p-totop.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p-totop img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-main-btn {
  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;
  width: 100%;
  background: #1b4431;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  padding-top: 12px;
  padding-top: 0.75rem;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  gap: 12px;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-main-btn {
    max-width: 26.875rem;
    gap: 1.875rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.c-main-btn::before {
  position: absolute;
  content: "";
  background: #04190f;
  width: 100%;
  height: 5px;
  height: 0.3125rem;
  bottom: -5px;
  bottom: -0.3125rem;
  left: 0;
  right: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-main-btn:hover {
  background: #fff;
  border-bottom: 0;
  border-bottom: initial;
  -webkit-transform: translateY(0.3125rem);
          transform: translateY(0.3125rem);
}

.c-main-btn:hover::before {
  bottom: 0;
  z-index: -1;
  background: #fff;
}

.c-main-btn__text {
  color: #fff;
  font-weight: 400;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .c-main-btn__text {
    letter-spacing: 0.2em;
    font-size: 1.125rem;
  }
}

.c-main-btn:hover .c-main-btn__text {
  color: #0B2B4A;
}

.c-main-btn__text span {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-main-btn__text span {
    font-size: 1.375rem;
  }
}

.c-main-btn__arrow {
  position: relative;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.c-main-btn:hover .c-main-btn__arrow {
  -webkit-transform: translateX(0.25rem);
          transform: translateX(0.25rem);
}

.c-main-btn__arrow path,
.c-main-btn__arrow line {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-main-btn:hover .c-main-btn__arrow line {
  stroke: #000;
}

.c-main-btn:hover .c-main-btn__arrow path {
  fill: #000;
}

.c-main-btn__arrow::before {
  position: absolute;
  content: "";
  background: transparent;
  width: 21px;
  width: 1.3125rem;
  height: 21px;
  height: 1.3125rem;
  top: 65%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 9999px;
  border: 1px solid #fff;
  right: -7px;
  right: -0.4375rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.c-main-btn:hover .c-main-btn__arrow::before {
  width: 26px;
  width: 1.625rem;
  height: 26px;
  height: 1.625rem;
  right: -10px;
  right: -0.625rem;
  border: 1px solid #000;
}

.c-main-btn__text-sub {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  margin-top: 8px;
  margin-top: 0.5rem;
  display: inline-block;
}

.c-main-text {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #0B2B4A;
}
@media screen and (min-width: 768px) {
  .c-main-text {
    font-size: 1.125rem;
    line-height: 1.75;
  }
}

.c-main-title__en {
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.04em;
  opacity: 0.8;
  font-size: 70px;
  font-size: 4.375rem;
  position: relative;
  text-transform: uppercase;
  font-family: "Archivo Narrow", sans-serif;
}
@media screen and (min-width: 768px) {
  .c-main-title__en {
    font-size: 9.25rem;
  }
}

.c-main-title__en::before {
  position: absolute;
  left: 0;
  content: "";
  width: 250px;
  width: 15.625rem;
  height: 8px;
  height: 0.5rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #0b2b4a), color-stop(33.333%, #f18d00), color-stop(66.666%, #00b2d0));
  background: linear-gradient(90deg, #0b2b4a 0 33.333%, #f18d00 33.333% 66.666%, #00b2d0 66.666% 100%);
  bottom: 20px;
  bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-main-title__en::before {
    width: 46.875rem;
    bottom: 3.5rem;
  }
}

.c-main-title__ja {
  color: #0B2B4A;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.4583333333;
  font-size: 16px;
  font-size: 1rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .c-main-title__ja {
    text-align: center;
    font-size: 1.5rem;
  }
}

.c-main-title__en--white {
  color: #fff;
}

.c-main-title__ja--white {
  color: #fff;
}

.c-main-title__en--small {
  font-size: 32px;
  font-size: 2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-main-title__en--small {
    font-size: 3.875rem;
  }
}

.c-main-title__en--small::before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -4px;
  bottom: -0.25rem;
  content: "";
  height: 8px;
  height: 0.5rem;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #0b2b4a), color-stop(33.333%, #f18d00), color-stop(66.666%, #00b2d0));
  background: linear-gradient(90deg, #0b2b4a 0 33.333%, #f18d00 33.333% 66.666%, #00b2d0 66.666% 100%);
  width: 250px;
  width: 15.625rem;
}
@media screen and (min-width: 768px) {
  .c-main-title__en--small::before {
    width: 46.875rem;
  }
}

.mt24 {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.c-main-title__main {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-main-title__main {
    max-width: 46.875rem;
  }
}

.p-top-news .c-main-title__main,
.p-top-sdgs .c-main-title__main {
  margin-left: auto;
  margin-right: auto;
}

.c-page-title {
  color: #0b2b4a;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4482758621;
  text-align: center;
  display: inline-block;
  width: 100%;
  max-width: 750px;
  max-width: 46.875rem;
  position: relative;
  font-size: 22px;
  font-size: 1.375rem;
  padding-bottom: 14px;
  padding-bottom: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-page-title {
    padding-bottom: 1rem;
    font-size: 1.8125rem;
  }
}

.c-page-title::before {
  position: absolute;
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(#0b2b4a), color-stop(33.333%, #0b2b4a), color-stop(33.333%, #f18d00), color-stop(66.666%, #f18d00), color-stop(66.666%, #00b2d0), to(#00b2d0));
  background: linear-gradient(90deg, #0b2b4a 0%, #0b2b4a 33.333%, #f18d00 33.333%, #f18d00 66.666%, #00b2d0 66.666%, #00b2d0 100%);
  width: 100%;
  height: 6px;
  height: 0.375rem;
  bottom: 0;
  left: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .c-page-title::before {
    height: 0.5rem;
  }
}
/*# sourceMappingURL=styles.css.map */
