@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */
:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  -o-tab-size: 4;
     tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
:where(body) {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */
:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */
:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
:where(nav li)::before {
  content: "​";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
:where(b, strong) {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
:where(small) {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
:where(button, [type=button i], [type=reset i], [type=submit i]) {
  -webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(fieldset) {
  border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
:where(progress) {
  vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */
:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
:where([type=search i]) {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */
:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */
:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
:where([aria-busy=true i]) {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
:where([aria-controls]) {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
:where([aria-disabled=true i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
:where([aria-hidden=false i][hidden]) {
  display: initial;
}

:where([aria-hidden=false i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/**
 * Restrict sizing to the page width in all browsers (opinionated).
 */
:where(iframe, img, input, video, select, textarea) {
  height: auto;
  max-width: 100%;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Add typography inheritance in all browsers (opinionated).
 */
:where(button, input, select, textarea) {
  background-color: transparent; /* 1 */
  border: 1px solid WindowFrame; /* 1 */
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  letter-spacing: inherit; /* 2 */
  padding: 0.25em 0.375em; /* 1 */
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(select) {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='4'%3E%3Cpath d='M4 0h6L7 4'/%3E%3C/svg%3E") no-repeat right center/1em;
  border-radius: 0;
  padding-right: 1em;
}

/**
 * Don't show the arrow for multiple choice selects
 */
:where(select[multiple]) {
  background-image: none;
}

/**
 * Remove the border and padding in all browsers (opinionated).
 */
:where([type=color i], [type=range i]) {
  border-width: 0;
  padding: 0;
}

* {
  margin: 0;
  padding: 0;
}

:root {
  --p-green: #078247;
  --p-green-dark: #005b2f;
  --p-text: #333;
  --p-muted: #d9d9d9;
  --p-surface: #f8f8f8;
  --p-white: #fff;
}

html {
  -webkit-tap-highlight-color: revert;
  cursor: revert;
  font-size: 62.5%;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-break: strict;
  overflow-wrap: anywhere;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media (min-width: 56.0625em) {
  html {
    scroll-padding-top: 0;
  }
}

body {
  font-size: 1.6rem;
}

li {
  list-style-type: none;
}

th {
  font-weight: inherit;
}

address {
  font-style: inherit;
}

fieldset {
  border: 0;
  min-width: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

h1 {
  margin: 0;
}

cite,
dfn,
em,
i,
var {
  font-style: inherit;
}

small {
  font-size: inherit;
}

a {
  color: currentColor;
  text-decoration: none;
}

button,
input,
select,
textarea {
  border: 0;
  padding: 0;
}
button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
  cursor: not-allowed;
}

button {
  touch-action: manipulation;
}
button:not(:disabled, [aria-disabled=true]) {
  cursor: pointer;
}

[hidden][hidden] {
  display: none !important;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

:where(dialog) {
  width: unset;
  max-width: unset;
  height: unset;
  max-height: unset;
  padding: unset;
  color: unset;
  background-color: unset;
  border: unset;
  overflow: unset;
}

[id] {
  scroll-margin-top: 85px;
}

.u-d-none {
  display: none !important;
}

.u-d-inline {
  display: inline !important;
}

.u-d-inline-block {
  display: inline-block !important;
}

.u-d-block {
  display: block !important;
}

.u-d-grid {
  display: grid !important;
}

.u-d-table {
  display: table !important;
}

.u-d-table-row {
  display: table-row !important;
}

.u-d-table-cell {
  display: table-cell !important;
}

.u-d-flex {
  display: flex !important;
}

.u-d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 48em) {
  .u-d-md-none {
    display: none !important;
  }
  .u-d-md-inline {
    display: inline !important;
  }
  .u-d-md-inline-block {
    display: inline-block !important;
  }
  .u-d-md-block {
    display: block !important;
  }
  .u-d-md-grid {
    display: grid !important;
  }
  .u-d-md-table {
    display: table !important;
  }
  .u-d-md-table-row {
    display: table-row !important;
  }
  .u-d-md-table-cell {
    display: table-cell !important;
  }
  .u-d-md-flex {
    display: flex !important;
  }
  .u-d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 56.0625em) {
  .u-d-lg-none {
    display: none !important;
  }
  .u-d-lg-inline {
    display: inline !important;
  }
  .u-d-lg-inline-block {
    display: inline-block !important;
  }
  .u-d-lg-block {
    display: block !important;
  }
  .u-d-lg-grid {
    display: grid !important;
  }
  .u-d-lg-table {
    display: table !important;
  }
  .u-d-lg-table-row {
    display: table-row !important;
  }
  .u-d-lg-table-cell {
    display: table-cell !important;
  }
  .u-d-lg-flex {
    display: flex !important;
  }
  .u-d-lg-inline-flex {
    display: inline-flex !important;
  }
}
.u-visually-hidden-focusable:not(:focus, :focus-within) {
  display: block !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  visibility: visible !important;
  opacity: 0% !important;
  margin: 0 !important;
  border: 0 !important;
  padding: 0 !important;
  width: 4px !important;
  height: 4px !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

.u-visually-hidden {
  display: block !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  visibility: visible !important;
  opacity: 0% !important;
  margin: 0 !important;
  border: 0 !important;
  padding: 0 !important;
  width: 4px !important;
  height: 4px !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

.l-page {
  position: relative;
  isolation: isolate;
  color: var(--p-text);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.l-container {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 1440px;
  margin: 0 auto;
}
@media (min-width: 56.0625em) {
  .l-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px minmax(0, 1fr);
    -moz-column-gap: clamp(0.8rem, 2vw, 2.8rem);
         column-gap: clamp(0.8rem, 2vw, 2.8rem);
    padding: 0 2rem;
  }
}

.l-main {
  margin: 0 auto;
  background-color: transparent;
  min-height: 100vh;
  overflow: hidden;
}
@media (min-width: 56.0625em) {
  .l-main {
    margin: 0;
    grid-column: 2;
  }
}

.l-main__inner {
  background-color: var(--p-white);
}

.l-side {
  display: none;
}
@media (min-width: 56.0625em) {
  .l-side {
    display: block;
  }
}

@media (min-width: 56.0625em) {
  .l-side--right {
    grid-column: 3;
    grid-row: 1;
    align-self: start;
    justify-self: stretch;
    position: sticky;
    top: 51.5%;
    width: 100%;
    max-width: 245px;
    margin-inline: auto;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.c-entry__link {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  -moz-column-gap: 16px;
       column-gap: 16px;
  align-items: center;
  padding: 6.8rem 3.8rem 6rem 2.9rem;
  border-radius: 10px;
  background-color: var(--p-green);
  color: var(--p-white);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (min-width: 56.0625em) {
  .c-entry__link {
    padding: 6.5rem 2.4rem 6rem;
  }
}
@media (any-hover: hover) {
  .c-entry__link {
    transition: background-color 0.3s;
  }
  .c-entry__link:hover {
    background-color: var(--p-green-dark);
  }
}

.c-entry__link--panel {
  padding: 4.2rem 1.9rem 3.6rem;
  margin-top: 4rem;
}
@media (min-width: 56.0625em) {
  .c-entry__link--panel {
    display: none !important;
  }
}

@media (min-width: 56.0625em) {
  .c-entry__link--side {
    width: 100%;
    max-width: 245px;
    padding: 4.1rem 3rem 3.8rem;
  }
}

.c-entry__heading {
  grid-column: 1;
  grid-row: 1;
  color: var(--p-white);
  font-size: 4rem;
  font-family: "Roboto", sans-serif;
  line-height: 1.75;
  margin-block: calc((1em - 1lh) / 2);
}
@media (min-width: 56.0625em) {
  .c-entry__heading {
    font-size: 4.2rem;
  }
}

.c-entry__heading--panel {
  font-size: 2.4rem;
  line-height: 2.5;
}

@media (min-width: 56.0625em) {
  .c-entry__heading--side {
    font-size: 3.2rem;
    line-height: 1.7857142857;
  }
}

.c-entry__label {
  grid-column: 1;
  grid-row: 2;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.7857142857;
  margin-top: 0.5rem;
}

.c-entry__label--panel {
  font-size: 1.4rem;
  margin-top: 0;
}

@media (min-width: 56.0625em) {
  .c-entry__label--side {
    margin-top: 0;
    font-size: 1.4rem;
    font-weight: 700;
  }
}

.c-entry__icon {
  grid-column: 2;
  grid-row: 1/3;
  justify-self: end;
  align-self: center;
  width: 18px;
  height: 18px;
}

.c-entry__icon--panel {
  width: 14px;
  height: 14px;
}

@media (min-width: 56.0625em) {
  .c-entry__icon--side {
    width: 14px;
    height: 14px;
  }
}

.c-bg-swiper {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 0 !important;
  pointer-events: none;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

.swiper-wrapper,
.swiper-slide {
  height: 100%;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-section__head {
  display: grid;
  justify-items: center;
  gap: 6px;
}

.c-section__head::after {
  content: "";
  width: 40px;
  height: 2px;
  margin-top: 0.9rem;
  background-color: var(--p-green);
}

.c-section__head--white::after {
  background-color: var(--p-white);
}

.c-section__label {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.75;
}

.c-section__head--white .c-section__label {
  color: var(--p-white);
}

.c-section__heading {
  color: var(--p-green);
  font-size: 4rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  line-height: 1.75;
  text-align: center;
  margin-block: calc((1em - 1lh) / 2);
}

.c-section__head--white .c-section__heading {
  color: var(--p-white);
}

.c-interview {
  position: relative;
  padding: 0 2rem;
}

.c-interview + .c-interview {
  margin-top: 3rem;
}

@media (min-width: 577px) {
  .c-interview + .c-interview {
    margin-top: 0;
  }
}
.c-interview__open {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
}

.c-interview__open::before {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background-color: var(--p-green);
  background-image: linear-gradient(var(--p-white), var(--p-white));
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 2px;
  transition: background-color 0.5s ease;
}

.c-interview__open::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: 27px;
  width: 2px;
  height: 16px;
  background-color: var(--p-white);
}

@media (hover: hover) {
  .c-interview__open:hover::before {
    background-color: #005b2f;
  }
}
.c-interview__media {
  position: relative;
}

.c-interview__media figure {
  overflow: hidden;
}

.c-interview__media img {
  transition: transform 0.5s ease;
}

@media (hover: hover) {
  .c-interview__media:hover img {
    transform: scale(1.05);
  }
}
.c-interview__heading {
  font-size: 2.4rem;
  line-height: 1.75;
  font-weight: 700;
  margin-top: 2.7rem;
}

.c-interview__heading--lg {
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  margin-top: 0;
}

.c-interview__list {
  margin-top: 1.5rem;
}
@media (min-width: 56.0625em) {
  .c-interview__list {
    margin-top: 1.3rem;
  }
}

.c-interview__item {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.c-interview__icon {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--p-green);
  flex-shrink: 0;
  transform: translateY(-50%);
}

.c-interview__text {
  font-size: 1.4rem;
  line-height: 1.7857142857;
}

.c-interview__modal-body {
  padding: 5.4rem 2rem 7.7rem;
}

.c-interview__modal-info {
  margin-top: 4.5rem;
}

.c-interview__qa {
  display: grid;
  margin-top: 5.8rem;
}

.c-interview__qa dt div {
  display: flex;
  gap: 10px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75;
}

.c-interview__qa span {
  flex-shrink: 0;
  display: inline-block;
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  color: var(--p-green);
}

.c-interview__qa dd {
  margin-top: 2.6rem;
}

.c-interview__qa dd p {
  font-size: 1.4rem;
  line-height: 1.7857142857;
}

.c-interview__qa dd p + p {
  margin-top: 2.7rem;
}

.c-data-card {
  padding: 5rem 1.8rem 3.8rem;
  background-color: var(--p-white);
  border-radius: 8px;
  text-align: center;
}

.c-data-card--padding-top {
  padding-top: 5.6rem;
}

.c-data-card__icon {
  width: 80px;
  margin: auto;
}

.c-data-card__label {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75;
  margin-top: 2.7rem;
}

.c-data-card__label--margin-top {
  margin-top: 3.3rem;
}

.c-data-card__value {
  font-size: 1.4rem;
  line-height: 1.7857142857;
  text-align: left;
  margin-top: 1.5rem;
}

.c-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  overflow-y: auto;
  padding-bottom: 4rem;
  -webkit-overflow-scrolling: touch;
}

.c-modal[aria-hidden=true] {
  display: none;
}

.c-modal__backdrop {
  position: fixed;
  inset: 0;
  padding: 0;
  border: 0;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.c-modal__frame {
  position: relative;
  max-width: min(390px, 100% - 40px);
  margin: 6rem auto 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.3s ease;
}
@media (min-width: 56.0625em) {
  .c-modal__frame {
    max-width: min(350px, 100% - 40px);
  }
}

.c-modal.is-open .c-modal__backdrop {
  opacity: 1;
}

.c-modal.is-open .c-modal__frame {
  opacity: 1;
}

.c-modal.is-closing .c-modal__backdrop {
  opacity: 0;
}

.c-modal.is-closing .c-modal__frame {
  opacity: 0;
  transform: translateY(14px);
}

.c-modal__dialog {
  background-color: var(--p-white);
}

.c-modal__close {
  position: absolute;
  right: 6px;
  top: -38px;
  z-index: 2;
  font-size: 2.3rem;
  line-height: 1;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  color: var(--p-white);
}

.c-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  background-color: var(--p-white);
}
@media (min-width: 56.0625em) {
  .c-header {
    display: block;
    position: sticky;
    top: 0;
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    justify-self: stretch;
    width: 100%;
    max-width: 354px;
    height: -moz-fit-content;
    height: fit-content;
    padding-top: 2rem;
    background-color: transparent;
    backdrop-filter: none;
  }
}

.c-header__logo-inner {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 2.2rem 4.8%;
}
@media (min-width: 56.0625em) {
  .c-header__logo-inner {
    background-color: var(--p-white);
    border-radius: 10px;
    padding: 2.8rem 8.5%;
    gap: 10%;
  }
}

.c-header__logo {
  display: grid;
  gap: 2px;
  background-color: var(--p-white);
  width: 118px;
  transition: opacity 0.5s ease;
}
@media (min-width: 56.0625em) {
  .c-header__logo {
    width: 183px;
  }
}

@media (hover: hover) {
  .c-header__logo:hover {
    opacity: 0.7;
  }
}
.c-header__logo-text {
  font-size: 1rem;
  color: var(--p-text);
}
@media (min-width: 56.0625em) {
  .c-header__logo-text {
    font-size: 1.4rem;
  }
}

.c-header__entry--mobile {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 83px;
  height: 60px;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  color: var(--p-white);
  background-color: var(--p-green);
  transition: background-color 0.5s ease;
}
@media (min-width: 56.0625em) {
  .c-header__entry--mobile {
    display: none !important;
  }
}

@media (hover: hover) {
  .c-header__entry--mobile:hover {
    background-color: var(--p-green-dark);
  }
}
.c-header__menu {
  width: 60px;
  height: 60px;
  display: grid;
  place-content: center;
  gap: 6px;
  background-color: var(--p-green-dark);
}
@media (min-width: 56.0625em) {
  .c-header__menu {
    display: none !important;
  }
}

.c-header__menu-line {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--p-white);
}

@media (min-width: 56.0625em) {
  .c-header__panel-wrap {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    justify-self: stretch;
    width: 100%;
    max-width: 354px;
    padding-top: 19.5rem;
    position: sticky;
    top: 0;
  }
}

.c-header__backdrop {
  position: fixed;
  inset: 0;
  padding: 0;
  border: 0;
  background-color: rgba(0, 0, 0, 0.38);
  z-index: 48;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (min-width: 56.0625em) {
  .c-header__backdrop {
    display: none !important;
  }
}

.c-header__panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(225px, 100%);
  height: -moz-max-content;
  height: max-content;
  padding: 2rem;
  padding-bottom: 5.7rem;
  background-color: rgba(13, 102, 57, 0.96);
  color: var(--p-white);
  z-index: 49;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0.3s ease;
}
@media (min-width: 56.0625em) {
  .c-header__panel {
    position: static;
    width: 100%;
    max-width: 226px;
    height: auto;
    margin-left: auto;
    padding: 3.9rem 0;
    background-color: rgba(0, 91, 47, 0.9);
    border-radius: 10px;
    color: var(--p-white);
    transform: none;
    visibility: visible;
    transition: none;
  }
}

.c-header__close {
  display: block;
  margin-left: auto;
  font-size: 2rem;
  line-height: 1;
  color: var(--p-white);
  background-color: transparent;
}
@media (min-width: 56.0625em) {
  .c-header__close {
    display: none !important;
  }
}

.c-header__nav-list {
  display: grid;
  gap: 19px;
  padding-left: 1.9rem;
  margin-top: 3.9rem;
}
@media (min-width: 56.0625em) {
  .c-header__nav-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin-top: 0.5rem;
  }
}

.c-header__nav-link {
  display: block;
  font-size: 1.4rem;
  line-height: 1.7857142857;
  font-weight: 700;
}
@media (min-width: 56.0625em) {
  .c-header__nav-link {
    display: block;
    position: relative;
    padding: 2px 14px 3px 42px;
    font-size: 1.4rem;
    font-weight: 700;
  }
  .c-header__nav-link:hover, .c-header__nav-link:focus-visible {
    color: #fff;
    background-color: transparent;
  }
  .c-header__nav-link:hover::before, .c-header__nav-link:focus-visible::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--p-green);
    transform: translateY(-50%);
  }
}

body:has(.c-header__menu[aria-expanded=true]) {
  overflow: hidden;
}

body:has(.c-header__menu[aria-expanded=true]) .c-header__backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body:has(.c-header__menu[aria-expanded=true]) .c-header__panel {
  transform: translateX(0);
  visibility: visible;
}

@media (min-width: 56.0625em) {
  .c-header {
    container-type: inline-size;
  }
}

@media (min-width: 56.0625em) {
  .c-header__logo-inner {
    gap: 8.4745762712cqw;
    padding: 28px 8.4745762712cqw;
  }
}

@media (min-width: 56.0625em) {
  .c-header__logo {
    width: 51.6949152542cqw;
  }
}

@media (min-width: 56.0625em) {
  .c-header__logo-text {
    font-size: 3.9548022599cqw;
  }
}

.c-footer {
  background-color: var(--p-white);
}
@media (min-width: 56.0625em) {
  .c-footer {
    grid-column: 2;
  }
}

.c-footer__top {
  padding: 9.4rem 4.1rem 0;
}
@media (min-width: 56.0625em) {
  .c-footer__top {
    padding: 5.5rem 4.1rem 0;
  }
}

.c-footer__logo {
  display: inline-block;
  transition: opacity 0.5s ease;
}

@media (hover: hover) {
  .c-footer__logo:hover {
    opacity: 0.7;
  }
}
.c-footer__logo img {
  width: 218px;
}

.c-footer__links {
  display: grid;
  gap: 25px;
  margin-top: 3rem;
}

.c-footer__link {
  display: block;
  padding-right: 1.8rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.7857142857;
  transition: opacity 0.5s ease;
}

@media (hover: hover) {
  .c-footer__link:hover {
    opacity: 0.7;
  }
}
.c-footer__policy-note {
  display: flex;
  margin-top: 0.8rem;
  font-size: 1.2rem;
  line-height: 1.6666666667;
}

.c-footer__link-text {
  position: relative;
}

.c-footer__link-text::after {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  background: url("../../assets/images/components/footer_blank_icon.svg") center/contain no-repeat;
  margin-left: 0.9rem;
}

.c-footer__bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--p-muted);
  padding: 2.1rem;
  margin-top: 5.8rem;
}
@media (min-width: 56.0625em) {
  .c-footer__bottom {
    margin-top: 5.5rem;
    padding: 2rem;
  }
}

.c-footer__copyright {
  font-size: 1rem;
  font-weight: 700;
  color: var(--p-white);
}

.c-footer__pagetop {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: var(--p-muted);
  right: 0;
  top: -40px;
  transition: background-color 0.5s ease;
}

@media (hover: hover) {
  .c-footer__pagetop:hover {
    background-color: #c7c7c7;
  }
}
.c-footer__pagetop::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 58%;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}.p-hero {
  padding: 7.7rem 2rem 70px;
  color: var(--p-text);
}
@media (min-width: 56.0625em) {
  .p-hero {
    padding-top: 13.4rem;
  }
}

.p-hero__heading {
  font-size: 3.2rem;
  line-height: 1.75;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.p-hero__text {
  font-size: 1.2rem;
  font-family: "Roboto", sans-serif;
  line-height: 1.75;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 2.2rem;
}

.p-hero__image {
  position: relative;
  padding-bottom: 2.3rem;
  margin-top: 5.5rem;
}

.p-hero__image::before {
  content: "";
  display: inline-block;
  width: calc(100% + 40px);
  height: calc(100% - 30px);
  position: absolute;
  bottom: -70px;
  left: -20px;
  background-color: var(--p-green);
}

.p-hero__image .swiper {
  width: calc(100% + 20px);
  position: relative;
  left: 0;
}
@media (min-width: 56.0625em) {
  .p-hero__image .swiper {
    width: 370px;
  }
}

.p-hero__pagination {
  position: absolute;
  right: 0;
  left: auto !important;
  bottom: 0 !important;
  z-index: 3;
  width: 100% !important;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.p-hero__bullet {
  flex: 1 1 0;
  max-width: 40px;
  height: 2px;
  background-color: var(--p-white);
  transition: background-color 0.2s ease;
}

.p-hero__bullet.is-active {
  background-color: var(--p-green-dark);
}

.p-about {
  padding-top: 10.5rem;
}
@media (min-width: 56.0625em) {
  .p-about {
    padding-top: 11rem;
  }
}

.p-about__figure {
  margin-top: 6rem;
}

.p-about__body {
  padding: 5.9rem 4.1rem 0;
}

.p-about__body--padding {
  padding-top: 5.2rem;
}

.p-about__sub-heading {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75;
}

.p-about__sub-heading::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 29px;
  background-color: var(--p-green);
  margin-right: 1.5rem;
}

.p-about__text {
  font-size: 1.4rem;
  line-height: 1.7857142857;
}

.p-about__text + .p-about__text {
  margin-top: 1.5rem;
}

.p-about__sub-heading + .p-about__text {
  margin-top: 2.6rem;
}

.p-job {
  padding-top: 10rem;
}

.p-job__figure {
  margin-top: 6rem;
}

.p-job__body {
  padding-top: 3.7rem;
}

.p-job__sub-heading {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.75;
}

.p-job__sub-heading::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 29px;
  background-color: var(--p-green);
  margin-right: 1.5rem;
}

.p-job__text-body {
  padding-inline: 2rem;
}

.p-job__text {
  font-size: 1.4rem;
  line-height: 1.7857142857;
}

.p-job__text + .p-job__text {
  margin-top: 1.5rem;
}

.p-job__sub-heading + .p-job__text-body {
  margin-top: 1.6rem;
}

.p-data {
  padding-top: 8.9rem;
  padding-bottom: 8rem;
  background-color: var(--p-green);
}

.p-data__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 19px;
  padding-inline: 2rem;
  margin-top: 6rem;
}

@media (min-width: 577px) {
  .p-data__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 56.0625em) {
  .p-data__grid {
    grid-template-columns: 1fr;
  }
}
.p-interview {
  padding-bottom: 12rem;
  margin-top: 9.8rem;
}

.p-interview__head {
  padding: 84px 0 110px;
  background-color: var(--p-surface);
}

.p-interview__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  margin-top: -4.8rem;
}
@media (min-width: 56.0625em) {
  .p-interview__list {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

@media (min-width: 577px) {
  .p-interview__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 56.0625em) {
  .p-interview__list {
    grid-template-columns: 1fr;
  }
}
.p-gallery {
  padding: 85px 0 15.7rem;
  background-color: var(--p-green-dark);
}

.p-gallery__main {
  --p-gallery-width: 80%;
  padding-bottom: 2.3rem;
  margin-top: 6rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 56.0625em) {
  .p-gallery__main {
    --p-gallery-width: 310px;
    margin-left: auto;
  }
}

.p-gallery__main .swiper {
  width: var(--p-gallery-width);
}
@media (min-width: 56.0625em) {
  .p-gallery__main .swiper {
    width: 310px;
  }
}

.p-gallery__pagination {
  position: absolute;
  top: auto !important;
  bottom: 0 !important;
  left: 50% !important;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0;
  width: var(--p-gallery-width) !important;
}

.p-gallery__bullet {
  flex: 1 1 0;
  width: auto;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.45);
  transition: opacity 0.3s ease;
}

.p-gallery__bullet.is-active {
  background-color: var(--p-white);
}

.p-gallery__nav {
  position: absolute;
  top: calc(50% - 32px);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-color: var(--p-green);
  transition: background-color 0.5s ease;
}

@media (hover: hover) {
  .p-gallery__nav:hover {
    background-color: var(--p-green-dark);
  }
  .p-gallery__bullet:hover:not(.is-active) {
    opacity: 0.7;
  }
}
.p-gallery__nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-gallery__nav--prev {
  left: 20px;
}

.p-gallery__nav--prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.p-gallery__nav--next {
  right: 20px;
}

.p-entry {
  padding: 0 20px;
  margin-top: -8rem;
}
@media (min-width: 56.0625em) {
  .p-entry {
    padding: 3rem 2.4rem 4rem;
    margin-top: -10.8rem;
  }
}