@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&display=swap");
:root {
  --black: #000;
  --white: #fff;
  --blue: #324687;
  --gray1: #F5F5F5;
  --gray2: #9E9E9E;
  --pink: #FA5091;
  --easing: cubic-bezier(0.25, 0.78, 0.33, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  min-inline-size: 0;
}

html,
body,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

article,
header,
footer,
main,
aside,
figure,
figcaption,
nav,
section {
  display: block;
}

body {
  color: var(--black);
  margin: 0;
  padding: 0;
  line-height: 1;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  word-break: break-all;
  overflow-wrap: break-word;
  line-break: strict;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
}
body.is-open {
  position: fixed;
  width: 100vw;
  height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

p {
  margin: 0;
}

strong {
  font-weight: bold;
}

hr {
  border: solid 1px #E6E6E6;
  margin: 0 0 20px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border: 0;
  outline: 0;
  transition: all 0.3s ease;
}

figure {
  padding: 0;
  margin: 0;
}

ol,
ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: "";
}

input,
textarea,
button {
  margin: 0;
  padding: 0;
  border-radius: 0;
  outline: 0;
  background: none;
}

button {
  border: 0;
  color: var(--black);
}

table {
  border-collapse: collapse;
}

main {
  overflow: hidden;
}

a {
  color: var(--black);
  text-decoration: none;
  transition: all 0.3s ease;
}
a img {
  backface-visibility: hidden;
  overflow: hidden;
}
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

.f-wrap {
  max-width: 1080px;
  padding: 0 40px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .f-wrap {
    padding: 0 20px;
  }
}

body,
input,
select,
textarea,
button {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.en {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}
.l-header::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/common/bg_header.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  transition: opacity 400ms var(--easing), transform 400ms var(--easing);
  opacity: 0;
  transform: translateY(-100%);
}
@media screen and (max-width: 767px) {
  .l-header::before {
    background-image: url(../img/common/bg_header_sp.svg);
  }
}
.l-header.is-scroll::before {
  opacity: 1;
  transform: translateY(0);
}
.l-header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 2.2vw 33px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .l-header__content {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__content {
    padding: 16px 5vw 24px;
  }
}
.l-header__logo-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .l-header__logo-item {
    gap: 12px;
  }
}
.l-header__logo-icon {
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: 0;
  background-position-y: 0;
  width: 160px;
  height: 30px;
  background-image: url(../img/common/logo.svg);
}
@media screen and (max-width: 767px) {
  .l-header__logo-icon {
    width: 128px;
    height: 24px;
  }
}
.is-open .l-header__logo-icon {
  background-image: url(../img/common/logo_white.svg);
}

.l-header__logo-text {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  color: var(--blue);
  gap: 16px;
}
.l-header__logo-text a {
  color: var(--blue);
}
@media screen and (max-width: 767px) {
  .l-header__logo-text {
    font-size: 14px;
    font-size: 0.875rem;
    gap: 12px;
  }
}
.l-header__logo-text::before {
  content: "";
  width: 1px;
  height: 20px;
  background-color: var(--blue);
  display: block;
}
.is-open .l-header__logo-text::before {
  background-color: var(--white);
}

.is-open .l-header__logo-text {
  color: var(--white);
}
.is-open .l-header__logo-text a {
  color: var(--white);
}

.l-header__nav {
  position: relative;
  top: 2px;
}
.l-header__nav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .l-header__nav-list {
    gap: 20px;
  }
}
.l-header__nav-list li:last-child a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  background-color: var(--blue);
  border-radius: 4px;
  width: 98px;
  height: 33px;
}
.l-header__nav-list a {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--blue);
}
@media screen and (max-width: 1200px) {
  .l-header__nav-list a {
    font-size: 16px;
    font-size: 1rem;
  }
}

.l-header-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../img/common/bg_drawer.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
  padding: 76px 5vw;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: opacity 400ms var(--easing), transform 400ms var(--easing);
}
.l-header-drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.l-header-drawer__list {
  background-color: var(--blue);
  border-radius: 10px;
}
.l-header-drawer__list li:not(:last-child) {
  border-bottom: 1px solid #4F62A3;
}
.l-header-drawer__list a {
  display: block;
  color: var(--white);
  font-weight: 700;
  padding: 14px 16px;
  position: relative;
}
.l-header-drawer__list a::after {
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: 0;
  background-position-y: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 20px;
  height: 20px;
  right: 16px;
  background-image: url(../img/common/arrow_down_circle-white.svg);
}
.l-header-drawer__list-en {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  text-transform: uppercase;
}
.l-header-drawer__list-ja {
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1.18;
  margin-top: 0.25em;
}

.l-footer {
  background-color: var(--blue);
  position: relative;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 22px 5vw;
  }
}
.l-footer__copyright {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.06em;
  color: var(--white);
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    font-size: 10px;
    font-size: 0.625rem;
    text-align: left;
  }
}
.l-footer__pagetop {
  cursor: pointer;
  position: fixed;
  bottom: 16px;
  right: 13px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
  z-index: 1;
}
.l-footer__pagetop.is-active {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .l-footer__pagetop {
    bottom: 12px;
    right: 10px;
  }
}

@media screen and (max-width: 767px) {
  input,
  select,
  textarea {
    font-size: 16px;
  }
}
input:focus,
select:focus,
textarea:focus {
  outline: 0;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=search],
textarea {
  appearance: none;
}

input[type=number] {
  appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  appearance: none;
  margin: 0;
}

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

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

:where(:any-link, button, [type=button], [type=reset], [type=submit], label[for], select, summary, [role=tab], [role=button]) {
  cursor: pointer;
}

.c-button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--white);
  width: 360px;
  max-width: 100%;
  height: 90px;
  font-weight: 900;
  background-color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
}
.c-button--gray {
  background-color: #666;
  border: 1px solid #666;
}
.c-button span {
  position: relative;
  z-index: 1;
}
.c-button::before {
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: 0;
  background-position-y: 0;
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background-image: url(../img/common/arrow_circle-white.svg);
  position: absolute;
  top: calc(50% + 1px);
  right: 16px;
  translate: 0 -50%;
  z-index: 1;
}
.c-button--reverse::before {
  right: auto;
  left: 16px;
  transform: scale(-1, 1);
}
.c-button::after {
  content: "";
  background-color: var(--white);
  position: absolute;
  top: 0;
  left: -5%;
  display: block;
  width: 105%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: right bottom;
  transition: transform 400ms var(--easing);
  z-index: 0;
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
}
@media (any-hover: hover) {
  .c-button:hover {
    color: var(--blue);
    opacity: 1;
  }
  .c-button:hover::before {
    background-image: url(../img/common/arrow_circle-blue.svg);
  }
  .c-button:hover::after {
    transform: scale(1, 1);
  }
}

.c-drawer {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  width: 62px;
  height: 56px;
  background-image: url(../img/common/bg_drawer_button.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.c-drawer__line {
  display: inline-block;
  width: 27px;
  height: 3px;
  background-color: var(--white);
  position: relative;
  top: -7px;
  left: 5px;
}
.is-open .c-drawer__line {
  background-color: var(--blue);
}

.c-drawer__line::before, .c-drawer__line::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  right: 0;
  background-color: var(--white);
  transition: all 400ms var(--easing);
}
.is-open .c-drawer__line::before, .is-open .c-drawer__line::after {
  background-color: var(--blue);
}

.c-drawer__line::before {
  top: -9px;
}
.c-drawer__line::after {
  top: 9px;
}
.c-drawer[aria-expanded=true] {
  background-image: url(../img/common/bg_drawer_button-white.svg);
}
.c-drawer[aria-expanded=true] .c-drawer__line {
  background-color: transparent;
}
.c-drawer[aria-expanded=true] .c-drawer__line::before, .c-drawer[aria-expanded=true] .c-drawer__line::after {
  top: -2px;
}
.c-drawer[aria-expanded=true] .c-drawer__line::before {
  transform: rotate(45deg);
}
.c-drawer[aria-expanded=true] .c-drawer__line::after {
  transform: rotate(-45deg);
}

.c-mv {
  position: relative;
  padding: 100px 0 12px 0;
}
.c-mv:has(.c-mv-content) {
  height: 400px;
}
@media screen and (max-width: 767px) {
  .c-mv:has(.c-mv-content) {
    height: 267px;
    padding: 10px 0;
  }
}
.c-mv:has(.c-mv-content)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background: url(../img/common/bg_mv.png) 0 0/100% 100% no-repeat;
}
@media screen and (max-width: 767px) {
  .c-mv:has(.c-mv-content)::before {
    width: 100%;
    height: 100%;
    background: url(../img/common/bg_mv_sp.png) 0 0/100% 100% no-repeat;
  }
}
.c-mv__bread {
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .c-mv__bread {
    padding: 0 10px;
  }
}
.c-mv__bread ul {
  list-style: none;
  display: flex;
  justify-content: start;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .c-mv__bread ul {
    white-space: nowrap;
    overflow-x: scroll;
  }
}
.c-mv__bread ul li {
  position: relative;
  font-size: 12px;
  font-size: 0.75rem;
  color: var(--black);
  padding: 0 0 0 25px;
}
@media screen and (max-width: 767px) {
  .c-mv__bread ul li {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.c-mv__bread ul li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 10px;
  display: block;
  width: 5px;
  height: 8px;
  background: url(../img/common/icn_bread.svg) 0 0/100% auto no-repeat;
}
.c-mv__bread ul li:first-child {
  padding: 0;
}
.c-mv__bread ul li:first-child::before {
  content: none;
}
.c-mv__bread ul li a {
  color: var(--black);
  text-decoration: underline;
}
@media (any-hover: hover) {
  .c-mv__bread ul li a:hover {
    text-decoration: none;
  }
}
.c-mv-content {
  position: absolute;
  top: calc(50% + 1rem);
  left: 50%;
  width: 100%;
  max-width: 1080px;
  padding: 0 40px;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .c-mv-content {
    padding: 0 20px;
  }
}
.c-mv-content__pre {
  font-size: 18px;
  font-size: 1.125rem;
  color: var(--black);
  font-weight: 700;
  margin: 8px 0 0;
}
@media screen and (max-width: 767px) {
  .c-mv-content__pre {
    font-size: 16px;
    font-size: 1rem;
  }
}
.c-mv-content__ttl {
  position: relative;
  font-size: 70px;
  font-size: 4.375rem;
  color: var(--black);
  font-weight: 700;
  line-height: 1;
  padding: 10px 0 0;
}
.c-mv-content__ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 3px;
  background: url(../img/common/ttl_pre.png) 0 0/100% auto no-repeat;
}
@media screen and (max-width: 767px) {
  .c-mv-content__ttl {
    font-size: 36px;
    font-size: 2.25rem;
  }
}

#tri-svg .triangle {
  fill: #fff;
  stroke: #fff;
  stroke-width: 2px;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.p-top-fv {
  position: relative;
  margin-top: 68px;
}
.p-top-fv__ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
}
.p-top-fv__ttl.is-add {
  animation: bounce 0.5s 0.3s forwards;
}
@keyframes bounce {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
  }
  70% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@media screen and (max-width: 767px) {
  .p-top-fv__ttl {
    width: 88vw;
  }
}
.p-top-fv__img {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-fv__img {
    width: 160vw;
    margin: 0 -30vw;
  }
}
.p-top-fv__img img {
  width: 100%;
}
.p-top-fv__img #tri-svg {
  position: absolute;
  top: 0;
  left: 0;
}

.p-top-heading {
  text-align: center;
  position: relative;
}
.p-top-heading span {
  display: block;
}
.p-top-heading__en {
  font-size: 70px;
  font-size: 4.375rem;
  font-weight: 700;
  line-height: 1.17;
  text-transform: uppercase;
}
@media screen and (max-width: 1120px) {
  .p-top-heading__en {
    font-size: 50px;
    font-size: 3.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-heading__en {
    font-size: 46px;
    font-size: 2.875rem;
  }
}
.p-top-heading__ja {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.22;
}
@media screen and (max-width: 767px) {
  .p-top-heading__ja {
    font-size: 16px;
    font-size: 1rem;
    margin-top: 2px;
  }
}
.p-top-heading::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  translate: -50%;
  width: 64px;
  height: 3px;
  background: linear-gradient(to right, #4898EB 0%, #4898EB 25%, #FC7F43 25%, #FC7F43 50%, #4D999F 50%, #4D999F 75%, #E84F96 75%, #E84F96 100%);
}
@media screen and (max-width: 767px) {
  .p-top-heading::before {
    width: 48px;
    height: 4px;
    top: -8px;
  }
}

.p-top-heading-sub {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.36;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: solid 1px var(--blue);
}
@media screen and (max-width: 1120px) {
  .p-top-heading-sub {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-heading-sub {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

.p-top-kv {
  padding-top: 68px;
}
@media screen and (max-width: 767px) {
  .p-top-kv {
    padding-top: 54px;
  }
}
.p-top-kv__svg {
  width: 100%;
  opacity: 0;
  transition: opacity 400ms var(--easing);
}
.p-top-kv__svg.is-loaded {
  opacity: 1;
}
.p-top-kv__svg svg {
  width: 100%;
  height: auto;
  display: block;
}
.p-top-kv__text {
  width: 55.8vw;
  position: absolute;
  top: 15vw;
  left: 50%;
  translate: -50%;
}
@media screen and (max-width: 1120px) {
  .p-top-kv__text {
    top: 17vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-kv__text {
    width: 90%;
    top: 142px;
  }
}
@media screen and (max-width: 480px) {
  .p-top-kv__text {
    top: 32vw;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .p-top-kv__text {
    top: 26vw;
  }
}
.p-top-kv__text img {
  width: 100%;
}

.p-top-intro {
  padding: 97px 0 calc(148px + 3vw);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-intro {
    padding: 80px 0 calc(172px + 1.5vw);
  }
}
.p-top-intro__inner {
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (max-width: 1120px) {
  .p-top-intro__inner {
    max-width: 64%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-intro__inner {
    max-width: 90%;
  }
}
.p-top-intro__heading {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1120px) {
  .p-top-intro__heading {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-intro__heading {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.p-top-intro__heading::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin: 16px auto 0;
  background: linear-gradient(to right, #4898EB 0%, #4898EB 25%, #FC7F43 25%, #FC7F43 50%, #4D999F 50%, #4D999F 75%, #E84F96 75%, #E84F96 100%);
}
@media screen and (max-width: 767px) {
  .p-top-intro__heading::after {
    width: 48px;
    height: 4px;
  }
}
.p-top-intro__content {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-top-intro__content {
    margin-top: 24px;
  }
}
.p-top-intro__detail {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2.06;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-intro__detail {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 2;
    letter-spacing: 0.02em;
  }
}
.p-top-intro__detail + .p-top-intro__detail {
  margin-top: 1em;
}
.p-top-intro__illust {
  position: absolute;
  z-index: -1;
}
.p-top-intro__illust--01 {
  top: 40px;
  left: -72px;
}
@media screen and (max-width: 1120px) {
  .p-top-intro__illust--01 {
    width: 18.8vw;
    left: -5vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-intro__illust--01 {
    width: 64px;
    top: 12px;
    left: -8px;
  }
}
.p-top-intro__illust--02 {
  bottom: 300px;
  left: 102px;
}
@media screen and (max-width: 1120px) {
  .p-top-intro__illust--02 {
    width: 6.9vw;
    left: 5vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-intro__illust--02 {
    width: 35px;
    top: 8px;
    left: auto;
    right: 54px;
    transform: scale(-1, 1);
  }
}
.p-top-intro__illust--03 {
  bottom: 105px;
  left: -50px;
}
@media screen and (max-width: 1120px) {
  .p-top-intro__illust--03 {
    width: 13.8vw;
    left: -3.6vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-intro__illust--03 {
    width: 60px;
    top: 32px;
    left: auto;
    right: -6px;
  }
}
.p-top-intro__illust--04 {
  top: 20px;
  right: 17px;
}
@media screen and (max-width: 1120px) {
  .p-top-intro__illust--04 {
    width: 15.2vw;
    right: 1.2vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-intro__illust--04 {
    width: 96px;
    top: auto;
    bottom: 67px;
    left: -20px;
    right: auto;
  }
}
.p-top-intro__illust--05 {
  top: 292px;
  right: 22px;
}
@media screen and (max-width: 1120px) {
  .p-top-intro__illust--05 {
    width: 8.2vw;
    right: 1.6vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-intro__illust--05 {
    width: 57px;
    top: auto;
    bottom: 46px;
    left: 96px;
    right: auto;
  }
}
.p-top-intro__illust--06 {
  bottom: 180px;
  right: 33px;
}
@media screen and (max-width: 1120px) {
  .p-top-intro__illust--06 {
    width: 17.6vw;
    right: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-intro__illust--06 {
    width: 115px;
    bottom: 58px;
    right: -6px;
  }
}

.p-top-about {
  padding: 218px 0 0;
  position: relative;
  background: linear-gradient(180deg, rgba(247, 247, 247, 0) 0%, #F7F7F7 52.4%);
}
@media screen and (max-width: 767px) {
  .p-top-about {
    padding: 101px 0 18px;
  }
}
.p-top-about::before, .p-top-about::after {
  content: "";
  width: 100%;
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
}
.p-top-about::before {
  height: 51.9vw;
  background-image: url(../img/top/bg_about_top.svg);
  background-position: top center;
  top: -3vw;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-about::before {
    height: 94.1vw;
    background-image: url(../img/top/bg_about_top_sp.svg);
    top: -1.5vw;
  }
}
.p-top-about::after {
  background-image: url(../img/top/bg_about_bottom.svg);
  background-size: cover;
  background-position: bottom center;
  bottom: -15.7vw;
  height: 20.8vw;
}
@media screen and (max-width: 767px) {
  .p-top-about::after {
    height: 37.8vw;
    bottom: -22.8vw;
  }
}
.p-top-about__inner {
  position: relative;
  z-index: 1;
}
.p-top-about__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 102px;
  margin-top: 70px;
  margin-inline: auto;
  max-width: 1035px;
  position: relative;
  left: -20px;
}
@media screen and (max-width: 1120px) {
  .p-top-about__content {
    gap: 40px;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__content {
    margin-top: 32px;
    flex-direction: column;
  }
}
.p-top-about__img {
  flex-basis: 37.6vw;
}
@media screen and (max-width: 1120px) {
  .p-top-about__img {
    flex-basis: 42vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__img {
    width: 55.7vw;
  }
}
.p-top-about__img img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-about__heading {
    text-align: center;
  }
}
.p-top-about__detail {
  flex-basis: 30.8vw;
}
@media screen and (max-width: 1120px) {
  .p-top-about__detail {
    flex-basis: 38vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__detail {
    width: 90%;
  }
}
.p-top-about__description {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2.06;
  margin-top: 22px;
}
@media screen and (max-width: 767px) {
  .p-top-about__description {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 2;
    margin-top: 16px;
  }
}

.p-top-message {
  padding: calc(80px + 15.7vw) 0 152px;
}
@media screen and (max-width: 767px) {
  .p-top-message {
    padding: calc(54px + 22.8vw) 0 80px;
  }
}
.p-top-message__inner {
  max-width: 1119px;
  margin: 0 auto;
}
.p-top-message__content {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 96px;
  position: relative;
  right: -60px;
}
@media screen and (max-width: 1120px) {
  .p-top-message__content {
    gap: 40px;
    right: 0;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .p-top-message__content {
    flex-direction: column-reverse;
    gap: 24px;
    margin-top: 10px;
  }
}
.p-top-message__main {
  flex-basis: 33.6vw;
}
@media screen and (max-width: 1120px) {
  .p-top-message__main {
    flex-basis: 44vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-message__main {
    width: 90%;
  }
}
.p-top-message__main .p-top-heading {
  text-align: left;
}
.p-top-message__main .p-top-heading::before {
  left: 0;
  translate: none;
}
.p-top-message__img {
  flex-basis: 41.4vw;
}
@media screen and (max-width: 767px) {
  .p-top-message__img {
    width: 80vw;
  }
}
.p-top-message__img img {
  width: 100%;
}
.p-top-message__description {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  margin-top: 54px;
}
@media screen and (max-width: 767px) {
  .p-top-message__description {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 2;
    margin-top: 0;
  }
}

.p-top-number {
  padding: 150px 0 calc(186px + 4.7vw);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-number {
    padding: 92px 0 calc(112px + 8.5vw);
  }
}
.p-top-number::before, .p-top-number::after {
  content: "";
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
}
.p-top-number::before {
  width: 100%;
  height: 50%;
  bottom: 0;
  z-index: -2;
  background-color: #EFEFEF;
}
.p-top-number::after {
  height: 90.4vw;
  background-image: url(../img/top/bg_number.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-number::after {
    height: 162vw;
    background-image: url(../img/top/bg_number_sp.svg);
  }
}
.p-top-number__heading {
  text-align: center;
}
.p-top-number__content {
  margin-top: 74px;
}
@media screen and (max-width: 767px) {
  .p-top-number__content {
    margin-top: 42px;
  }
}
.p-top-number__img {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 1120px) {
  .p-top-number__img {
    width: 82%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-number__img {
    width: 90%;
  }
}
.p-top-number__img img {
  width: 100%;
}
.p-top-number__img .number {
  position: absolute;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  color: var(--blue);
  font-size: 84px;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 1120px) {
  .p-top-number__img .number {
    font-size: 7vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-number__img .number {
    font-size: 13vw;
  }
}
.p-top-number__img .number span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 38px;
  font-weight: 900;
}
@media screen and (max-width: 1120px) {
  .p-top-number__img .number span {
    font-size: 3vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-number__img .number span {
    font-size: 6vw;
  }
}
.p-top-number__img .people {
  top: 124px;
  left: 392px;
}
@media screen and (max-width: 1120px) {
  .p-top-number__img .people {
    top: 10vw;
    left: 31.4vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-number__img .people {
    top: 17.5vw;
    left: 55.4vw;
  }
}
.p-top-number__img .branch {
  top: 404px;
  right: 63px;
}
@media screen and (max-width: 1120px) {
  .p-top-number__img .branch {
    top: 32.5vw;
    right: 5vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-number__img .branch {
    top: 79.5vw;
    right: 10vw;
  }
}
.p-top-number__img .branch span {
  margin-left: 0.3em;
}
.p-top-number__img .notes {
  position: absolute;
  top: 680px;
  left: 78px;
  font-weight: 700;
  color: var(--blue);
  font-size: 15px;
}
@media screen and (max-width: 1120px) {
  .p-top-number__img .notes {
    font-size: 1.2vw;
    top: 54.7vw;
    left: 6vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-number__img .notes {
    top: 117vw;
    font-size: 2.7vw;
  }
}
.p-top-number__img .sales {
  top: 701px;
  left: 53px;
  letter-spacing: 0;
}
@media screen and (max-width: 1120px) {
  .p-top-number__img .sales {
    top: 56.4vw;
    left: 4.1vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-number__img .sales {
    top: 121vw;
    left: 7.1vw;
  }
}
.p-top-number__img .year {
  top: 683px;
  right: 256px;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 1120px) {
  .p-top-number__img .year {
    top: 55.1vw;
    right: 20.7vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-number__img .year {
    top: 118.5vw;
    right: 9.5vw;
  }
}
.p-top-number__img .year span {
  margin-left: 0.1em;
}
.p-top-number__img .age {
  bottom: 73px;
  left: 82px;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 1120px) {
  .p-top-number__img .age {
    bottom: 5.8vw;
    left: 6.3vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-number__img .age {
    bottom: 37.5vw;
    left: 9.2vw;
  }
}
.p-top-number__img .age span {
  margin-left: 0.1em;
}
.p-top-number__img .ratio {
  bottom: 56px;
  left: 436px;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 1120px) {
  .p-top-number__img .ratio {
    bottom: 4.3vw;
    left: 35vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-number__img .ratio {
    bottom: 35.3vw;
    left: 57.5vw;
  }
}
.p-top-number__img .day {
  bottom: 72px;
  right: 44px;
}
@media screen and (max-width: 1120px) {
  .p-top-number__img .day {
    bottom: 5.8vw;
    right: 3.7vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-number__img .day {
    bottom: 8.8vw;
    right: 10.7vw;
  }
}
.p-top-number__img .day span {
  margin-left: 0.3em;
  letter-spacing: 0.02em;
}

.p-top-works {
  padding: 114px 4.4vw calc(168px + 6vw);
  background: linear-gradient(360deg, #0073AA 0%, #324687 100%);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-works {
    padding: 68px 5vw calc(112px + 8.4vw);
  }
}
.p-top-works::before {
  content: "";
  width: 100%;
  height: 4.7vw;
  display: block;
  position: absolute;
  top: -4.7vw;
  left: 0;
  background-image: url(../img/top/bg_works_top.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
@media screen and (max-width: 767px) {
  .p-top-works::before {
    height: 8.5vw;
    top: -8.5vw;
    background-image: url(../img/top/bg_works_top_sp.svg);
  }
}
.p-top-works__inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.p-top-works__heading .p-top-heading {
  color: var(--white);
}
.p-top-works__intro {
  margin-top: 88px;
  color: var(--white);
}
@media screen and (max-width: 767px) {
  .p-top-works__intro {
    margin-top: 46px;
  }
}
.p-top-works__intro-head {
  text-align: center;
}
.p-top-works__intro-heading {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.18;
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: solid 1px #2071C3;
}
@media screen and (max-width: 767px) {
  .p-top-works__intro-heading {
    font-size: 26px;
    font-size: 1.625rem;
    padding-bottom: 4px;
  }
}
.p-top-works__intro-description {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .p-top-works__intro-description {
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: 20px;
  }
}
.p-top-works__content {
  margin-top: 65px;
}
@media screen and (max-width: 767px) {
  .p-top-works__content {
    margin-top: 40px;
  }
}
.p-top-works__list {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  row-gap: 20px;
  margin: 0 -10px;
}
@media screen and (max-width: 767px) {
  .p-top-works__list {
    flex-direction: column;
    margin: 0;
    row-gap: 6px;
  }
}
.p-top-works__list li {
  flex-basis: calc(33.3333333333% - 20px);
  margin: 0 10px;
  background-color: #083679;
  aspect-ratio: 0.8421052632;
  padding: 54px 40px 40px;
  overflow: hidden;
}
@media screen and (max-width: 1340px) {
  .p-top-works__list li {
    padding: 3.8vw 40px 40px;
    aspect-ratio: 0.7407407407;
  }
}
@media screen and (max-width: 1120px) {
  .p-top-works__list li {
    flex-basis: calc(50% - 20px);
    aspect-ratio: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .p-top-works__list li {
    flex-basis: 100%;
    aspect-ratio: auto;
    margin: 0;
    padding: 24px 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-works__list-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
  }
}
.p-top-works__list-icon {
  width: 12.4vw;
  max-width: 169px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-top-works__list-icon {
    width: 28.8vw;
    max-width: initial;
    flex-shrink: 0;
  }
}
.p-top-works__list-icon img {
  width: 100%;
}
.p-top-works__list-info {
  color: var(--white);
  margin-top: 27px;
}
@media screen and (max-width: 767px) {
  .p-top-works__list-info {
    margin-top: 0;
  }
}
.p-top-works__list-label {
  font-size: 29px;
  font-size: 1.8125rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 1340px) {
  .p-top-works__list-label {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1120px) {
  .p-top-works__list-label {
    font-size: 29px;
    font-size: 1.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-works__list-label {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.4;
    text-align: left;
  }
}
.p-top-works__list-description {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.8;
  margin-top: 18px;
}
@media screen and (max-width: 1340px) {
  .p-top-works__list-description {
    font-size: 1.3vw;
  }
}
@media screen and (max-width: 1120px) {
  .p-top-works__list-description {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-works__list-description {
    font-size: 13px;
    font-size: 0.8125rem;
    margin-top: 6px;
  }
}
.p-top-works__illust {
  position: absolute;
}
.p-top-works__illust--01 {
  top: 100px;
  left: -10px;
}
@media screen and (max-width: 1120px) {
  .p-top-works__illust--01 {
    width: 9.9vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-works__illust--01 {
    width: 17vw;
    top: 45px;
    left: -3vw;
  }
}
.p-top-works__illust--02 {
  top: -100px;
  right: 162px;
}
@media screen and (max-width: 1120px) {
  .p-top-works__illust--02 {
    width: 12.5vw;
    top: -80px;
    right: 11.8vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-works__illust--02 {
    width: 18.6vw;
    top: -44px;
    right: 5vw;
    rotate: -8deg;
  }
}
.p-top-works__illust--03 {
  top: 175px;
  right: 58px;
}
@media screen and (max-width: 1120px) {
  .p-top-works__illust--03 {
    width: 8.6vw;
    right: 4.2vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-works__illust--03 {
    width: 17.3vw;
    top: 95px;
    right: -2vw;
  }
}
.p-top-works__illust img {
  width: 100%;
}

.p-top-interview {
  padding: 128px 0 220px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-interview {
    padding: 58px 0 92px;
  }
}
.p-top-interview::before {
  content: "";
  width: 100%;
  height: 6vw;
  position: absolute;
  top: -6vw;
  left: 0;
  background-image: url(../img/top/bg_interview_top.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
@media screen and (max-width: 767px) {
  .p-top-interview::before {
    background-image: url(../img/top/bg_interview_top_sp.svg);
    height: 8.6vw;
    top: -8.4vw;
  }
}
.p-top-interview__intro {
  width: 73.5%;
  max-width: 1000px;
  margin: 60px auto 0;
  background: rgba(202, 202, 202, 0.2);
  border-radius: 20px;
  padding: 34px;
  position: relative;
}
@media screen and (max-width: 1120px) {
  .p-top-interview__intro {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-interview__intro {
    margin: 46px auto 0;
    padding: 34px;
  }
}
.p-top-interview__intro-text {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 1120px) {
  .p-top-interview__intro-text {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-interview__intro-text {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.p-top-interview__intro-illust {
  position: absolute;
}
.p-top-interview__intro-illust--01 {
  top: -30px;
  left: 8px;
}
@media screen and (max-width: 767px) {
  .p-top-interview__intro-illust--01 {
    width: 12.8vw;
    top: -4vw;
    left: -4vw;
  }
}
.p-top-interview__intro-illust--02 {
  bottom: 0;
  left: -60px;
}
@media screen and (max-width: 767px) {
  .p-top-interview__intro-illust--02 {
    width: 20.2vw;
    bottom: 0.2vw;
    left: -9.4vw;
  }
}
.p-top-interview__intro-illust--03 {
  bottom: -30px;
  left: 50px;
}
@media screen and (max-width: 767px) {
  .p-top-interview__intro-illust--03 {
    width: 8.8vw;
    bottom: -3vw;
    left: 5vw;
  }
}
.p-top-interview__intro-illust--04 {
  top: -30px;
  right: -8px;
}
@media screen and (max-width: 767px) {
  .p-top-interview__intro-illust--04 {
    width: 16.2vw;
    top: -4vw;
    right: -1vw;
  }
}
.p-top-interview__intro-illust--05 {
  bottom: 40px;
  right: -29px;
}
@media screen and (max-width: 767px) {
  .p-top-interview__intro-illust--05 {
    width: 6.4vw;
    bottom: 7vw;
    right: -2.8vw;
  }
}
.p-top-interview__intro-illust--06 {
  bottom: -34px;
  right: 26px;
}
@media screen and (max-width: 767px) {
  .p-top-interview__intro-illust--06 {
    width: 9.6vw;
    bottom: -3vw;
    right: 5vw;
  }
}
.p-top-interview__interviewee {
  margin-top: 16px;
  padding: 0 70px;
}
@media screen and (max-width: 767px) {
  .p-top-interview__interviewee {
    margin-top: 20px;
    padding: 0 10vw;
  }
}
.p-top-interview__interviewee-list {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 20px;
  max-width: 1220px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-top-interview__interviewee-list {
    flex-direction: column;
    gap: 0;
  }
}
.p-top-interview__interviewee-list li {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-interview__interviewee-list li + li {
    margin-top: 8.8vw;
  }
}
.p-top-interview__interviewee-list li:nth-child(1) {
  top: 96px;
  right: -50px;
}
@media screen and (max-width: 1120px) {
  .p-top-interview__interviewee-list li:nth-child(1) {
    top: 9.2vw;
    right: -5vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-interview__interviewee-list li:nth-child(1) {
    top: 0;
    right: auto;
  }
}
.p-top-interview__interviewee-list li:nth-child(3) {
  top: 60px;
}
@media screen and (max-width: 1120px) {
  .p-top-interview__interviewee-list li:nth-child(3) {
    top: 4.4vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-interview__interviewee-list li:nth-child(3) {
    top: 0;
  }
}
.p-top-interview__interviewee-list li img {
  width: 100%;
}
.p-top-interview__content {
  width: 73.5%;
  max-width: 1000px;
  margin: 90px auto 0;
}
@media screen and (max-width: 1120px) {
  .p-top-interview__content {
    width: 82%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-interview__content {
    width: 90%;
    margin: 40px auto 0;
  }
}
.p-top-interview__item + .p-top-interview__item {
  margin-top: 88px;
}
@media screen and (max-width: 767px) {
  .p-top-interview__item + .p-top-interview__item {
    margin-top: 60px;
  }
}
.p-top-interview__q {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-interview__q-img img {
    width: 61px;
  }
}
.p-top-interview__q-title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.18;
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .p-top-interview__q-title {
    font-size: 24px;
    font-size: 1.5rem;
    font-size: 24px;
    line-height: 1.2;
    padding: 0 0.4vw;
  }
}
.p-top-interview__detail {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-top-interview__detail {
    margin-top: 32px;
  }
}
.p-top-interview__comment {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 26px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-interview__comment {
    gap: 24px;
  }
}
.p-top-interview__comment::before {
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: 0;
  background-position-y: 0;
  content: "";
  display: block;
  position: absolute;
}
.p-top-interview__comment + .p-top-interview__comment {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-top-interview__comment + .p-top-interview__comment {
    margin-top: 24px;
  }
}
.p-top-interview__comment-info {
  flex-basis: 64px;
  flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-interview__comment-info {
    flex-basis: 50px;
  }
}
.p-top-interview__comment-name {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: var(--white);
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .p-top-interview__comment-name {
    font-size: 11px;
    font-size: 0.6875rem;
    margin-top: 3px;
  }
}
.p-top-interview__comment-fukidashi {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.68;
  letter-spacing: 0.06em;
  padding: 32px 40px;
  background: var(--white);
  border-width: 3px;
  border-style: solid;
  border-radius: 10px;
  border-color: #E1191D;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-interview__comment-fukidashi {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.6;
    padding: 20px 18px;
    border-width: 2px;
  }
}
.p-top-interview__comment-fukidashi::before, .p-top-interview__comment-fukidashi::after {
  content: "";
  position: absolute;
  display: block;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  rotate: 45deg;
}
.p-top-interview__comment-fukidashi::before {
  width: 25px;
  height: 25px;
  top: 16px;
  left: -14px;
  z-index: -1;
}
.is-reverse .p-top-interview__comment-fukidashi::before {
  left: auto;
  right: -14px;
}
@media screen and (max-width: 767px) {
  .p-top-interview__comment-fukidashi::before {
    top: 6px;
  }
}
.p-top-interview__comment-fukidashi::after {
  width: 18px;
  height: 18px;
  top: 22px;
  left: -9px;
  background-color: var(--white);
}
.is-reverse .p-top-interview__comment-fukidashi::after {
  left: auto;
  right: -9px;
}
@media screen and (max-width: 767px) {
  .p-top-interview__comment-fukidashi::after {
    top: 12px;
  }
}
.p-top-interview__comment-fukidashi > * {
  position: relative;
  z-index: 1;
}
.p-top-interview__comment.is-01::before {
  width: 122px;
  height: 122px;
  background-image: url(../img/top/triangle_interview01.svg);
  top: 0;
  left: -12px;
}
@media screen and (max-width: 767px) {
  .p-top-interview__comment.is-01::before {
    width: 97px;
    height: 98px;
    left: -14px;
  }
}
.p-top-interview__comment.is-01.is-reverse::before {
  left: auto;
  right: -12px;
  transform: scale(-1, 1);
}
.p-top-interview__comment.is-01 .p-top-interview__comment-fukidashi {
  border-color: #E1191D;
}
.p-top-interview__comment.is-01 .p-top-interview__comment-fukidashi::before {
  background-color: #E1191D;
}
.p-top-interview__comment.is-02::before {
  width: 130px;
  height: 113px;
  background-image: url(../img/top/triangle_interview02.svg);
  top: 6px;
  left: -12px;
  transform: scale(-1, 1);
}
@media screen and (max-width: 767px) {
  .p-top-interview__comment.is-02::before {
    width: 105px;
    height: 91px;
    top: 4px;
  }
}
.p-top-interview__comment.is-02.is-reverse::before {
  left: auto;
  right: -12px;
  transform: none;
}
.p-top-interview__comment.is-02 .p-top-interview__comment-fukidashi {
  border-color: #FF8200;
}
.p-top-interview__comment.is-02 .p-top-interview__comment-fukidashi::before {
  background-color: #FF8200;
}
.p-top-interview__comment.is-03::before {
  width: 129px;
  height: 110px;
  background-image: url(../img/top/triangle_interview03.svg);
  top: 3px;
  left: -20px;
}
@media screen and (max-width: 767px) {
  .p-top-interview__comment.is-03::before {
    width: 103px;
    height: 89px;
    top: 8px;
    left: -10px;
  }
}
.p-top-interview__comment.is-03.is-reverse::before {
  left: auto;
  right: -12px;
  transform: scale(-1, 1);
}
.p-top-interview__comment.is-03 .p-top-interview__comment-fukidashi {
  border-color: #00823C;
}
.p-top-interview__comment.is-03 .p-top-interview__comment-fukidashi::before {
  background-color: #00823C;
}
.p-top-interview__comment.is-reverse {
  flex-flow: row-reverse;
}
.p-top-interview__img {
  width: 100vw;
  margin: 88px calc(50% - 50vw) 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-interview__img {
    margin: 72px calc(50% - 50vw) 0;
  }
}
.p-top-interview__img-content {
  display: block;
  width: 100%;
}
.p-top-interview__img-content img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3.4;
}
@media screen and (max-width: 767px) {
  .p-top-interview__img-content img {
    aspect-ratio: 1.875;
  }
}
.p-top-interview__img-illust {
  position: absolute;
}
.p-top-interview__img-illust--01-01 {
  top: -70px;
  left: 44px;
}
@media screen and (max-width: 1120px) {
  .p-top-interview__img-illust--01-01 {
    top: -5.1vw;
    left: 3.2vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-interview__img-illust--01-01 {
    top: -7.6vw;
    left: -1.4vw;
  }
}
@media screen and (max-width: 1120px) {
  .p-top-interview__img-illust--01-01 img {
    width: 13.7vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-interview__img-illust--01-01 img {
    width: 21.6vw;
  }
}
.p-top-interview__img-illust--01-02 {
  bottom: -50px;
  right: -60px;
}
@media screen and (max-width: 1120px) {
  .p-top-interview__img-illust--01-02 {
    bottom: -3.6vw;
    right: -4.4vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-interview__img-illust--01-02 {
    bottom: -7.8vw;
    right: -8.4vw;
  }
}
@media screen and (max-width: 1120px) {
  .p-top-interview__img-illust--01-02 img {
    width: 18vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-interview__img-illust--01-02 img {
    width: 35.2vw;
  }
}
.p-top-interview__img-illust--02-01 {
  bottom: -51px;
  right: 26px;
}
@media screen and (max-width: 1120px) {
  .p-top-interview__img-illust--02-01 {
    bottom: -3.7vw;
    right: 1.9vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-interview__img-illust--02-01 {
    bottom: -4.6vw;
    right: 0;
  }
}
@media screen and (max-width: 1120px) {
  .p-top-interview__img-illust--02-01 img {
    width: 16.3vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-interview__img-illust--02-01 img {
    width: 29.3vw;
  }
}
.p-top-interview__img-illust--03-01 {
  top: -140px;
  left: 10px;
}
@media screen and (max-width: 1120px) {
  .p-top-interview__img-illust--03-01 {
    top: -10.2vw;
    left: 1vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-interview__img-illust--03-01 {
    top: -15.6vw;
    left: 1vw;
  }
}
@media screen and (max-width: 1120px) {
  .p-top-interview__img-illust--03-01 img {
    width: 18vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-interview__img-illust--03-01 img {
    width: 25.8vw;
  }
}

.p-top-environment {
  padding: 120px 0 180px;
  position: relative;
  background: linear-gradient(180deg, rgba(247, 247, 247, 0) 0%, #F7F7F7 52.4%);
}
@media screen and (max-width: 767px) {
  .p-top-environment {
    padding: 100px 0 92px;
  }
}
.p-top-environment::before {
  content: "";
  width: 100%;
  height: 57.8vw;
  display: block;
  background-image: url(../img/top/bg_environment_top.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-environment::before {
    height: 94.1vw;
    background-image: url(../img/top/bg_environment_top_sp.svg);
  }
}
.p-top-environment__inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1360px) {
  .p-top-environment__inner {
    max-width: 100%;
  }
}
.p-top-environment__head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .p-top-environment__head {
    flex-direction: column-reverse;
    gap: 50px;
    margin-top: 24px;
  }
}
.p-top-environment__info {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-top-environment__info {
    text-align: center;
  }
}
.p-top-environment__info .p-top-heading {
  text-align: left;
}
.p-top-environment__info .p-top-heading::before {
  left: 0;
  translate: none;
}
.p-top-environment__info-title {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.36;
  margin-top: 34px;
}
@media screen and (max-width: 767px) {
  .p-top-environment__info-title {
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 1.34;
    margin-top: 0;
  }
}
.p-top-environment__info-description {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-top: 7px;
}
@media screen and (max-width: 767px) {
  .p-top-environment__info-description {
    font-size: 16px;
    font-size: 1rem;
    margin-top: 10px;
  }
}
.p-top-environment__img {
  width: 41.1vw;
  max-width: 560px;
}
@media screen and (max-width: 767px) {
  .p-top-environment__img {
    width: 71.2vw;
    max-width: 267px;
  }
}
.p-top-environment__img img {
  width: 100%;
}
.p-top-environment__content {
  margin-top: 30px;
}
@media screen and (max-width: 1360px) {
  .p-top-environment__content {
    padding: 0 4.4vw;
  }
}
.p-top-environment__list {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  row-gap: 20px;
  flex-wrap: wrap;
  margin: 0 -10px;
}
@media screen and (max-width: 767px) {
  .p-top-environment__list {
    row-gap: 10px;
    margin: 0 -5px;
  }
}
.p-top-environment__list li {
  width: calc(25% - 20px);
  height: auto;
  aspect-ratio: 0.7277227723;
  background-color: var(--white);
  border-radius: 10px;
  margin: 0 10px;
  padding: min(3vw, 45px) min(2vw, 28px) min(2vw, 28px);
}
@media screen and (max-width: 1360px) {
  .p-top-environment__list li {
    padding: min(2vw, 28px) min(1.8vw, 28px) min(2vw, 28px);
  }
}
@media screen and (max-width: 767px) {
  .p-top-environment__list li {
    width: calc(50% - 10px);
    margin: 0 5px;
    aspect-ratio: auto;
    padding: min(5.8vw, 22px) min(4.8vw, 18px) min(6.4vw, 24px);
  }
}
.p-top-environment__list-icon {
  width: 75%;
  margin: 0 auto;
}
.p-top-environment__list-icon img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}
.p-top-environment__list-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-top: 12px;
}
@media screen and (max-width: 1360px) {
  .p-top-environment__list-title {
    font-size: 1.7vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-environment__list-title {
    font-size: min(4.4vw, 18px);
    margin-top: 11px;
  }
}
.p-top-environment__list-title span {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: solid 1px #D4D4D4;
}
.p-top-environment__list-description {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 16px;
}
@media screen and (max-width: 1360px) {
  .p-top-environment__list-description {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-environment__list-description {
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: 10px;
  }
}
.p-top-environment__list-description.text-center {
  text-align: center;
}

.p-top-recruit {
  position: relative;
  padding-top: 175px;
}
@media screen and (max-width: 767px) {
  .p-top-recruit {
    padding-top: 27vw;
  }
}
.p-top-recruit__icn01 {
  position: absolute;
  top: -30px;
  right: 90px;
  width: 116px;
  z-index: 1;
}
@media screen and (max-width: 1120px) {
  .p-top-recruit__icn01 {
    top: -2.7vw;
    right: 7.1vw;
    width: 10vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-recruit__icn01 {
    top: -5.3vw;
    right: 3.2vw;
    width: 15.8vw;
  }
}
.p-top-recruit__icn02 {
  position: absolute;
  top: 170px;
  left: 0;
  width: 198px;
  z-index: 1;
}
@media screen and (max-width: 1120px) {
  .p-top-recruit__icn02 {
    top: 15.2vw;
    width: 17.7vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-recruit__icn02 {
    top: 48vw;
    width: 16.8vw;
  }
}
.p-top-recruit__head {
  position: absolute;
  top: 0;
  left: 0;
  background: #F7F7F7;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__head {
    width: 140vw;
    margin: 0 -20vw;
  }
}
.p-top-recruit__head img {
  width: 100%;
  height: auto;
  margin-bottom: -2px;
}
.p-top-recruit__block {
  width: 91.2%;
  max-width: 1240px;
  margin: 90px auto 0;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__block {
    width: 100%;
    margin: 15.8vw 0 0;
  }
}
.p-top-recruit__block + .p-top-recruit__block {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__block + .p-top-recruit__block {
    margin-top: 5vw;
  }
}
.p-top-recruit-ttl {
  position: relative;
  cursor: pointer;
}
.p-top-recruit-ttl__txt {
  text-align: center;
  color: #fff;
  font-size: 2.25rem;
  font-weight: 700;
  background: linear-gradient(90deg, rgb(50, 70, 135) 0%, rgb(0, 115, 170) 100%);
  letter-spacing: 0.1em;
  padding: 45px 0;
}
@media screen and (max-width: 767px) {
  .p-top-recruit-ttl__txt {
    font-size: 7.4vw;
    padding: 6.8vw 0;
  }
}
.is-green .p-top-recruit-ttl__txt {
  background: linear-gradient(90deg, rgb(0, 98, 45) 0%, rgb(0, 129, 59) 100%);
}
.p-top-recruit-ttl__btn {
  position: absolute;
  top: 50%;
  right: 40px;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 100%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-top-recruit-ttl__btn {
    right: 4.2vw;
    width: 7.9vw;
    height: 7.9vw;
  }
}
.p-top-recruit-ttl__btn span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.p-top-recruit-ttl__btn span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 1px;
  background: var(--blue);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-top-recruit-ttl__btn span::before {
    width: 4.2vw;
  }
}
.p-top-recruit-ttl__btn span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 22px;
  background: var(--blue);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-top-recruit-ttl__btn span::after {
    height: 4.2vw;
  }
}
.is-open .p-top-recruit-ttl__btn span::after {
  content: none;
}
.p-top-recruit__content {
  border-left: 1px solid #D7D7D7;
  border-right: 1px solid #D7D7D7;
  border-bottom: 1px solid #D7D7D7;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__content {
    border: 0;
  }
}
.p-top-recruit__inner {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 0 130px;
}
@media screen and (max-width: 1120px) {
  .p-top-recruit__inner {
    width: 90%;
    padding: 10vw 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top-recruit__inner {
    padding: 10vw 0 15.8vw;
  }
}
.p-top-recruit__sub {
  position: relative;
  line-height: 1;
  font-size: 32px;
  text-align: center;
  letter-spacing: 0.1em;
  padding: 0 0 16px;
  margin: 80px 0 30px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__sub {
    font-size: 6.8vw;
    margin: 10.5vw 0 6.3vw;
  }
}
.p-top-recruit__sub:first-child {
  margin-top: 0;
}
.p-top-recruit__sub::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 36px;
  height: 2px;
  background: var(--blue);
  transform: translateX(-50%);
}
.p-top-recruit-table + .p-top-recruit-table {
  margin-top: 40px;
}
.p-top-recruit-table__ttl {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 20px;
}
@media screen and (max-width: 767px) {
  .p-top-recruit-table__ttl {
    font-size: 5.3vw;
  }
}
.p-top-recruit-table table {
  width: 100%;
  table-layout: fixed;
  border-top: 1px solid #D7D7D7;
  border-left: 1px solid #D7D7D7;
}
.p-top-recruit-table table th {
  width: 200px;
  border-bottom: 1px solid #D7D7D7;
  background: #F9F9F9;
  font-weight: 400;
  text-align: left;
  line-height: 1.6;
  vertical-align: middle;
  padding: 26px 20px;
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .p-top-recruit-table table th {
    display: block;
    width: 100%;
    font-size: 3.7vw;
    text-align: center;
    border-right: 1px solid #D7D7D7;
    border-bottom: 0;
    padding: 3.2vw;
  }
}
.p-top-recruit-table table td {
  width: calc(100% - 200px);
  border-right: 1px solid #D7D7D7;
  border-bottom: 1px solid #D7D7D7;
  line-height: 1.6;
  padding: 26px 20px;
  word-break: keep-all;
}
@media screen and (max-width: 767px) {
  .p-top-recruit-table table td {
    display: block;
    width: 100%;
    font-size: 3.7vw;
    padding: 4.2vw;
  }
}
.p-top-recruit-flow {
  background: #F9F9F9;
  padding: 48px 40px 40px;
}
@media screen and (max-width: 767px) {
  .p-top-recruit-flow {
    padding: 6.3vw 4.2vw 6.3vw 9.5vw;
  }
}
.p-top-recruit-flow-list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-top-recruit-flow-list {
    flex-flow: column;
    gap: 7.4vw 0;
  }
}
.p-top-recruit-flow-list__item {
  position: relative;
  width: calc((100% - 64px) / 5);
  height: 148px;
  background: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 42px 0 0;
}
@media screen and (max-width: 1120px) {
  .p-top-recruit-flow-list__item {
    height: 13.2vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-recruit-flow-list__item {
    width: 100%;
    height: auto;
    padding: 4.2vw 4.2vw 4.2vw 8.4vw;
  }
}
.p-top-recruit-flow-list__item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 3px);
  width: 10px;
  height: 30px;
  background: #D9D9D9;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-top-recruit-flow-list__item::after {
    top: calc(100% + 2.4vw);
    left: 50%;
    width: 8.7vw;
    height: 3.2vw;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    transform: translateX(-50%);
  }
}
.p-top-recruit-flow-list__item:last-child::after {
  content: none;
}
.p-top-recruit-flow-list__num {
  position: absolute;
  top: -16px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  font-size: 20px;
  background: linear-gradient(90deg, rgb(50, 70, 135) 0%, rgb(0, 115, 170) 100%);
  color: #fff;
  font-weight: 700;
  border-radius: 100%;
  transform: translateX(-50%);
  padding: 0 0 3px;
}
@media screen and (max-width: 1120px) {
  .p-top-recruit-flow-list__num {
    width: 4.1vw;
    height: 4.1vw;
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-recruit-flow-list__num {
    top: 50%;
    left: -5.25vw;
    width: 10.5vw;
    height: 10.5vw;
    font-size: 5.3vw;
    transform: translateY(-50%);
  }
}
.is-green .p-top-recruit-flow-list__num {
  background: linear-gradient(90deg, rgb(0, 98, 45) 0%, rgb(0, 129, 59) 100%);
}
.p-top-recruit-flow-list__ttl {
  font-weight: 700;
  color: var(--blue);
  font-size: 1.25rem;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 1120px) {
  .p-top-recruit-flow-list__ttl {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-recruit-flow-list__ttl {
    text-align: left;
    font-size: 5.3vw;
  }
  .p-top-recruit-flow-list__ttl br {
    display: none;
  }
}
.is-green .p-top-recruit-flow-list__ttl {
  color: #00823C;
}
.p-top-recruit-flow-list__txt {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--blue);
  text-align: center;
}
@media screen and (max-width: 1120px) {
  .p-top-recruit-flow-list__txt {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-recruit-flow-list__txt {
    display: inline-block;
    text-align: left;
    font-size: 4.2vw;
  }
}
.is-green .p-top-recruit-flow-list__txt {
  color: #00823C;
}
.p-top-recruit-flow-list__note {
  font-size: 0.75rem;
  line-height: 1.6;
  text-align: center;
  color: #858585;
}
@media screen and (max-width: 1120px) {
  .p-top-recruit-flow-list__note {
    font-size: 1vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-recruit-flow-list__note {
    display: inline-block;
    text-align: left;
    font-size: 3.2vw;
  }
}
.p-top-recruit__txt {
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__txt {
    font-size: 3.7vw;
  }
}
.p-top-recruit-btns {
  display: flex;
  justify-content: center;
  margin: 3rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-top-recruit-btns {
    flex-flow: column;
    gap: 2.6vw 0;
    margin: 6.3vw 0 0;
  }
}
.p-top-recruit-btns__item {
  width: calc((100% - 20px) / 2);
  height: 100px;
}
@media screen and (max-width: 1120px) {
  .p-top-recruit-btns__item {
    height: 9vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-recruit-btns__item {
    width: 100%;
    height: 21vw;
  }
}
.p-top-recruit-btns__item.is-recnavi a {
  border: 1px solid #0168B7;
}
.p-top-recruit-btns__item a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid #009BE6;
}
.p-top-recruit-btns__item a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 24px;
  height: 24px;
  background: url(../img/top/icn_btn_arrow.svg) 0 0/100% auto no-repeat;
  transform: translateY(-50%);
}
@media screen and (max-width: 1120px) {
  .p-top-recruit-btns__item a::before {
    right: 2.7vw;
    width: 2.1vw;
    height: 2.1vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-recruit-btns__item a::before {
    right: 3.2vw;
    width: 5.3vw;
    height: 5.3vw;
  }
}
.p-top-recruit-btns__item a img {
  width: auto;
  height: 45px;
}
@media screen and (max-width: 1120px) {
  .p-top-recruit-btns__item a img {
    height: 4vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-recruit-btns__item a img {
    height: 10vw;
  }
}

.p-top-faq {
  position: relative;
  margin-top: 100px;
  padding: 175px 0 100px;
}
@media screen and (max-width: 767px) {
  .p-top-faq {
    margin-top: 21vw;
    padding: 26.3vw 0 10vw;
  }
}
.p-top-faq::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 500px);
  background: linear-gradient(180deg, rgba(247, 247, 247, 0) 0%, rgb(247, 247, 247) 50%);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-top-faq::after {
    height: calc(100% - 30vw);
  }
}
.p-top-faq__icn01 {
  position: absolute;
  top: -50px;
  left: 90px;
  width: 166px;
  z-index: 1;
}
@media screen and (max-width: 1120px) {
  .p-top-faq__icn01 {
    top: -4.5vw;
    left: 8vw;
    width: 10.3vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-faq__icn01 {
    top: 4vw;
    width: 18.4vw;
  }
}
.p-top-faq__icn02 {
  position: absolute;
  top: 0;
  right: 94px;
  width: 159px;
  z-index: 1;
}
@media screen and (max-width: 1120px) {
  .p-top-faq__icn02 {
    right: 8.4vw;
    width: 14.2vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-faq__icn02 {
    width: 20vw;
    top: 12vw;
    right: 3vw;
  }
}
.p-top-faq__icn03 {
  position: absolute;
  top: 214px;
  right: 20px;
  width: 85px;
  z-index: 1;
}
@media screen and (max-width: 1120px) {
  .p-top-faq__icn03 {
    top: 19vw;
    right: 1.8vw;
    width: 7.6vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-faq__icn03 {
    top: 35vw;
    right: 1vw;
    width: 12.6vw;
  }
}
.p-top-faq__head {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-faq__head {
    width: 160vw;
    margin: 0 -30vw;
  }
}
.p-top-faq__head img {
  width: 100%;
  height: auto;
}
.p-top-faq .p-top-heading {
  position: relative;
  z-index: 1;
}
.p-top-faq__block {
  width: 91.2%;
  max-width: 1240px;
  margin: 90px auto 0;
}
.p-top-faq__block + .p-top-faq__block {
  margin-top: 30px;
}
.p-top-faq-define {
  position: relative;
  width: 73.5%;
  max-width: 1000px;
  border-radius: 6px;
  overflow: hidden;
  margin: 50px auto 0;
  z-index: 1;
}
@media screen and (max-width: 1120px) {
  .p-top-faq-define {
    width: 90%;
  }
}
.p-top-faq-define + .p-top-faq-define {
  margin-top: 10px;
}
.p-top-faq-define__ttl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 5px;
  position: relative;
  background: #fff;
  padding: 38px 30px 38px 24px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-top-faq-define__ttl {
    align-items: flex-start;
    padding: 5.3vw 16.8vw 5.3vw 4.7vw;
  }
}
.p-top-faq-define__ttl:first-of-type {
  margin-top: 0;
}
.p-top-faq-define__ttl .txt {
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-top-faq-define__ttl .txt {
    font-size: 4.2vw;
    line-height: 1.6;
  }
}
.p-top-faq-define__ttl .ttl {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--blue);
  font-family: Hiragino Sans;
  flex-shrink: 0;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-top-faq-define__ttl .ttl {
    font-size: 6.3vw;
  }
}
.p-top-faq-define__ttl .btn {
  position: absolute;
  top: 50%;
  right: 40px;
  width: 40px;
  height: 40px;
  background: var(--blue);
  border-radius: 100%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-top-faq-define__ttl .btn {
    right: 4.8vw;
    width: 7.9vw;
    height: 7.9vw;
  }
}
.p-top-faq-define__ttl .btn span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.p-top-faq-define__ttl .btn span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 1px;
  background: #fff;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-top-faq-define__ttl .btn span::before {
    width: 4.2vw;
  }
}
.p-top-faq-define__ttl .btn span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 22px;
  background: #fff;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .p-top-faq-define__ttl .btn span::after {
    height: 4.2vw;
  }
}
.p-top-faq-define__ttl.is-open .btn span::after {
  content: none;
}
.p-top-faq-define__txt {
  background: #fff;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.p-top-faq-define__txt .txt {
  border-top: 1px solid #D7D7D7;
  line-height: 1.6;
  padding: 40px 30px;
}
@media screen and (max-width: 767px) {
  .p-top-faq-define__txt .txt {
    padding: 5.3vw 4.7vw;
  }
}

.p-top-entry {
  background: url(../img/top/bg_entry.png) 0 0/cover #F7F7F7 no-repeat;
  padding: 180px 0 60px;
}
@media screen and (max-width: 767px) {
  .p-top-entry {
    position: relative;
    background: #F7F7F7;
    padding: 21vw 0 15.8vw;
  }
  .p-top-entry::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 21vw;
    background: url(../img/top/bg_entry_01_sp.png) 0 0/cover no-repeat;
  }
  .p-top-entry::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15.8vw;
    background: url(../img/top/bg_entry_02_sp.png) 0 0/cover no-repeat;
  }
}
.p-top-entry__block {
  width: calc(100% - 124px);
  background: #17105D;
  margin: 0 auto;
  padding: 60px 0 90px;
}
@media screen and (max-width: 767px) {
  .p-top-entry__block {
    width: 100%;
    padding: 10vw 0 15.8vw;
  }
}
.p-top-entry .p-top-heading {
  color: #fff;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-top-entry .p-top-heading {
    padding-bottom: 8.4vw;
  }
}
.p-top-entry .p-top-heading::before {
  content: none;
}
.p-top-entry__inner {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 50px 0 0;
}
@media screen and (max-width: 767px) {
  .p-top-entry__inner {
    padding-top: 8.4vw;
  }
}
.p-top-entry__inner + .p-top-entry__inner {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-top-entry__inner + .p-top-entry__inner {
    margin-top: 10vw;
  }
}
.p-top-entry__ttl {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin: 0 0 1em;
}
@media screen and (max-width: 767px) {
  .p-top-entry__ttl {
    font-size: 5.3vw;
  }
}
.p-top-entry-btns {
  display: flex;
  justify-content: center;
  gap: 0 20px;
}
@media screen and (max-width: 1120px) {
  .p-top-entry-btns {
    padding: 0 5%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-entry-btns {
    flex-flow: column;
    gap: 2.6vw 0;
  }
}
.p-top-entry-btns + .p-top-entry-btns {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-top-entry-btns + .p-top-entry-btns {
    margin-top: 2.6vw;
  }
}
.p-top-entry-btns__item {
  width: 450px;
  height: 100px;
  font-size: 1.625rem;
  font-weight: 900;
}
@media screen and (max-width: 1120px) {
  .p-top-entry-btns__item {
    width: calc((100% - 20px) / 2);
    height: 8.9vw;
    font-size: 2.3vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-entry-btns__item {
    width: 100%;
    height: 21vw;
    font-size: 4.2vw;
  }
}
.p-top-entry-btns__item a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  color: var(--blue);
  background: #fff;
}
.p-top-entry-btns__item a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 24px;
  height: 24px;
  background: url(../img/top/icn_btn_arrow.svg) 0 0/100% auto no-repeat;
  transform: translateY(-50%);
}
@media screen and (max-width: 1120px) {
  .p-top-entry-btns__item a::before {
    right: 2.7vw;
    width: 2.1vw;
    height: 2.1vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-entry-btns__item a::before {
    right: 3.2vw;
    width: 5.3vw;
    height: 5.3vw;
  }
}
.p-top-entry-btns__item a img {
  width: auto;
  height: 45px;
}
@media screen and (max-width: 1120px) {
  .p-top-entry-btns__item a img {
    height: 4vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-entry-btns__item a img {
    height: 8vw;
  }
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.p-form {
  padding: 0 0 140px;
}
@media screen and (max-width: 767px) {
  .p-form {
    padding: 0 0 80px;
  }
}
.p-form .f-wrap {
  max-width: 960px;
}
.p-form-step {
  padding: 50px 0 24px;
}
@media screen and (max-width: 767px) {
  .p-form-step {
    padding: 36px 0 20px 0;
  }
}
.p-form-step-list {
  display: flex;
  justify-content: space-between;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .p-form-step-list {
    padding: 0 20px;
  }
}
.p-form-step-list__item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% - 12px) / 3);
  height: 70px;
  background: #E6F1F8;
  list-style: none;
  font-weight: 600;
  color: #779AB1;
}
@media screen and (max-width: 767px) {
  .p-form-step-list__item {
    height: 60px;
    text-align: center;
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 1.2;
    padding-right: 5px;
  }
}
.p-form-step-list__item::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 25px;
  height: 38px;
  background: var(--white);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}
@media screen and (max-width: 767px) {
  .p-form-step-list__item::before {
    top: -2px;
    right: -1px;
    width: 13px;
    height: 35px;
  }
}
.p-form-step-list__item::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 25px;
  height: 38px;
  background: var(--white);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
@media screen and (max-width: 767px) {
  .p-form-step-list__item::after {
    bottom: -2px;
    right: -1px;
    width: 13px;
    height: 35px;
  }
}
.p-form-step-list__item.is-current {
  color: var(--white);
  background: var(--blue);
}
.p-form-list {
  background: var(--gray1);
  padding: 24px;
}
.p-form-list__item {
  position: relative;
  font-size: 12px;
  line-height: 1.8;
  padding: 0 0 0 1em;
}
.p-form-list__item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.p-form__block {
  margin: 80px 0 0;
}
@media screen and (max-width: 767px) {
  .p-form__block {
    margin: 30px 0 0;
  }
}
.p-form--confirm {
  margin-top: 0;
}
.p-form--thanks {
  margin-top: 0;
  padding: 0 0 20rem;
}
@media screen and (max-width: 767px) {
  .p-form--thanks {
    padding: 0 0 10rem;
  }
}
.p-form__ttl {
  text-align: center;
  font-weight: 700;
  line-height: 1;
  font-size: 6rem;
}
@media screen and (max-width: 767px) {
  .p-form__ttl {
    font-size: 2.8rem;
  }
}
.p-form__ttl span {
  padding: 0 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-form__ttl span {
    padding: 0 0.8rem;
  }
}
.p-form__txt {
  max-width: 92.8rem;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 4rem;
}
@media screen and (max-width: 767px) {
  .p-form__txt {
    padding: 0;
  }
}
.p-form__txt span {
  color: #cc0000;
}
.p-form-define dt {
  display: flex;
  justify-content: start;
  align-items: center;
  font-weight: 600;
  line-height: 1.5;
  font-size: 18px;
  font-size: 1.125rem;
  gap: 0 6px;
  color: var(--blue);
  margin: 0 0 5px;
}
.is-confirm .p-form-define dt {
  line-height: 2;
  border-bottom: 1px solid #BEBEBE;
  margin: 0 0 12px;
}
@media screen and (max-width: 767px) {
  .p-form-define dt {
    width: 100%;
    gap: 0 6px;
    font-size: 16px;
    font-size: 1rem;
    margin: 0 0 10px;
    padding: 0;
  }
}
.p-form-define dt.is-pt {
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-form-define dt.is-pt {
    padding-top: 0;
  }
}
.p-form-define dt .required {
  color: var(--white);
  font-size: 11px;
  font-size: 0.6875rem;
  background: var(--pink);
  line-height: 1;
  padding: 2px 4px;
}
@media screen and (max-width: 767px) {
  .p-form-define dt .required {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.p-form-define dt .any {
  color: var(--white);
  font-size: 11px;
  font-size: 0.6875rem;
  background: #9E9E9E;
  line-height: 1;
  padding: 2px 4px;
}
@media screen and (max-width: 767px) {
  .p-form-define dt .any {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.p-form-define dd {
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-form-define dd {
    width: 100%;
    font-size: 14px;
    font-size: 0.875rem;
    padding-bottom: 24px;
  }
}
.p-form-define dd:last-child {
  padding-bottom: 0;
}
.p-form-define dd .notes {
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 4px;
}
.p-form-define dd.column {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.is-confirm .p-form-define dd.column {
  justify-content: flex-start;
  gap: 0 56px;
}
@media screen and (max-width: 767px) {
  .is-confirm .p-form-define dd.column {
    display: flex;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-form-define dd.column {
    display: block;
  }
}
.p-form-define dd.column .txt span {
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .is-confirm .p-form-define dd.column .txt {
    width: 45%;
  }
}
.p-form-define dd.column .inner {
  display: flex;
  justify-content: start;
  align-items: start;
  width: calc(50% - 8px);
}
@media screen and (max-width: 767px) {
  .p-form-define dd.column .inner {
    width: 100%;
    margin-top: 4px;
  }
  .p-form-define dd.column .inner:first-child {
    margin-top: 0;
  }
}
.p-form-define dd.column .inner .ttl {
  width: 22px;
  font-weight: 600;
  margin-top: 9px;
}
@media screen and (max-width: 767px) {
  .p-form-define dd.column .inner .ttl {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-form-define dd.column .inner .content {
  width: calc(100% - 22px);
}
.p-form-define dd.column.kana .inner .ttl {
  width: 40px;
}
.p-form-define dd.file {
  position: relative;
}
.p-form-define dd.file .file-icon img {
  vertical-align: middle;
}
.p-form-define dd.file .file-label {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 12px;
  cursor: pointer;
}
.is-confirm .p-form-define dd.file .file-label {
  cursor: inherit;
}
.p-form-define dd.file .file-label.has-file .file-text {
  color: var(--black);
}
.p-form-define dd.file .file-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.p-form-define dd.file .file-icon {
  width: 20px;
}
.p-form-define dd.file .file-icon img {
  width: 100%;
  height: auto;
}
.p-form-define dd.file .file-text {
  display: flex;
  justify-content: start;
  align-items: center;
  width: calc(100% - 32px);
  min-height: 46px;
  line-height: 1.4;
  color: var(--gray2);
  background: var(--gray1);
  padding: 0 1em;
}
.is-confirm .p-form-define dd.file .file-text {
  min-height: inherit;
  background: none;
  color: var(--black);
  padding: 0;
}
.is-back .p-form-define dd.file .file-text {
  color: var(--black);
}
@media screen and (max-width: 767px) {
  .p-form-define dd.file .file-text {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-form-define dd.file .error {
  width: 100%;
}
.p-form-define dd.select .wpcf7-form-control-wrap {
  display: block;
  position: relative;
  width: 100%;
  height: 46px;
}
@media screen and (max-width: 767px) {
  .p-form-define dd.select .wpcf7-form-control-wrap {
    width: 100%;
  }
}
.p-form-define dd.select .wpcf7-form-control-wrap::before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 0;
  width: 46px;
  height: 46px;
  background: url(../img/common/icn_select.svg) 0 0/100% auto no-repeat;
  transform: translateY(-50%);
}
.p-form-define dd.select .wpcf7-form-control-wrap select {
  appearance: none;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-size: 1rem;
  color: var(--gray2);
  padding: 0 1em;
  border: 0;
  background: var(--gray1);
}
.p-form-define dd.select .wpcf7-form-control-wrap select.has-value {
  color: var(--black);
}
.is-back .p-form-define dd.select select[name=job_type] {
  color: var(--black);
}
.p-form-define dd input[type=text],
.p-form-define dd input[type=tel],
.p-form-define dd input[type=email] {
  width: 100%;
  height: 46px;
  background: var(--gray1);
  font-size: 16px;
  font-size: 1rem;
  padding: 0 1em;
  border: 0;
  outline: none;
}
.p-form-define dd textarea {
  width: 100%;
  height: 280px;
  background: var(--gray1);
  font-size: 16px;
  font-size: 1rem;
  padding: 1em;
  resize: vertical;
  font-family: inherit;
  border: 0;
  outline: none;
}
@media screen and (max-width: 767px) {
  .p-form-define dd textarea {
    height: 15rem;
    border-radius: 0.6rem;
    padding: 1rem;
  }
}
.p-form-define dd.radio .wpcf7-radio {
  display: flex;
  justify-content: start;
  align-items: stretch;
  gap: 0 2rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-form-define dd.radio .wpcf7-radio {
    flex-flow: column;
    gap: 1.5rem 0;
  }
}
.p-form-define dd.radio .wpcf7-list-item {
  position: relative;
  margin: 0;
}
.p-form-define dd.radio .wpcf7-list-item input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.p-form-define dd.radio .wpcf7-list-item input[type=radio]:checked + span::before {
  background: #000;
}
.p-form-define dd.radio .wpcf7-list-item-label {
  position: relative;
  font-size: 1.8rem;
  padding: 0 0 0 1em;
}
@media screen and (max-width: 767px) {
  .p-form-define dd.radio .wpcf7-list-item-label {
    font-size: 1.1rem;
  }
}
.p-form-define dd.radio .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.9em;
  height: 0.9em;
  border: 1px solid #000;
  border-radius: 100%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-form-define dd.radio .wpcf7-list-item-label::before {
    top: calc(50% + 0.1rem);
  }
}
.p-form-define dd .is-row + .is-row {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-form-define dd .is-row + .is-row {
    margin-top: 1rem;
  }
}
.p-form-define .error {
  color: #cc0000;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-form-define .error {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.p-form-define .check {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 3rem;
  padding: 1.4rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-form-define .check {
    gap: 0 1rem;
    padding: 1rem 0 0;
  }
}
.p-form-define .check .error {
  width: 100%;
}
.p-form-define .check .item {
  line-height: 1;
}
.p-form-define .check .item label {
  position: relative;
}
.p-form-define .check .item label input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.p-form-define .check .item label input:checked + span::before {
  background: url(../img/home/icn_form_on.svg) 0 0/100% auto no-repeat;
}
.p-form-define .check .item label span {
  position: relative;
  padding: 0 0 0 2rem;
}
@media screen and (max-width: 767px) {
  .p-form-define .check .item label span {
    padding: 0 0 0 1.8rem;
  }
}
.p-form-define .check .item label span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1em;
  height: 1em;
  background: url(../img/home/icn_form_off.svg) 0 0/100% auto no-repeat;
  transform: translateY(-50%);
}
.p-form-policy {
  height: 30.6rem;
  background: #fff;
  border-radius: 1.2rem;
  margin: 6rem 0 0;
  padding: 4.4rem 4.9rem;
}
@media screen and (max-width: 767px) {
  .p-form-policy {
    height: 15rem;
    border-radius: 0.6rem;
    padding: 1.5rem 2.2rem;
    margin-top: 3rem;
  }
}
.p-form-policy__inner {
  max-height: 21.8rem;
  overflow-y: scroll;
  scrollbar-width: auto;
  scrollbar-color: #e7e6e0 transparent;
}
@media screen and (max-width: 767px) {
  .p-form-policy__inner {
    max-height: 12rem;
    padding-right: 2.4rem;
  }
}
.p-form-policy__inner::-webkit-scrollbar {
  width: 1.3rem;
}
.p-form-policy__inner::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 2rem;
}
.p-form-policy__inner::-webkit-scrollbar-track {
  background: transparent;
}
.p-form-policy__ttl {
  line-height: 2.4;
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .p-form-policy__ttl {
    font-size: 1.2rem;
    line-height: 2;
  }
}
.p-form-policy__ttl:first-child {
  margin-top: 0;
}
.p-form-policy__txt {
  line-height: 2.4;
}
@media screen and (max-width: 767px) {
  .p-form-policy__txt {
    font-size: 1.2rem;
    line-height: 2;
  }
}
.p-form-apply {
  margin: 40px 0 0;
}
@media screen and (max-width: 767px) {
  .p-form-apply {
    margin-top: 24px;
  }
}
.p-form-apply .wpcf7-list-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.p-form-apply .wpcf7-list-item input[type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.p-form-apply .wpcf7-list-item input[type=checkbox]:checked + span::before {
  background: url(../img/common/icn_check_on.svg) 0 0/100% auto no-repeat;
}
.p-form-apply .wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  height: 24px;
  line-height: 24px;
  padding: 0 0 0 35px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-form-apply .wpcf7-list-item .wpcf7-list-item-label {
    font-size: 14px;
    font-size: 0.875rem;
    height: 18px;
    line-height: 18px;
    padding: 0 0 0 30px;
  }
}
.p-form-apply .wpcf7-list-item .wpcf7-list-item-label a {
  text-decoration: underline;
  color: var(--blue);
}
@media (any-hover: hover) {
  .p-form-apply .wpcf7-list-item .wpcf7-list-item-label a:hover {
    text-decoration: none;
  }
}
.p-form-apply .wpcf7-list-item .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background: url(../img/common/icn_check.svg) 0 0/100% auto no-repeat;
}
@media screen and (max-width: 767px) {
  .p-form-apply .wpcf7-list-item .wpcf7-list-item-label::before {
    width: 18px;
    height: 18px;
  }
}
.p-form-apply .wpcf7-list-item .apply {
  color: #cc0000;
}
.p-form-apply .wpcf7-list-item .error {
  width: 100%;
  text-align: center;
  color: #cc0000;
  margin-top: 0.5em;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-form-apply .wpcf7-list-item .error {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.p-form .wpcf7-spinner {
  position: absolute;
  top: 100%;
  display: block;
}
.p-form-btn {
  position: relative;
  width: 360px;
  max-width: 100%;
  height: 90px;
  background-color: var(--blue);
  border: 1px solid var(--blue);
  transition: 0.3s;
  border-radius: 6px;
  overflow: hidden;
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  .p-form-btn {
    margin-top: 50px;
  }
}
.p-form-btn::before {
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: 0;
  background-position-y: 0;
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background-image: url(../img/common/arrow_circle-white.svg);
  position: absolute;
  top: calc(50% + 1px);
  right: 16px;
  translate: 0 -50%;
  z-index: 1;
}
.p-form-btn::after {
  content: "";
  background-color: var(--white);
  position: absolute;
  top: 0;
  left: -6%;
  display: block;
  width: 106%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: right bottom;
  transition: transform 400ms var(--easing);
  z-index: 0;
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
}
.p-form-btn__inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.p-form-btn__inner::before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: 1px solid var(--blue);
  z-index: 2;
}
.p-form-btn__inner:has(input[type=submit]:disabled)::before {
  content: none;
}
@media (any-hover: hover) {
  .p-form-btn:hover input[type=submit] {
    color: var(--blue);
  }
  .p-form-btn:hover::before {
    background-image: url(../img/common/arrow_circle-blue.svg);
  }
  .p-form-btn:hover::after {
    transform: scale(1, 1);
  }
}
.p-form-btn input[type=submit] {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--white);
  width: 100%;
  height: 100%;
  font-weight: 900;
  border: 0;
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
  z-index: 1;
  transition: 0.3s;
}
.p-form-btn input[type=submit]:disabled {
  pointer-events: none;
  background: #999999;
}
.p-form-btn:has(input[type=submit]:disabled) {
  border: 0;
}
@media (any-hover: hover) {
  .p-form-btn:has(input[type=submit]:disabled):hover input[type=submit] {
    color: var(--white);
  }
}
.p-form-back {
  position: relative;
  width: 240px;
  max-width: 100%;
  height: 60px;
  background-color: #A2A2A2;
  border: 1px solid #A2A2A2;
  transition: 0.3s;
  border-radius: 6px;
  overflow: hidden;
  margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
  .p-form-back {
    margin-top: 20px;
  }
}
.p-form-back::before {
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: 0;
  background-position-y: 0;
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background-image: url(../img/common/arrow_circle-white.svg);
  position: absolute;
  top: calc(50% + 1px);
  left: 16px;
  translate: 0 -50%;
  z-index: 1;
  transform: scale(-1, 1);
}
.p-form-back::after {
  content: "";
  background-color: var(--white);
  position: absolute;
  top: 0;
  left: -6%;
  display: block;
  width: 106%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: right bottom;
  transition: transform 400ms var(--easing);
  z-index: 0;
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
}
.p-form-back__inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.p-form-back__inner::before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: 1px solid #666;
  z-index: 2;
}
.p-form-back__inner:has(input[type=submit]:disabled)::before {
  content: none;
}
@media (any-hover: hover) {
  .p-form-back:hover input[type=button] {
    color: #666;
  }
  .p-form-back:hover::before {
    background-image: url(../img/common/arrow_circle-blue.svg);
  }
  .p-form-back:hover::after {
    transform: scale(1, 1);
  }
}
.p-form-back input[type=button] {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--white);
  width: 100%;
  height: 100%;
  border: 0;
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
  z-index: 1;
  transition: 0.3s;
  padding-left: 6px;
}
.p-form-back input[type=button]:disabled {
  pointer-events: none;
  background: #999999;
}
.p-form-thanks {
  position: relative;
  margin-top: 60px;
}
.p-form-thanks::before {
  content: "";
  position: absolute;
  top: -26px;
  left: 0;
  width: 909px;
  height: 167px;
  background: url(../img/common/bg_contact_thanks.png) 0 0/100% auto no-repeat;
}
@media screen and (max-width: 767px) {
  .p-form-thanks::before {
    left: -20px;
    width: calc(100% + 40px);
    height: 147px;
    background: url(../img/common/bg_contact_thanks_sp.png) center center/auto 100% no-repeat;
  }
}
.p-form-thanks__ttl {
  position: relative;
  font-size: 32px;
  font-size: 2rem;
  color: var(--blue);
  line-height: 1.4;
  text-align: center;
  padding: 0 0 24px;
  margin: 0 0 26px;
}
@media screen and (max-width: 767px) {
  .p-form-thanks__ttl {
    font-size: 24px;
    font-size: 1.5rem;
    margin: 0 0 34px;
  }
}
.p-form-thanks__ttl::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 64px;
  height: 3px;
  background: url(../img/common/ttl_pre.png) 0 0/100% auto no-repeat;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-form-thanks__ttl {
    line-height: 1.4;
  }
}
.p-form-thanks__txt {
  text-align: center;
  line-height: 1.8;
  margin: 16px 0 0;
}
@media screen and (max-width: 767px) {
  .p-form-thanks__txt {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-form-thanks__btn {
  margin: 50px 0 0;
}
.p-form-thanks__btn a {
  margin: 0 auto;
}

.u-visuallyhidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.sp {
  display: none;
}

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