@charset "UTF-8";
/***
    The new CSS reset - version 1.8.4 (last updated 14.2.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset;
}
::-moz-placeholder {
  color: unset;
}
:-ms-input-placeholder {
  color: unset;
}
::-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly.
 - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

/* add original reset style */
html {
  /* iPhone safariで文字サイズが大きくなるバグを回避 */
  -webkit-text-size-adjust: 100%;
}

html {
  scroll-behavior: smooth;
  font-size: clamp(50%, 0.9vw, 62.5%);
  scrollbar-gutter: stable;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

body {
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  font-size: clamp(1.4rem, 1.82vw, 1.6rem);
  font-weight: normal;
  overflow-x: hidden;
}
body.fixed {
  overflow: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  width: 100%;
  vertical-align: bottom;
}

.relative {
  position: relative;
}

_::-webkit-full-page-media,
_:future,
:root * {
  -webkit-mask-image: none !important;
          mask-image: none !important;
}

input[name=tab-item] {
  display: none;
}

area {
  cursor: pointer;
}

.js-fadein {
  opacity: 0;
  -webkit-transform: translateY(2rem);
          transform: translateY(2rem);
  -webkit-transition: opacity 1.5s ease, -webkit-transform 1.5s ease;
  transition: opacity 1.5s ease, -webkit-transform 1.5s ease;
  transition: opacity 1.5s ease, transform 1.5s ease;
  transition: opacity 1.5s ease, transform 1.5s ease, -webkit-transform 1.5s ease;
}
.js-fadein.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-button {
  background-color: #005c44;
  color: #fff;
  font-size: 2rem;
  border-radius: 20rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 23.7rem;
  height: 6.2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media screen and (max-width: 768px) {
  .c-button {
    width: 16.8rem;
    height: 4.4rem;
    font-size: 1.6rem;
  }
}
.c-button::after {
  content: "";
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  margin-left: 0.7em;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-bottom: 0.2rem solid #FFF;
  border-right: 0.2rem solid #FFF;
}
.c-button:hover {
  background-color: rgb(0, 154.7, 114.3434782609);
}

.c-list li {
  position: relative;
  padding-left: 1em;
}
.c-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
}
.c-list-disc li::before {
  content: "・";
}
.c-list-circle li::before {
  content: "●";
}
.c-list-asterisk li::before {
  content: "※";
}
.c-list-decimal li {
  counter-increment: cnt;
}
.c-list-decimal li::before {
  content: "" counter(cnt) ".";
}
.c-list-arrow li {
  padding-left: 1.1em;
}
.c-list-arrow li::before {
  content: "";
  display: inline-block;
  top: 0.55em;
  width: 0.9rem;
  height: 0.9rem;
  border-top: 0.2rem solid #005c44;
  border-right: 0.2rem solid #005c44;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 500px) {
  .c-list-arrow li::before {
    width: 0.7rem;
    height: 0.7rem;
  }
}

.c-text-indent {
  text-indent: 1em;
}
.c-text-underline {
  text-decoration: underline;
}
.c-text-light {
  font-weight: 300;
}
.c-text-regular {
  font-weight: 400;
}
.c-text-semibold {
  font-weight: 600;
}
.c-text-bold {
  font-weight: 700;
}
.c-text-underline {
  text-decoration: underline;
}
.c-text-italic {
  font-style: italic;
}
.c-text-caution {
  color: #de0012;
}
.c-text-asterisk {
  text-indent: -1em;
  padding-left: 1em;
  display: block;
}
.c-text-asterisk::before {
  content: "※";
  margin-right: 0.1em;
}

.c-inner {
  max-width: 102rem;
  padding: 0 2rem;
  margin: 0 auto;
}

.c-common-nav {
  color: #fff;
}
.c-common-nav__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 2%;
     -moz-column-gap: 2%;
          column-gap: 2%;
  row-gap: 6rem;
  max-width: 110rem;
}
@media screen and (max-width: 768px) {
  .c-common-nav__flex {
    row-gap: 4rem;
  }
}
.c-common-nav__flex::after {
  content: "";
  display: block;
  width: 33.33%;
}
@media screen and (max-width: 768px) {
  .c-common-nav__flex::after {
    display: none;
  }
}
.c-common-nav__dlist dt {
  font-size: 1.6rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .c-common-nav__dlist dt {
    margin-bottom: 1.5rem;
  }
}
.c-common-nav__dlist dt span {
  font-size: 1.25em;
  color: #c3d700;
  margin-right: 0.5em;
  font-family: "Roboto", sans-serif;
}
.c-common-nav__dlist dt a {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.c-common-nav__dlist dt a:hover {
  color: #c3d700;
}
.c-common-nav__dlist dd {
  margin-left: 1.5em;
}
@media screen and (max-width: 768px) {
  .c-common-nav__dlist dd {
    margin-left: 0;
  }
}
.c-common-nav__dlist.is_dlist1, .c-common-nav__dlist.is_dlist4 {
  width: 16em;
}
@media screen and (max-width: 1240px) {
  .c-common-nav__dlist.is_dlist1, .c-common-nav__dlist.is_dlist4 {
    width: 49%;
  }
}
@media screen and (max-width: 768px) {
  .c-common-nav__dlist.is_dlist1, .c-common-nav__dlist.is_dlist4 {
    width: 100%;
  }
}
.c-common-nav__dlist.is_dlist2, .c-common-nav__dlist.is_dlist5 {
  width: 23em;
}
@media screen and (max-width: 1240px) {
  .c-common-nav__dlist.is_dlist2, .c-common-nav__dlist.is_dlist5 {
    width: 49%;
  }
}
@media screen and (max-width: 768px) {
  .c-common-nav__dlist.is_dlist2, .c-common-nav__dlist.is_dlist5 {
    width: 100%;
  }
}
.c-common-nav__dlist.is_dlist3 {
  width: 27em;
}
@media screen and (max-width: 1240px) {
  .c-common-nav__dlist.is_dlist3 {
    width: 49%;
  }
}
@media screen and (max-width: 768px) {
  .c-common-nav__dlist.is_dlist3 {
    width: 100%;
  }
}
.c-common-nav__dlist.is_dlist3 .c-common-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-common-nav__dlist.is_dlist3 .c-common-nav__list li {
  width: 50%;
}
.c-common-nav__dlist.is_dlist3 .c-common-nav__list li:nth-of-type(even) {
  padding-left: 2em;
}
@media screen and (max-width: 1240px) {
  .c-common-nav__dlist.is_dlist3 .c-common-nav__list li:nth-of-type(even) {
    padding-left: 0;
  }
}
.c-common-nav__list li {
  margin-bottom: 1em;
  font-size: 1.4rem;
}
@media screen and (max-width: 500px) {
  .c-common-nav__list li {
    font-size: 1.3rem;
  }
}
.c-common-nav__list li a {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.c-common-nav__list li a::before {
  content: "＋";
  margin-right: 0.8em;
}
.c-common-nav__list li a:hover {
  color: #c3d700;
}

.c-gnav {
  position: fixed;
  width: 100%;
  height: 100dvh;
  background-image: url(../images/common/footer-body-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 11;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
}
.c-gnav.show {
  opacity: 1;
  visibility: visible;
}
.c-gnav .c-common-nav__flex {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
}
@media screen and (max-width: 768px) {
  .c-gnav .c-common-nav__flex {
    position: static;
    width: 100%;
    padding: 7.5rem 2rem 2.5rem;
    -webkit-transform: none;
            transform: none;
  }
}
.c-gnav__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .c-gnav__links {
    position: sticky;
    width: 100%;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
.c-gnav__links li {
  width: 25.2rem;
  height: 7rem;
}
@media screen and (max-width: 768px) {
  .c-gnav__links li {
    width: 33.3333333333%;
    height: 5rem;
  }
}
.c-gnav__links li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 1.7rem;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media screen and (max-width: 768px) {
  .c-gnav__links li a {
    font-size: 1.6rem;
  }
}
.c-gnav__links li a img {
  height: 1.4rem;
}
@media screen and (max-width: 768px) {
  .c-gnav__links li a img {
    height: 1.1rem;
  }
}
.c-gnav__links li:first-of-type a {
  background-color: #008e6a;
}
.c-gnav__links li:first-of-type a:hover {
  background-color: rgb(0, 197.2, 147.2056338028);
}
.c-gnav__links li:nth-of-type(2) a {
  background-color: #96d0ab;
}
.c-gnav__links li:nth-of-type(2) a:hover {
  background-color: rgb(165.75, 215.05, 183.6);
}
.c-gnav__links li:last-of-type a {
  background-color: #005c44;
}
.c-gnav__links li:last-of-type a:hover {
  background-color: rgb(0, 154.7, 114.3434782609);
}

.c-hamburger {
  width: 25.2rem;
  height: 25.2rem;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 20;
  background-image: url(../images/common/hamburger-bg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .c-hamburger {
    height: 6.5rem;
    width: 6.5rem;
  }
}
.c-hamburger__button {
  position: absolute;
  top: 2.8rem;
  right: 2.8rem;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  pointer-events: visible;
}
@media screen and (max-width: 960px) {
  .c-hamburger__button {
    top: 2.4rem;
    right: 3.5rem;
  }
}
.c-hamburger__button > span {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media screen and (max-width: 960px) {
  .c-hamburger__button > span {
    display: none;
  }
}
.c-hamburger__button:hover {
  opacity: 0.6;
  cursor: pointer;
}
.c-hamburger__button.active > span {
  color: #fff;
}
.c-hamburger__button.active .c-hamburger__bar {
  background-color: #fff;
}
.c-hamburger__button.active .c-hamburger__bar.is_top {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(15deg);
          transform: translateY(-50%) rotate(15deg);
}
.c-hamburger__button.active .c-hamburger__bar.is_mid {
  opacity: 0;
}
.c-hamburger__button.active .c-hamburger__bar.is_bot {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-15deg);
          transform: translateY(-50%) rotate(-15deg);
}
.c-hamburger__bars {
  position: relative;
  width: 4.8rem;
  height: 1.3rem;
  margin-top: 0.6rem;
}
.c-hamburger__bar {
  display: block;
  width: 100%;
  height: 0.1rem;
  background-color: #000;
  position: absolute;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-hamburger__bar.is_top {
  top: 0;
}
.c-hamburger__bar.is_mid {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-hamburger__bar.is_bot {
  bottom: 0;
}

.c-subpage-mainview {
  background-color: #eee;
  position: relative;
}
.c-subpage-mainview__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-subpage-mainview__text {
  width: 23%;
  text-align: center;
  padding-top: 18rem;
}
@media screen and (max-width: 960px) {
  .c-subpage-mainview__text {
    width: 100%;
    padding-top: 0;
    text-align: left;
    padding-left: 8.1%;
  }
}
.c-subpage-mainview__text h1 {
  display: inline-block;
  text-align: left;
}
.c-subpage-mainview__text h1 span {
  display: block;
  color: #005c44;
  font-weight: 600;
  font-size: 3.8rem;
  font-family: "Roboto", sans-serif;
  margin-bottom: 1rem;
}
@media screen and (max-width: 960px) {
  .c-subpage-mainview__text h1 span {
    margin-bottom: 0.5rem;
  }
}
.c-subpage-mainview__text h1 span img {
  height: 3.8rem;
  width: auto;
}
@media screen and (max-width: 960px) {
  .c-subpage-mainview__text h1 span img {
    height: 2.3rem;
  }
}
.c-subpage-mainview__image {
  width: 77%;
  position: relative;
}
@media screen and (max-width: 960px) {
  .c-subpage-mainview__image {
    width: 100%;
    margin-top: 1.2rem;
    max-height: initial;
  }
}
.c-subpage-mainview__image > picture img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100dvh;
}
@media screen and (max-width: 960px) {
  .c-subpage-mainview__image > picture img {
    height: auto;
    aspect-ratio: 1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.c-subpage-mainview__button {
  position: absolute;
  bottom: 1rem;
  right: 4rem;
  width: 23.8rem;
  display: inline-block;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .c-subpage-mainview__button {
    width: 16.8rem;
    bottom: initial;
    top: 90vw;
    right: 2rem;
  }
}
.c-subpage-mainview__button a {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.c-subpage-mainview__button a:hover {
  opacity: 0.8;
}
.c-subpage-mainview__button p {
  font-weight: 500;
  line-height: 1.43;
  margin-top: 1em;
}
@media screen and (max-width: 960px) {
  .c-subpage-mainview__button p {
    font-size: 1.3rem;
    background-color: rgba(255, 255, 255, 0.5);
  }
}
.c-subpage-mainview-overview {
  position: absolute;
  bottom: 0;
  left: -12%;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 6rem;
  padding-top: 3rem;
}
@media screen and (max-width: 960px) {
  .c-subpage-mainview-overview {
    position: static;
    padding: 0 8.1%;
    padding-top: 2rem;
  }
}
.c-subpage-mainview-overview__title {
  font-size: 2.3rem;
  color: #005c44;
}
@media screen and (max-width: 960px) {
  .c-subpage-mainview-overview__title {
    font-size: 1.8rem;
  }
}
.c-subpage-mainview-overview__copy {
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  letter-spacing: 0.05em;
  line-height: 1.66;
  margin-top: 1em;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .c-subpage-mainview-overview__copy {
    font-size: 2.2rem;
    line-height: 1.41;
    margin-top: 2.46em;
    margin-top: 1em;
    padding-left: 0.6em;
    letter-spacing: -0.05em;
    padding-bottom: 1.5em;
  }
}
.c-subpage-marquee {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 1.4rem;
  padding-bottom: 11rem;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .c-subpage-marquee {
    margin: 0 auto;
    padding-bottom: 0;
  }
}
.c-subpage-marquee__img {
  text-align: center;
}
.c-subpage-marquee__img img {
  height: 13.8rem;
  width: auto;
  max-width: 98vw;
}
@media screen and (max-width: 960px) {
  .c-subpage-marquee__img img {
    height: auto;
    width: 100%;
  }
}
.c-subpage-lead {
  background-color: #eee;
  position: relative;
  color: #333;
  padding-top: 11rem;
  padding-bottom: 10rem;
  text-align: justify;
}
@media screen and (max-width: 960px) {
  .c-subpage-lead {
    padding-top: 3rem;
    overflow: hidden;
  }
}
.c-subpage-lead.is_wh {
  background-color: #fff;
  max-width: 106.4rem;
  margin: 0 auto;
}
.c-subpage-lead.is_center {
  text-align: center;
}
@media screen and (max-width: 960px) {
  .c-subpage-lead.is_center {
    text-align: left;
  }
}
.c-subpage-lead__inner {
  max-width: 81rem;
  padding: 0 2rem;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .c-subpage-lead__inner {
    padding: 0 8.1%;
  }
}
.c-subpage-lead p {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 960px) {
  .c-subpage-lead p {
    font-size: 1.4rem;
  }
}
.c-subpage-lead p + p {
  margin-top: 2.5em;
}

.c-careerstep {
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  padding-top: 3rem;
  padding-right: 2rem;
  padding-left: 5%;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .c-careerstep {
    padding-bottom: 1.5rem;
    display: none;
  }
}
.c-careerstep.show {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .c-careerstep.show {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .c-careerstep__name p {
    margin-top: 1rem;
  }
}
.c-careerstep__name p:first-of-type {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .c-careerstep__name p:first-of-type {
    font-size: 1.5rem;
  }
}
.c-careerstep__name p:nth-of-type(2) {
  font-weight: bold;
  font-size: 3rem;
  margin-top: 0.4em;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-careerstep__name p:nth-of-type(2) {
    font-size: 2.5rem;
    margin-top: 0.2em;
  }
}
.c-careerstep__name p:nth-of-type(2) .svg {
  height: 0.9em;
  padding-right: 0.05em;
  width: auto;
}
.c-careerstep__name p:nth-of-type(3) {
  color: #005c44;
  font-weight: 600;
  font-size: 2.5rem;
  font-family: "Roboto", sans-serif;
  margin-top: 0.5em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-careerstep__name p:nth-of-type(3) {
    font-size: 2rem;
  }
}
.c-careerstep__button {
  color: #005c44;
  font-size: 1.8rem;
  margin-top: 2em;
  text-align: right;
  padding-right: 4em;
}
@media screen and (max-width: 768px) {
  .c-careerstep__button {
    font-size: 1.5rem;
    margin-top: 1em;
  }
}
.c-careerstep__button span {
  cursor: pointer;
  display: inline-block;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  position: relative;
}
.c-careerstep__button span::before, .c-careerstep__button span::after {
  display: block;
  position: absolute;
  top: 50%;
  right: -0.5em;
  width: 2.4em;
  height: 2.4em;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.c-careerstep__button span::before {
  background-image: url(../images/interview/icon-minus.png);
}
.c-careerstep__button span::after {
  background-image: url(../images/interview/icon-plus.png);
}
.c-careerstep__button span.active::after {
  opacity: 0;
}
.c-careerstep__button span:hover {
  opacity: 0.8;
}
.c-careerstep__asterisk {
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .c-careerstep__asterisk {
    width: 16em;
    font-size: 1.2rem;
    line-height: 1.33;
    margin-top: 1.5em;
  }
}
.c-careerstep-timeline-wrap {
  overflow-y: auto;
  max-height: 41rem;
}
.c-careerstep-timeline-wrap::-webkit-scrollbar {
  width: 0.9rem;
}
.c-careerstep-timeline-wrap::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10rem;
}
.c-careerstep-timeline-wrap::-webkit-scrollbar-thumb {
  background: #005c44;
  border-radius: 10rem;
}
.c-careerstep-timeline li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .c-careerstep-timeline li {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.c-careerstep-timeline__year {
  color: #005c44;
  font-size: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.8;
  width: 8.5em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-careerstep-timeline__year {
    font-size: 1.6rem;
    width: auto;
  }
}
.c-careerstep-timeline__year::before {
  content: "●";
  margin-right: 1em;
  font-size: 0.7em;
  margin-top: 0.3em;
}
.c-careerstep-timeline__year::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  display: inline-block;
  height: 1.88em;
  width: 0.1rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #000;
  margin: 0 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-careerstep-timeline__year::after {
    right: -1.8em;
  }
}
.c-careerstep-timeline__detail {
  width: calc(100% - 8.5em);
}
@media screen and (max-width: 768px) {
  .c-careerstep-timeline__detail {
    width: 100%;
    padding-left: 2em;
  }
}
.c-careerstep-timeline__detail dt {
  font-size: 1.8rem;
  font-weight: 500;
  color: #005c44;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .c-careerstep-timeline__detail dt {
    font-size: 1.6rem;
  }
}
.c-careerstep-timeline__detail dd {
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.56;
  margin-top: 0.2em;
}

.l-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  font-family: "Roboto", "Noto Sans JP", serif;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-right: 25.2rem;
}
@media screen and (max-width: 960px) {
  .l-header {
    position: fixed;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #fff;
    height: 6.5rem;
    padding-right: 0;
  }
}
.l-header__logo {
  margin-left: 1.3rem;
  margin-top: 1.4rem;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  width: 23%;
  margin-right: 1rem;
}
@media screen and (max-width: 960px) {
  .l-header__logo {
    width: auto;
    margin-top: 0;
  }
}
.l-header__logo:hover {
  opacity: 0.7;
}
.l-header__logo img {
  max-width: 28.8rem;
}
@media screen and (max-width: 960px) {
  .l-header__logo img {
    max-width: initial;
    height: 5rem;
    width: auto;
  }
}
.l-header__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}
@media screen and (max-width: 960px) {
  .l-header__links {
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 1;
    visibility: visible;
  }
}
.l-header__links.hidden {
  opacity: 0;
  visibility: hidden;
}
.l-header__links li {
  width: 16.8rem;
}
@media screen and (max-width: 960px) {
  .l-header__links li {
    width: 33.3333333333%;
  }
}
.l-header__links li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  height: 4.3rem;
  width: 100%;
  font-weight: 600;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media screen and (max-width: 960px) {
  .l-header__links li a {
    height: 5rem;
  }
}
.l-header__links li a img {
  height: 1.1rem;
  width: auto;
}
.l-header__links li:first-of-type a {
  background-color: #008e6a;
}
.l-header__links li:first-of-type a:hover {
  background-color: rgb(0, 197.2, 147.2056338028);
}
.l-header__links li:nth-of-type(2) a {
  background-color: #96d0ab;
}
.l-header__links li:nth-of-type(2) a:hover {
  background-color: rgb(165.75, 215.05, 183.6);
}
.l-header__links li:last-of-type a {
  background-color: #005c44;
}
.l-header__links li:last-of-type a:hover {
  background-color: rgb(0, 154.7, 114.3434782609);
}
.l-header__links li:last-of-type a {
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
}

.l-footer {
  overflow-x: hidden;
}
.l-footer-catch {
  aspect-ratio: 1366/916;
  position: relative;
  z-index: -1;
  max-height: 91.6rem;
  width: 100%;
}
.l-footer-catch__bg {
  width: 100%;
  background-image: url(../images/common/footer-catch-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-position: center 30%;
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  z-index: -1;
  aspect-ratio: 1366/532;
  max-height: 53.2rem;
}
.l-footer-catch__bg::after {
  content: "";
  display: block;
  background: -webkit-gradient(linear, left bottom, left top, from(transparent), to(#fff));
  background: linear-gradient(to top, transparent, #fff);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
}
.l-footer-catch__obj {
  width: 73%;
  max-width: 100rem;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .l-footer-catch__obj {
    top: -5%;
    right: -10%;
  }
}
.l-footer-catch__logo {
  width: 25.18%;
  position: absolute;
  bottom: 29%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 34.4rem;
}
@media screen and (max-width: 768px) {
  .l-footer-catch__logo {
    width: 50%;
    max-width: 22rem;
  }
}
.l-footer-catch__copy {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 10%);
          transform: translate(-50%, 10%);
  width: 71.8%;
  max-width: 98.1rem;
}
@media screen and (max-width: 768px) {
  .l-footer-catch__copy {
    width: 83.7%;
  }
}
.l-footer-body {
  background-image: url(../images/common/footer-body-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 19rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .l-footer-body {
    padding: 4rem 0 6rem;
  }
}
.l-footer-body__inner {
  max-width: 114rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.l-footer__logo {
  max-width: 40rem;
  margin-top: 7rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .l-footer__logo {
    display: none;
  }
}

@media screen and (max-width: 960px) {
  .l-main {
    padding-top: 6.5rem;
  }
}

:root {
  --common-radius: 10rem;
}
@media screen and (max-width: 768px) {
  :root {
    --common-radius: 5rem;
  }
}

.p-top__section-title {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-top__section-title {
    text-align: center;
  }
}
.p-top__section-title img {
  width: auto;
  height: 13.8em;
}
@media screen and (max-width: 768px) {
  .p-top__section-title img {
    height: 4.2rem;
  }
}
.p-top__section-title span {
  display: block;
  margin-top: 1em;
  color: #000;
  font-weight: 300;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .p-top__section-title span {
    font-size: 2rem;
  }
}
.p-top-mv img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
  max-height: 100dvh;
}
@media screen and (max-width: 768px) {
  .p-top-mv img {
    max-height: calc(100dvh - 6.5rem - 5rem);
    -o-object-position: center;
       object-position: center;
  }
}
.p-top-mv__item {
  position: relative;
}
.p-top-mv__item.is_slide1 img {
  -o-object-position: center;
     object-position: center;
}
.p-top-mv__item.is_slide5 img {
  -o-object-position: center 70%;
     object-position: center 70%;
}
.p-top-mv__copy1 {
  position: absolute;
  top: 7%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: none;
  width: 72%;
}
@media screen and (max-width: 768px) {
  .p-top-mv__copy1 {
    display: block;
  }
}
.p-top-mv__copy2 {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: none;
  width: 91%;
}
@media screen and (max-width: 768px) {
  .p-top-mv__copy2 {
    display: block;
  }
}
.p-top-catch {
  position: relative;
  margin-top: 14.5rem;
  padding-bottom: 7rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .p-top-catch {
    margin-top: 7rem;
    padding-bottom: 6rem;
    text-align: center;
  }
}
.p-top-catch__obj {
  position: absolute;
  top: -25%;
  right: 0;
  z-index: -1;
  max-width: 98.2rem;
  width: 73.5%;
}
.p-top-catch__lg {
  font-size: 6rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-top-catch__lg {
    white-space: nowrap;
    font-size: 3.2rem;
    line-height: 1.6;
  }
}
.p-top-catch__md {
  margin-top: 3.5em;
  font-size: 2.8rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-top-catch__md {
    font-size: 1.8rem;
  }
}
.p-top-catch__sm {
  margin-top: 3em;
  font-size: 2rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-top-catch__sm {
    font-size: 1.4rem;
  }
}
.p-top-catch__xs {
  margin-top: 5.6em;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .p-top-catch__xs {
    text-align: left;
    font-size: 1.4rem;
  }
}
.p-top-introduction {
  padding-top: 20rem;
  padding-bottom: 10rem;
  background-color: #eee;
}
@media screen and (max-width: 768px) {
  .p-top-introduction {
    padding-top: 11rem;
    padding-bottom: 0;
  }
}
.p-top-introduction__bg {
  margin-top: -25rem;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .p-top-introduction__bg {
    margin-top: 0;
  }
}
.p-top-introduction__links {
  position: relative;
  z-index: 1;
  min-width: 66rem;
  width: 70%;
  margin-top: -12rem;
  padding: 5rem 5%;
  background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 768px) {
  .p-top-introduction__links {
    min-width: initial;
    width: 100%;
  }
}
.p-top-introduction__links li:not(:first-of-type) {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-top-introduction__links li:not(:first-of-type) {
    margin-top: 2rem;
  }
}
.p-top-introduction-link {
  display: block;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.p-top-introduction-link:hover {
  opacity: 0.7;
}
.p-top-introduction-link:hover .p-top-introduction-link__md span::after {
  -webkit-transform: translateX(25%) rotate(-45deg);
          transform: translateX(25%) rotate(-45deg);
}
.p-top-introduction-link__lg {
  font-family: "Roboto", sans-serif;
  color: #c3d700;
  font-size: 4.5rem;
}
@media screen and (max-width: 768px) {
  .p-top-introduction-link__lg {
    font-size: 2.5rem;
  }
}
.p-top-introduction-link__md {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2rem;
  padding-left: 1.5em;
  font-size: 3rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-top-introduction-link__md {
    font-size: 2.2rem;
  }
}
.p-top-introduction-link__md span {
  color: #005c44;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .p-top-introduction-link__md span {
    font-size: 1.4rem;
  }
}
.p-top-introduction-link__md span::after {
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  margin-left: 0.3em;
  border-right: 0.15rem solid #005c44;
  border-bottom: 0.15rem solid #005c44;
  content: "";
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.p-top-strength {
  position: relative;
  padding-top: 20rem;
  padding-bottom: 34.1rem;
  overflow: hidden;
  background-color: #eee;
}
@media screen and (max-width: 960px) {
  .p-top-strength {
    padding-bottom: 16rem;
  }
}
.p-top-strength__obj1 {
  position: absolute;
  bottom: 0;
  right: -80%;
  width: 135%;
}
.p-top-strength__obj2 {
  position: absolute;
  top: 12rem;
  right: 5%;
  width: 54rem;
}
@media screen and (max-width: 768px) {
  .p-top-strength__obj2 {
    top: 30rem;
    width: 31.2rem;
  }
}
.p-top-strength__button {
  position: relative;
  z-index: 1;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-top-strength__button {
    margin: 0 auto;
    margin-top: 6rem;
  }
}
.p-top-strength__slide-wrap {
  position: relative;
  margin-top: -3rem;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-top: 15rem;
  padding-bottom: 9rem;
  background-color: rgba(0, 150, 110, 0.2);
}
@media screen and (max-width: 768px) {
  .p-top-strength__slide-wrap {
    padding-top: 10rem;
    padding-bottom: 18rem;
  }
}
.p-top-strength__paginations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 6rem;
  right: 14rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #005c44;
  font-weight: bold;
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  -webkit-column-gap: 6rem;
     -moz-column-gap: 6rem;
          column-gap: 6rem;
}
@media screen and (max-width: 768px) {
  .p-top-strength__paginations {
    top: initial;
    right: initial;
    bottom: 5rem;
    left: 50%;
    max-width: 35rem;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-column-gap: 4rem;
       -moz-column-gap: 4rem;
            column-gap: 4rem;
  }
}
.p-top-strength__paginations .swiper-pagination,
.p-top-strength__paginations .swiper-button-prev,
.p-top-strength__paginations .swiper-button-next {
  position: static;
}
.p-top-strength__paginations .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 6rem;
     -moz-column-gap: 6rem;
          column-gap: 6rem;
}
.p-top-strength__paginations .swiper-pagination-bullet {
  height: auto;
  margin: 0 !important;
  background: none;
  color: #005c44;
  letter-spacing: 0.1em;
  line-height: 1;
  opacity: 1;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.p-top-strength__paginations .swiper-pagination-bullet:not(.swiper-pagination-bullet-active):hover {
  color: rgb(0, 133.8, 98.8956521739);
}
.p-top-strength__paginations .swiper-pagination-bullet-active {
  color: #c3d700;
}
.p-top-strength__paginations .swiper-button-prev,
.p-top-strength__paginations .swiper-button-next {
  height: auto;
  margin-top: 0;
  color: #005c44;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.p-top-strength__paginations .swiper-button-prev::after,
.p-top-strength__paginations .swiper-button-next::after {
  height: 1.4rem;
  font-size: 1.6rem;
}
.p-top-strength__paginations .swiper-button-prev:hover,
.p-top-strength__paginations .swiper-button-next:hover {
  color: rgb(0, 133.8, 98.8956521739);
}
.p-top-strength-slide {
  margin-top: 7rem;
}
@media screen and (max-width: 768px) {
  .p-top-strength-slide {
    margin-top: 0;
  }
}
.p-top-strength-slide__item {
  padding: 0 0.6rem;
}
.p-top-strength-slide__item img {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.p-top-strength-slide__item.is_slide01 .p-top-strength-slide__thumbnail {
  border-top-right-radius: var(--common-radius);
}
.p-top-strength-slide__item.is_slide02 .p-top-strength-slide__thumbnail {
  border-bottom-left-radius: var(--common-radius);
}
.p-top-strength-slide__item.is_slide03 .p-top-strength-slide__thumbnail {
  border-bottom-right-radius: var(--common-radius);
}
.p-top-strength-slide__item.is_slide04 .p-top-strength-slide__thumbnail {
  border-bottom-left-radius: var(--common-radius);
}
.p-top-strength-slide__item:hover .p-top-strength-slide__thumbnail {
  -webkit-box-shadow: rgba(0, 0, 0, 0.16) 6rem 6rem 6rem;
          box-shadow: rgba(0, 0, 0, 0.16) 6rem 6rem 6rem;
}
.p-top-strength-slide__item:hover .p-top-strength-slide__thumbnail::after {
  opacity: 1;
}
.p-top-strength-slide__thumbnail {
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  aspect-ratio: 502/335;
}
.p-top-strength-slide__thumbnail::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 142, 117, 0.15);
  content: "";
  opacity: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.p-top-strength-slide__thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-strength-slide__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3rem;
}
.p-top-strength-slide__num {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: #005c44;
  font-size: 5rem;
}
@media screen and (max-width: 768px) {
  .p-top-strength-slide__num {
    font-size: 3.3rem;
  }
}
.p-top-strength-slide__name {
  position: relative;
  padding-left: 2em;
  color: #333;
  font-size: 2.3rem;
  font-family: "Noto Serif JP", serif;
  line-height: 3.5rem;
}
@media screen and (max-width: 768px) {
  .p-top-strength-slide__name {
    line-height: 3rem;
  }
}
.p-top-strength-slide__name::before {
  display: block;
  position: absolute;
  top: 1.6em;
  left: -2.7em;
  width: 14.8rem;
  height: 0.1rem;
  background-color: #000;
  content: "";
  line-height: 5rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .p-top-strength-slide__name::before {
    width: 10rem;
    left: -1.6em;
    top: 1.2em;
  }
}
.p-top-strength-slide__name span {
  font-size: 1.45em;
}
@media screen and (max-width: 768px) {
  .p-top-strength-slide__name span {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .p-top-strength-slide__name span {
    font-size: 2rem;
  }
}
.p-top-interview {
  position: relative;
  padding-bottom: 10rem;
  background-color: #eee;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-top-interview {
    padding-bottom: 15rem;
  }
}
.p-top-interview .c-inner {
  position: relative;
}
.p-top-interview__obj {
  position: absolute;
  top: 0;
  left: -25%;
  width: 168%;
  max-width: 230.5rem;
}
@media screen and (max-width: 768px) {
  .p-top-interview__obj {
    top: -2%;
    right: -33%;
    left: initial;
    width: 100%;
  }
}
.p-top-interview-head {
  position: relative;
  margin-top: 4.5rem;
  margin-right: calc(50% - 50vw);
  -webkit-box-shadow: 10rem 10rem 10rem rgba(0, 0, 0, 0.16);
          box-shadow: 10rem 10rem 10rem rgba(0, 0, 0, 0.16);
}
.p-top-interview-head img {
  border-top-left-radius: var(--common-radius);
}
.p-top-interview-head__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 3rem 4rem 6rem;
  background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 768px) {
  .p-top-interview-head__box {
    display: block;
    width: 100%;
    padding: 1.8rem 3rem 3.5rem;
    -webkit-transform: translateY(calc(100% - 7.4rem));
            transform: translateY(calc(100% - 7.4rem));
  }
}
.p-top-interview-head__title {
  color: #005c44;
  font-weight: 500;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .p-top-interview-head__title {
    font-size: 1.6rem;
  }
}
.p-top-interview-head__catch {
  margin-top: 1.5rem;
  font-size: 4rem;
  font-family: "Noto Serif JP", serif;
  line-height: 5rem;
}
@media screen and (max-width: 768px) {
  .p-top-interview-head__catch {
    margin-top: 0.3em;
    font-size: 2.6rem;
    line-height: 3.3rem;
  }
}
.p-top-interview-head__button {
  width: 11.5rem;
  height: 3.8rem;
  margin-left: 6rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-top-interview-head__button {
    position: absolute;
    right: 2rem;
    bottom: 0;
    width: 10.2rem;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
}
.p-top-interview__slide-wrap {
  margin-top: 18rem;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .p-top-interview__slide-wrap {
    margin-top: 12rem;
    margin-right: 0;
  }
}
.p-top-interview-slide {
  margin-left: -11%;
}
@media screen and (max-width: 768px) {
  .p-top-interview-slide {
    margin-left: 0;
  }
}
.p-top-interview-slide__item a {
  display: block;
}
.p-top-interview-slide__item.is_slide01 .p-top-interview-slide__thumbnail {
  border-top-right-radius: var(--common-radius);
}
.p-top-interview-slide__item.is_slide02 .p-top-interview-slide__thumbnail {
  border-top-right-radius: var(--common-radius);
}
.p-top-interview-slide__item.is_slide03 .p-top-interview-slide__thumbnail {
  border-bottom-right-radius: var(--common-radius);
}
.p-top-interview-slide__item.is_slide04 .p-top-interview-slide__thumbnail {
  border-top-left-radius: var(--common-radius);
}
.p-top-interview-slide__item.is_slide05 .p-top-interview-slide__thumbnail {
  border-bottom-left-radius: var(--common-radius);
}
.p-top-interview-slide__item.is_slide06 .p-top-interview-slide__thumbnail {
  border-top-left-radius: var(--common-radius);
}
.p-top-interview-slide__item.is_slide07 .p-top-interview-slide__thumbnail {
  border-bottom-right-radius: var(--common-radius);
}
.p-top-interview-slide__thumbnail {
  overflow: hidden;
  -webkit-box-shadow: 0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.3), -0.5rem -0.5rem 1rem rgba(0, 0, 0, 0.3);
          box-shadow: 0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.3), -0.5rem -0.5rem 1rem rgba(0, 0, 0, 0.3);
}
.p-top-interview-slide__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0.6rem;
  visibility: hidden;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(calc(100% + 2rem));
          transform: translateY(calc(100% + 2rem));
}
.p-top-interview-slide__post {
  color: #005c44;
  white-space: nowrap;
  font-size: 2.3rem;
  font-family: "Roboto", sans-serif;
  line-height: 4rem;
}
@media screen and (max-width: 768px) {
  .p-top-interview-slide__post {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}
.p-top-interview-slide__name {
  position: relative;
  padding-left: 3em;
  color: #333;
  font-size: 2.3rem;
  font-family: "Noto Serif JP", serif;
  line-height: 4rem;
}
@media screen and (max-width: 768px) {
  .p-top-interview-slide__name {
    padding-left: 1.8em;
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
}
.p-top-interview-slide__name span {
  font-size: 1.45em;
}
.p-top-interview-slide__name::before {
  display: block;
  position: absolute;
  top: 2em;
  left: -2.5em;
  width: 4.88em;
  width: 14.4rem;
  height: 0.1rem;
  background-color: #000;
  content: "";
  line-height: 5rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .p-top-interview-slide__name::before {
    top: 1em;
    left: -0.5em;
    width: 4.9rem;
    line-height: 2rem;
  }
}
.p-top-interview-slide .swiper-slide {
  padding: 4.5% 0.6rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top-interview-slide .swiper-slide {
    padding: 0 0.6rem;
  }
}
@media screen and (min-width: 1241px) {
  .p-top-interview-slide .swiper-slide-prev {
    width: 40% !important;
    padding: 0 0.6rem;
  }
  .p-top-interview-slide .swiper-slide-prev .p-top-interview-slide__thumbnail {
    -webkit-box-shadow: 0.7rem 0.7rem 5rem rgba(0, 0, 0, 0.3), -0.7rem -0.7rem 5rem rgba(0, 0, 0, 0.3);
            box-shadow: 0.7rem 0.7rem 5rem rgba(0, 0, 0, 0.3), -0.7rem -0.7rem 5rem rgba(0, 0, 0, 0.3);
  }
  .p-top-interview-slide .swiper-slide-prev .p-top-interview-slide__title {
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (max-width: 1240px) {
  .p-top-interview-slide .swiper-slide-active .p-top-interview-slide__thumbnail {
    -webkit-box-shadow: 0.7rem 0.7rem 5rem rgba(0, 0, 0, 0.3), -0.7rem -0.7rem 5rem rgba(0, 0, 0, 0.3);
            box-shadow: 0.7rem 0.7rem 5rem rgba(0, 0, 0, 0.3), -0.7rem -0.7rem 5rem rgba(0, 0, 0, 0.3);
  }
  .p-top-interview-slide .swiper-slide-active .p-top-interview-slide__title {
    visibility: visible;
    opacity: 1;
  }
}
.p-top-interview-slide__paginations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: calc(50vw - 50%);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20rem;
  -webkit-column-gap: 6rem;
     -moz-column-gap: 6rem;
          column-gap: 6rem;
}
@media screen and (max-width: 768px) {
  .p-top-interview-slide__paginations {
    margin-top: 15rem;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
}
.p-top-interview-slide__paginations .swiper-pagination,
.p-top-interview-slide__paginations .swiper-button-prev,
.p-top-interview-slide__paginations .swiper-button-next {
  position: static;
}
.p-top-interview-slide__paginations .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
}
@media screen and (max-width: 768px) {
  .p-top-interview-slide__paginations .swiper-pagination {
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
}
.p-top-interview-slide__paginations .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  margin: 0 !important;
  background-color: #005c44 !important;
  opacity: 1;
}
.p-top-interview-slide__paginations .swiper-pagination-bullet-active {
  background-color: #c3d700 !important;
}
.p-top-interview-slide__paginations .swiper-button-prev,
.p-top-interview-slide__paginations .swiper-button-next {
  height: auto;
  margin-top: 0;
  color: #005c44;
}
.p-top-interview-slide__paginations .swiper-button-prev::after,
.p-top-interview-slide__paginations .swiper-button-next::after {
  height: 1.4rem;
  font-size: 1.6rem;
}
.p-top-benefit {
  position: relative;
  padding-top: 25rem;
  padding-bottom: 23.5rem;
  background-color: #eee;
}
@media screen and (max-width: 960px) {
  .p-top-benefit {
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-top-benefit {
    padding-top: 0;
    padding-bottom: 17rem;
  }
}
.p-top-benefit__obj {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 73%;
}
@media screen and (max-width: 768px) {
  .p-top-benefit__obj {
    bottom: initial;
    width: 127%;
  }
}
.p-top-benefit__box {
  position: relative;
  max-width: 85rem;
  margin-top: -10%;
  margin-right: calc(50% - 42vw);
  margin-left: auto;
  padding-top: 13%;
  padding-right: 50%;
  padding-bottom: 13%;
  padding-left: 5%;
  background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 1450px) {
  .p-top-benefit__box {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top-benefit__box {
    margin-top: 45%;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 0 3.5rem;
    padding-top: 45%;
    padding-bottom: 5rem;
    background-color: rgba(255, 255, 255, 0.9);
  }
}
.p-top-benefit__box::after {
  display: block;
  position: absolute;
  top: -5vw;
  right: -8vw;
  width: 67%;
  border-bottom-left-radius: var(--common-radius);
  background-image: url(../images/top/benefit-img.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  aspect-ratio: 558/482;
}
@media screen and (max-width: 768px) {
  .p-top-benefit__box::after {
    right: 0;
    width: 91.8%;
    background-image: url(../images/top/benefit-img-sp.jpg);
    -webkit-transform: translateY(-40%);
            transform: translateY(-40%);
    aspect-ratio: 395/263;
  }
}
.p-top-benefit__lead {
  font-size: 1.8rem;
  line-height: 1.94;
}
@media screen and (max-width: 768px) {
  .p-top-benefit__lead {
    font-size: 1.6rem;
  }
}
.p-top-benefit__links {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .p-top-benefit__links {
    margin-top: 3rem;
  }
}
.p-top-benefit__links li {
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-top-benefit__links li {
    font-size: 2.2rem;
  }
}
.p-top-benefit__links li:not(:first-of-type) {
  margin-top: 1em;
}
.p-top-benefit__links li a {
  font-family: "Noto Serif JP", serif;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.p-top-benefit__links li a::before {
  margin-right: 0.5em;
  content: "-";
}
.p-top-benefit__links li a:hover {
  color: #c3d700;
}
.p-top-benefit__more {
  margin-top: 2.6em;
  color: #005c44;
  text-align: right;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", serif;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-top-benefit__more {
    font-size: 1.4rem;
  }
}
.p-top-benefit__more::after {
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  margin-left: 0.3em;
  border-right: 0.15rem solid #005c44;
  border-bottom: 0.15rem solid #005c44;
  content: "";
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.p-top-benefit__more:hover {
  opacity: 0.7;
}
.p-top-benefit__more:hover::after {
  -webkit-transform: translateX(0.5rem) rotate(-45deg);
          transform: translateX(0.5rem) rotate(-45deg);
}
.p-top-info {
  padding-bottom: 15%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #eee), color-stop(90%, #eee), to(#fff));
  background: linear-gradient(to bottom, #eee 0, #eee 90%, #fff 100%);
}
@media screen and (max-width: 768px) {
  .p-top-info {
    padding-bottom: 100%;
  }
}
.p-top-info__image {
  position: relative;
  margin-top: 4rem;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .p-top-info__image {
    margin-top: 6rem;
    margin-left: calc(50% - 50vw);
  }
}
.p-top-info__image::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 5%;
  height: 100%;
  background-color: #eee;
  content: "";
}
@media screen and (max-width: 768px) {
  .p-top-info__image::after {
    display: none;
  }
}
.p-top-info__image img {
  -webkit-box-shadow: 10rem 10rem 10rem rgba(0, 0, 0, 0.16);
          box-shadow: 10rem 10rem 10rem rgba(0, 0, 0, 0.16);
}
.p-top-info__box {
  position: absolute;
  right: 5%;
  bottom: 0;
  padding: 3%;
  padding-right: 5.5%;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-transform: translateY(65%);
          transform: translateY(65%);
}
@media screen and (max-width: 768px) {
  .p-top-info__box {
    right: 0;
    max-width: 39.5rem;
    width: 91.8%;
    padding: 4rem;
    -webkit-transform: translateY(90%);
            transform: translateY(90%);
  }
}
.p-top-info__lead {
  font-size: 1.8rem;
  line-height: 1.94;
}
.p-top-info__links li {
  font-size: 2.5rem;
}
.p-top-info__links li:not(:first-of-type) {
  margin-top: 1em;
}
.p-top-info__links li a {
  font-family: "Noto Serif JP", serif;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-top-info__links li a {
    font-size: 2.2rem;
  }
}
.p-top-info__links li a::before {
  margin-right: 0.5em;
  content: "-";
}
.p-top-info__links li a:hover {
  color: #c3d700;
}

/* アニメーション定義 */
@-webkit-keyframes scroll-left {
  0% {
    -webkit-transform: translateX(118%);
            transform: translateX(118%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes scroll-left {
  0% {
    -webkit-transform: translateX(118%);
            transform: translateX(118%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@media screen and (max-width: 768px) {
  .p-interview:not(.is_person01) .c-subpage-mainview {
    padding-bottom: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .p-interview.is_person01 .c-subpage-mainview__flex {
    margin-bottom: 6rem;
  }
}
.p-interview.is_person01 .c-subpage-marquee {
  z-index: 10;
  position: relative;
}
.p-interview-marquee {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  padding-bottom: 11rem;
  margin-top: 1.9rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-interview-marquee {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.p-interview-marquee.is_person01 {
  margin-top: 1.4rem;
  margin-bottom: 11rem;
}
@media screen and (max-width: 768px) {
  .p-interview-marquee.is_person01 {
    margin-top: 10rem;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-interview-marquee.is_person01 .p-interview-marquee__img {
    height: 5rem;
  }
}
.p-interview-marquee__img {
  width: 82%;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-interview-marquee__img {
    height: 7rem;
  }
}
.p-interview-marquee__img img {
  max-inline-size: initial;
}
@media screen and (max-width: 768px) {
  .p-interview-marquee__img img {
    width: 100%;
  }
}
.p-interview__image1 {
  margin-left: calc(50% - 50vw);
  margin-top: 10.8rem;
}
@media screen and (max-width: 768px) {
  .p-interview__image1 {
    margin-top: 5rem;
  }
}
.p-interview__image1 img {
  border-top-right-radius: 10rem;
}
@media screen and (max-width: 768px) {
  .p-interview__image1 img {
    aspect-ratio: 395/283;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-interview__image3 {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .p-interview__image3 img {
    aspect-ratio: 430/328;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-interview-mainview {
  background-color: #eee;
  position: relative;
}
.p-interview-mainview__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.p-interview-mainview__image {
  max-height: 80dvh;
  width: 77%;
}
.p-interview-mainview__image img {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-interview-overview {
  position: absolute;
  bottom: 0;
  left: 50%;
  max-width: 106.4rem;
  width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-interview-overview {
    position: static;
    -webkit-transform: translate(0);
            transform: translate(0);
    width: 90%;
    margin-left: auto;
  }
}
.p-interview-overview.active {
  z-index: 3;
}
.p-interview-overview__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% + 50vw - 50%);
}
@media screen and (max-width: 768px) {
  .p-interview-overview__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
.p-interview-overview__left {
  width: 50rem;
  background-color: rgba(255, 255, 255, 0.9);
  padding-top: 5rem;
  padding-left: 2rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .p-interview-overview__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    padding-top: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-interview-overview__left .c-careerstep__button {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    font-size: 1.5rem;
  }
}
.p-interview-overview__left .c-careerstep__asterisk {
  padding-left: 6rem;
}
@media screen and (max-width: 768px) {
  .p-interview-overview__left .c-careerstep__asterisk {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    margin-left: 3.2rem;
    padding-left: 0;
  }
}
.p-interview-overview__right {
  width: calc(100% - 50rem);
}
@media screen and (max-width: 768px) {
  .p-interview-overview__right {
    width: 100%;
  }
}
.p-interview-overview__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-interview-overview__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: contents;
  }
}
@media screen and (max-width: 768px) {
  .p-interview-overview__info .c-careerstep__name {
    padding-left: 2rem;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.p-interview-overview__info .c-careerstep__name {
  position: relative;
}
.p-interview-overview__info .c-careerstep__name::before {
  content: "";
  display: inline-block;
  height: 14.8rem;
  position: absolute;
  width: 0.1rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #000;
  margin: 0 1.5rem;
  top: -2em;
  left: -4em;
}
@media screen and (max-width: 768px) {
  .p-interview-overview__info .c-careerstep__name::before {
    display: none;
  }
}
.p-interview-overview__post {
  color: #005c44;
  font-size: 1.8rem;
  position: relative;
  margin-right: 2.5em;
  min-width: 5em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-interview-overview__post {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    text-align: left;
    min-width: initial;
  }
}
.p-interview-overview__catch {
  letter-spacing: -0.05em;
  font-size: 3rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.66;
  margin-top: 0.5em;
  padding-left: 1.5em;
}
@media screen and (max-width: 768px) {
  .p-interview-overview__catch {
    font-size: 2.2rem;
    padding-left: 2rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    line-height: 1.32;
  }
}
.p-interview-talk {
  background-color: #eee;
}
.p-interview-talk__unit {
  padding-top: 16rem;
  padding-bottom: 26rem;
}
@media screen and (max-width: 768px) {
  .p-interview-talk__unit {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.p-interview-talk__unit.is_unit1 {
  position: relative;
}
.p-interview-talk__unit.is_unit1 .p-interview__obj1 {
  width: 100%;
  position: absolute;
  top: 0;
  right: calc(50% - 50vw);
}
.p-interview-talk__unit.is_unit2 {
  position: relative;
}
.p-interview-talk__unit.is_unit2 .p-interview__obj2 {
  position: absolute;
  width: 100%;
  bottom: -20%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
.p-interview-talk__inner {
  max-width: 106.4rem;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0 16rem;
}
@media screen and (max-width: 768px) {
  .p-interview-talk__inner {
    padding: 0 3.5rem;
  }
}
.p-interview-talk__texts {
  position: relative;
  z-index: 1;
}
.p-interview-talk__h2 {
  font-size: 2.6rem;
  line-height: 1.9;
  font-family: "Noto Serif JP", serif;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-interview-talk__h2 {
    font-size: 2.3rem;
    margin-left: 1.7em;
  }
}
@media screen and (max-width: 500px) {
  .p-interview-talk__h2 {
    font-size: 1.9rem;
  }
}
.p-interview-talk__h2::before {
  content: "";
  display: inline-block;
  height: 5.71em;
  width: 0.1rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #000;
  margin: 0 1.5rem;
  position: absolute;
  bottom: 0;
  left: -1.5em;
}
@media screen and (max-width: 768px) {
  .p-interview-talk__h2::before {
    height: 3em;
    bottom: initial;
    top: -1em;
    left: -1.2em;
  }
}
.p-interview-talk__text {
  line-height: 2;
  margin-top: 2em;
}
.p-interview-talk__text p {
  margin-top: 2em;
}
.p-interview-oneday {
  position: relative;
  width: 100%;
}
.p-interview-oneday__image {
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  position: sticky;
  height: 100dvh;
}
.p-interview-oneday__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-interview-oneday__image.is_person02 img {
    -o-object-position: 40%;
       object-position: 40%;
  }
  .p-interview-oneday__image.is_person03 img {
    -o-object-position: 75%;
       object-position: 75%;
  }
  .p-interview-oneday__image.is_person06 img {
    -o-object-position: 35%;
       object-position: 35%;
  }
  .p-interview-oneday__image.is_person07 img {
    -o-object-position: 0;
       object-position: 0;
  }
}
.p-interview-oneday__overlay {
  position: sticky;
  overflow-x: hidden;
  top: 0;
  left: 0;
  height: 100dvh;
  background-color: rgba(0, 130, 97, 0.4);
  font-size: 2rem;
}
.p-interview-oneday__inner {
  max-width: 108rem;
  margin: 0 auto;
  position: relative;
  padding: 0 2rem;
  height: 100%;
  mix-blend-mode: normal;
}
.p-interview-oneday__h2 {
  position: absolute;
  top: 40%;
  left: 0;
  color: #fff;
  font-weight: 600;
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  .p-interview-oneday__h2 {
    left: 2rem;
    font-size: 2.8rem;
  }
}
.p-interview-oneday-timeline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  position: absolute;
  padding-right: calc(50vw - 50%);
  top: 50%;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-interview-oneday-timeline {
    left: 2rem;
  }
}
.p-interview-oneday-timeline li {
  width: 28.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-interview-oneday-timeline__time {
  font-family: "Roboto", sans-serif;
  font-size: 3.8rem;
  border-bottom: 0.1rem solid #fff;
  padding-bottom: 0.5em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-interview-oneday-timeline__time {
    font-size: 2.6rem;
  }
}
.p-interview-oneday-timeline__time::after {
  content: "";
  display: block;
  width: 0.275em;
  height: 0.275em;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 2.5rem;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.p-interview-oneday-timeline__time span {
  font-size: 0.7em;
  margin-left: 0.3em;
  font-weight: 600;
}
.p-interview-oneday-timeline__dl {
  margin-top: 3rem;
  width: 80%;
}
.p-interview-oneday-timeline__dl dt {
  font-size: 1.8rem;
  line-height: 1.66;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-interview-oneday-timeline__dl dt {
    font-size: 1.6rem;
  }
}
.p-interview-oneday-timeline__dl dd {
  font-size: 1.6rem;
  line-height: 1.87;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-interview-oneday-timeline__dl dd {
    font-size: 1.4rem;
  }
}
.p-interview-life {
  background-color: #eee;
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-interview-life {
    width: 91.4%;
    margin: 0 auto;
  }
}
.p-interview-life .p-interview__obj3 {
  position: absolute;
  top: -10%;
  left: 50%;
  -webkit-transform: translateX(-60%);
          transform: translateX(-60%);
}
.p-interview-life__inner {
  max-width: 106.4rem;
  margin: 0 auto;
  background-color: #ccded9;
  padding: 0 16rem;
  padding-top: 21rem;
  padding-bottom: 47.6rem;
}
@media screen and (max-width: 768px) {
  .p-interview-life__inner {
    padding: 4rem 2rem;
  }
}
.p-interview-life__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 1;
}
.p-interview-life__texts {
  width: 43%;
}
@media screen and (max-width: 768px) {
  .p-interview-life__texts {
    width: 100%;
    display: contents;
  }
}
.p-interview-life__texts p {
  line-height: 2;
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .p-interview-life__texts p {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.p-interview-life__image {
  width: 43%;
}
@media screen and (max-width: 768px) {
  .p-interview-life__image {
    width: 89.4%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 0 auto;
    margin-top: 8rem;
  }
}
.p-interview-life__image img {
  border-top-right-radius: 10rem;
  -webkit-box-shadow: 4rem 4rem 4rem rgba(0, 0, 0, 0.16);
          box-shadow: 4rem 4rem 4rem rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 768px) {
  .p-interview-life__image img {
    border-top-right-radius: 5rem;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: bottom;
       object-position: bottom;
  }
}
.p-interview-life__image.is_landscape {
  width: 51rem;
}
.p-interview-life__image.is_landscape img {
  border-top-left-radius: 10rem;
}
.p-interview-life__title {
  position: relative;
  padding-bottom: 3.5rem;
}
@media screen and (max-width: 768px) {
  .p-interview-life__title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.p-interview-life__title::after {
  content: "";
  display: block;
  position: absolute;
  width: 4.7rem;
  height: 0.2rem;
  background-color: #000;
  left: 0;
  bottom: 0;
}
.p-interview-life__title img {
  width: 21.8rem;
}
@media screen and (max-width: 768px) {
  .p-interview-life__title img {
    width: 10rem;
  }
}
.p-interview-life__title span {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  margin-top: 1.5em;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .p-interview-life__title span {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 768px) {
  .p-interview-other {
    padding-bottom: 12rem;
  }
}
.p-interview-other__inner {
  max-width: 106.4rem;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  margin-top: -30rem;
}
@media screen and (max-width: 768px) {
  .p-interview-other__inner {
    margin-top: 0;
  }
}
.p-interview-other__inner::before {
  content: "";
  display: block;
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 80%;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-interview-other__inner::before {
    display: none;
  }
}
.p-interview-other__h2 {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: 6.4rem;
}
.p-interview-other__h2 img {
  width: 20.8rem;
}
@media screen and (max-width: 768px) {
  .p-interview-other__h2 img {
    width: 15.2rem;
  }
}
.p-interview-other-slide {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .p-interview-other-slide {
    width: 86%;
    margin: 0 auto;
    margin-top: 3rem;
  }
}
.p-interview-other-slide__item a {
  display: block;
}
.p-interview-other-slide__item a:hover .p-interview-other-slide__thumbnail img {
  scale: 1.1;
}
.p-interview-other-slide__item.is_slide01 .p-interview-other-slide__thumbnail {
  border-top-right-radius: var(--common-radius);
}
.p-interview-other-slide__item.is_slide02 .p-interview-other-slide__thumbnail {
  border-top-right-radius: var(--common-radius);
}
.p-interview-other-slide__item.is_slide03 .p-interview-other-slide__thumbnail {
  border-bottom-right-radius: var(--common-radius);
}
.p-interview-other-slide__item.is_slide04 .p-interview-other-slide__thumbnail {
  border-top-left-radius: var(--common-radius);
}
.p-interview-other-slide__item.is_slide05 .p-interview-other-slide__thumbnail {
  border-bottom-left-radius: var(--common-radius);
}
.p-interview-other-slide__item.is_slide06 .p-interview-other-slide__thumbnail {
  border-top-left-radius: var(--common-radius);
}
.p-interview-other-slide__item.is_slide07 .p-interview-other-slide__thumbnail {
  border-bottom-right-radius: var(--common-radius);
}
.p-interview-other-slide__thumbnail {
  overflow: hidden;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-box-shadow: -0.5rem -0.5rem 1rem rgba(0, 0, 0, 0.3), 0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.3);
          box-shadow: -0.5rem -0.5rem 1rem rgba(0, 0, 0, 0.3), 0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.3);
}
.p-interview-other-slide__thumbnail img {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.p-interview-other-slide__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: 2rem;
}
.p-interview-other-slide__post {
  position: relative;
  color: #005c44;
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  line-height: 1.25;
  font-weight: 500;
  white-space: nowrap;
  display: inline-block;
}
.p-interview-other-slide__post::after {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 0.1rem;
  height: 9.3rem;
  background-color: #000;
  content: "";
  line-height: 5rem;
  -webkit-transform: translateY(-20%) rotate(45deg);
          transform: translateY(-20%) rotate(45deg);
}
.p-interview-other-slide__catch {
  color: #333;
  font-size: 1.8rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.52;
  width: calc(100% - 6rem);
  padding-left: 1.5em;
}
.p-interview-other-slide__catch span {
  font-size: 1.45em;
  padding-left: 0.5em;
}
.p-interview-other-slide__paginations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto", sans-serif;
  color: #005c44;
  font-size: 2rem;
  -webkit-column-gap: 6rem;
     -moz-column-gap: 6rem;
          column-gap: 6rem;
  font-weight: bold;
}
.p-interview-other-slide__paginations .swiper-pagination,
.p-interview-other-slide__paginations .swiper-button-prev,
.p-interview-other-slide__paginations .swiper-button-next {
  position: static;
}
.p-interview-other-slide__paginations .swiper-pagination {
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-interview-other-slide__paginations .swiper-pagination-bullet {
  background: red;
}
.p-interview-other-slide__paginations .swiper-button-prev,
.p-interview-other-slide__paginations .swiper-button-next {
  color: #005c44;
  height: auto;
  margin-top: 0;
}
.p-interview-other-slide__paginations .swiper-button-prev::after,
.p-interview-other-slide__paginations .swiper-button-next::after {
  font-size: 1.6rem;
  height: 1.4rem;
}
.p-interview-other.is_list {
  position: relative;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-interview-other.is_list {
    margin-top: -1.5rem;
  }
}
.p-interview-other.is_list .p-interview-other__inner {
  margin-top: 0;
  overflow: visible;
}
@media screen and (max-width: 768px) {
  .p-interview-other.is_list .p-interview-other__inner {
    padding: 0 3.5rem;
  }
}
.p-interview-other.is_list .p-interview-other__inner::before {
  top: -7rem;
}
.p-interview-other.is_list .p-interview__obj1 {
  width: 38.5%;
  position: absolute;
  top: -20%;
  right: calc(50% - 50vw);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-interview-other.is_list .p-interview__obj1 {
    width: 100%;
    top: -45%;
    right: 0;
    z-index: 1;
    -webkit-transform: translateX(30%);
            transform: translateX(30%);
    display: none;
  }
}
.p-interview-other.is_list .p-interview-other__h2 {
  padding-top: 5rem;
  margin-top: 0;
}
.p-interview-other.is_list .p-interview-other__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 0.95%;
     -moz-column-gap: 0.95%;
          column-gap: 0.95%;
  row-gap: 5rem;
  z-index: 3;
  position: relative;
  margin-top: 10.5rem;
}
@media screen and (max-width: 768px) {
  .p-interview-other.is_list .p-interview-other__list {
    -webkit-column-gap: 4%;
       -moz-column-gap: 4%;
            column-gap: 4%;
    margin-top: 4rem;
  }
}
@media screen and (max-width: 500px) {
  .p-interview-other.is_list .p-interview-other__list {
    margin-top: 2rem;
  }
}
.p-interview-other.is_list .p-interview-other-slide__item {
  width: 32.7%;
}
@media screen and (max-width: 768px) {
  .p-interview-other.is_list .p-interview-other-slide__item {
    width: 48%;
  }
}
@media screen and (max-width: 500px) {
  .p-interview-other.is_list .p-interview-other-slide__item {
    width: 100%;
  }
}
.p-strength-mainview__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 960px) {
  .p-strength-mainview__texts {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-strength-mainview__image {
  position: relative;
}
.p-strength-mainview__image > picture img {
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
@media screen and (max-width: 960px) {
  .p-strength-mainview__image > picture img {
    aspect-ratio: 430/424;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-strength-mainview__image.is_index img {
  -o-object-position: left center;
     object-position: left center;
}
.p-strength-mainview__copy {
  position: absolute;
  bottom: 0.2em;
  left: 0.5em;
  color: #fff;
  font-size: 5.5rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.3em;
  font-weight: 600;
  text-shadow: 0 0.2rem 0.2rem #000;
}
@media screen and (max-width: 768px) {
  .p-strength-mainview__copy {
    font-size: 3.5rem;
    left: 8.1%;
  }
}
@media screen and (max-width: 500px) {
  .p-strength-mainview__copy {
    font-size: 2.6rem;
  }
}
.p-strength-mainview__copy span {
  font-size: 1.45em;
}
@media screen and (max-width: 768px) {
  .p-strength-mainview__copy span {
    font-size: 1.43em;
  }
}
.p-strength-mainview__num {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  -webkit-transform: translate(-170%, -42%);
          transform: translate(-170%, -42%);
}
@media screen and (max-width: 768px) {
  .p-strength-mainview__num {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
}
.p-strength-mainview__num img {
  width: auto;
  height: 8.2rem;
  margin-bottom: 11rem;
}
@media screen and (max-width: 768px) {
  .p-strength-mainview__num img {
    height: 4.1rem;
    margin-bottom: 5rem;
    -webkit-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.6));
            filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.6));
  }
}
@media screen and (max-width: 500px) {
  .p-strength-mainview__num img {
    height: 3.4rem;
  }
}
.p-strength-mainview__num::after {
  display: inline-block;
  width: 0.1rem;
  height: 27.8rem;
  background-color: #000;
  content: "";
  -webkit-transform: rotate(45deg) translate(3500%, 10%);
          transform: rotate(45deg) translate(3500%, 10%);
}
@media screen and (max-width: 768px) {
  .p-strength-mainview__num::after {
    background-color: #fff;
    height: 11.3rem;
    -webkit-transform: translate(0, 10%) rotate(43deg);
            transform: translate(0, 10%) rotate(43deg);
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
            box-shadow: 0 0 4px rgba(0, 0, 0, 0.6);
  }
}
.p-strength-links {
  background-color: #b5c9c4;
  padding-top: 12rem;
  padding-bottom: 10rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-strength-links {
    margin-bottom: 8rem;
    overflow-x: hidden;
  }
}
.p-strength-links-spcatch {
  display: none;
  padding: 5rem 0;
}
@media screen and (max-width: 768px) {
  .p-strength-links-spcatch {
    display: block;
  }
}
.p-strength-links-spcatch p {
  font-size: 2.4rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.66;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-strength-links-spcatch p {
    font-size: 1.9rem;
  }
}
.p-strength-links__obj1 {
  max-width: 98.2rem;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-strength-links__obj1 {
    top: -10%;
    right: -11rem;
  }
}
.p-strength-links__obj2 {
  max-width: 98.2rem;
  width: 100%;
  position: absolute;
  bottom: -7%;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-strength-links__obj2 {
    display: none;
  }
}
.p-strength-links__inner {
  max-width: 94.5rem;
  margin: 0 auto;
  padding: 0 3.5rem;
}
@media screen and (max-width: 768px) {
  .p-strength-links__inner {
    padding: 0 8.1%;
  }
}
.p-strength-links-unit {
  position: relative;
}
.p-strength-links-unit:not(:first-of-type) {
  margin-top: 2rem;
}
@media screen and (max-width: 960px) {
  .p-strength-links-unit:not(:first-of-type) {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .p-strength-links-unit:not(:first-of-type) {
    margin-top: 4.8rem;
  }
}
.p-strength-links-unit a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}
.p-strength-links-unit a:hover .p-strength-links-unit__landscape::before {
  scale: 1.08;
}
.p-strength-links-unit a:hover .p-strength-links-unit__button {
  background-color: #047557;
}
.p-strength-links-unit.is_unit1 .p-strength-links-unit__landscape::before {
  background-image: url(../images/strength/top/link1-img1.jpg);
}
.p-strength-links-unit.is_unit1 .p-strength-links-unit__photo {
  border-top-right-radius: var(--common-radius);
}
.p-strength-links-unit.is_unit2 .p-strength-links-unit__landscape {
  border-bottom-left-radius: var(--common-radius);
}
.p-strength-links-unit.is_unit2 .p-strength-links-unit__landscape::before {
  background-image: url(../images/strength/top/link2-img1.jpg);
}
.p-strength-links-unit.is_unit3 .p-strength-links-unit__landscape::before {
  background-image: url(../images/strength/top/link3-img1.jpg);
}
.p-strength-links-unit.is_unit3 .p-strength-links-unit__photo {
  border-bottom-right-radius: var(--common-radius);
}
.p-strength-links-unit.is_unit4 .p-strength-links-unit__landscape {
  border-bottom-left-radius: var(--common-radius);
}
.p-strength-links-unit.is_unit4 .p-strength-links-unit__landscape::before {
  background-image: url(../images/strength/top/link4-img1.jpg);
}
.p-strength-links-unit__landscape {
  width: 58%;
  font-family: "Noto Serif JP", serif;
  padding: 3rem 0;
  padding-left: 4%;
  position: relative;
  overflow: hidden;
  text-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.6);
}
.p-strength-links-unit__landscape::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: left center;
  background-size: cover;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.p-strength-links-unit__photo {
  overflow: hidden;
}
.p-strength-links-unit__photo img {
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.p-strength-links-unit__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.9rem;
  position: absolute;
  font-family: "Noto Serif JP", serif;
  z-index: 1;
  top: 3rem;
  left: 4%;
  text-shadow: 0 0.2rem 0.2rem #000;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-strength-links-unit__title {
    font-size: 1.4rem;
  }
}
.p-strength-links-unit__title > span {
  display: inline-block;
  position: absolute;
  top: -0.7em;
  left: 0;
  -webkit-transform: translateX(-175%);
          transform: translateX(-175%);
  font-weight: 600;
}
@media screen and (max-width: 960px) {
  .p-strength-links-unit__title > span {
    -webkit-transform: translate(-70%, -150%);
            transform: translate(-70%, -150%);
  }
}
@media screen and (max-width: 768px) {
  .p-strength-links-unit__title > span {
    -webkit-transform: translate(-70%, -227%);
            transform: translate(-70%, -227%);
  }
}
.p-strength-links-unit__title > span::after {
  content: "";
  width: 0.1rem;
  height: 7.79em;
  background-color: #000;
  display: inline-block;
  -webkit-transform: translate(0, -20%) rotate(45deg);
          transform: translate(0, -20%) rotate(45deg);
  position: absolute;
  top: 0;
  right: -25%;
}
@media screen and (max-width: 768px) {
  .p-strength-links-unit__title > span::after {
    height: 7em;
    right: -20%;
  }
}
.p-strength-links-unit__title > span img {
  height: 2.52em;
  width: auto;
}
@media screen and (max-width: 768px) {
  .p-strength-links-unit__title > span img {
    height: 2.6rem;
  }
}
.p-strength-links-unit__title p > span {
  font-size: 1.578em;
  line-height: 1.8;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-strength-links-unit__title p > span {
    font-size: 2.1rem;
  }
}
.p-strength-links-unit__copy {
  margin-top: 3.75em;
  font-size: 2.9rem;
  line-height: 1.66;
  z-index: 1;
  font-weight: 600;
  position: relative;
  text-shadow: 0 0.2rem 0.2rem #000;
}
@media screen and (max-width: 768px) {
  .p-strength-links-unit__copy {
    font-size: 1.8rem;
    line-height: 1.38;
  }
}
@media screen and (max-width: 500px) {
  .p-strength-links-unit__copy {
    font-size: 1.4rem;
  }
}
.p-strength-links-unit__photo {
  width: 42%;
}
.p-strength-links-unit__photo img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.p-strength-links-unit__button {
  position: absolute;
  width: 20rem;
  bottom: 2.3rem;
  right: -4.4rem;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-strength-links-unit__button {
    width: 13.1rem;
    height: 3.4rem;
    font-size: 1.1rem;
    right: -2rem;
    bottom: 0;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
}
.p-strength-person {
  position: relative;
  overflow: hidden;
  padding-top: 11rem;
}
@media screen and (max-width: 768px) {
  .p-strength-person {
    padding-top: 3rem;
    padding-bottom: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .p-strength-person__inner {
    padding: 0 8.1%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-strength-person__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.p-strength-person__bg img {
  -o-object-fit: cover;
     object-fit: cover;
  font-weight: 100%;
  height: 100%;
  display: block;
}
.p-strength-person__bg::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(175, 214, 203, 0.8);
  content: "";
  z-index: 1;
}
.p-strength-person__lead {
  max-width: 75rem;
  margin: 0 auto;
  line-height: 2;
}
.p-strength-person__lead .lg {
  font-size: 4rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .p-strength-person__lead .lg {
    font-size: 2.6rem;
  }
}
.p-strength-person__lead .lg span {
  font-size: 1.7rem;
}
.p-strength-person__copy {
  position: relative;
  font-size: 4rem;
  text-align: right;
  width: calc(100% - 42rem);
  margin-left: auto;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .p-strength-person__copy {
    padding-left: 0;
    width: 100%;
    font-size: 2.2rem;
    margin-top: 2em;
    padding-left: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: left;
  }
}
.p-strength-person__copy p {
  display: inline-block;
  text-align: left;
  line-height: 1.75;
  font-family: "Noto Serif JP", serif;
}
.p-strength-person__copy .p-strength__obj1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 83%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-strength-person__copy .p-strength__obj1 {
    display: none;
  }
}
.p-strength-person__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 4rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-strength-person__flex {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: min(8rem + 83%, 40rem);
  }
}
.p-strength-person__profile {
  background-color: rgba(255, 255, 255, 0.9);
  padding-top: 3rem;
  padding-left: 2rem;
  width: 42rem;
  position: relative;
  padding-top: 12%;
  padding-top: 10%;
  padding-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .p-strength-person__profile {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.p-strength-person__image {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-80%);
          transform: translateY(-80%);
}
@media screen and (max-width: 768px) {
  .p-strength-person__image {
    max-width: 36rem;
    top: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
.p-strength-person__image img {
  border-top-right-radius: 10rem;
}
.p-strength-person__careerstep {
  width: calc(100% - 42rem);
}
@media screen and (max-width: 768px) {
  .p-strength-person__careerstep {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.p-strength-person__careerstep .c-careerstep-timeline-wrap {
  max-height: 37rem;
}
.p-strength-person__box {
  max-width: 118rem;
  margin: 0 auto;
  margin-top: 15rem;
}
@media screen and (max-width: 768px) {
  .p-strength-person__box {
    display: contents;
  }
}
.p-strength-person__box.is_invert .p-strength-person__copy {
  text-align: left;
  margin-right: auto;
  margin-left: 0;
}
.p-strength-person__box.is_invert .p-strength-person__profile {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 768px) {
  .p-strength-person__box.is_invert .p-strength-person__profile {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.p-strength-person__box.is_invert .p-strength-person__image img {
  border-top-left-radius: 10rem;
  border-top-right-radius: 0;
}
.p-strength-person__box.is_invert .p-strength-person__careerstep {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 768px) {
  .p-strength-person__box.is_invert .p-strength-person__careerstep {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.p-strength-person__box.is_invert .c-careerstep__button {
  text-align: left;
  padding-right: 0;
}
.p-strength-person__box.is_invert .c-careerstep__button #js-careerstep-button {
  padding-left: 3em;
}
.p-strength-person__box.is_invert .c-careerstep__button #js-careerstep-button::before, .p-strength-person__box.is_invert .c-careerstep__button #js-careerstep-button::after {
  right: initial;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-strength-person .c-subpage-marquee {
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .p-strength-person .c-subpage-marquee {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 6.5rem;
    padding-bottom: 0;
  }
}
.p-strength-talk {
  overflow-x: hidden;
  background-color: #eee;
}
.p-strength-talk__unit {
  padding-top: 16rem;
  padding-bottom: 26rem;
}
@media screen and (max-width: 768px) {
  .p-strength-talk__unit {
    padding-bottom: 13rem;
    padding-top: 8rem;
  }
}
.p-strength-talk__unit.is_unit2 {
  position: relative;
}
.p-strength-talk__unit.is_unit2 .p-strength__obj2 {
  position: absolute;
  top: 0;
  right: calc(50% - 50vw);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-strength-talk__unit.is_unit2 .p-strength__obj2 {
    width: 113%;
    right: -52%;
    top: 10rem;
  }
}
.p-strength-talk__unit.is_unit3 {
  position: relative;
}
.p-strength-talk__unit.is_unit3 .p-strength__obj3 {
  position: absolute;
  top: -28%;
  left: -40%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-strength-talk__unit.is_unit3 .p-strength__obj3 {
    display: none;
  }
}
.p-strength-talk__unit.is_unit4 {
  position: relative;
}
.p-strength-talk__unit.is_unit4 .p-strength__obj4 {
  position: absolute;
  top: -15%;
  right: -50%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-strength-talk__unit.is_unit4 .p-strength__obj4 {
    display: none;
  }
}
.p-strength-talk__inner {
  max-width: 106.4rem;
  margin: 0 auto;
  padding: 0 16rem;
  background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 768px) {
  .p-strength-talk__inner {
    padding: 0 8.1%;
  }
}
.p-strength-talk__texts {
  position: relative;
  z-index: 1;
}
.p-strength-talk__h2 {
  position: relative;
  font-size: 2.6rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .p-strength-talk__h2 {
    font-size: 1.9rem;
    margin-left: 1.47em;
  }
}
.p-strength-talk__h2::before {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: -1.5em;
  width: 0.1rem;
  height: 5.71em;
  margin: 0 1.5rem;
  background-color: #000;
  content: "";
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .p-strength-talk__h2::before {
    height: 4.47em;
    bottom: initial;
    top: -1.5em;
  }
}
.p-strength-talk__text {
  margin-top: 2em;
  line-height: 2;
}
.p-strength-talk__text p {
  margin-top: 2em;
}
.p-strength-talk__image1 {
  margin-left: calc(50% - 50vw);
}
.p-strength-talk__image1 img {
  border-top-right-radius: 10rem;
}
@media screen and (max-width: 768px) {
  .p-strength-talk__image1 img {
    aspect-ratio: 395/283;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 768px) {
  .p-strength-talk__image1.is_person02 img {
    -o-object-position: left;
       object-position: left;
  }
}
.p-strength-talk__image2 {
  margin-right: calc(50% - 50vw);
  text-align: right;
}
.p-strength-talk__image2 img {
  width: 82.9%;
  border-top-left-radius: 10rem;
}
@media screen and (max-width: 768px) {
  .p-strength-talk__image2 img {
    aspect-ratio: 395/283;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
}
.p-strength-talk__image3 {
  margin-right: calc(50% - 50vw);
}
.p-strength-talk__image3 img {
  border-top-left-radius: 10rem;
}
@media screen and (max-width: 768px) {
  .p-strength-talk__image3 img {
    aspect-ratio: 395/283;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-strength-casestudy {
  background-color: #eee;
}
@media screen and (max-width: 768px) {
  .p-strength-casestudy {
    width: 91.4%;
    margin: 0 auto;
  }
}
.p-strength-casestudy__inner {
  max-width: 106.4rem;
  margin: 0 auto;
  padding: 7rem 0rem 5rem 6rem;
  background-color: #cadcd8;
}
@media screen and (max-width: 768px) {
  .p-strength-casestudy__inner {
    padding: 8rem 2rem 17rem;
  }
}
.p-strength-casestudy h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #005c44;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 3rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-strength-casestudy h2 {
    font-size: 2.5rem;
  }
}
.p-strength-casestudy h2::before {
  display: block;
  width: 7.48rem;
  height: 0.1rem;
  background-color: #000;
  content: "";
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.p-strength-casestudy__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 6rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-strength-casestudy__flex {
    margin-top: 2.2rem;
  }
}
.p-strength-casestudy__texts {
  width: 53%;
}
@media screen and (max-width: 768px) {
  .p-strength-casestudy__texts {
    width: 100%;
    display: contents;
  }
}
.p-strength-casestudy__image {
  width: 41%;
}
@media screen and (max-width: 768px) {
  .p-strength-casestudy__image {
    width: calc(100% + 4rem);
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-left: -2rem;
    margin-right: -2rem;
    margin-top: 3rem;
  }
}
.p-strength-casestudy__image img {
  border-top-left-radius: 10rem;
  -webkit-box-shadow: 5rem 5rem 5rem rgba(0, 0, 0, 0.16);
          box-shadow: 5rem 5rem 5rem rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 768px) {
  .p-strength-casestudy__image img {
    -webkit-box-shadow: none;
            box-shadow: none;
    border-top-left-radius: 5rem;
  }
}
.p-strength-casestudy__copy {
  color: #005c44;
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-strength-casestudy__copy {
    font-size: 2.2rem;
    text-align: center;
    line-height: 1.5;
    margin-top: 1em;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
}
.p-strength-casestudy__text {
  margin-top: 2em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-strength-casestudy__text {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
@media screen and (max-width: 768px) {
  .p-strength-other {
    padding-bottom: 11rem;
  }
}
.p-strength-other__inner {
  position: relative;
  overflow: hidden;
  max-width: 106.4rem;
  margin: 0 auto;
  margin-top: -17rem;
}
@media screen and (max-width: 768px) {
  .p-strength-other__inner {
    padding: 0 8.1%;
    margin-top: -7.5rem;
  }
}
.p-strength-other__inner::before {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  height: 82%;
  background-color: rgba(181, 201, 196, 0.7);
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 83.8%;
}
.p-strength-other__h2 {
  position: relative;
  z-index: 1;
  margin-top: 6.4rem;
  text-align: center;
  -webkit-filter: drop-shadow(0 0 0.4rem rgba(0, 0, 0, 0.6));
          filter: drop-shadow(0 0 0.4rem rgba(0, 0, 0, 0.6));
}
@media screen and (max-width: 768px) {
  .p-strength-other__h2 {
    margin-top: 3rem;
  }
}
.p-strength-other__h2 img {
  width: 20.8rem;
}
@media screen and (max-width: 768px) {
  .p-strength-other__h2 img {
    width: 15.2rem;
  }
}
@media screen and (max-width: 768px) {
  .p-strength-other__image img {
    aspect-ratio: 430/328;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-strength-other-list {
  margin-top: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-strength-other-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 6rem;
  }
}
.p-strength-other-list__item {
  width: 33.3333333333%;
}
@media screen and (max-width: 768px) {
  .p-strength-other-list__item {
    width: 100%;
  }
  .p-strength-other-list__item:not(:first-of-type) {
    margin-top: 0.8rem;
  }
}
.p-strength-other-list__item a {
  display: block;
}
@media screen and (max-width: 768px) {
  .p-strength-other-list__item a {
    position: relative;
  }
}
.p-strength-other-list__item a:hover .p-strength-other-list__thumbnail img {
  scale: 1.1;
}
.p-strength-other-list__item.is_list01 .p-strength-other-list__thumbnail {
  border-top-right-radius: var(--common-radius);
}
.p-strength-other-list__item.is_list02 .p-strength-other-list__thumbnail {
  border-bottom-left-radius: var(--common-radius);
}
.p-strength-other-list__item.is_list03 .p-strength-other-list__thumbnail {
  border-bottom-right-radius: var(--common-radius);
}
.p-strength-other-list__item.is_list04 .p-strength-other-list__thumbnail {
  border-bottom-left-radius: var(--common-radius);
}
.p-strength-other-list__thumbnail {
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  aspect-ratio: 502/335;
}
@media screen and (max-width: 768px) {
  .p-strength-other-list__thumbnail {
    aspect-ratio: 360/150;
  }
}
.p-strength-other-list__thumbnail::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 142, 117, 0.15);
  content: "";
  opacity: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.p-strength-other-list__thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.p-strength-other-list__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .p-strength-other-list__title {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    white-space: nowrap;
    margin-top: 0;
    width: 29.1rem;
  }
}
@media screen and (max-width: 768px) {
  .p-strength-other-list__num {
    width: 3.8rem;
  }
}
.p-strength-other-list__num img {
  height: 2.2rem;
  width: auto;
}
@media screen and (max-width: 768px) {
  .p-strength-other-list__num img {
    -webkit-filter: drop-shadow(0 0 0.2rem rgba(0, 0, 0, 0.6));
            filter: drop-shadow(0 0 0.2rem rgba(0, 0, 0, 0.6));
  }
}
.p-strength-other-list__name {
  color: #333;
  font-size: 1.9rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.2;
  position: relative;
  padding-left: 2em;
}
@media screen and (max-width: 768px) {
  .p-strength-other-list__name {
    color: #fff;
    padding-left: 1em;
    font-weight: 600;
    text-shadow: 0 0.2rem 0.2rem #000;
  }
}
.p-strength-other-list__name::before {
  display: block;
  position: absolute;
  bottom: 1.7em;
  left: -2em;
  width: 10rem;
  height: 0.1rem;
  background-color: #000;
  content: "";
  line-height: 5rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .p-strength-other-list__name::before {
    background-color: #fff;
    text-shadow: 0 0.2rem 0.2rem #000;
    width: 5em;
    left: -2.5em;
    bottom: 1.8em;
  }
}
.p-strength-other-list__name span {
  font-size: 1.45em;
}
@media screen and (max-width: 768px) {
  .p-strength-other-list__name span {
    font-size: 2.6rem;
  }
}
.p-strength-other-list__paginations {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #005c44;
  font-weight: bold;
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-column-gap: 6rem;
     -moz-column-gap: 6rem;
          column-gap: 6rem;
}
.p-strength-other-list__paginations .swiper-pagination,
.p-strength-other-list__paginations .swiper-button-prev,
.p-strength-other-list__paginations .swiper-button-next {
  position: static;
}
.p-strength-other-list__paginations .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 4rem;
     -moz-column-gap: 4rem;
          column-gap: 4rem;
}
.p-strength-other-list__paginations .swiper-pagination-bullet {
  background: red;
}
.p-strength-other-list__paginations .swiper-button-prev,
.p-strength-other-list__paginations .swiper-button-next {
  height: auto;
  margin-top: 0;
  color: #005c44;
}
.p-strength-other-list__paginations .swiper-button-prev::after,
.p-strength-other-list__paginations .swiper-button-next::after {
  height: 1.4rem;
  font-size: 1.6rem;
}

.p-benefit__inner {
  max-width: 106.4rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-benefit__inner {
    padding: 0 8.1%;
  }
}
.p-benefit__h2 {
  text-align: center;
  color: #005c44;
  font-size: 3rem;
  font-weight: bold;
  position: relative;
  z-index: 1;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .p-benefit__h2 {
    font-size: 2rem;
  }
}
.p-benefit-unit {
  background-color: #fff;
  margin-top: 2.7rem;
  padding: 3.8%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-benefit-unit {
    padding: 2em 1em;
  }
}
.p-benefit-unit:first-of-type {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .p-benefit-unit:first-of-type {
    margin-top: 3rem;
  }
}
.p-benefit-unit:nth-of-type(odd) .p-benefit-unit__image img {
  border-top-left-radius: var(--common-radius);
}
.p-benefit-unit:nth-of-type(even) .p-benefit-unit__image img {
  border-top-right-radius: var(--common-radius);
}
.p-benefit-unit__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-benefit-unit__texts {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .p-benefit-unit__texts {
    width: 100%;
  }
}
.p-benefit-unit__texts p {
  line-height: 1.87;
}
.p-benefit-unit__title {
  font-size: 2.2rem;
  line-height: 1.45;
  color: #005c44;
  position: relative;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-benefit-unit__title {
    font-size: 1.8rem;
  }
}
.p-benefit-unit__title::after {
  content: "";
  background-color: #005c44;
  height: 0.1rem;
  width: 8rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 1.4em;
}
.p-benefit-unit__image {
  max-width: 42.3rem;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-benefit-unit__image {
    width: 100%;
    max-width: initial;
    margin-top: 2rem;
  }
}
.p-benefit-unit__dl {
  color: #005c44;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.87;
}
.p-benefit-unit__dl dt {
  font-weight: bold;
  width: 8.6em;
  margin-top: 3em;
}
@media screen and (max-width: 768px) {
  .p-benefit-unit__dl dt {
    margin-top: 2em;
  }
}
.p-benefit-unit__dl dd {
  width: calc(100% - 8.6em);
  border-left: 0.1rem solid #005c44;
  margin-top: 3em;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .p-benefit-unit__dl dd {
    margin-top: 2em;
  }
}
.p-benefit-unit__list {
  line-height: 1.87;
  width: 51%;
}
@media screen and (max-width: 768px) {
  .p-benefit-unit__list {
    margin-top: 1.5em;
    width: 100%;
  }
}
.p-benefit-unit__list li {
  text-indent: -1.3em;
  padding-left: 1.3em;
}
.p-benefit-unit__list li::before {
  content: "●";
  margin-right: 0.3em;
}
.p-benefit-unit__fixedimage {
  position: absolute;
  top: 0;
  right: 0;
  width: 28.3rem;
}
@media screen and (max-width: 768px) {
  .p-benefit-unit__fixedimage {
    position: static;
    margin-top: 2rem;
    width: 100%;
  }
}
.p-benefit-unit__fixedimage img {
  border-bottom-left-radius: var(--common-radius);
}
.p-benefit-mainview__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-benefit-mainview__image {
  position: relative;
}
.p-benefit-mainview__image img {
  vertical-align: bottom;
}
.p-benefit-mainview__copy {
  position: absolute;
  bottom: 0.2em;
  left: 0.5em;
  color: #fff;
  font-size: 5.5rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.3em;
}
.p-benefit-mainview__copy span {
  font-size: 1.45em;
}
.p-benefit-mainview__obj {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  max-width: 98rem;
  -webkit-transform: translate(0, 50%);
          transform: translate(0, 50%);
}
@media screen and (max-width: 768px) {
  .p-benefit-mainview__obj {
    -webkit-transform: translate(0, -40%);
            transform: translate(0, -40%);
    width: 60%;
  }
}
.p-benefit-other {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-benefit-other {
    padding-bottom: 2rem;
  }
}
.p-benefit-other__inner {
  position: relative;
  max-width: 106.4rem;
  margin: 0 auto;
  -webkit-transform: translateY(-13.5rem);
          transform: translateY(-13.5rem);
}
@media screen and (max-width: 768px) {
  .p-benefit-other__inner {
    padding: 0 8.1%;
    -webkit-transform: translateY(-7.7rem);
            transform: translateY(-7.7rem);
  }
}
.p-benefit-other__inner::before {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: 83.8%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-benefit-other__h2 {
  position: relative;
  z-index: 1;
  padding-top: 6.4rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-benefit-other__h2 {
    padding-top: 3rem;
  }
}
.p-benefit-other__h2 img {
  width: 20.8rem;
}
@media screen and (max-width: 768px) {
  .p-benefit-other__h2 img {
    width: 14.5rem;
  }
}
.p-benefit-other__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 7rem;
  z-index: 1;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-benefit-other__links {
    margin-top: 5rem;
  }
}
.p-benefit-other__links li {
  width: 49%;
}
@media screen and (max-width: 768px) {
  .p-benefit-other__links li {
    width: 100%;
  }
  .p-benefit-other__links li:not(:first-of-type) {
    margin-top: 0.8rem;
  }
}
.p-benefit-other__links li a {
  display: block;
  font-size: 2.5rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  background-color: green;
  color: #fff;
  padding: 1.36em 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-benefit-other__links li a {
    font-size: 1.9rem;
  }
}
.p-benefit-other__links li a.development {
  background-color: #92c6b4;
}
.p-benefit-other__links li a.balance {
  background-color: #268e6a;
}
.p-benefit-other__links li a.woman {
  background-color: #b4dd17;
}
.p-benefit-other__links li a:hover {
  opacity: 0.9;
}
@media screen and (max-width: 768px) {
  .p-benefit-other__image img {
    aspect-ratio: 469/332;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 768px) {
  .p-benefit-other__image.is_woman img {
    -o-object-position: 40% center;
       object-position: 40% center;
  }
}
.p-benefit-report {
  background-color: rgba(0, 92, 68, 0.2);
  padding-bottom: 24rem;
  padding-top: 7rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-benefit-report {
    padding-bottom: 12rem;
    padding-top: 3.5rem;
  }
}
.p-benefit-report__title {
  font-size: 3rem;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  color: #005c44;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .p-benefit-report__title {
    font-size: 2rem;
    margin-bottom: 3rem;
    line-height: 1.5;
  }
}
.p-benefit-report-bottom {
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
  padding-top: 11rem;
  height: 0;
  -webkit-transition: none;
  transition: none;
}
@media screen and (max-width: 768px) {
  .p-benefit-report-bottom {
    padding-top: 3rem;
  }
}
.p-benefit-report-bottom.show {
  height: auto;
}
.p-benefit-report-bottom__texts {
  width: 45.3%;
}
@media screen and (max-width: 768px) {
  .p-benefit-report-bottom__texts {
    width: 100%;
  }
}
.p-benefit-report-bottom__texts p {
  line-height: 2;
  margin-bottom: 2em;
}
.p-benefit-report-bottom__image {
  width: 46.7%;
}
@media screen and (max-width: 768px) {
  .p-benefit-report-bottom__image {
    width: 100%;
  }
}
.p-benefit-report-bottom__image img {
  border-top-left-radius: var(--common-radius);
  -webkit-box-shadow: 0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.3), -0.5rem -0.5rem 1rem rgba(0, 0, 0, 0.3);
          box-shadow: 0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.3), -0.5rem -0.5rem 1rem rgba(0, 0, 0, 0.3);
}
.p-benefit-report__marquee {
  padding-bottom: 0;
  margin-top: -5rem;
}
.p-benefit-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
.p-benefit-profile__obj {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, 40%);
          transform: translate(-50%, 40%);
}
.p-benefit-profile__image {
  margin-left: calc(50% - 50vw);
  width: calc(45.3% - (50% - 50vw));
}
@media screen and (max-width: 768px) {
  .p-benefit-profile__image {
    width: 100%;
  }
}
.p-benefit-profile__image img {
  border-top-right-radius: var(--common-radius);
}
.p-benefit-profile__texts {
  width: 46.7%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-benefit-profile__texts {
    width: 100%;
  }
}
.p-benefit-profile__copy {
  position: relative;
  font-size: 2.6rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.9;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 768px) {
  .p-benefit-profile__copy {
    font-size: 2.3rem;
    margin-left: 1.47em;
    margin-top: 1.2em;
  }
}
.p-benefit-profile__copy::before {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: -1.5em;
  width: 0.1rem;
  height: 5.71em;
  margin: 0 1.5rem;
  background-color: #000;
  content: "";
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .p-benefit-profile__copy::before {
    height: 4.47em;
    bottom: initial;
    top: -1.5em;
  }
}

.p-woman {
  background-color: #eee;
}
.p-woman__marquee {
  -webkit-transform: translateY(-35%);
          transform: translateY(-35%);
  padding-bottom: 0;
}
.p-woman-person {
  background-color: #ced0db;
  padding-bottom: 15rem;
}
@media screen and (max-width: 768px) {
  .p-woman-person {
    padding-bottom: 7rem;
  }
}
.p-woman-person__inner {
  max-width: 106.4rem;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-woman-person__inner {
    padding: 0 8.1%;
  }
}
.p-woman-overview {
  width: 100%;
  position: relative;
}
.p-woman-overview.active {
  z-index: 3;
}
.p-woman-overview.active .p-woman-overview__right {
  pointer-events: auto;
}
.p-woman-overview__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% + 50vw - 50%);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-woman-overview__box {
    width: 100%;
  }
}
.p-woman-overview__left {
  width: 50rem;
  background-color: rgba(255, 255, 255, 0.9);
  max-height: 58rem;
}
@media screen and (max-width: 768px) {
  .p-woman-overview__left {
    border-top-left-radius: 10rem;
    max-height: initial;
  }
}
.p-woman-overview__right {
  width: calc(100% - 50rem);
}
@media screen and (max-width: 768px) {
  .p-woman-overview__right {
    width: 100%;
  }
}
.p-woman-overview__padding {
  padding-top: 3rem;
  padding-left: 2rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .p-woman-overview__padding {
    padding-top: 2rem;
    padding-left: 4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .p-woman-overview__padding .p-woman-overview__info {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 768px) {
  .p-woman-overview__padding .c-careerstep__button {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.p-woman-overview__padding .c-careerstep__asterisk {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-woman-overview__padding .c-careerstep__asterisk {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: left;
  }
}
.p-woman-overview__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-woman-overview__post {
  color: #005c44;
  font-size: 1.8rem;
  position: relative;
  margin-right: 3em;
}
.p-woman-overview__post::after {
  content: "";
  display: inline-block;
  height: 8.25em;
  position: absolute;
  width: 0.1rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #000;
  margin: 0 1.5rem;
  top: -2.5em;
  left: 4em;
}
.p-woman-overview__catch {
  letter-spacing: -0.05em;
  font-size: 3rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.66;
  margin-top: 0.5em;
  padding-left: 1.5em;
}
.p-woman-overview__photo img {
  border-bottom-right-radius: 10rem;
}
@media screen and (max-width: 768px) {
  .p-woman-overview__photo img {
    border-bottom-right-radius: 0;
    border-top-left-radius: 10rem;
    aspect-ratio: 1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-woman-overview.is_reverse {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-woman-overview.is_reverse {
    position: static;
  }
}
.p-woman-overview.is_reverse .p-woman-overview__box {
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .p-woman-overview.is_reverse .p-woman-overview__box {
    margin-left: 0;
  }
}
.p-woman-overview.is_reverse .p-woman-overview__left {
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  .p-woman-overview.is_reverse .p-woman-overview__left {
    border-top-left-radius: 0;
    border-top-right-radius: 10rem;
    margin-top: 1.6rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 768px) {
  .p-woman-overview.is_reverse .p-woman-overview__right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width: 768px) {
  .p-woman-overview.is_reverse .p-woman-overview__photo img {
    border-top-left-radius: 0;
    border-top-right-radius: 10rem;
    aspect-ratio: 1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-woman__marquee {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .p-woman__marquee {
    margin-bottom: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .p-woman__marquee img {
    height: 4.2rem;
  }
}
.p-woman-talk {
  background-color: #eee;
  overflow: hidden;
}
.p-woman-talk__inner {
  max-width: 106.4rem;
  margin: 0 auto;
  padding: 0 16rem;
  background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 768px) {
  .p-woman-talk__inner {
    padding: 0 8.1% 0 23.9%;
  }
}
.p-woman-talk__h2 {
  position: relative;
  font-size: 2.6rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -1.2em;
}
@media screen and (max-width: 960px) {
  .p-woman-talk__h2 {
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .p-woman-talk__h2 {
    display: block;
    font-size: 1.9rem;
  }
}
.p-woman-talk__h2::before {
  display: inline-block;
  width: 0.1rem;
  height: 5.71em;
  margin: 0 1.5rem;
  background-color: #000;
  content: "";
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .p-woman-talk__h2::before {
    position: absolute;
    top: -2rem;
    left: -1.5em;
    height: 5.5rem;
  }
}
.p-woman-talk__unit {
  padding-top: 10rem;
  padding-bottom: 16rem;
}
@media screen and (max-width: 768px) {
  .p-woman-talk__unit {
    padding-top: 7rem;
    padding-bottom: 8rem;
  }
}
.p-woman-talk__unit.is_unit1 {
  position: relative;
}
.p-woman-talk__unit.is_unit1 .p-woman__obj1 {
  position: absolute;
  bottom: 0;
  right: calc(50% - 50vw);
  width: 157%;
  max-width: 116rem;
  -webkit-transform: translate(21.5%, 80%);
          transform: translate(21.5%, 80%);
}
@media screen and (max-width: 768px) {
  .p-woman-talk__unit.is_unit1 .p-woman__obj1 {
    bottom: initial;
    top: 12.3rem;
    right: 0;
    -webkit-transform: translate(10%, 0);
            transform: translate(10%, 0);
    width: 113%;
  }
}
.p-woman-talk__unit.is_unit2 {
  position: relative;
}
.p-woman-talk__unit.is_unit2 .p-woman__obj2 {
  position: absolute;
  bottom: 0;
  left: calc(50% - 50vw);
  width: 157%;
  max-width: 86.8rem;
  -webkit-transform: translate(-21.5%, 80%);
          transform: translate(-21.5%, 80%);
}
@media screen and (max-width: 768px) {
  .p-woman-talk__unit.is_unit2 .p-woman__obj2 {
    bottom: initial;
    top: 12.3rem;
    right: 0;
    -webkit-transform: translate(10%, 0);
            transform: translate(10%, 0);
    width: 113%;
  }
}
.p-woman-talk__unit.is_unit3 {
  position: relative;
}
.p-woman-talk__unit.is_unit3 .p-woman__obj3 {
  position: absolute;
  bottom: 0;
  right: -50%;
  width: 100%;
  max-width: 80rem;
  -webkit-transform: translate(11.79%, 90%);
          transform: translate(11.79%, 90%);
}
@media screen and (max-width: 768px) {
  .p-woman-talk__unit.is_unit3 .p-woman__obj3 {
    bottom: initial;
    top: 12.3rem;
    right: 0;
    -webkit-transform: translate(10%, 0);
            transform: translate(10%, 0);
    width: 113%;
  }
}
.p-woman-talk-comment {
  position: relative;
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .p-woman-talk-comment {
    margin-top: 3rem;
  }
}
.p-woman-talk-comment__photo {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(calc(-100% - 1em), -50%);
          transform: translate(calc(-100% - 1em), -50%);
  width: 8.6rem;
}
@media screen and (max-width: 768px) {
  .p-woman-talk-comment__photo {
    width: 5.3rem;
    top: 0.5em;
    -webkit-transform: translate(calc(-100% - 1em), 0);
            transform: translate(calc(-100% - 1em), 0);
  }
}
.p-woman-talk-comment__photo img {
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-woman-talk-comment__photo figcaption {
  text-align: center;
  font-weight: 300;
  margin-top: 0.625em;
}
.p-woman-talk-comment p {
  line-height: 2;
}
.p-woman-talk__image1 {
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .p-woman-talk__image1 {
    margin-left: calc(50% - 58vw);
  }
}
.p-woman-talk__image1 img {
  border-top-right-radius: 10rem;
}
@media screen and (max-width: 768px) {
  .p-woman-talk__image1 img {
    aspect-ratio: 395/283;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 20%;
       object-position: 20%;
  }
}
.p-woman-talk__image2 {
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .p-woman-talk__image2 {
    margin-right: calc(50% - 42vw);
  }
}
.p-woman-talk__image2 img {
  border-top-left-radius: 10rem;
}
@media screen and (max-width: 768px) {
  .p-woman-talk__image2 img {
    aspect-ratio: 395/283;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 80%;
       object-position: 80%;
  }
}
.p-woman-talk__image3 {
  margin-right: calc(50% - 50vw);
}
.p-woman-talk__image3 img {
  border-top-left-radius: 10rem;
}

.p-development {
  background-color: #eee;
}
.p-development__lead {
  max-width: 75rem;
  margin: 0 auto;
  line-height: 2;
  color: #000;
  margin-top: 4em;
}
@media screen and (max-width: 768px) {
  .p-development__lead {
    margin-top: 2em;
  }
}
.p-development-system {
  margin-top: 22rem;
  padding-bottom: 22rem;
}
@media screen and (max-width: 768px) {
  .p-development-system {
    margin-top: 10rem;
    padding-bottom: 10rem;
  }
}
.p-development-system__figure {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .p-development-system__figure {
    margin-top: 3rem;
  }
}
.p-development-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 10rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-development-profile {
    margin-top: 5rem;
  }
}
.p-development-profile__name {
  padding-right: 2em;
}
@media screen and (max-width: 768px) {
  .p-development-profile__name {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    padding-right: 0;
  }
}
.p-development-profile__photo {
  margin-right: calc(50% - 50vw);
  width: calc(53.2% - (50% - 50vw));
}
@media screen and (max-width: 500px) {
  .p-development-profile__photo {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 0 auto;
  }
}
.p-development-profile__photo img {
  border-top-left-radius: var(--common-radius);
}
@media screen and (max-width: 500px) {
  .p-development-profile__photo img {
    aspect-ratio: 1;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 70%;
       object-position: 70%;
  }
}

.p-balance {
  background-color: #eee;
  overflow: hidden;
}
.p-balance-maternity {
  margin-top: 7rem;
}
.p-balance-variety {
  margin-top: 15rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-balance-variety {
    margin-top: 7.5rem;
  }
}
.p-balance-variety__obj {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(20%, -50%);
          transform: translate(20%, -50%);
}
@media screen and (max-width: 768px) {
  .p-balance-variety__obj {
    display: none;
  }
}
.p-balance-certification {
  margin-top: 15rem;
  padding-bottom: 22.5rem;
}
@media screen and (max-width: 768px) {
  .p-balance-certification {
    margin-top: 7.5rem;
    padding-bottom: 10rem;
  }
}
.p-balance-ratio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 6rem;
}
.p-balance-ratio__item {
  width: 48.8%;
  background-color: #fff;
  padding: 3.8%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-balance-ratio__item {
    width: 100%;
    padding: 2em 1em;
  }
}
@media screen and (max-width: 768px) {
  .p-balance-ratio__item:not(:first-of-type) {
    margin-top: 2.7rem;
  }
}
.p-balance-ratio__title {
  font-size: 2.2rem;
  color: #005c44;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-balance-ratio__title {
    font-size: 1.8rem;
  }
}
.p-balance-ratio__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-balance-ratio__dl:not(:first-of-type) {
    margin-top: 1.5rem;
  }
}
.p-balance-ratio__dl dt {
  color: #005c44;
  font-size: 1.8rem;
  line-height: 1.39;
}
@media screen and (max-width: 768px) {
  .p-balance-ratio__dl dt {
    font-size: 1.4rem;
    margin-right: 1em;
  }
}
.p-balance-ratio__dl dt span {
  font-size: 0.88em;
  color: #333;
  display: block;
}
.p-balance-ratio__dl dd {
  font-family: "Roboto", sans-serif;
  font-size: 12rem;
  font-weight: bold;
  color: #005c44;
}
@media screen and (max-width: 768px) {
  .p-balance-ratio__dl dd {
    font-size: 8rem;
  }
}
@media screen and (max-width: 500px) {
  .p-balance-ratio__dl dd {
    font-size: 4rem;
  }
}
.p-balance-ratio__dl dd span {
  font-size: 6rem;
}
@media screen and (max-width: 768px) {
  .p-balance-ratio__dl dd span {
    font-size: 4rem;
  }
}
@media screen and (max-width: 500px) {
  .p-balance-ratio__dl dd span {
    font-size: 2rem;
  }
}

.p-information {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #eee), color-stop(90%, #eee), to(#fff));
  background: linear-gradient(to bottom, #eee 0, #eee 90%, #fff 100%);
  padding-bottom: 10%;
}
@media screen and (max-width: 768px) {
  .p-information {
    padding-bottom: 15%;
  }
}
.p-information__inner {
  max-width: calc(107rem + 16.2%);
  width: 100%;
  margin: 0 auto;
  padding: 0 8.1%;
}
.p-information__h1 {
  text-align: center;
  margin-top: -6rem;
  z-index: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}
@media screen and (max-width: 768px) {
  .p-information__h1 {
    margin-top: 1.5rem;
  }
}
.p-information__h1 p:first-of-type {
  font-size: 3.5rem;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  color: #005c44;
}
@media screen and (max-width: 768px) {
  .p-information__h1 p:first-of-type {
    font-size: 2.5rem;
  }
}
.p-information__h1 p:nth-of-type(2) {
  font-size: 2.5rem;
  font-family: "Noto Serif JP", serif;
  color: #005c44;
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .p-information__h1 p:nth-of-type(2) {
    font-size: 1.8rem;
  }
}
.p-information__h1 p:nth-of-type(3) {
  font-size: 1.6rem;
  color: #f00;
  margin-top: 1em;
}
.p-information__h2 {
  font-size: 2.5rem;
  font-weight: 500;
  color: #005c44;
  position: relative;
  padding-left: 0.8em;
}
@media screen and (max-width: 768px) {
  .p-information__h2 {
    font-size: 1.8rem;
  }
}
.p-information__h2::before {
  content: "";
  width: 0.36em;
  height: 1.84em;
  background-color: #005c44;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-information__section {
  margin-top: 14rem;
}
@media screen and (max-width: 768px) {
  .p-information__section {
    margin-top: 7rem;
  }
}
.p-information__section:first-of-type {
  margin-top: 5.3rem;
}
.p-information__lead {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.88;
  margin-top: 1em;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .p-information__lead {
    line-height: 1.56;
  }
}
.p-information__lead a {
  text-decoration: underline;
}
.p-information__lead a:hover {
  text-decoration: none;
}
.p-information__h3 {
  font-size: 2.2rem;
  font-weight: 500;
  color: #005c44;
  margin-top: 2.5em;
}
@media screen and (max-width: 768px) {
  .p-information__h3 {
    font-size: 1.6rem;
  }
}
.p-information__h4 {
  margin-top: 1.5em;
  font-weight: bold;
}
.p-information__list {
  line-height: 1.88;
  margin-top: 0.5em;
}
.p-information__list + .p-information__list {
  margin-top: 2em;
  font-size: 0.8em;
}
.p-information__table {
  width: 100%;
  margin-top: 1rem;
}
.p-information__table.is_col2 colgroup col.col1 {
  width: calc(100% - 20em);
}
.p-information__table.is_col2 colgroup col {
  border-right: 0.6rem solid #eee;
}
.p-information__table.is_col2 colgroup col.col2 {
  width: 20em;
}
.p-information__table.is_col3 colgroup col {
  width: 33.3333333333%;
}
.p-information__table.is_col3 colgroup col.col1 {
  border-right: 0.6rem solid #eee;
}
@media screen and (max-width: 768px) {
  .p-information__table.is_col3 colgroup col.col1 {
    border-right: 0.3rem solid #eee;
  }
}
.p-information__table.is_col3 colgroup col.col2 {
  border-right: 0.6rem solid #eee;
}
@media screen and (max-width: 768px) {
  .p-information__table.is_col3 colgroup col.col2 {
    border-right: 0.3rem solid #eee;
  }
}
.p-information__table.is_col5 {
  min-width: 61rem;
}
@media screen and (max-width: 768px) {
  .p-information__table.is_col5 {
    min-width: 56rem;
  }
}
.p-information__table.is_col5 colgroup col.col1 {
  width: 11%;
  border-right: 0.6rem solid #eee;
}
@media screen and (max-width: 768px) {
  .p-information__table.is_col5 colgroup col.col1 {
    border-right: 0.3rem solid #eee;
  }
}
.p-information__table.is_col5 colgroup col.col2 {
  width: 19%;
  border-right: 0.6rem solid #eee;
}
@media screen and (max-width: 768px) {
  .p-information__table.is_col5 colgroup col.col2 {
    border-right: 0.3rem solid #eee;
  }
}
.p-information__table.is_col5 colgroup col.col3 {
  width: 18%;
  border-right: 0.6rem solid #eee;
}
@media screen and (max-width: 768px) {
  .p-information__table.is_col5 colgroup col.col3 {
    border-right: 0.3rem solid #eee;
  }
}
.p-information__table.is_col5 colgroup col.col4 {
  width: 33%;
  border-right: 0.6rem solid #eee;
}
@media screen and (max-width: 768px) {
  .p-information__table.is_col5 colgroup col.col4 {
    border-right: 0.3rem solid #eee;
  }
}
.p-information__table.is_col5 colgroup col.col5 {
  width: 18%;
}
.p-information__table.is_col5 th {
  text-align: center;
}
.p-information__table th {
  background-color: rgba(0, 92, 68, 0.3);
  font-size: 1.8rem;
  padding: 0.61em 1.22em;
}
@media screen and (max-width: 768px) {
  .p-information__table th {
    font-size: 1.2rem;
    padding: 1em 0;
    text-align: center;
    vertical-align: middle;
    width: 4em;
    border: 0.3rem solid #eee;
  }
}
.p-information__table td {
  background-color: #fff;
  vertical-align: middle;
  font-size: 1.8rem;
  padding: 0.77em 0.9em;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-information__table td {
    font-size: 1.2rem;
    padding: 0.5em;
    border: 0.3rem solid #eee;
  }
}
@media screen and (max-width: 960px) {
  .p-information__table-scroll {
    white-space: nowrap;
    overflow-x: scroll;
  }
}
.p-information__asterisk {
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 2em;
  margin-left: 1.5em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-information__asterisk {
    font-size: 1.4rem;
    margin-left: 0;
  }
}
@media screen and (max-width: 500px) {
  .p-information__asterisk {
    font-size: 1.2rem;
  }
}
.p-information__asterisk::before {
  content: "※";
}

.p-message {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #eee), color-stop(90%, #eee), to(#fff));
  background: linear-gradient(to bottom, #eee 0, #eee 90%, #fff 100%);
  padding-bottom: 10%;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .p-message {
    padding-bottom: 25%;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #eee), color-stop(98%, #eee), to(#fff));
    background: linear-gradient(to bottom, #eee 0, #eee 98%, #fff 100%);
  }
}
.p-message__inner {
  max-width: calc(107rem + 16.2%);
  margin: 0 auto;
  width: 100%;
  padding: 0 8.1%;
}
@media screen and (max-width: 768px) {
  .p-message__sign {
    text-align: center;
  }
}
.p-message__marquee {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-message__marquee {
    width: 82%;
    margin-top: 4rem;
  }
}
.p-message-nav {
  color: #005c44;
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-message-nav {
    font-size: 1.6rem;
    margin-top: 7rem;
  }
}
.p-message-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 4.5%;
     -moz-column-gap: 4.5%;
          column-gap: 4.5%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-message-nav ul li a {
  border-bottom: 0.1rem solid #005c44;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.p-message-nav ul li a:hover {
  color: rgb(0, 154.7, 114.3434782609);
  border-bottom-color: rgb(0, 154.7, 114.3434782609);
}
.p-message__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 2.8rem;
  gap: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p-message__dl {
    gap: 0.3rem;
  }
}
.p-message__dl.is_process {
  row-gap: 4.8rem;
}
@media screen and (max-width: 768px) {
  .p-message__dl.is_process {
    row-gap: 0.4rem;
  }
}
.p-message__dl.is_process dt {
  text-align: center;
  padding: 2.5em 0;
}
@media screen and (max-width: 768px) {
  .p-message__dl.is_process dt {
    width: 100%;
    padding: 2.37em 0 1.6em;
  }
  .p-message__dl.is_process dt:not(:first-of-type) {
    margin-top: 4rem;
  }
}
.p-message__dl.is_process dd {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-message__dl.is_process dd {
    width: 100%;
  }
}
.p-message__dl.is_process dd::after {
  content: "";
  border-top: 2.1rem solid #005c44;
  border-left: 1.25rem solid transparent;
  border-right: 1.25rem solid transparent;
  position: absolute;
  bottom: -3.5rem;
  left: -12.5rem;
}
@media screen and (max-width: 768px) {
  .p-message__dl.is_process dd::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.p-message__dl dt {
  font-size: 1.8rem;
  width: 21.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #b2cec6;
  line-height: 1.66;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-message__dl dt {
    font-size: 1.6rem;
    width: 9.5rem;
  }
}
.p-message__dl dt span {
  position: absolute;
  top: 0.59em;
  left: 0.5em;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
}
.p-message__dl dd {
  width: calc(100% - 22.3rem);
  background-color: #fff;
  line-height: 1.75;
  padding: 1.25em 1.75em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-message__dl dd {
    width: calc(100% - 9.8rem);
    padding: 0.68em;
  }
}
.p-message__dl dd ul {
  margin-left: 2em;
}
@media screen and (max-width: 768px) {
  .p-message__dl dd ul {
    margin-left: 0;
  }
}
.p-message__h2 {
  font-size: 3.5rem;
  color: #005c44;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .p-message__h2 {
    font-size: 2.5rem;
  }
}
.p-message__h2 span {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .p-message__h2 span {
    font-size: 1.6rem;
    display: block;
    margin-top: 1rem;
  }
}
.p-message-requirements {
  position: relative;
}
.p-message-requirements__obj {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 116rem;
  -webkit-transform: translate(-40%, -70%);
          transform: translate(-40%, -70%);
}
.p-message-process {
  margin-top: 25rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-message-process {
    margin-top: 12.5rem;
  }
}
.p-message-process__obj {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(20%, -45%);
          transform: translate(20%, -45%);
  max-width: 116rem;
}
.p-message-process__goal {
  background-color: #005c44;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 1069/130;
  margin-top: 4.8rem;
}
@media screen and (max-width: 768px) {
  .p-message-process__goal {
    height: 9rem;
    aspect-ratio: inherit;
  }
}
.p-message-faq {
  margin-top: 20rem;
}
@media screen and (max-width: 768px) {
  .p-message-faq {
    margin-top: 10rem;
  }
}
.p-message-faq__dl {
  background-color: #fff;
  padding: 3rem 0;
  padding-right: 6rem;
  margin-top: 0.9rem;
}
.p-message-faq__dl:first-of-type {
  margin-top: 4.5rem;
}
.p-message-faq__dl dt {
  font-size: 2.6rem;
  position: relative;
  margin-left: 4.6rem;
  padding-left: 7.2rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-message-faq__dl dt {
    font-size: 2rem;
    margin-left: 2.2rem;
    padding-left: 4rem;
  }
}
.p-message-faq__dl dt::before {
  content: "";
  background-image: url(../images/recruit/message/icon-q.svg);
  background-size: contain;
  width: 3.2rem;
  height: 5.9rem;
  display: inline-block;
  position: absolute;
  top: -0.5em;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-message-faq__dl dt::before {
    width: 2rem;
    height: 3.7rem;
    top: -0.2em;
  }
}
.p-message-faq__dl dd {
  line-height: 2;
  padding-left: 4.6rem;
  position: relative;
  margin-left: 12.7rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-message-faq__dl dd {
    margin-left: 2.2rem;
    padding-left: 4rem;
  }
}
.p-message-faq__dl dd::before {
  content: "";
  background-image: url(../images/recruit/message/icon-a.svg);
  width: 2.4rem;
  height: 4.2rem;
  display: inline-block;
  position: absolute;
  background-size: contain;
  top: 0.5em;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-message-faq__dl dd::before {
    width: 1.6rem;
    height: 2.8rem;
  }
}

.p-introduction__inner {
  max-width: 106.5rem;
  background-color: #fff;
  width: 100%;
  padding: 0 16rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-introduction__inner {
    padding: 0 8.1%;
  }
}
.p-introduction-other {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-introduction-other {
    padding-bottom: 14rem;
  }
}
.p-introduction-other__inner {
  position: relative;
  overflow: hidden;
  max-width: 106.4rem;
  margin: 0 auto;
  margin-top: -13.5rem;
}
@media screen and (max-width: 768px) {
  .p-introduction-other__inner {
    margin-top: -7.5rem;
  }
}
.p-introduction-other__inner::before {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 80%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  content: "";
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-introduction-other__h2 {
  position: relative;
  z-index: 1;
  margin-top: 6.4rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-introduction-other__h2 {
    margin-top: 2.9rem;
  }
}
.p-introduction-other__h2 img {
  width: 20.8rem;
}
@media screen and (max-width: 768px) {
  .p-introduction-other__h2 img {
    width: 14.5rem;
  }
}
.p-introduction-other-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
  margin-top: 6.3rem;
  padding-bottom: 2rem;
}
.p-introduction-other-list__item {
  max-width: 35rem;
}
.p-introduction-other-list__item a {
  display: block;
}
.p-introduction-other-list__item a:hover .p-introduction-other-list__thumbnail img {
  scale: 1.1;
}
.p-introduction-other-list__item.is_item01 .p-introduction-other-list__thumbnail {
  border-top-right-radius: var(--common-radius);
}
@media screen and (max-width: 768px) {
  .p-introduction-other-list__item.is_item01 .p-introduction-other-list__thumbnail {
    border-top-right-radius: 0;
    border-bottom-left-radius: var(--common-radius);
  }
}
.p-introduction-other-list__item.is_item02 .p-introduction-other-list__thumbnail {
  border-bottom-right-radius: var(--common-radius);
}
.p-introduction-other-list__thumbnail {
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  aspect-ratio: 502/335;
}
@media screen and (max-width: 768px) {
  .p-introduction-other-list__thumbnail {
    aspect-ratio: 360/150;
  }
}
.p-introduction-other-list__thumbnail::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 142, 117, 0.15);
  content: "";
  opacity: 0;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.p-introduction-other-list__thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -o-object-position: top;
     object-position: top;
}
.p-introduction-other-list p {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  margin-top: 0.8em;
}
@media screen and (max-width: 768px) {
  .p-introduction-other-list p {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    color: #fff;
    margin-top: 0;
    font-size: 1.9rem;
    font-weight: 600;
    text-shadow: 0 0.2rem 0.2rem #000;
    letter-spacing: -0.05em;
  }
}

.p-philosophy {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #eee), color-stop(90%, #eee), to(#fff));
  background: linear-gradient(to bottom, #eee 0, #eee 90%, #fff 100%);
  overflow-x: hidden;
}
.p-philosophy .c-subpage-marquee {
  -webkit-transform: translate(0);
          transform: translate(0);
  padding-top: 3rem;
  margin-top: 0;
  padding-bottom: 0;
}
.p-philosophy .c-subpage-lead {
  padding-top: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-philosophy .c-subpage-lead p {
    margin-top: 4rem;
  }
}
.p-philosophy-main {
  background-color: #eee;
}
.p-philosophy-main .p-introduction__inner {
  padding-top: 17rem;
}
.p-philosophy-main__texts {
  margin-top: 2.5em;
  line-height: 1.75;
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
  color: #333;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-philosophy-main__texts {
    font-size: 1.6rem;
    letter-spacing: -0.1em;
  }
}
.p-philosophy-main__texts p + p {
  margin-top: 2em;
}
.p-philosophy-main__h2 {
  position: relative;
  font-size: 2.6rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .p-philosophy-main__h2 {
    font-size: 2.3rem;
    line-height: 1.52;
  }
}
.p-philosophy-main__h2 span {
  color: #005c44;
  font-size: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-110%, -40%);
          transform: translate(-110%, -40%);
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .p-philosophy-main__h2 span {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%);
  }
}
.p-philosophy-main__h2 span::after {
  width: 0.1rem;
  height: 5.71em;
  margin-left: 1.5em;
  background-color: #000;
  content: "";
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .p-philosophy-main__h2 span::after {
    height: 5.66rem;
  }
}
.p-philosophy-future7 {
  position: relative;
}
.p-philosophy-future7 .p-introduction__inner {
  padding-top: 20rem;
}
@media screen and (max-width: 768px) {
  .p-philosophy-future7 .p-introduction__inner {
    padding-top: 13rem;
  }
}
.p-philosophy-future7 .p-philosophy__obj1 {
  position: absolute;
  top: 0;
  left: calc(50% - 50vw);
  width: 157%;
  max-width: 86.8rem;
  -webkit-transform: translate(-21.5%, -30%);
          transform: translate(-21.5%, -30%);
}
@media screen and (max-width: 768px) {
  .p-philosophy-future7 .p-philosophy__obj1 {
    width: 113%;
  }
}
.p-philosophy-future7 h2 {
  color: #005c44;
  font-size: 3rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .p-philosophy-future7 h2 {
    font-size: 2rem;
  }
}
.p-philosophy-future7__ol {
  font-size: 2rem;
  line-height: 1.5;
  counter-reset: item;
  margin-top: 2.5em;
  font-family: "Noto Serif JP", serif;
  color: #333;
}
@media screen and (max-width: 768px) {
  .p-philosophy-future7__ol {
    font-size: 1.6rem;
  }
}
.p-philosophy-future7__ol li {
  padding-left: 1.9em;
  text-indent: -1.9em;
}
@media screen and (max-width: 768px) {
  .p-philosophy-future7__ol li {
    padding-left: 1.3em;
    text-indent: -1.3em;
    margin-top: 1.2em;
  }
}
.p-philosophy-future7__ol li::before {
  counter-increment: item;
  content: counter(item, decimal) ".";
  color: #005c44;
  font-size: 1.9em;
  margin-right: 0.2em;
}
@media screen and (max-width: 768px) {
  .p-philosophy-future7__ol li::before {
    font-size: 2rem;
  }
}
.p-philosophy-future7__ol li span {
  color: #87ad3f;
  font-weight: bold;
}
.p-philosophy-future7__contents {
  -webkit-transform: translate(0);
          transform: translate(0);
  z-index: 1;
}
.p-philosophy-about__logo {
  text-align: center;
  padding-top: 24.6rem;
}
@media screen and (max-width: 768px) {
  .p-philosophy-about__logo {
    padding-top: 12.8rem;
  }
}
.p-philosophy-about__logo img {
  max-width: 34.4rem;
}
@media screen and (max-width: 768px) {
  .p-philosophy-about__logo img {
    max-width: 22rem;
  }
}
.p-philosophy-about__texts {
  font-size: 1.5rem;
  line-height: 1.62;
  margin-top: 5.5em;
  padding-bottom: 34rem;
  margin-top: 4.8em;
}
@media screen and (max-width: 768px) {
  .p-philosophy-about__texts {
    padding-bottom: 23rem;
  }
}
.p-philosophy-about__texts p + p {
  margin-top: 2em;
}

.p-about {
  overflow-x: hidden;
}
.p-about__obj {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  -webkit-transform: translate(20%, -40%);
          transform: translate(20%, -40%);
  pointer-events: none;
  max-width: 124rem;
}
.p-about__marquee {
  padding-bottom: 0;
  margin: 0;
}
.p-about__marquee img {
  width: 100%;
}
.p-about-main {
  background-color: #eee;
  position: relative;
}
.p-about-main .p-introduction__inner {
  padding-top: 3.5rem;
  padding-bottom: 34rem;
}
@media screen and (max-width: 768px) {
  .p-about-main .p-introduction__inner {
    padding-bottom: 23rem;
  }
}
.p-about-main h2 {
  font-size: 2rem;
  color: #005c44;
}
@media screen and (max-width: 768px) {
  .p-about-main h2 {
    font-size: 1.7rem;
    margin-top: 3em;
  }
}
.p-about-main__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  line-height: 1.25;
}
.p-about-main__dl:first-of-type {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-about-main__dl:first-of-type {
    margin-top: 2.5rem;
  }
}
.p-about-main__dl dt {
  width: 12em;
  color: #005c44;
}
@media screen and (max-width: 768px) {
  .p-about-main__dl dt {
    width: 100%;
  }
}
.p-about-main__dl dt:not(:first-of-type) {
  margin-top: 1.5em;
}
.p-about-main__dl dt span::after {
  content: "：";
}
@media screen and (max-width: 768px) {
  .p-about-main__dl dt span::after {
    display: none;
  }
}
.p-about-main__dl dd {
  width: calc(100% - 12em);
  margin-top: 1.5em;
}
@media screen and (max-width: 768px) {
  .p-about-main__dl dd {
    width: 100%;
    margin-top: 0.7em;
  }
}
.p-about-main__dl dd:first-of-type {
  margin-top: 0;
}
.p-about-main__caution {
  margin: 2em 0;
  line-height: 1.4;
  text-indent: -1em;
  padding-left: 1em;
}
.p-about-main__caution.is_primary {
  color: #005c44;
}

.u-d-none {
  display: none;
}
.u-d-block {
  display: block;
}
.u-d-inline-block {
  display: inline-block;
}
.u-d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.u-d-inline {
  display: inline;
}
@media screen and (max-width: 500px) {
  .u-d-sp-none {
    display: none;
  }
  .u-d-sp-block {
    display: block;
  }
  .u-d-sp-inline-block {
    display: inline-block;
  }
  .u-d-sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .u-d-sp-inline {
    display: inline;
  }
}
@media screen and (max-width: 768px) {
  .u-d-tb-none {
    display: none;
  }
  .u-d-tb-block {
    display: block;
  }
  .u-d-tb-inline-block {
    display: inline-block;
  }
  .u-d-tb-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .u-d-tb-inline {
    display: inline;
  }
}
@media screen and (max-width: 960px) {
  .u-d-pc-none {
    display: none;
  }
  .u-d-pc-block {
    display: block;
  }
  .u-d-pc-inline-block {
    display: inline-block;
  }
  .u-d-pc-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .u-d-pc-inline {
    display: inline;
  }
}

.u-m-0auto {
  margin: 0 auto !important;
}
.u-mt-0 {
  margin-top: 0 !important;
}
.u-mt-1em {
  margin-top: 1em !important;
}
.u-mt-2em {
  margin-top: 2em !important;
}
.u-mt-3em {
  margin-top: 3em !important;
}
.u-mb-0 {
  margin-bottom: 0 !important;
}
.u-mb-1em {
  margin-bottom: 1em !important;
}
.u-mb-2em {
  margin-bottom: 2em !important;
}
.u-mb-3em {
  margin-bottom: 3em !important;
}
.u-ml-0 {
  margin-left: 0 !important;
}
.u-ml-1em {
  margin-left: 1em !important;
}
.u-ml-2em {
  margin-left: 2em !important;
}
.u-ml-3em {
  margin-left: 3em !important;
}
.u-mr-0 {
  margin-right: 0 !important;
}
.u-mr-1em {
  margin-right: 1em !important;
}
.u-mr-2em {
  margin-right: 2em !important;
}
.u-mr-3em {
  margin-right: 3em !important;
}

.u-align-left {
  text-align: left;
}
.u-align-center {
  text-align: center;
}
.u-align-right {
  text-align: right;
}
.u-align-justify {
  text-align: justify;
}
@media screen and (max-width: 500px) {
  .u-align-sp-left {
    text-align: left;
  }
  .u-align-sp-center {
    text-align: center;
  }
  .u-align-sp-right {
    text-align: right;
  }
  .u-align-sp-justify {
    text-align: justify;
  }
}
@media screen and (max-width: 768px) {
  .u-align-tb-left {
    text-align: left;
  }
  .u-align-tb-center {
    text-align: center;
  }
  .u-align-tb-right {
    text-align: right;
  }
  .u-align-tb-justify {
    text-align: justify;
  }
}
@media screen and (max-width: 960px) {
  .u-align-pc-left {
    text-align: left;
  }
  .u-align-pc-center {
    text-align: center;
  }
  .u-align-pc-right {
    text-align: right;
  }
  .u-align-pc-justify {
    text-align: justify;
  }
}

.u-flex-start-start, .u-flex-start-center, .u-flex-start-end, .u-flex-start-stretch, .u-flex-start-baseline, .u-flex-center-start, .u-flex-center-center, .u-flex-center-end, .u-flex-center-stretch, .u-flex-center-baseline, .u-flex-end-start, .u-flex-end-center, .u-flex-end-end, .u-flex-end-stretch, .u-flex-end-baseline, .u-flex-between-start, .u-flex-between-center, .u-flex-between-end, .u-flex-between-stretch, .u-flex-between-baseline, .u-flex-around-start, .u-flex-around-center, .u-flex-around-end, .u-flex-around-stretch, .u-flex-around-baseline, .u-flex-evenly-start, .u-flex-evenly-center, .u-flex-evenly-end, .u-flex-evenly-stretch, .u-flex-evenly-baseline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.u-flex-start-start.u-flex-wrap, .u-flex-start-center.u-flex-wrap, .u-flex-start-end.u-flex-wrap, .u-flex-start-stretch.u-flex-wrap, .u-flex-start-baseline.u-flex-wrap, .u-flex-center-start.u-flex-wrap, .u-flex-center-center.u-flex-wrap, .u-flex-center-end.u-flex-wrap, .u-flex-center-stretch.u-flex-wrap, .u-flex-center-baseline.u-flex-wrap, .u-flex-end-start.u-flex-wrap, .u-flex-end-center.u-flex-wrap, .u-flex-end-end.u-flex-wrap, .u-flex-end-stretch.u-flex-wrap, .u-flex-end-baseline.u-flex-wrap, .u-flex-between-start.u-flex-wrap, .u-flex-between-center.u-flex-wrap, .u-flex-between-end.u-flex-wrap, .u-flex-between-stretch.u-flex-wrap, .u-flex-between-baseline.u-flex-wrap, .u-flex-around-start.u-flex-wrap, .u-flex-around-center.u-flex-wrap, .u-flex-around-end.u-flex-wrap, .u-flex-around-stretch.u-flex-wrap, .u-flex-around-baseline.u-flex-wrap, .u-flex-evenly-start.u-flex-wrap, .u-flex-evenly-center.u-flex-wrap, .u-flex-evenly-end.u-flex-wrap, .u-flex-evenly-stretch.u-flex-wrap, .u-flex-evenly-baseline.u-flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.u-flex-start-start.u-flex-column, .u-flex-start-center.u-flex-column, .u-flex-start-end.u-flex-column, .u-flex-start-stretch.u-flex-column, .u-flex-start-baseline.u-flex-column, .u-flex-center-start.u-flex-column, .u-flex-center-center.u-flex-column, .u-flex-center-end.u-flex-column, .u-flex-center-stretch.u-flex-column, .u-flex-center-baseline.u-flex-column, .u-flex-end-start.u-flex-column, .u-flex-end-center.u-flex-column, .u-flex-end-end.u-flex-column, .u-flex-end-stretch.u-flex-column, .u-flex-end-baseline.u-flex-column, .u-flex-between-start.u-flex-column, .u-flex-between-center.u-flex-column, .u-flex-between-end.u-flex-column, .u-flex-between-stretch.u-flex-column, .u-flex-between-baseline.u-flex-column, .u-flex-around-start.u-flex-column, .u-flex-around-center.u-flex-column, .u-flex-around-end.u-flex-column, .u-flex-around-stretch.u-flex-column, .u-flex-around-baseline.u-flex-column, .u-flex-evenly-start.u-flex-column, .u-flex-evenly-center.u-flex-column, .u-flex-evenly-end.u-flex-column, .u-flex-evenly-stretch.u-flex-column, .u-flex-evenly-baseline.u-flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.u-flex-start-start.u-flex-row-reverse, .u-flex-start-center.u-flex-row-reverse, .u-flex-start-end.u-flex-row-reverse, .u-flex-start-stretch.u-flex-row-reverse, .u-flex-start-baseline.u-flex-row-reverse, .u-flex-center-start.u-flex-row-reverse, .u-flex-center-center.u-flex-row-reverse, .u-flex-center-end.u-flex-row-reverse, .u-flex-center-stretch.u-flex-row-reverse, .u-flex-center-baseline.u-flex-row-reverse, .u-flex-end-start.u-flex-row-reverse, .u-flex-end-center.u-flex-row-reverse, .u-flex-end-end.u-flex-row-reverse, .u-flex-end-stretch.u-flex-row-reverse, .u-flex-end-baseline.u-flex-row-reverse, .u-flex-between-start.u-flex-row-reverse, .u-flex-between-center.u-flex-row-reverse, .u-flex-between-end.u-flex-row-reverse, .u-flex-between-stretch.u-flex-row-reverse, .u-flex-between-baseline.u-flex-row-reverse, .u-flex-around-start.u-flex-row-reverse, .u-flex-around-center.u-flex-row-reverse, .u-flex-around-end.u-flex-row-reverse, .u-flex-around-stretch.u-flex-row-reverse, .u-flex-around-baseline.u-flex-row-reverse, .u-flex-evenly-start.u-flex-row-reverse, .u-flex-evenly-center.u-flex-row-reverse, .u-flex-evenly-end.u-flex-row-reverse, .u-flex-evenly-stretch.u-flex-row-reverse, .u-flex-evenly-baseline.u-flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.u-flex-start-start.u-flex-column-reverse, .u-flex-start-center.u-flex-column-reverse, .u-flex-start-end.u-flex-column-reverse, .u-flex-start-stretch.u-flex-column-reverse, .u-flex-start-baseline.u-flex-column-reverse, .u-flex-center-start.u-flex-column-reverse, .u-flex-center-center.u-flex-column-reverse, .u-flex-center-end.u-flex-column-reverse, .u-flex-center-stretch.u-flex-column-reverse, .u-flex-center-baseline.u-flex-column-reverse, .u-flex-end-start.u-flex-column-reverse, .u-flex-end-center.u-flex-column-reverse, .u-flex-end-end.u-flex-column-reverse, .u-flex-end-stretch.u-flex-column-reverse, .u-flex-end-baseline.u-flex-column-reverse, .u-flex-between-start.u-flex-column-reverse, .u-flex-between-center.u-flex-column-reverse, .u-flex-between-end.u-flex-column-reverse, .u-flex-between-stretch.u-flex-column-reverse, .u-flex-between-baseline.u-flex-column-reverse, .u-flex-around-start.u-flex-column-reverse, .u-flex-around-center.u-flex-column-reverse, .u-flex-around-end.u-flex-column-reverse, .u-flex-around-stretch.u-flex-column-reverse, .u-flex-around-baseline.u-flex-column-reverse, .u-flex-evenly-start.u-flex-column-reverse, .u-flex-evenly-center.u-flex-column-reverse, .u-flex-evenly-end.u-flex-column-reverse, .u-flex-evenly-stretch.u-flex-column-reverse, .u-flex-evenly-baseline.u-flex-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.u-flex-start-start.u-flex-grow-1, .u-flex-start-center.u-flex-grow-1, .u-flex-start-end.u-flex-grow-1, .u-flex-start-stretch.u-flex-grow-1, .u-flex-start-baseline.u-flex-grow-1, .u-flex-center-start.u-flex-grow-1, .u-flex-center-center.u-flex-grow-1, .u-flex-center-end.u-flex-grow-1, .u-flex-center-stretch.u-flex-grow-1, .u-flex-center-baseline.u-flex-grow-1, .u-flex-end-start.u-flex-grow-1, .u-flex-end-center.u-flex-grow-1, .u-flex-end-end.u-flex-grow-1, .u-flex-end-stretch.u-flex-grow-1, .u-flex-end-baseline.u-flex-grow-1, .u-flex-between-start.u-flex-grow-1, .u-flex-between-center.u-flex-grow-1, .u-flex-between-end.u-flex-grow-1, .u-flex-between-stretch.u-flex-grow-1, .u-flex-between-baseline.u-flex-grow-1, .u-flex-around-start.u-flex-grow-1, .u-flex-around-center.u-flex-grow-1, .u-flex-around-end.u-flex-grow-1, .u-flex-around-stretch.u-flex-grow-1, .u-flex-around-baseline.u-flex-grow-1, .u-flex-evenly-start.u-flex-grow-1, .u-flex-evenly-center.u-flex-grow-1, .u-flex-evenly-end.u-flex-grow-1, .u-flex-evenly-stretch.u-flex-grow-1, .u-flex-evenly-baseline.u-flex-grow-1 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.u-flex-start-start.u-flex-grow-0, .u-flex-start-center.u-flex-grow-0, .u-flex-start-end.u-flex-grow-0, .u-flex-start-stretch.u-flex-grow-0, .u-flex-start-baseline.u-flex-grow-0, .u-flex-center-start.u-flex-grow-0, .u-flex-center-center.u-flex-grow-0, .u-flex-center-end.u-flex-grow-0, .u-flex-center-stretch.u-flex-grow-0, .u-flex-center-baseline.u-flex-grow-0, .u-flex-end-start.u-flex-grow-0, .u-flex-end-center.u-flex-grow-0, .u-flex-end-end.u-flex-grow-0, .u-flex-end-stretch.u-flex-grow-0, .u-flex-end-baseline.u-flex-grow-0, .u-flex-between-start.u-flex-grow-0, .u-flex-between-center.u-flex-grow-0, .u-flex-between-end.u-flex-grow-0, .u-flex-between-stretch.u-flex-grow-0, .u-flex-between-baseline.u-flex-grow-0, .u-flex-around-start.u-flex-grow-0, .u-flex-around-center.u-flex-grow-0, .u-flex-around-end.u-flex-grow-0, .u-flex-around-stretch.u-flex-grow-0, .u-flex-around-baseline.u-flex-grow-0, .u-flex-evenly-start.u-flex-grow-0, .u-flex-evenly-center.u-flex-grow-0, .u-flex-evenly-end.u-flex-grow-0, .u-flex-evenly-stretch.u-flex-grow-0, .u-flex-evenly-baseline.u-flex-grow-0 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.u-flex-start-start.u-flex-shrink-1, .u-flex-start-center.u-flex-shrink-1, .u-flex-start-end.u-flex-shrink-1, .u-flex-start-stretch.u-flex-shrink-1, .u-flex-start-baseline.u-flex-shrink-1, .u-flex-center-start.u-flex-shrink-1, .u-flex-center-center.u-flex-shrink-1, .u-flex-center-end.u-flex-shrink-1, .u-flex-center-stretch.u-flex-shrink-1, .u-flex-center-baseline.u-flex-shrink-1, .u-flex-end-start.u-flex-shrink-1, .u-flex-end-center.u-flex-shrink-1, .u-flex-end-end.u-flex-shrink-1, .u-flex-end-stretch.u-flex-shrink-1, .u-flex-end-baseline.u-flex-shrink-1, .u-flex-between-start.u-flex-shrink-1, .u-flex-between-center.u-flex-shrink-1, .u-flex-between-end.u-flex-shrink-1, .u-flex-between-stretch.u-flex-shrink-1, .u-flex-between-baseline.u-flex-shrink-1, .u-flex-around-start.u-flex-shrink-1, .u-flex-around-center.u-flex-shrink-1, .u-flex-around-end.u-flex-shrink-1, .u-flex-around-stretch.u-flex-shrink-1, .u-flex-around-baseline.u-flex-shrink-1, .u-flex-evenly-start.u-flex-shrink-1, .u-flex-evenly-center.u-flex-shrink-1, .u-flex-evenly-end.u-flex-shrink-1, .u-flex-evenly-stretch.u-flex-shrink-1, .u-flex-evenly-baseline.u-flex-shrink-1 {
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
.u-flex-start-start.u-flex-shrink-o, .u-flex-start-center.u-flex-shrink-o, .u-flex-start-end.u-flex-shrink-o, .u-flex-start-stretch.u-flex-shrink-o, .u-flex-start-baseline.u-flex-shrink-o, .u-flex-center-start.u-flex-shrink-o, .u-flex-center-center.u-flex-shrink-o, .u-flex-center-end.u-flex-shrink-o, .u-flex-center-stretch.u-flex-shrink-o, .u-flex-center-baseline.u-flex-shrink-o, .u-flex-end-start.u-flex-shrink-o, .u-flex-end-center.u-flex-shrink-o, .u-flex-end-end.u-flex-shrink-o, .u-flex-end-stretch.u-flex-shrink-o, .u-flex-end-baseline.u-flex-shrink-o, .u-flex-between-start.u-flex-shrink-o, .u-flex-between-center.u-flex-shrink-o, .u-flex-between-end.u-flex-shrink-o, .u-flex-between-stretch.u-flex-shrink-o, .u-flex-between-baseline.u-flex-shrink-o, .u-flex-around-start.u-flex-shrink-o, .u-flex-around-center.u-flex-shrink-o, .u-flex-around-end.u-flex-shrink-o, .u-flex-around-stretch.u-flex-shrink-o, .u-flex-around-baseline.u-flex-shrink-o, .u-flex-evenly-start.u-flex-shrink-o, .u-flex-evenly-center.u-flex-shrink-o, .u-flex-evenly-end.u-flex-shrink-o, .u-flex-evenly-stretch.u-flex-shrink-o, .u-flex-evenly-baseline.u-flex-shrink-o {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.u-flex-start-start, .u-flex-start-center, .u-flex-start-end, .u-flex-start-stretch, .u-flex-start-baseline {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.u-flex-center-start, .u-flex-center-center, .u-flex-center-end, .u-flex-center-stretch, .u-flex-center-baseline {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.u-flex-end-start, .u-flex-end-center, .u-flex-end-end, .u-flex-end-stretch, .u-flex-end-baseline {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.u-flex-between-start, .u-flex-between-center, .u-flex-between-end, .u-flex-between-stretch, .u-flex-between-baseline {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.u-flex-around-start, .u-flex-around-center, .u-flex-around-end, .u-flex-around-stretch, .u-flex-around-baseline {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.u-flex-evenly-start, .u-flex-evenly-center, .u-flex-evenly-end, .u-flex-evenly-stretch, .u-flex-evenly-baseline {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.u-flex-start-start, .u-flex-center-start, .u-flex-end-start, .u-flex-between-start, .u-flex-around-start, .u-flex-evenly-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.u-flex-start-center, .u-flex-center-center, .u-flex-end-center, .u-flex-between-center, .u-flex-around-center, .u-flex-evenly-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.u-flex-start-end, .u-flex-center-end, .u-flex-end-end, .u-flex-between-end, .u-flex-around-end, .u-flex-evenly-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.u-flex-start-stretch, .u-flex-center-stretch, .u-flex-end-stretch, .u-flex-between-stretch, .u-flex-around-stretch, .u-flex-evenly-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.u-flex-start-baseline, .u-flex-center-baseline, .u-flex-end-baseline, .u-flex-between-baseline, .u-flex-around-baseline, .u-flex-evenly-baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
/*# sourceMappingURL=style.css.map */