@charset "UTF-8";
/*
 * 参考
 * https: //github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

/* Set core body defaults */
body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

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

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

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

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Remove all animations and transitions for people that prefer not to see them */
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https: //css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https: //webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}

body {
  color: #05171a;
  font-family: "BIZ UDGothic", sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

main {
  z-index: 1;
}

.l-main {
  margin-top: 54px;
  margin-top: 3.375rem;
  position: relative;
}

a {
  -webkit-text-decoration: none;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

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

.l-inner-large {
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

.l-pager {
  margin-top: 32px;
  margin-top: 2rem;
}

.l-post-connect {
  margin-top: 16px;
  margin-top: 1rem;
}

.c-breadcrumb {
  padding: 16px 0;
  padding: 1rem 0;
}

.c-breadcrumb a {
  color: #3fa8c8;
}

.c-btn {
  align-items: center;
  background-color: #fff;
  border: 1px solid #3fa8c8;
  border-radius: 0.5rem;
  color: #3fa8c8;
  display: inline-block;
  display: flex;
  font-family: "Roboto", "BIZ UDGothic", sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  min-width: 200px;
  min-width: 12.5rem;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  text-align: center;
  transition: 0.3s;
}

.c-btn::before {
  content: "";
  -webkit-mask-image: url(../images/common/icon_phone.svg);
          mask-image: url(../images/common/icon_phone.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -o-object-fit: contain;
  aspect-ratio: 1/1;
  background-color: #3fa8c8;
  display: block;
     object-fit: contain;
  transition: 0.3s;
  width: 24px;
  width: 1.5rem;
}

.c-btn:hover {
  background-color: #3fa8c8;
  border: 1px solid #3fa8c8;
  color: #fff;
  opacity: 0.8;
}

.c-btn:hover::before {
  background-color: #fff;
}

.c-btn--blue {
  background-color: #3fa8c8;
  border: 1px solid #3fa8c8;
  color: #fff;
}

.c-btn--blue::before {
  -webkit-mask-image: url(../images/common/icon_mail01.svg);
  margin-right: 4px;
  margin-right: 0.25rem;
          mask-image: url(../images/common/icon_mail01.svg);
  width: 28px;
  width: 1.75rem;
}

.c-btn--blue.c-btn--no-icon::before {
  content: none;
}

.c-btn--blue::before {
  background-color: #fff;
}

.c-btn--blue:hover {
  background-color: #fff;
  color: #3fa8c8;
}

.c-btn--blue:hover::before {
  background-color: #3fa8c8;
}

.c-link-box {
  align-items: center;
  background-color: #f2f8f9;
  border: 1px solid #fff;
  border-radius: 0.5rem;
  display: grid;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  grid-template-columns: 1fr 3.125rem;
  max-width: 375px;
  max-width: 23.4375rem;
  width: 100%;
}

.c-link-box__text {
  font-size: 15px;
  font-size: 0.9375rem;
  padding: 0 13px;
  padding: 0 0.8125rem;
}

.c-link-box__icon {
  background-color: #e96565;
  border-radius: 0 0.5rem 0.5rem 0;
  margin-left: auto;
  width: 50px;
  width: 3.125rem;
}
.c-link-box__icon img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 8px;
  padding: 0.5rem;
}

.c-link-card {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 12px 24px;
  padding: 0.75rem 1.5rem;
}

.c-link-card__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  padding: 1rem;
}

.c-link-card__title {
  align-items: center;
  color: #05171a;
  display: flex;
  flex-direction: column;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  gap: 0px;
  gap: 0rem;
}
.c-link-card__title span {
  color: #3fa8c8;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.c-link-card__title::before {
  content: "";
  height: 24px;
  height: 1.5rem;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
  position: relative;
  width: 24px;
  width: 1.5rem;
}

.c-link-card__title--flow::before {
  background: url(../images/common/icon_flow.svg) no-repeat center center/contain;
}

.c-link-card__title--faq::before {
  background: url(../images/common/icon_question01.svg) no-repeat center center/contain;
}

.c-link-card__title--contact::before {
  background: url(../images/common/icon_contact.svg) no-repeat center center/contain;
}

.c-link {
  align-items: center;
  background-color: #d5e6ea;
  border-radius: 0.25rem;
  display: flex;
  flex-direction: row;
  gap: 30px;
  gap: 1.875rem;
  padding: 4px 8px 4px 16px;
  padding: 0.25rem 0.5rem 0.25rem 1rem;
  transition: all 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
}

.c-link::after {
  content: "";
  -webkit-mask-image: url(../images/common/icon_arrow01.svg);
          mask-image: url(../images/common/icon_arrow01.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
  background-color: #333;
  height: 4px;
  height: 0.25rem;
  left: 0px;
          mask-size: contain;
  position: relative;
  transition: all 0.3s ease;
  width: 24px;
  width: 1.5rem;
}

.c-link:hover::after {
  left: 4px;
}

.c-link--white {
  border-bottom: 1px solid #fff;
  color: #fff;
}

.c-link--white::after {
  background-color: #fff;
}

.c-link--triangle::after {
  content: "";
  display: inline-block;
  -webkit-mask-image: none;
  background-color: transparent;
  border-right: 1px solid #222;
  border-top: 1px solid #222;
  height: 10px;
  left: -4px;
  margin-left: 16px;
          mask-image: none;
  transform: rotate(45deg);
  transition: 0.3s;
  width: 10px;
}

.c-link--triangle:hover::after {
  left: 0px;
}

.p-company-list {
  background-color: #f2f8f9;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 32px;
  margin-top: 2rem;
  padding: 40px 20px;
  padding: 2.5rem 1.25rem;
}

.c-member-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 40px;
  gap: 40px;
  gap: 2.5rem;
}

.c-member-list-link {
  display: flex;
  flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
  height: 100%;
  padding: 20px;
}

.c-member-list__item {
  background-color: #fff;
}
.c-member-list__item img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-member-list__link {
  display: block;
}

.c-member-list__name {
  color: #3fa8c8;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.c-member-list__text {
  border-top: 1px solid #c1c1c1;
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: auto;
  padding-top: 12px;
  padding-top: 0.75rem;
}

.c-table {
  border-collapse: collapse;
  line-height: 1;
  text-align: center;
  width: 100%;
}

.c-table tr {
  display: flex;
  line-height: 150%;
}

.c-table__head {
  align-items: center;
  background-color: #f2f8f9;
  border: 1px solid #ccc;
  color: #05171a;
  display: flex;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 150%;
  padding: 10px 16px;
  padding: 0.625rem 1rem;
  text-align: left;
  text-align: initial;
  width: 100%;
}

.c-table__data {
  align-items: center;
  border: 1px solid #ccc;
  display: flex;
  font-size: 15px;
  font-size: 0.9375rem;
  padding: 10px 16px;
  padding: 0.625rem 1rem;
  text-align: left;
  text-align: initial;
  width: 100%;
}

.c-table__data span {
  display: block;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
  position: relative;
  text-decoration-line: line-through;
}

.c-table--company .c-table__head {
  max-width: 40%;
}

.c-title {
  color: #05171a;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  position: relative;
  writing-mode: vertical-rl;
}
.c-title span {
  color: #fff;
}

.c-title--row {
  display: inline-block;
  letter-spacing: normal;
  letter-spacing: initial;
  writing-mode: horizontal-tb;
}

.c-title--border::before,
.c-title--border::after {
  content: "";
  position: absolute;
  -webkit-mask-image: url(../images/common/bg_title01.svg);
          mask-image: url(../images/common/bg_title01.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
  background-color: #333;
  height: 120px;
  height: 7.5rem;
          mask-size: contain;
  width: 115px;
  width: 7.1875rem;
}

.c-title--border::before {
  right: -50px;
  right: -3.125rem;
  top: -60px;
  top: -3.75rem;
}

.c-title--border::after {
  bottom: -50px;
  bottom: -3.125rem;
  left: -50px;
  left: -3.125rem;
  transform: rotate(180deg);
}

.p-top-challenge_title.c-title--border::after {
  background-color: #fff;
}

.c-title--border-row {
  letter-spacing: 0.4em;
}

.c-title--border-row::before,
.c-title--border-row::after {
  background: url(../images/common/bg_title01.svg) no-repeat center center/contain;
  content: "";
  height: 167px;
  height: 10.4375rem;
  position: absolute;
  width: 68px;
  width: 4.25rem;
}

.c-title--border-row::before {
  left: -35px;
  left: -2.1875rem;
  top: -80px;
  top: -5rem;
  transform: rotate(-90deg);
}

.c-title--border-row::after {
  bottom: -80px;
  bottom: -5rem;
  right: -35px;
  right: -2.1875rem;
  transform: rotate(90deg);
}

.c-title-h2 {
  color: #05171a;
  display: flex;
  flex-direction: column;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  gap: 8px;
  gap: 0.5rem;
}
.c-title-h2 span {
  color: #3fa8c8;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.c-title-h2--center {
  align-items: center;
}

.c-title-uh2 {
  background-color: #3fa8c8;
  border-radius: 8px;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 12px 1em;
  padding: 0.75rem 1em;
}

.p-404 {
  margin-top: 200px;
  margin-top: 12.5rem;
}

.p-404__title {
  text-align: center;
}

.p-404__btn {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}

.p-challenge-list__item {
  margin-right: calc(50% - 50vw);
}

.p-challenge-list__item:nth-of-type(even) {
  margin-left: calc(50% - 50vw);
}

.p-challenge-list__item + .p-challenge-list__item {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.p-challenge-list__item-img {
  width: 100%;
}

.p-challenge-list__item-img img {
  aspect-ratio: 540/360;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-challenge-list__text-wrap {
  background-color: #489e3b;
  padding: 24px 40px;
  padding: 1.5rem 2.5rem;
}

.p-challenge-list__title {
  color: #fff;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 600;
}

.p-challenge-list__item-text {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  line-height: 150%; /* 28.8px */
  margin-top: 24px;
  margin-top: 1.5rem;
  padding-left: 0.8em;
  text-indent: -0.8em;
}

.p-challenge-list__item-text + .p-challenge-list__item-text {
  margin-top: 4px;
  margin-top: 0.25rem;
}

.p-company-contents__text {
  letter-spacing: 160%;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-contact {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.p-contact__title {
  color: #3fa8c8;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 400;
  margin-top: 100px;
  margin-top: 6.25rem;
}
.p-contact__title span {
  color: #90a891;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  padding-left: 5px;
}

.p-contact__title {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-contact__text {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-contact .wp-block-contact-form-7-contact-form-selector {
  background-color: #f2f8f9;
  margin-top: 32px;
  margin-top: 2rem;
  padding: 16px;
  padding: 1rem;
}

.p-contact__head {
  width: 250px;
  width: 15.625rem;
}

.p-contact__item {
  margin-top: 6px;
  margin-top: 0.375rem;
}

.p-contact__item-example {
  color: gray;
  margin-top: 6px;
  margin-top: 0.375rem;
}

.p-contact__required {
  background-color: #e96565;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  margin-left: 1em;
  padding: 4px 8px;
  padding: 0.25rem 0.5rem;
}

.p-contact__optional {
  background-color: #fff;
  border: 1px solid #05171a;
  font-size: 14px;
  font-size: 0.875rem;
  margin-left: 1em;
  padding: 4px 8px;
  padding: 0.25rem 0.5rem;
}

.p-contact__policy,
.p-contact__content,
.p-contact__btn {
  margin: 24px 0;
  margin: 1.5rem 0;
}

.p-contact__policy-link {
  color: blue;
  transition: all 0.3s;
}

.p-contact__btn-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.p-contact__btn {
  display: inline-block;
  text-align: center;
}

.p-contact__item-text,
.p-contact__item-tel,
.p-contact__item-email,
.p-contact__item-textarea,
.p-contact__item-select,
.p-contact__item-exam {
  background: none;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  font-size: 1rem;
  margin: 0;
  outline: none;
  padding: 0.8em;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.p-contact__item-text:focus,
.p-contact__item-tel:focus,
.p-contact__item-email:focus,
.p-contact__item-textarea:focus,
.p-contact__item-select:focus {
  border: 1px solid rgba(0, 0, 0, 0.7);
  box-shadow: none;
  outline: none;
}

.p-contact__item-textarea {
  height: 200px;
  overflow: auto;
  resize: none;
}

.p-contact__item-message {
  white-space: pre-wrap;
}

.p-contact__item-select {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALJJREFUeNrslssNgCAQRCmB0ijBEuyEEijBEijBEizBEnAPy0UBWVj8JDvJJB5w3gsXVUoikXwsBrpAPdRCNcOmxi2P2yZ3cIKGU9dOCY0b590pdXhPHOyRyMEDsi4JhVIlSvBYTRGgSNTAQ+pFyyBRC7e5AdchUQt3d1fYIsEGb5Fgh1MktlFwisQwOIeE4/pGuDfhLRLscIrEMHiNxHB4SeIxeMyMPxkenyUSyT9zCDAAj5btZ4c3zaUAAAAASUVORK5CYII=");
  background-position: right 0.5em center;
  background-repeat: no-repeat;
  background-size: 1em;
  color: inherit;
  padding-right: 3em;
}

.p-contact__item-select:invalid {
  color: rgba(0, 0, 0, 0.32);
}

.p-contact__item-select select::-ms-expand {
  display: none;
}

.p-contact__item-radio input[type=radio],
.p-contact__item-checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.p-contact__item-radio input[type=radio] + span,
.p-contact__item-checkbox input[type=checkbox] + span {
  color: #333;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  padding: 0.5em 1em 0.5em 1.5em;
  position: relative;
}

.p-contact__item-radio input[type=radio]:focus + span,
.p-contact__item-checkbox input[type=checkbox]:focus + span {
  opacity: 0.7;
}

.p-contact__item-radio input[type=radio] + span::before,
.p-contact__item-checkbox input[type=checkbox] + span::before {
  background: white;
  border: 1px solid black;
  content: "";
  height: 1em;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
}

.p-contact__item-checkbox input[type=checkbox]:checked + span::before {
  background: #333;
}

.p-contact__item-radio input[type=radio]:checked + span::before {
  background: white;
}

.p-contact__item-radio input[type=radio] + span::before {
  border-radius: 50%;
}

.p-contact__item-radio input[type=radio] + span::after {
  background: #333;
  border: 1px solid transparent;
  border-radius: 50%;
  content: "";
  height: 0.5em;
  left: 0.25em;
  opacity: 0;
  padding: 0.125em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
  width: 0.5em;
}

.p-contact__item-checkbox input[type=checkbox] + span::after {
  border-bottom: 2px solid white;
  border-left: 2px solid white;
  content: "";
  display: block;
  height: 0.35em;
  left: 0.15em;
  margin-top: -0.1em;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s ease 0s;
  width: 0.8em;
}

.p-contact__item-checkbox input[type=checkbox]:checked + span::after,
.p-contact__item-radio input[type=radio]:checked + span::after {
  opacity: 1;
}

/* button */
.p-contact__btn input[type=submit],
.p-contact__btn input[type=button] {
  background-color: #fff;
  display: inline-block;
  margin: 0;
  padding: 0.5em 2em;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  color: #3fa8c8;
  -moz-appearance: button;
       appearance: button;
  border: 1px solid #3fa8c8;
  border-radius: 0;
  cursor: pointer;
  font-size: 16px;
  font-size: 1rem;
  transition: all 0.3s;
}

.p-contact__btn input[type=submit]:hover,
.p-contact__btn input[type=button]:hover,
.p-contact__btn input[type=submit]:focus,
.p-contact__btn input[type=button]:focus {
  background-color: #3fa8c8;
  color: #fff;
  outline: none;
}

.p-contact__item,
.p-contact__btn-submit {
  min-width: 150px;
  min-width: 9.375rem;
}

.wpcf7-spinner {
  position: absolute;
}

.p-contact__description {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-contact__link {
  border-bottom: 1px solid #0e90b8;
  color: #0e90b8;
  padding-bottom: 2px;
}

.p-cta {
  background: url(../images/common/img_bg-cta2.png) no-repeat center center/cover;
  padding: 40px 0 100px;
  padding: 2.5rem 0 6.25rem;
  position: relative;
  z-index: -1;
}

.p-cta::before {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.p-cta__inner {
  margin: auto;
  max-width: 600px;
  max-width: 37.5rem;
  padding: 0 20px;
  padding: 0 1.25rem;
  width: 100%;
}

.p-cta__title {
  color: #fff;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  position: relative;
  text-transform: uppercase;
}

.p-cta__title::before {
  background: #de8430;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 40px;
  width: 2.5rem;
}

.p-cta__title span {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.p-cta__text {
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  line-height: 180%; /* 32.4px */
  margin-top: 50px;
  margin-top: 3.125rem;
  position: relative;
  text-align: center;
  text-shadow: 0 0 30px rgba(12, 43, 54, 0.6);
}

.p-cta__btn-wrap {
  margin-top: 30px;
  margin-top: 1.875rem;
  position: relative;
  text-align: center;
}

.p-cta__btn {
  padding: 20px 60px;
  padding: 1.25rem 3.75rem;
  text-align: center;
  text-transform: uppercase;
  transition: 0.3s;
}

.p-cta__btn.c-btn {
  border: 2px solid #fff;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  max-width: 37.5rem;
}

.p-cta__btn.c-btn::before {
  -webkit-mask-image: url(../images/common/icon_mail01.svg);
  height: 32px;
  height: 2rem;
  margin-right: 1em;
          mask-image: url(../images/common/icon_mail01.svg);
  width: 32px;
  width: 2rem;
}

.p-exam-group {
  display: flex;
  flex-direction: column;
}

.p-exam-group__title {
  align-items: center;
  background-color: #3fa8c8;
  border: 1px solid #3fa8c8;
  border-radius: 0.5rem 0.5rem 0px 0px;
  color: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  gap: 2px;
  gap: 0.125rem;
  justify-content: center;
  line-height: 1.3333333333;
  padding: 10px 4px;
  padding: 0.625rem 0.25rem;
  position: relative;
}

.p-exam-group__title::after {
  content: "▼";
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
}

.p-exam-group__title.is-open::after {
  transform: translateY(-50%) rotate(180deg); /* 上向きに回転 */
}

.p-exam-group .p-exam-group__title::before {
  aspect-ratio: 1/1;
  content: "";
  width: 50px;
  width: 3.125rem;
}

.p-exam-group .p-exam-group__title--under::before,
.p-exam-group .p-exam-group__title--under::after {
  content: none;
}

.p-exam-group--air .p-exam-group__title::before {
  background: url(../images/common/icon_air.png) no-repeat center center/contain;
}

.p-exam-group--filter .p-exam-group__title::before {
  background: url(../images/common/icon_filter.png) no-repeat center center/contain;
}

.p-exam-group--product1 .p-exam-group__title::before {
  background: url(../images/common/icon_product.svg) no-repeat center center/contain;
}

.p-exam-group--product2 .p-exam-group__title::before {
  background: url(../images/common/icon_product.svg) no-repeat center center/contain;
}

.p-exam-group--spec .p-exam-group__title::before {
  background: url(../images/common/icon_spec.png) no-repeat center center/contain;
}

.p-exam-group--env .p-exam-group__title::before {
  background: url(../images/common/icon_env.png) no-repeat center center/contain;
}

.p-exam-group--research .p-exam-group__title::before {
  background: url(../images/common/icon_research.png) no-repeat center center/contain;
}

.p-exam-group__wrap {
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #b1bdbf;
  border-left: 1px solid #b1bdbf;
  border-radius: 0 0 0.5rem 0.5rem;
  border-right: 1px solid #b1bdbf;
  flex-grow: 1;
  padding: 0 4px 8px;
  padding: 0 0.25rem 0.5rem;
}

.p-exam-group__item a {
  border-bottom: 1px solid #b1bdbf;
  display: block;
  font-size: 15px;
  font-size: 0.9375rem;
  padding: 8px 0;
  padding: 0.5rem 0;
}

.p-exam-group__item a:hover {
  background-color: #f5f9f5;
  opacity: 1;
}

.p-exam-group__title-sub {
  border-bottom: 1px solid #b1bdbf;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  padding: 8px 0;
  padding: 0.5rem 0;
}

.p-faq-contents {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-faq-list__item + .p-faq-list__item {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-faq-list__item-question {
  align-items: center;
  background-color: #3fa8c8;
  color: #fff;
  cursor: pointer;
  display: grid;
  font-size: 15px;
  font-size: 0.9375rem;
  grid-template-columns: 2.25rem 1fr;
  padding: 12px 40px 12px 24px;
  padding: 0.75rem 2.5rem 0.75rem 1.5rem;
  position: relative;
  grid-gap: 20px;
  border-radius: 0.625rem;
  gap: 20px;
  gap: 1.25rem;
}

.p-faq-list__item-question::before,
.p-faq-list__item-question::after {
  background: #fff;
  content: "";
  height: 3px;
  height: 0.1875rem;
  position: absolute;
  right: 20px;
  right: 1.25rem;
  top: 50%;
  transform: translate(0, -50%);
  transition: 0.3s;
  width: 18px;
  width: 1.125rem;
}

.p-faq-list__item-question::after {
  transform: translateY(-50%) rotate(90deg);
}

.p-faq-list__item-question.is-open::after {
  transform: translateY(-50%) rotate(0deg);
}

.p-faq-list__item-question span {
  align-items: center;
  background-color: #fff;
  border-radius: 99px;
  color: #05171a;
  display: block;
  display: flex;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  height: 36px;
  height: 2.25rem;
  justify-content: center;
  margin-right: 20px;
  margin-right: 1.25rem;
  width: 36px;
  width: 2.25rem;
}

.p-faq-list__item-answer {
  display: none;
}

.p-faq-list__answer-wrap {
  background-color: #fff;
  border-radius: 0.625rem;
  display: grid;
  font-size: 15px;
  font-size: 0.9375rem;
  grid-template-columns: 2.25rem 1fr;
  margin-top: 16px;
  margin-top: 1rem;
  padding: 15px 30px 15px 20px;
  padding: 0.9375rem 1.875rem 0.9375rem 1.25rem;
  grid-gap: 20px;
  background-color: #fff;
  border-radius: 0.625rem;
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.05);
  gap: 20px;
  gap: 1.25rem;
}

.p-faq-list__answer-wrap span {
  align-items: center;
  background-color: #3fa8c8;
  border-radius: 99px;
  color: white;
  display: block;
  display: flex;
  font-family: "Roboto", sans-serif;
  height: 36px;
  height: 2.25rem;
  justify-content: center;
  margin-right: 20px;
  margin-right: 1.25rem;
  width: 36px;
  width: 2.25rem;
}

.p-faq-list__answer-text {
  line-height: 160%;
}
.p-faq-list__answer-text a {
  border-bottom: 1px solid #3fa8c8;
  color: #3fa8c8;
}

.p-floating-link {
  display: none;
}

.p-floating-link__box {
  align-items: center;
  background-color: #fff;
  border-radius: 0.5rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  gap: 0.75rem;
  justify-content: center;
}

.p-floating-link__text {
  align-items: center;
  color: #05171a;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-size: 0.875rem;
  justify-content: center;
}
.p-floating-link__text span {
  color: #3fa8c8;
}

.p-floating-link__box--blue {
  background-color: #3fa8c8;
  border-radius: 0 0 0 0.5rem;
}

.p-floating-link__box--blue .p-floating-link__text {
  color: #fff;
}
.p-floating-link__box--blue .p-floating-link__text span {
  color: #fff;
}

.p-floating-link__box::before {
  aspect-ratio: 1/1;
  content: "";
  width: 32px;
  width: 2rem;
  -webkit-mask-image: url(../images/common/icon_flow-arrow01.svg);
          mask-image: url(../images/common/icon_flow-arrow01.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background-color: #3fa8c8;
          mask-position: center;
}

.p-floating-link__box--blue::before {
  -webkit-mask-image: url(../images/common/icon_contact.svg);
  background-color: #fff;
          mask-image: url(../images/common/icon_contact.svg);
}

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

.p-flow-list {
  counter-reset: number;
}

.p-flow-list__item {
  padding: 16px;
  padding: 1rem;
  position: relative;
}

.p-flow-list__item::after {
  background-color: #3fa8c8;
  bottom: 0;
  clip-path: polygon(50% 20px, 0% 0%, 30px 0%);
  content: "";
  height: 20px;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 100%);
  width: 30px;
}

.p-flow-list__item + .p-flow-list__item {
  margin-top: 32px;
  margin-top: 2rem;
}

.p-flow-list__item:last-of-type::after {
  content: none;
}

.p-flow-list__item-icon {
  background-color: #f2f8f9;
  border-radius: 50%;
  display: flex;
  height: 150px;
  height: 9.375rem;
  margin: auto;
  width: 150px;
  width: 9.375rem;
}

.p-flow-list__item-img {
  margin: auto;
  width: 80px;
  width: 5rem;
}

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

.p-flow-list__item-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-flow-list__item-text {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-flow-list__item-number {
  color: #3fa8c8;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.p-flow-list__link-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-footer {
  padding: 40px 0 24px;
  padding: 2.5rem 0 1.5rem;
  position: relative;
  z-index: 0;
}

.p-footer__inner {
  padding: 0 20px;
  padding: 0 1.25rem;
}

.p-footer__left {
  padding-right: 40px;
  padding-right: 2.5rem;
  position: relative;
}

.p-footer__logo {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 10px;
  gap: 0.625rem;
}
.p-footer__logo img {
  max-width: 300px;
  max-width: 18.75rem;
}
.p-footer__logo span {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
}

.p-footer__logo a {
  display: block;
  padding: 5px 0;
}

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

.p-footer__address {
  color: #fff;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6666666667;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-footer__wrap {
  display: flex;
  flex-direction: column;
}

.p-footer__right {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-footer__nav {
  display: none;
}

.p-footer__nav-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px 40px;
  gap: 2rem 2.5rem;
}

.p-footer__nav-list {
  color: #05171a;
  display: flex;
  flex-direction: column;
  gap: 12px;
  gap: 0.75rem;
}

.p-footer__nav-item {
  display: flex;
  flex-direction: column;
  font-weight: 400;
  line-height: 110%;
  max-width: 160px;
  max-width: 10rem;
}

.p-footer__nav-link {
  border-bottom: 1px solid #b1bdbf;
  display: block;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}

.p-footer__sub-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  gap: 0.25rem;
}

.p-footer__nav-sub-cat {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
  margin-top: 4px;
  margin-top: 0.25rem;
}

.p-footer__nav-sub-cat.is-second {
  margin-top: 12px;
  margin-top: 0.75rem;
}

.p-footer__sub-item a {
  font-size: 12px;
  font-size: 0.75rem;
}

.p-footer__nav-item a:hover {
  color: #3fa8c8;
  opacity: 1;
}

.p-footer__sub-item a::before {
  content: ">";
  margin-right: 4px;
  margin-right: 0.25rem;
}

.p-footer__nav-link-wrap {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-footer__bottom {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-footer__sns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  gap: 1rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
.p-footer__sns-icon {
  display: block;
  max-width: 20px;
  max-width: 1.25rem;
  width: 100%;
}

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

.p-footer__copyright {
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 70px;
  margin-top: 4.375rem;
}

.p-footer__policy-wrap {
  width: 100%;
}

.p-footer__copyright-wrap {
  margin-top: 24px;
  margin-top: 1.5rem;
  padding: 20px;
  padding: 1.25rem;
  text-align: center;
  width: 100%;
}

.p-footer__border-container {
  border-top: 1px solid #888;
}

.p-footer__policy-wrap {
  margin-top: 24px;
  margin-top: 1.5rem;
  width: 100%;
}

.p-footer__policy {
  font-size: 14px;
  font-size: 0.875rem;
}

.p-footer__pagegtop {
  bottom: 30px;
  bottom: 1.875rem;
  position: fixed;
  right: 20px;
  right: 1.25rem;
  z-index: 999;
}

body {
  position: relative;
}

.l-header {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 900;
}

.p-header {
  background-color: rgba(255, 255, 255, 0.95);
}

.p-header__inner {
  height: inherit;
  padding-left: 15px;
  padding-left: 0.9375rem;
}

.p-header__upper-container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  padding: 0.25rem 0;
}

.p-header__lower-container {
  display: none;
}

.p-header__wrapper {
  display: none;
}

.p-header__logo {
  max-width: 200px;
  max-width: 12.5rem;
  width: 100%;
}

.p-header__logo a {
  align-items: center;
  display: flex;
  height: inherit;
}

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

.p-header__btn-wrap {
  display: flex;
  gap: 12px;
  gap: 0.75rem;
}

.p-header__nav {
  display: none;
  height: inherit;
}

.p-header__nav-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  height: 50%;
}

.p-header__nav-item {
  background-color: #f2f8f9;
  height: 100%;
  width: 100%;
}

.p-header__nav-item + .p-header__nav-item {
  border-left: 1px solid #73a3b2;
}

.p-header__nav-item a {
  align-items: center;
  color: #333;
  display: flex;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  height: 100%;
  justify-content: center;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 8px 15px;
  padding: 0.5rem 0.9375rem;
}

.p-header__hamburger {
  background-color: #3fa8c8;
  border: none;
  cursor: pointer;
  height: 40px;
  height: 2.5rem;
  margin: 0;
  outline: none;
  padding: 0;
  position: relative;
  transition: 0.3s;
  width: 40px;
  width: 2.5rem;
  z-index: 999;
}

.p-header__hamburger.is-open {
  background-color: transparent;
}

.p-header__hamburger span {
  background-color: #fff;
  display: block;
  height: 1px;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  transition: 0.5s;
  width: 15px;
  width: 0.9375rem;
}

.p-header__hamburger span:nth-of-type(1) {
  top: -4px;
  top: -0.25rem;
}

.p-header__hamburger span:nth-of-type(2) {
  top: 0;
}

.p-header__hamburger span:nth-of-type(3) {
  top: 4px;
  top: 0.25rem;
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  background-color: #05171a;
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.p-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.p-header__hamburger.is-open span:nth-of-type(3) {
  background-color: #05171a;
  top: -2px;
  top: -0.125rem;
  transform: translateX(-50%) rotate(-45deg);
}

.p-header__drawer {
  background-color: white;
  bottom: 0;
  display: none;
  height: 100vh;
  left: 0;
  overflow-y: scroll;
  padding: 150px 0;
  padding: 9.375rem 0;
  position: absolute;
  right: 0;
  scrollbar-width: none;
  top: 0;
  width: 100%;
  z-index: -1;
}

.p-header__drawer::after {
  background: url(../images/common/img_bg01.png) no-repeat 8% center/cover;
  content: "";
  display: block;
  height: 100vh;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.p-header__drawer::-webkit-scrollbar {
  display: none;
}

.p-header__drawer-nav {
  margin: auto;
  width: 75%;
}

.p-header__drawer-item a {
  border-bottom: 1px solid #888;
  color: #05171a;
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
  padding: 15px 0;
  padding: 0.9375rem 0;
}

.p-link-wrap {
  background-color: #3fa8c8;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding: 40px 0px;
  padding: 2.5rem 0rem;
}

.l-main--faq .p-link-wrap--faq {
  display: none;
}

.l-main--flow .p-link-wrap--flow {
  display: none;
}

.p-link-warp__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}

.p-link-wrap__item {
  width: 100%;
}

.l-loading {
  left: 0;
  position: fixed;
  top: 0;
  z-index: 999;
}

.p-loading {
  align-items: center;
  background-color: #071305;
  display: flex;
  height: 100vh;
  justify-content: center;
  width: 100%;
}

.p-loading__img {
  align-items: center;
  animation: loading 1.5s forwards ease-in-out;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  margin: auto;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateY(3.75rem);
  width: 100px;
  width: 6.25rem;
}

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

@keyframes loading {
  0% {
    opacity: 0;
    transform: translateY(1.875rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-nav {
  display: none;
}

.p-nav__container {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-left: auto;
  max-width: 200px;
  max-width: 12.5rem;
  padding: 10% 30px 40px;
  padding: 10% 1.875rem 2.5rem;
  width: 100%;
}

.p-nav__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  gap: 1rem;
}

.p-nav__item a {
  padding: 4px 12px;
  padding: 0.25rem 0.75rem;
  position: relative;
}
.p-nav__item a::after {
  background-color: transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 50%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  transform: translate(-50%, 0);
  transition: all 0.3s ease;
  width: 85%;
}
.p-nav__item a:hover::after {
  background-color: #3fa8c8;
}

.p-nav__item:last-of-type a {
  background-color: #222;
  border: 1px solid #222;
  color: #fff;
}

.p-nav__item:last-of-type {
  margin-top: 16px;
  margin-top: 1rem;
}
.p-nav__item:last-of-type a {
  background-color: #222;
  border: 1px solid #222;
  color: #fff;
}

.p-nav__item:last-of-type a {
  background-color: #222;
  border: 1px solid #222;
  color: #fff;
  transition: all 0.3s ease;
}
.p-nav__item:last-of-type a:hover::after {
  background-color: transparent;
}

.p-nav__item:last-of-type a:hover {
  -webkit-text-decoration: none;
  background-color: #fff;
  border: 1px solid #3fa8c8;
  color: #3fa8c8;
  opacity: 1;
  text-decoration: none;
}

.p-nav__recruit-link-wrap {
  display: none;
  margin-top: auto;
}

.p-news-list__item {
  border-bottom: 1px solid #888;
}

.p-news-list__item:first-of-type {
  border-top: 1px solid #888;
}

.p-news-list__item a {
  display: block;
  padding: 20px 0;
  padding: 1.25rem 0;
  position: relative;
}

.p-news-list__item a::after {
  background: url(../images/common/icon_arrow01.svg) no-repeat center center/contain;
  content: "";
  height: 16px;
  height: 1rem;
  position: absolute;
  right: 16px;
  right: 1rem;
  top: 50%;
  transform: translate(0, -50%);
  transition: 0.3s ease;
  width: 24px;
  width: 1.5rem;
}

.p-news-list__item a:hover {
  background-color: #f5f9f5;
  opacity: 1;
}

.p-news-list__item a:hover::after {
  right: 10px;
  right: 0.625rem;
}

.p-news-list__item-meta {
  align-items: center;
  display: flex;
  gap: 24px;
  gap: 1.5rem;
}

.p-news-list__item-date {
  color: #6e7e81;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
}

.p-news-list__item-title {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 12px;
  margin-top: 0.75rem;
  width: 80%;
}

.p-news-main {
  margin-top: 80px;
  margin-top: 5rem;
}

.p-news-mv {
  margin-top: 120px;
  margin-top: 7.5rem;
}

.p-pager-list {
  display: flex;
  justify-content: space-between;
}

.p-pager-list__btn a {
  color: #3fa8c8;
  display: inline-block;
  padding: 10px 20px;
  text-underline-offset: 7px;
  text-underline-offset: 0.4375rem;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.p-post-article__inner.l-inner {
  margin-top: 80px;
  margin-top: 5rem;
}

.p-post-article__title {
  color: #3fa8c8;
  font-size: 32px;
  font-size: 2rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-post-article__info {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.p-post-article__category {
  align-items: center;
  display: flex;
  gap: 5px;
  gap: 0.3125rem;
  justify-content: center;
}

.p-post-article__category li {
  border: 1px solid #3fa8c8;
  color: #3fa8c8;
  padding: 5px;
  padding: 0.3125rem;
}

.p-post-article__box {
  margin: 102.4px auto 0;
  margin: 6.4rem auto 0;
}

.p-post-article__content {
  background-color: #fff;
  width: 100%;
}

.p-post-article__content-wrap {
  margin: auto;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  width: 100%;
}

.p-post-article__title {
  position: relative;
}

.p-post-article__contents {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-post-article__main-img {
  aspect-ratio: 7/4;
}

.p-post-article__main-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-post-article__category {
  letter-spacing: 0;
}

.p-post-article__data {
  color: #3fa8c8;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-right: auto;
}

.p-post-article__content h2 {
  background-color: #3fa8c8;
  border-radius: 8px;
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 32px;
  margin-top: 2rem;
  padding: 12px 1em;
  padding: 0.75rem 1em;
}

.p-post-article__contents h3 {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 30px 0 15px;
  margin: 1.875rem 0 0.9375rem;
}

.p-post-article__contents h4 {
  font-size: 24px;
  font-size: 1.5rem;
  margin: 10px 0;
  margin: 0.625rem 0;
}

.p-post-article__contents h5 {
  border-bottom: 2px solid #3fa8c8;
  border-top: 2px solid #3fa8c8;
  color: #3fa8c8;
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  margin: 10px 0;
  margin: 0.625rem 0;
  padding: 2px 12.5px;
  padding: 0.125rem 0.78125rem;
}

.p-post-article__contents p {
  font-size: 15px;
  font-size: 0.9375rem;
}

.p-post-article__contents a {
  color: #3fa8c8;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.p-post-article__contents img {
  margin: 10px 0;
  margin: 0.625rem 0;
}

.p-post-article__contents figure {
  margin: 40px 0 10px;
  margin: 2.5rem 0 0.625rem;
}

.p-post-article__contents figcaption {
  font-size: 12px;
  font-size: 0.75rem;
  margin: 10px 0;
  margin: 0.625rem 0;
}

.p-post-article__contents .wp-block-media-text {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-post-article__btn {
  margin-top: 120px;
  margin-top: 7.5rem;
  text-align: center;
}

.p-post-article__btn .contact-btn {
  font-size: 18px;
  font-size: 1.125rem;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  padding-top: 24px;
  padding-top: 1.5rem;
  width: 100%;
}

.p-post-article__contents h2.wp-block-heading + p {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-post-article__contents .wp-block-list {
  margin-top: 24px;
  margin-top: 1.5rem;
}
.p-post-article__contents .wp-block-list li {
  padding: -1em;
  position: relative;
  text-indent: 1em;
}
.p-post-article__contents .wp-block-list li::before {
  background-color: #05171a;
  border-radius: 9px;
  content: "";
  height: 5px;
  left: 0.25em;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 5px;
}
.p-post-article__contents .wp-block-list li + li {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-post-article__contents .wp-block-columns figure {
  aspect-ratio: 400/300;
}
.p-post-article__contents .wp-block-columns figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-post-article__contents .wp-block-columns figure figcaption {
  text-align: center;
}

.p-post-article__contents .wp-block-list li::before {
  top: 0.8em;
}

.p-post-article__contents .wp-block-media-text__media img {
  margin-left: auto;
  margin-right: auto;
  max-width: 50%;
  padding-bottom: 10px;
}

.p-post-card__img {
  aspect-ratio: 400/300;
  width: 100%;
}

.p-post-card__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-post-card__body {
  position: relative;
}

.p-post-card__info {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  padding: 0.5rem 0;
}

.p-post-card__category li {
  background-color: #f2f8f9;
  color: #05171a;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 5px;
  padding: 0.3125rem;
}

.p-post-card__new {
  background-color: #fff;
  border: 1px solid #3fa8c8;
  color: #3fa8c8;
  left: 0;
  padding: 5px 10px;
  padding: 0.3125rem 0.625rem;
  position: absolute;
  top: 0;
}

.p-post-connect__title {
  color: #3fa8c8;
  font-size: 24px;
  font-size: 1.5rem;
}

.p-post-connect__items {
  display: grid;
  grid-gap: 50px;
  gap: 50px;
  gap: 3.125rem;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-post-list {
  margin-top: 64px;
  margin-top: 4rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  position: relative;
  width: 100%;
  z-index: -1;
}

.p-post-list__wrap {
  margin: 32px 0;
  margin: 2rem 0;
}

.p-post-list__title {
  color: #3fa8c8;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 400;
}
.p-post-list__title span {
  color: #90a891;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  padding-left: 5px;
}

.p-post-list__items {
  display: grid;
  grid-gap: 50px;
  gap: 50px;
  gap: 3.125rem;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-post-list__cards {
  margin-top: 48px;
  margin-top: 3rem;
}

.p-post-list__btn {
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: center;
}

.p-recruit-mv {
  aspect-ratio: 375/200;
  margin-top: 80px;
  margin-top: 5rem;
  position: relative;
  width: 100%;
}

.p-recruit-mv::after {
  background: url(../images/under/img_contact-mv01.png) no-repeat center center/cover;
  content: "";
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: -1;
}

.p-recruit-mv__title-wrap {
  align-self: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.p-recruit-mv__title {
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  justify-content: center;
  text-align: center;
}
.p-recruit-mv__title span {
  color: #fff;
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  padding-left: 5px;
}

.p-recruit-contents {
  margin-top: 64px;
  margin-top: 4rem;
}

.p-recruit-contents__title-sub {
  color: #05171a;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
}

.p-recruit-contents__table {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-recruit-contents__container {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-recruit-contents__text {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-recruit-contents__text + .p-recruit-contents__text {
  margin-top: 1em;
}

.p-iso-list__inner {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-related-exam {
  margin-top: 64px;
  margin-top: 4rem;
}

.p-related-exam .p-exam-group__item:last-of-type a {
  border-bottom: none;
}

.p-related-exam__title {
  font-size: 20px;
  font-size: 1.25rem;
}

.p-related-exam__sticky {
  align-self: flex-start;
  position: sticky;
  top: 140px;
  top: 8.75rem;
}

.p-search__content {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-search__item-title {
  color: #3fa8c8;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
}

.p-search__pagination {
  margin-top: 40px;
  margin-top: 2.5rem;
}
.p-search__pagination .pagenation {
  display: flex;
  justify-content: center;
  width: 100%;
}
.p-search__pagination .nav-links {
  align-items: center;
  display: flex;
  gap: 16px;
  gap: 1rem;
  justify-content: center;
}
.p-search__pagination .page-numbers {
  align-items: center;
  background-color: #3fa8c8;
  border: 1px solid #3fa8c8;
  color: #fff;
  display: flex;
  height: 32px;
  height: 2rem;
  justify-content: center;
  width: 32px;
  width: 2rem;
}
.p-search__pagination .page-numbers.current {
  background-color: #fff;
  color: #3fa8c8;
}

.p-table {
  border-collapse: collapse;
  line-height: 1;
  text-align: center;
  width: 100%;
}

.p-table__head {
  background-color: #50544f;
  border: 1px solid #ccc;
  color: #fff;
  font-size: 15px;
  font-size: 0.9375rem;
  padding: 15px 4px;
  padding: 0.9375rem 0.25rem;
}

.p-table__head:first-of-type {
  width: 30%;
}

.p-table__head:nth-of-type(2) {
  width: 25%;
}

.p-table__head:nth-of-type(3) {
  width: 25%;
}

.p-table__head:nth-of-type(5) {
  width: 7%;
}

.p-table__data {
  border: 1px solid #ccc;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 10px 8px;
  padding: 0.625rem 0.5rem;
}

.p-table__data span {
  display: block;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
  position: relative;
  text-decoration-line: line-through;
}

.p-top-access {
  background-color: #f2f8f9;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  padding-top: 40px;
  padding-top: 2.5rem;
}

.p-top-access__container {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-top-access__map {
  aspect-ratio: 375/280;
}
.p-top-access__map iframe {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-access__map img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-top-access__text-container {
  margin-top: 40px;
  margin-top: 2.5rem;
  min-height: 480px;
  min-height: 30rem;
}

.p-top-access__text-wrap + .p-top-access__text-wrap {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-top-access__title {
  color: #222;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration-line: underline;
}

.p-top-access__title-sub {
  color: #05171a;
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-top-access__text {
  color: #222;
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 150%;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-under-access {
  background-color: #fff;
}

.p-top-associate {
  margin-top: 300px;
  margin-top: 18.75rem;
  position: relative;
}

.p-top-associate::after {
  background: url(../images/top/img_bg-associate01.png) no-repeat center center/cover;
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}

.p-top-associate__container {
  display: flex;
  flex-direction: column;
  gap: 5%;
  justify-content: space-between;
  position: relative;
  top: -75px;
  top: -4.6875rem;
}

.p-top-associate__img {
  aspect-ratio: 551/443;
  margin-top: -160px;
  margin-top: -10rem;
  width: 80%;
}
.p-top-associate__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-associate__title-wrap {
  text-align: right;
}

.p-top-associate__title {
  margin-left: auto;
}

.p-top-associate__text-wrap {
  margin-top: 40px;
  margin-top: 2.5rem;
  max-width: 540px;
  max-width: 33.75rem;
}

.p-top-associate__title-sub {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}

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

.p-top-associate__item {
  color: #fff;
  display: inline-block;
  margin-left: 1em;
  text-indent: -1em;
  word-break: keep-all;
}

.p-top-associate__item::before {
  background-color: #fff;
  content: "";
  display: inline-block;
  height: 0.8em;
  margin-right: 3px;
  width: 0.8em;
}

.p-top-associate__text {
  color: #fff;
  display: inline-block;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-top-associate__text + .p-top-associate__text {
  margin-top: 4px;
  margin-top: 0.25rem;
}

.p-top-company {
  background-color: #f2f8f9;
  margin-top: 200px;
  margin-top: 12.5rem;
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
}

.p-top-company__inner {
  margin-top: -50px;
  margin-top: -3.125rem;
}
.p-top-company__title-wrap {
  margin-left: auto;
  margin-right: auto;
  max-width: 1180px;
  padding: 0 25px;
  position: relative;
  top: -100px;
  top: -6.25rem;
}

.p-top-company__container {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 56px;
  gap: 3.5rem;
  padding: 56px 24px;
  padding: 3.5rem 1.5rem;
  position: relative;
  z-index: 1;
}

.p-top-company__container::before {
  content: "";
  -webkit-mask-image: url(../images/common/logo.svg);
          mask-image: url(../images/common/logo.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
  background-color: #ededed;
  height: 114px;
  height: 7.125rem;
  left: 50%;
          mask-size: contain;
  position: absolute;
  top: 63%;
  transform: translate(-50%, -50%);
  width: 190px;
  width: 11.875rem;
  z-index: -1;
}

.p-top-company__contents-wrap {
  display: flex;
  flex-direction: column;
  gap: 48px;
  gap: 3rem;
}

.p-top-company__contents-title {
  color: #05171a;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.p-top-company__contents-text {
  color: #222;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 160%;
}

.p-top-company__contents-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  gap: 1.5rem;
}

.p-top-company__contents-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
}

.p-top-company__list-description {
  flex-grow: 1;
}

.p-company-profile__list {
  border-bottom: 1px solid #e6e6e6;
  display: flex;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  line-height: 1.3;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
}

.p-company-profile__list + .p-company-profile__list {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-company-profile__term {
  color: #05171a;
  flex-shrink: 0;
  font-weight: 600;
  line-height: 160%;
  max-width: 120px;
  max-width: 7.5rem;
  width: 100%;
}

.p-company-profile_description {
  color: #222;
  font-weight: 400;
  font-weight: 400;
  line-height: 160%;
}

.p-top-gallery__inner {
  margin: 5% 5% 0 5%;
}

.p-top-gallery .splide__slide {
  aspect-ratio: 600/300;
  display: block;
  width: 100%;
}

.p-top-gallery .splide__slide picture {
  height: inherit;
  height: 100%;
}

.p-top-gallery .splide__slide img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-gallery .swiper-slide {
  aspect-ratio: 600/300;
  display: block;
  width: 100%;
}

.p-top-gallery .swiper-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-gallery .swiper-slide img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-gallery .slick-track {
  display: block;
  width: 100%;
}

.p-top-gallery .slick-slide {
  aspect-ratio: 600/300;
  display: block;
  margin: 0 5px;
  width: 100%;
}

.p-top-gallery .slick-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-gallery .slick-slide img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-mv-slick {
  background: black;
}

.p-top-mv-slick__inner {
  margin: 5% 5% 0 5%;
}

.p-top-mv-slick .slick-track {
  display: block;
  width: 100%;
}

.p-top-mv-slick .slick-slide {
  aspect-ratio: 600/300;
  display: block;
  margin: 0 5px;
  width: 100%;
}

.p-top-mv-slick .slick-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-mv-slick .slick-slide img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-mv-splide__inner {
  margin: 5% 5% 0 5%;
}

.p-top-mv-splide .splide__slide {
  aspect-ratio: 600/300;
  display: block;
  width: 100%;
}

.p-top-mv-splide .splide__slide picture {
  height: inherit;
  height: 100%;
}

.p-top-mv-splide .splide__slide img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-mv-swiper {
  position: relative;
  z-index: 1;
}

.p-top-mv-swiper .swiper-slide {
  aspect-ratio: 375/650;
  display: block;
  width: 100%;
}

.p-top-mv-swiper .swiper-slide picture {
  height: inherit;
  height: 100%;
  position: relative;
}

.p-top-mv-swiper .swiper-slide img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-mv-swiper .swiper-button-prev,
.p-top-mv-swiper .swiper-button-next {
  display: none;
}

.p-top-mv-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  z-index: 2;
}

.p-top-mv-swiper .slide-background-2::after,
.p-top-mv-swiper .slide-background-6::after {
  background: url(../images/top/text_mv01pc.svg) no-repeat center center/contain;
  bottom: 3%;
  height: 20%;
  right: 5%;
  width: 70%;
}

.p-top-mv {
  position: relative;
}

.p-top-mv::before {
  aspect-ratio: 1;
  background: #489e3b;
  clip-path: polygon(0 0, 94% 0, 22.5% 36%, 0 25%);
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  width: 250px;
  width: 15.625rem;
  z-index: 1;
}

.p-top-mv__container {
  position: relative;
}

.p-top-mv__movie-warp {
  background-color: #333;
  height: inherit;
}

.p-top-mv__movie {
  aspect-ratio: 375/600;
}
.p-top-mv__movie video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.7;
  vertical-align: bottom;
}

.p-top-mv__text-wrap {
  bottom: 80px;
  bottom: 5rem;
  left: 0%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 25px;
  position: absolute;
  width: 100%;
}

.p-top-mv__text {
  border-bottom: 1px solid #fff;
  color: #fff;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
  max-width: 90rem;
  padding-bottom: 32px;
  padding-bottom: 2rem;
}

.p-top-news {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.p-top-news__news-list {
  margin-top: 120px;
  margin-top: 7.5rem;
}

.p-top-news__top-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.p-top-news__title {
  color: #05171a;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 400;
}

.p-top-news__link-warp {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-top-news__link:hover {
  opacity: 1;
}

.p-top-news__news-container {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-top-post__inner {
  margin: 5% 5% 0 5%;
}

.p-top-post .splide__slide {
  display: block;
  width: 100%;
}

.p-top-post .splide__slide a {
  aspect-ratio: 600/400;
  display: block;
}

.p-top-post .splide__slide img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-post .splide__pagination {
  bottom: -2em;
}

.p-top-post .splide__pagination__page.is-active {
  background-color: blue;
}

.p-top-post .swiper {
  padding-bottom: 20px;
}

.p-top-post .swiper-slide {
  aspect-ratio: 600/300;
  display: block;
  width: 100%;
}

.p-top-post .swiper-slide img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-post .swiper-pagination {
  bottom: 0;
}

.p-top-post .swiper-button-prev,
.p-top-post .swiper-button-next {
  text-rendering: initial;
}

.p-top-post .slick-track {
  display: block;
  width: 100%;
}

.p-top-post .slick-slide {
  display: block;
  height: 100%;
  margin: 0 5px;
  width: 100%;
}

.p-top-post .slick-slide img {
  aspect-ratio: 600/300;
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-post .slick-next,
.p-top-post .slick-prev {
  background: gray;
}

.p-service__swiper {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.p-service-swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.p-service-swiper .swiper-slide img {
  aspect-ratio: 553/755;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-recruit__inner {
  position: relative;
}

.p-top-recruit__text-container {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 24px;
  padding: 1.5rem;
  position: absolute;
  right: 20px;
  right: 1.25rem;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 1;
}

.p-top-recruit__title {
  color: #05171a;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 400;
}

.p-top-recruit__text {
  font-size: 15px;
  font-size: 0.9375rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-top-recruit__btn-wrap {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-top-work {
  margin-top: 100px;
  margin-top: 6.25rem;
  position: relative;
}

.p-top-work::after {
  background-color: #489e3b;
  content: "";
  height: 30%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.p-top-work__title {
  display: inline-block;
  position: relative;
  top: -1.2em;
}

.p-top-work__cards {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 40px;
  gap: 40px;
  gap: 2.5rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-top-work__card {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  max-width: 37.5rem;
}

.p-top-work__img {
  aspect-ratio: 400/240;
}
.p-top-work__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-work__body {
  padding: 24px 8px;
  padding: 1.5rem 0.5rem;
}

.p-top-work__card-title {
  color: #05171a;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  text-align: center;
}

.p-top-works {
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}

.p-top-works::before {
  content: "";
  display: block;
  height: 100px; /* 調整したい高さ（固定ヘッダーの高さ） */
  margin-top: -100px; /* heightと同じ分のネガティブマージン */
  visibility: hidden;
}

.p-top-works__inner {
  margin: 5% 5% 0 5%;
}

.p-top-works .splide__slide {
  display: block;
  width: 100%;
}

.p-top-works .splide__slide a {
  aspect-ratio: 600/400;
  display: block;
}

.p-top-works .splide__slide img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-works .splide__pagination {
  bottom: -2em;
}

.p-top-works .splide__pagination__page.is-active {
  background-color: blue;
}

.p-top-works .swiper {
  padding-bottom: 20px;
}

.p-top-works .swiper-slide {
  aspect-ratio: 600/300;
  display: block;
  width: 100%;
}

.p-top-works .swiper-slide img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-works .swiper-pagination {
  bottom: 0;
}

.p-top-works .swiper-button-prev,
.p-top-works .swiper-button-next {
  text-rendering: initial;
}

.p-top-works .slick-track {
  display: block;
  width: 100%;
}

.p-top-works .slick-slide {
  display: block;
  height: 100%;
  margin: 0 5px;
  width: 100%;
}

.p-top-works .slick-slide img {
  aspect-ratio: 600/300;
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-works .slick-next,
.p-top-works .slick-prev {
  background: gray;
}

.p-under-contents {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-under-contents__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  max-width: 37.5rem;
}

.p-under-contents__container + .p-under-contents__container {
  margin-top: 40px;
  margin-top: 2.5rem;
}

.p-under-contents__text {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 180%;
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-under-contents__text--recruit {
  line-height: 190%;
}

.p-under-contents__table {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-under-contents__pdf-wrap {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.p-under-contents__pdf-box + .p-under-contents__pdf-box {
  margin-top: 12px;
  margin-top: 0.75rem;
}

.p-under-mv {
  margin-top: 100px;
  margin-top: 6.25rem;
}

.p-under-mv__nav-list {
  grid-template-columns: repeat(7, 1fr);
}

.p-under-mv__nav-item {
  background-color: #3fa8c8;
}
.p-under-mv__nav-item span {
  color: #fff;
  display: block;
  font-weight: 400;
  padding: 8px 12px;
  padding: 0.5rem 0.75rem;
  text-align: center;
}

.p-under-mv__nav-item span:hover {
  cursor: pointer;
}

.p-under-mv__nav-item:first-of-type,
¥ {
  border-radius: 0.5rem 0 0 0;
}

.p-under-mv__nav-item:last-of-type {
  border-radius: 0 0.5rem 0 0;
}

.p-under-mv__nav-item + .p-under-mv__nav-item {
  border-left: 1px solid #fff;
}

.p-under-mv__sub-nav {
  display: none;
}

.p-under-mv__sub-item a {
  border-bottom: 1px solid #b1bdbf;
  color: #05171a;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  justify-content: initial;
  padding: 8px 0;
  padding: 0.5rem 0;
}

.p-under-mv__sub-item a:hover {
  background-color: #f5f9f5;
  opacity: 1;
}

.p-under-mv__img-wrap {
  height: 200px;
  height: 12.5rem;
  position: relative;
}
.p-under-mv__img-wrap img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
  height: 100%;
     object-position: right;
}

.p-under-mv__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  left: 50%;
  padding: 4px 16px;
  padding: 0.25rem 1rem;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.p-exam-article .p-under-mv__title {
  background-color: rgba(255, 255, 255, 0.9);
}

.p-under-mv__nav {
  position: relative; /* サブメニューの絶対位置の基準にする */
}

.p-under-mv__nav-item {
  position: relative; /* 子要素（サブメニュー）の絶対位置の基準 */
}

.p-under-mv__sub-nav {
  background-color: #fff; /* 任意の背景色 */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 任意の影（視認性向上） */
  display: none;
  left: 0;
  min-width: 200px; /* 必要に応じて調整 */
  padding: 0 4px 8px;
  padding: 0 0.25rem 0.5rem;
  position: absolute;
  top: 100%; /* 親要素の下に表示 */
  z-index: 10;
}

.p-under-mv__sub-cat {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 8px 4px 4px;
  padding: 0.5rem 0.25rem 0.25rem;
}

.pagination {
  width: 100%;
}
.nav-links ul {
  display: flex;
  justify-content: center;
}

.nav-links ul li a,
.nav-links ul li span {
  align-items: center;
  color: #3fa8c8;
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  font-size: 1rem;
}

.nav-links ul li span.current {
  color: #333;
}

.nav-links ul li {
  margin: 0 5px;
  margin: 0 0.3125rem;
  position: relative;
}

.nav-links ul li a,
.nav-links ul li span {
  display: block;
  padding: 5px;
  padding: 0.3125rem;
  width: 100%;
}

.nav-links ul li .nav-links ul .dots {
  padding-left: 0;
  padding-right: 0;
}

.u-desktop {
  display: none;
}

.u-pc-mini {
  display: block;
}

.u-mobile {
  display: block;
}

.u-inlineblock-desktop {
  display: none;
}

.u-inlineblock-mobile {
  display: inline-block;
}

@media (prefers-reduced-motion: reduce){
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

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

@media screen and (min-width: 768px){
  html {
    font-size: 1.4814814815vw;
  }
  .l-main {
    margin-top: 116px;
    margin-top: 7.25rem;
  }
  a:hover {
    opacity: 0.8;
  }
  .l-inner {
    max-width: 1130px;
    padding-left: 25px;
    padding-right: 25px;
  }
  .l-inner-large {
    max-width: 1230px;
    padding-left: 25px;
    padding-right: 25px;
  }
  .c-link-box {
    max-width: 450px;
    max-width: 28.125rem;
  }
  .c-link-card__title {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .c-link-card__title span {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .c-link-card__title::before {
    height: 32px;
    height: 2rem;
    width: 32px;
    width: 2rem;
  }
  .p-company-list {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .c-member-list {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-member-list__name {
    font-size: 16px;
    font-size: 1rem;
  }
  .c-table__head {
    font-size: 16px;
    font-size: 1rem;
    padding: 16px 16px;
    padding: 1rem 1rem;
  }
  .c-table__data {
    font-size: 16px;
    font-size: 1rem;
    padding: 16px 16px;
    padding: 1rem 1rem;
  }
  .c-table--company .c-table__head {
    max-width: 240px;
    max-width: 15rem;
  }
  .c-title {
    font-size: 40px;
    font-size: 2.5rem;
  }
  .c-title--border::before,
  .c-title--border::after {
    height: 167px;
    height: 10.4375rem;
    width: 115px;
    width: 7.1875rem;
  }
  .p-top-challenge_title.c-title--border::after {
    background-color: #333;
  }
  .p-top-challenge_title.c-title--border span {
    color: #05171a;
  }
  .c-title--border-row::before,
  .c-title--border-row::after {
    height: 167px;
    height: 10.4375rem;
    width: 100px;
    width: 6.25rem;
  }
  .c-title-h2 {
    font-size: 32px;
    font-size: 2rem;
    gap: 16px;
    gap: 1rem;
  }
  .c-title-h2 span {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .c-title-uh2 {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .p-challenge-list__item {
    align-items: center;
    background-color: #489e3b;
    display: flex;
    margin-left: auto;
    margin-right: 0;
    margin-right: initial;
    max-width: 78.2%;
  }
  .p-challenge-list__item:nth-of-type(even) {
    flex-direction: row-reverse;
    margin-left: 0;
    margin-left: initial;
    margin-right: auto;
  }
  .p-challenge-list__item-img {
    max-width: 540px;
    max-width: 33.75rem;
  }
  .p-challenge-list__text-wrap {
    padding: 0 40px;
    padding: 0 2.5rem;
  }
  .p-challenge-list__title {
    font-size: 32px;
    font-size: 2rem;
  }
  .p-challenge-list__item-text {
    margin-top: 44px;
    margin-top: 2.75rem;
    max-width: 480px;
    max-width: 30rem;
    width: 100%;
  }
  .p-challenge-list__item:nth-of-type(even) .p-challenge-list__item-text {
    margin-left: 0;
  }
  .p-company-contents__text {
    margin-top: 32px;
    margin-top: 2rem;
  }
  .p-contact {
    margin-top: 150px;
    margin-top: 9.375rem;
  }
  .p-contact__title {
    font-size: 48px;
    font-size: 3rem;
    margin-top: 180px;
    margin-top: 11.25rem;
  }
  .p-contact__title span {
    font-size: 16px;
    font-size: 1rem;
  }
  .p-contact__title {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-contact__text {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-contact .wp-block-contact-form-7-contact-form-selector {
    margin-top: 40px;
    margin-top: 2.5rem;
    padding: 24px;
    padding: 1.5rem;
  }
  .p-contact__btn-wrap {
    flex-direction: row;
    gap: 40px;
    gap: 2.5rem;
  }
  .p-contact__description {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-cta {
    padding: 60px 0 140px;
    padding: 3.75rem 0 8.75rem;
  }
  .p-cta__inner {
    max-width: 1200px;
    max-width: 75rem;
    padding: 0 25px;
    padding: 0 1.5625rem;
  }
  .p-cta__title {
    font-size: 60px;
    font-size: 3.75rem;
    padding-bottom: 25px;
    padding-bottom: 1.5625rem;
  }
  .p-cta__title::before {
    width: 50px;
    width: 3.125rem;
  }
  .p-cta__title span {
    font-size: 20px;
    font-size: 1.25rem;
    padding-bottom: 12px;
    padding-bottom: 0.75rem;
  }
  .p-cta__text {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .p-exam-group__title::after {
    content: none;
  }
  .p-faq-contents {
    margin-top: 64px;
    margin-top: 4rem;
  }
  .p-faq-list__item + .p-faq-list__item {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-faq-list__item-question {
    font-size: 16px;
    font-size: 1rem;
    padding: 14px 60px 14px 24px;
    padding: 0.875rem 3.75rem 0.875rem 1.5rem;
  }
  .p-faq-list__item-question::before,
  .p-faq-list__item-question::after {
    width: 20px;
    width: 1.25rem;
  }
  .p-faq-list__answer-wrap {
    font-size: 16px;
    font-size: 1rem;
    margin-top: 16px;
    margin-top: 1rem;
    padding: 20px 40px 15px 24px;
    padding: 1.25rem 2.5rem 0.9375rem 1.5rem;
  }
  .p-floating-link {
    border-bottom: 1px solid #3fa8c8;
    border-left: 1px solid #3fa8c8;
    border-radius: 0.5625rem 0 0 0.5625rem;
    border-top: 1px solid #3fa8c8;
    display: grid;
    grid-template-rows: 1fr 1fr;
    height: 240px;
    height: 15rem;
    position: fixed;
    right: 0;
    top: 50%;
    width: 100px;
    width: 6.25rem;
    z-index: 0;
  }
  .p-flow {
    margin-top: 32px;
    margin-top: 2rem;
  }
  .p-flow-list__item {
    align-items: center;
    border: 1px solid #c8c8c8;
    border-radius: 0.5rem;
    display: flex;
    padding: 24px;
    padding: 1.5rem;
  }
  .p-flow-list__item::after {
    clip-path: polygon(50% 20px, 0% 0%, 30px 0%);
    height: 20px;
    width: 30px;
  }
  .p-flow-list__item + .p-flow-list__item {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-flow-list__item-icon {
    flex-shrink: 0;
    height: 180px;
    height: 11.25rem;
    margin: 0;
    margin: initial;
    width: 180px;
    width: 11.25rem;
  }
  .p-flow-list__item-img {
    width: 120px;
    width: 7.5rem;
  }
  .p-flow-list__item-content {
    margin-left: 100px;
    margin-left: 6.25rem;
  }
  .p-flow-list__item-title {
    font-size: 24px;
    font-size: 1.5rem;
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-flow-list__item-text {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .p-flow-list__item-number {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .p-flow-list__link-wrap {
    align-items: center;
    flex-direction: row;
    margin-top: 24px;
    margin-top: 1.5rem;
  }
  .p-footer {
    padding: 100px 0 24px;
    padding: 6.25rem 0 1.5rem;
  }
  .p-footer__inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 1600px;
    padding: 0 140px 0 40px;
    padding: 0 8.75rem 0 2.5rem;
  }
  .p-footer__left {
    width: 50%;
  }
  .p-footer__left::after {
    background-color: #fff;
    bottom: 0;
    content: "";
    height: 50%;
    position: absolute;
    right: 0;
    width: 1px;
  }
  .p-footer__logo span {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .p-footer__address {
    margin-top: 48px;
    margin-top: 3rem;
  }
  .p-footer__wrap {
    flex-direction: row;
    justify-content: space-between;
  }
  .p-footer__right {
    display: flex;
    flex-direction: row;
    gap: 1%;
    margin-top: auto;
    max-width: 800px;
    max-width: 50rem;
    padding-left: 40px;
    padding-left: 2.5rem;
    width: 100%;
  }
  .p-footer__nav {
    display: block;
    margin-top: 64px;
    margin-top: 4rem;
    min-width: 500px;
    min-width: 31.25rem;
  }
  .p-footer__nav-container {
    gap: 14%;
  }
  .p-footer__nav-list {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-gap: 24px;
    gap: 24px;
    gap: 1.5rem;
  }
  .p-footer__nav-item {
    padding-left: 0.8em;
    text-indent: -0.8em;
  }
  .p-footer__nav-link {
    font-size: 15px;
    font-size: 0.9375rem;
    left: -0.8em;
    padding-bottom: 4px;
    padding-bottom: 0.25rem;
    padding-left: 0;
    position: relative;
    text-indent: 0;
  }
  .p-footer__nav-link-wrap {
    margin-top: auto;
  }
  .p-footer__sns-icon {
    max-width: 20px;
    max-width: 1.25rem;
  }
  .p-footer__copyright-wrap {
    margin-top: 40px;
    margin-top: 2.5rem;
    padding: 40px;
    padding: 2.5rem;
  }
  .p-footer__pagegtop {
    bottom: 50px;
    bottom: 3.125rem;
    right: 20px;
    right: 1.25rem;
  }
  .p-header {
    height: 116px;
    height: 7.25rem;
  }
  .p-header__inner {
    padding: 0 25px;
    padding: 0 1.5625rem;
  }
  .p-header__upper-container {
    padding: 16px 0;
    padding: 1rem 0;
  }
  .p-header__lower-container {
    display: inline;
    display: initial;
    height: 40px;
    height: 2.5rem;
  }
  .p-header__wrapper {
    align-items: center;
    display: flex;
    gap: 32px;
    gap: 2rem;
  }
  .p-header__nav {
    display: block;
    height: inherit;
  }
  .p-header__hamburger {
    display: none;
  }
  .p-link-wrap {
    margin-top: 80px;
    margin-top: 5rem;
    padding: 80px 0px;
    padding: 5rem 0rem;
  }
  .p-link-warp__list {
    flex-direction: row;
  }
  .p-nav {
    aspect-ratio: 1440/811;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
  }
  .p-news-list__item a {
    align-items: center;
    display: flex;
  }
  .p-news-list__item-meta {
    width: 20%;
  }
  .p-news-list__item-title {
    margin-left: 60px;
    margin-left: 3.75rem;
    margin-top: 0;
  }
  .p-news-main {
    margin-top: 100px;
    margin-top: 6.25rem;
  }
  .p-news-mv {
    margin-top: 160px;
    margin-top: 10rem;
  }
  .p-post-article__inner.l-inner {
    margin-top: 120px;
    margin-top: 7.5rem;
  }
  .p-post-article__container {
    display: grid;
    grid-template-columns: 1fr 20%;
    grid-gap: 40px;
    gap: 40px;
    gap: 2.5rem;
  }
  .p-post-article__title {
    font-size: 40px;
    font-size: 2.5rem;
    margin-top: 64px;
    margin-top: 4rem;
  }
  .p-post-article__contents {
    margin-top: 64px;
    margin-top: 4rem;
  }
  .p-post-article__content h2 {
    font-size: 30px;
    font-size: 1.875rem;
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-post-article__contents h3 {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .p-post-article__contents p {
    font-size: 16px;
    font-size: 1rem;
  }
  .p-post-article__contents .wp-block-media-text {
    margin-top: 32px;
    margin-top: 2rem;
  }
  .p-post-article__btn .contact-btn {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .p-post-article__contents .table__first {
    width: 150px;
    width: 9.375rem;
  }
  .p-post-article__contents .wp-block-media-text__media img {
    margin-left: 0;
    margin-left: initial;
    margin-right: 0;
    margin-right: initial;
    max-width: none;
    max-width: initial;
    padding-bottom: 0;
    padding-bottom: initial;
  }
  .p-post-connect__items {
    row-gap: 40px;
    row-gap: 2.5rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    grid-template-columns: repeat(4, 1fr);
  }
  .p-post-list {
    background: url(../images/common/img_bg01.png) no-repeat center center/cover;
    margin-top: -100px;
    margin-top: -6.25rem;
    padding-bottom: 64px;
    padding-bottom: 4rem;
    padding-top: 200px;
    padding-top: 12.5rem;
  }
  .p-post-list__title {
    font-size: 48px;
    font-size: 3rem;
  }
  .p-post-list__title span {
    font-size: 16px;
    font-size: 1rem;
  }
  .p-post-list__items {
    row-gap: 40px;
    row-gap: 2.5rem;
    -moz-column-gap: 0.625rem;
         column-gap: 0.625rem;
    grid-template-columns: repeat(7, 1fr);
  }
  .p-post-list__cards {
    margin-top: 100px;
    margin-top: 6.25rem;
  }
  .p-post-list__btn {
    margin: 28px auto 0;
    margin: 1.75rem auto 0;
    max-width: calc(61.25rem + 50px);
    padding: 0 10px;
    padding: 0 0.625rem;
    width: 100%;
  }
  .p-recruit-mv {
    aspect-ratio: 1440/500;
    margin-top: 100px;
    margin-top: 6.25rem;
  }
  .p-recruit-mv__title {
    font-size: 40px;
    font-size: 2.5rem;
  }
  .p-recruit-mv__title span {
    font-size: 16px;
    font-size: 1rem;
  }
  .p-recruit-contents {
    margin-top: 80px;
    margin-top: 5rem;
  }
  .p-recruit-contents__title-sub {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .p-recruit-contents__table {
    margin-top: 64px;
    margin-top: 4rem;
  }
  .p-recruit-contents__container {
    margin-top: 64px;
    margin-top: 4rem;
  }
  .p-recruit-contents__text {
    font-size: 16px;
    font-size: 1rem;
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-search__content {
    margin-top: 64px;
    margin-top: 4rem;
  }
  .p-search__item-title {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-table__head {
    font-size: 16px;
    font-size: 1rem;
    max-width: 280px;
    max-width: 17.5rem;
    padding: 20px 4px;
    padding: 1.25rem 0.25rem;
  }
  .p-table__data {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 12px 0;
    padding: 0.75rem 0;
  }
  .p-top-access {
    padding-bottom: 64px;
    padding-bottom: 4rem;
    padding-top: 64px;
    padding-top: 4rem;
  }
  .p-top-access__map {
    aspect-ratio: 1080/450;
  }
  .p-top-access__text-container {
    margin-top: 0px;
    margin-top: 0rem;
    max-width: 445px;
    max-width: 27.8125rem;
  }
  .p-top-access__text-wrap {
    padding-left: 40px;
    padding-left: 2.5rem;
  }
  .p-top-access__text-wrap + .p-top-access__text-wrap {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
  .p-top-access__title {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .p-top-access__title-sub {
    font-size: 18px;
    font-size: 1.125rem;
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-top-access__text {
    font-size: 18px;
    font-size: 1.125rem;
    margin-top: 32px;
    margin-top: 2rem;
  }
  .p-top-associate {
    margin-top: 660px;
    margin-top: 41.25rem;
  }
  .p-top-associate__container {
    flex-direction: row;
    top: -100px;
    top: -6.25rem;
  }
  .p-top-associate__img {
    margin-top: 0px;
    margin-top: 0rem;
    width: 43.046875%;
  }
  .p-top-associate__text-wrap {
    margin-top: -50px;
    margin-top: -3.125rem;
  }
  .p-top-associate__title-sub {
    font-size: 28px;
    font-size: 1.75rem;
  }
  .p-top-associate__list {
    margin-top: 48px;
    margin-top: 3rem;
  }
  .p-top-company {
    margin-top: 240px;
    margin-top: 15rem;
    padding-bottom: 280px;
    padding-bottom: 17.5rem;
  }
  .p-top-company__container {
    padding: 80px 40px;
    padding: 5rem 2.5rem;
  }
  .p-top-company__container::before {
    height: 228px;
    height: 14.25rem;
    width: 380px;
    width: 23.75rem;
  }
  .p-top-company__contents-item {
    flex-direction: row;
  }
  .p-top-company__list-title {
    width: 14%;
  }
  .p-company-profile__list {
    font-size: 15px;
    font-size: 0.9375rem;
    padding-bottom: 32px;
    padding-bottom: 2rem;
  }
  .p-company-profile__list + .p-company-profile__list {
    margin-top: 32px;
    margin-top: 2rem;
  }
  .p-company-profile__term {
    max-width: 150px;
    max-width: 9.375rem;
  }
  .p-top-mv-swiper .swiper-slide {
    aspect-ratio: 1440/650;
  }
  .p-top-mv-swiper .slide-background-2::after,
  .p-top-mv-swiper .slide-background-6::after {
    bottom: 7%;
    width: 27%;
  }
  .p-top-mv::before {
    clip-path: polygon(0 0, 100% 0, 21% 40%, 0 30%);
    width: 300px;
    width: 18.75rem;
  }
  .p-top-mv__movie {
    aspect-ratio: 1440/811;
  }
  .p-top-mv__text-wrap {
    bottom: 80px;
    bottom: 5rem;
    width: calc(100% - 12.5rem);
  }
  .p-top-mv__text {
    font-size: 42px;
    font-size: 2.625rem;
    line-height: 1.4523809524;
    padding-bottom: 60px;
    padding-bottom: 3.75rem;
  }
  .p-top-news {
    margin-top: 120px;
    margin-top: 7.5rem;
  }
  .p-top-news__news-list {
    margin-top: 200px;
    margin-top: 12.5rem;
  }
  .p-top-news__title {
    font-size: 40px;
    font-size: 2.5rem;
  }
  .p-top-news__news-container {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-top-recruit__text-container {
    padding: 40px;
    padding: 2.5rem;
    right: 40px;
    right: 2.5rem;
  }
  .p-top-recruit__title {
    font-size: 40px;
    font-size: 2.5rem;
  }
  .p-top-recruit__text {
    font-size: 16px;
    font-size: 1rem;
    margin-top: 48px;
    margin-top: 3rem;
  }
  .p-top-recruit__btn-wrap {
    margin-top: 64px;
    margin-top: 4rem;
  }
  .p-top-work {
    margin-top: 160px;
    margin-top: 10rem;
  }
  .p-top-work::after {
    height: 60%;
  }
  .p-top-work__title-wrap {
    text-align: right;
  }
  .p-top-work__cards {
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: -100px;
    margin-top: -6.25rem;
  }
  .p-top-work__card {
    max-width: none;
    max-width: initial;
  }
  .p-top-work__card:nth-of-type(2) {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
  .p-top-work__card:nth-of-type(3) {
    margin-top: 120px;
    margin-top: 7.5rem;
  }
  .p-top-work__card-title {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .p-under-contents {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
  .p-under-contents__inner {
    max-width: 1130px;
  }
  .p-under-contents__container + .p-under-contents__container {
    margin-top: 64px;
    margin-top: 4rem;
  }
  .p-under-contents__text {
    font-size: 16px;
    font-size: 1rem;
    line-height: 200%;
    margin-top: 32px;
    margin-top: 2rem;
  }
  .p-under-contents__table {
    margin-top: 32px;
    margin-top: 2rem;
  }
  .p-under-contents__pdf-wrap {
    margin-top: 32px;
    margin-top: 2rem;
  }
  .p-under-contents__pdf-box + .p-under-contents__pdf-box {
    margin-top: 16px;
    margin-top: 1rem;
  }
  .p-under-mv {
    margin-top: 156px;
    margin-top: 9.75rem;
  }
  .p-under-mv__img-wrap {
    height: auto;
    height: initial;
  }
  .p-under-mv__img-wrap img {
    -o-object-fit: initial;
    height: auto;
    height: initial;
       object-fit: initial;
    -o-object-position: initial;
       object-position: initial;
  }
  .nav-links ul li {
    margin: 0 10px;
    margin: 0 0.625rem;
  }
  .nav-links ul li a,
  .nav-links ul li span {
    padding: 10px;
    padding: 0.625rem;
  }
  .u-desktop {
    display: block;
  }
  .u-pc-mini {
    display: block;
  }
  .u-mobile {
    display: none;
  }
  .u-inlineblock-desktop {
    display: inline-block;
  }
  .u-inlineblock-mobile {
    display: none;
  }
}

@media (min-width: 1080px){
  html {
    font-size: 16px;
  }
}

@media screen and (min-width: 1100px){
  .p-header__logo {
    max-width: 330px;
    max-width: 20.625rem;
  }
}

@media screen and (min-width: 1290px){
  .u-pc-mini {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
