@charset "UTF-8";
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

button {
  background-color: transparent;
  cursor: pointer;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/*------------------------------------------------------------------------------
  base
------------------------------------------------------------------------------*/
body {
  color: #333;
  font-weight: normal;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.05;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
}
@media (max-width: 68.75rem) {
  body {
    font-size: 0.9375rem;
  }
}
@media (max-width: 48rem) {
  body {
    font-size: 0.875rem;
  }
}
@media (max-width: 40rem) {
  body {
    font-size: 0.8125rem;
    line-height: 1.6;
  }
}
body.is-hidden {
  overflow: hidden;
}

img {
  border: 0;
  margin: 0;
  vertical-align: bottom;
  max-width: 100%;
  -webkit-user-drag: none;
}

a {
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
a:hover {
  opacity: 0.8;
}

.sp {
  display: none !important;
}
@media (max-width: 40rem) {
  .sp {
    display: block !important;
  }
}

@media (max-width: 40rem) {
  .pc {
    display: none !important;
  }
}

/*------------------------------------------------------------------------------
  common
------------------------------------------------------------------------------*/
#wrapper {
  position: relative;
  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%;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}

.l-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
  background-color: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.l-main__section {
  margin-bottom: 9.5rem;
}
@media (max-width: 40rem) {
  .l-main__section {
    margin-bottom: 4.5rem;
  }
}

.l-main__commonContainer {
  margin: 8.5rem 0 8rem;
}
@media (max-width: 40rem) {
  .l-main__commonContainer {
    margin: 4.5rem 0;
  }
}

/*------------------------------------------------------------------------------
  l-header
------------------------------------------------------------------------------*/
.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.l-header.is-bgc {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.6)), color-stop(30%, rgba(255, 255, 255, 0.4)), color-stop(60%, rgba(255, 255, 255, 0.2)), color-stop(85%, rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.4) 30%, rgba(255, 255, 255, 0.2) 60%, rgba(255, 255, 255, 0.05) 85%, rgba(255, 255, 255, 0) 100%);
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding-left: 2rem;
}
@media (max-width: 80rem) {
  .l-header__inner {
    padding-left: 1rem;
  }
}
@media (max-width: 40rem) {
  .l-header__inner {
    padding-left: 0.5rem;
  }
}

.l-header__heading {
  margin-right: auto;
  padding-right: 1rem;
}
@media (max-width: 40rem) {
  .l-header__heading {
    padding-right: 0;
    position: relative;
    z-index: 9999;
  }
}

.l-header__logoLink {
  width: 14.25rem;
  display: block;
  text-decoration: none;
  margin-top: 1.25rem;
}
@media (max-width: 56.25rem) {
  .l-header__logoLink {
    width: 10.625rem;
  }
}
@media (max-width: 40rem) {
  .l-header__logoLink {
    margin-top: 0.375rem;
  }
}

.l-header__logo {
  margin-bottom: 0.25rem;
}
.l-header__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-header__siteTitle {
  color: #333;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  text-shadow: 0px 0px 14px rgba(255, 255, 255, 0.5);
}
@media (max-width: 56.25rem) {
  .l-header__siteTitle {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
  }
}

.l-header__nav {
  margin-right: 2.625rem;
}
@media (max-width: 68.75rem) {
  .l-header__nav {
    margin-right: 2rem;
  }
}
@media (max-width: 56.25rem) {
  .l-header__nav {
    margin-right: 1rem;
  }
}
@media (max-width: 40rem) {
  .l-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    opacity: 0;
    z-index: 99;
    width: 0;
    height: calc(100vh - 68px);
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    background-color: #F3F9F5;
    display: block;
    padding-bottom: 4rem;
    overflow-y: auto;
    margin-right: 0;
  }
  .l-header__nav.open {
    opacity: 1;
    width: 100%;
    z-index: 99;
  }
}

.l-header__navList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 40rem) {
  .l-header__navList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    padding-top: 6.5rem;
    white-space: nowrap;
  }
}

@media (max-width: 40rem) {
  .l-header__navItem {
    width: 100%;
    border-bottom: 1px dotted #23914F;
  }
}
.l-header__navItem:not(:last-child) {
  margin-right: 2rem;
}
@media (max-width: 68.75rem) {
  .l-header__navItem:not(:last-child) {
    margin-right: 1.5rem;
  }
}
@media (max-width: 56.25rem) {
  .l-header__navItem:not(:last-child) {
    margin-right: 1rem;
  }
}
@media (max-width: 40rem) {
  .l-header__navItem:not(:last-child) {
    margin-right: 0;
  }
}

.l-header__navLink {
  color: #333;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-shadow: 0px 0px 14px rgba(255, 255, 255, 0.5);
  display: block;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (max-width: 68.75rem) {
  .l-header__navLink {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    line-height: 1.45;
  }
}
@media (max-width: 56.25rem) {
  .l-header__navLink {
    font-size: 0.75rem;
    letter-spacing: 0.02em;
  }
}
@media (max-width: 40rem) {
  .l-header__navLink {
    color: #23914F;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    padding: 1.125rem 1rem;
    position: relative;
    display: block;
  }
  .l-header__navLink::after {
    content: "";
    position: absolute;
    top: 51%;
    right: 1rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-image: url(../img/arrow-right.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 18px;
    height: 16px;
  }
}
.l-header__navLink:hover {
  color: #23914F;
  opacity: 1;
}

.l-header__entry {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  background: linear-gradient(93deg, #32A460 0.19%, #17964A 97.19%);
  text-decoration: none;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.3125rem;
          flex: 0 0 8.3125rem;
  height: 7.75rem;
  border-radius: 0 0 0 0.75rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-shadow: 0 8px 0 #118740;
          box-shadow: 0 8px 0 #118740;
  padding-top: remClac(1);
  padding-bottom: 2rem;
  -webkit-transition: all 0.22s ease;
  transition: all 0.22s ease;
  position: relative;
  z-index: 9;
}
@media (max-width: 56.25rem) {
  .l-header__entry {
    font-size: 0.8125rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 6.5rem;
            flex: 0 0 6.5rem;
    height: 5.875rem;
    padding-bottom: 1.1875rem;
  }
}
@media (max-width: 40rem) {
  .l-header__entry {
    display: none;
  }
}
.l-header__entry:hover {
  opacity: 1;
  -webkit-transform: scaleY(1.08);
          transform: scaleY(1.08);
  -webkit-transform-origin: top;
          transform-origin: top;
  padding-bottom: 1.75rem;
  -webkit-box-shadow: 0 0px 0 #118740;
          box-shadow: 0 0px 0 #118740;
}
@media (max-width: 56.25rem) {
  .l-header__entry:hover {
    padding-bottom: 1rem;
  }
}
.l-header__entry:hover .l-header__entryText {
  top: 2.875rem;
}
@media (max-width: 56.25rem) {
  .l-header__entry:hover .l-header__entryText {
    top: 2.25rem;
  }
}
.l-header__entry::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 0 0 0 0.75rem;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 2;
}

.l-header__entryText {
  position: absolute;
  top: 2.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #fff;
  font-size: 1.5625rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  pointer-events: none;
  z-index: 1;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media (max-width: 56.25rem) {
  .l-header__entryText {
    top: 2rem;
    font-size: 1.25rem;
  }
}

.l-header__spEntry {
  display: none;
}
@media (max-width: 40rem) {
  .l-header__spEntry {
    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;
    background: linear-gradient(93deg, #32A460 0.19%, #17964A 97.19%);
    color: #fff;
    font-size: 1.0625rem;
    font-weight: bold;
    letter-spacing: 0.15em;
    text-decoration: none;
    width: 80%;
    max-width: 20rem;
    height: 3.5rem;
    border-radius: 2.5rem;
    padding-left: 0.5rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 1.75rem auto 0;
    position: relative;
  }
}

.l-header__spEntryArrow {
  position: absolute;
  top: 51%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  fill: #fff;
  width: 1.0625rem;
  height: 0.8125rem;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

/*------------------------------------------------------------------------------
  l-footer
------------------------------------------------------------------------------*/
.l-footer {
  padding: 0.5rem 0 6.5rem 4.25rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 56.25rem) {
  .l-footer {
    padding-left: 1.5rem;
  }
}
@media (max-width: 40rem) {
  .l-footer {
    padding: 0 0 1.5rem 0.5rem;
  }
}
.l-footer::before {
  content: "";
  position: absolute;
  top: -8.5rem;
  right: 0;
  background-color: #F3F9F5;
  width: calc(100% - 56px);
  height: calc(100% + 8.5rem);
  border-radius: 56px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 6px solid #23914F;
  border-left: 6px solid #23914F;
  z-index: -1;
}
@media (max-width: 75rem) {
  .l-footer::before {
    width: calc(100% - 32px);
  }
}
@media (max-width: 56.25rem) {
  .l-footer::before {
    width: calc(100% - 1rem);
  }
}
@media (max-width: 40rem) {
  .l-footer::before {
    top: -4.5rem;
    height: calc(100% + 4.5rem);
    border-width: 5px;
    border-radius: 48px 0 0 0;
    width: 100%;
  }
}

.l-footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 40rem) {
  .l-footer__container {
    display: block;
  }
}

.l-footer__info {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 1.5rem;
}
@media (max-width: 40rem) {
  .l-footer__info {
    padding-right: 0;
    margin: 0 auto 2.5rem;
  }
}

.l-footer__logo {
  max-width: 17.5rem;
  display: block;
  margin-bottom: 0.375rem;
}
@media (max-width: 56.25rem) {
  .l-footer__logo {
    max-width: 13.75rem;
  }
}
@media (max-width: 48rem) {
  .l-footer__logo {
    max-width: 11.875rem;
  }
}
@media (max-width: 40rem) {
  .l-footer__logo {
    max-width: 15rem;
    margin: 0 auto 0.5rem;
  }
}
.l-footer__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-footer__siteTitle {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
@media (max-width: 56.25rem) {
  .l-footer__siteTitle {
    font-size: 0.8125rem;
  }
}
@media (max-width: 40rem) {
  .l-footer__siteTitle {
    text-align: center;
  }
}

.l-footer__snsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 40rem) {
  .l-footer__snsList {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 1rem;
  }
}
.l-footer__snsList li a img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.l-footer__entryBtn.c-btn {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.08em;
  background: linear-gradient(93deg, #32A460 0.19%, #17964A 97.19%);
  max-width: 18.75rem;
  height: 3.375rem;
  border: none;
  -webkit-box-shadow: 0px 7px 0px 0px #118740;
          box-shadow: 0px 7px 0px 0px #118740;
  top: 0;
}
@media (max-width: 40rem) {
  .l-footer__entryBtn.c-btn {
    max-width: 16.875rem;
    height: 3.25rem;
    margin: 0 auto;
  }
}
.l-footer__entryBtn:hover {
  -webkit-transform: translateY(7px);
          transform: translateY(7px);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.l-footer__entryBtn .c-btn__arrow {
  right: 18px;
  fill: #fff;
  width: 0.9375rem;
  height: 0.75rem;
}

.l-footer__addressWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0 4.5rem;
  margin-bottom: 3.875rem;
}
@media (max-width: 56.25rem) {
  .l-footer__addressWrap {
    gap: 0 2rem;
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 40rem) {
  .l-footer__addressWrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 1.25rem;
    margin-bottom: 1.5rem;
  }
}

.l-footer__address {
  font-size: 0.9375rem;
  font-weight: 500;
}
@media (max-width: 40rem) {
  .l-footer__address {
    font-size: 0.8125rem;
  }
}

.l-footer__addressTitle {
  font-weight: bold;
}
@media (max-width: 40rem) {
  .l-footer__addressTitle {
    font-size: 0.875rem;
  }
}

.l-footer__addressMap {
  color: #333;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  display: inline-block;
  margin-top: 0.25rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 1.5rem;
  position: relative;
}
@media (max-width: 40rem) {
  .l-footer__addressMap {
    padding-left: 1.25rem;
  }
}
.l-footer__addressMap::before {
  content: "";
  position: absolute;
  top: 0.1875rem;
  left: -1px;
  background-image: url(../img/map-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.3125rem;
  height: 1.3125rem;
}
@media (max-width: 40rem) {
  .l-footer__addressMap::before {
    width: 1.0625rem;
    height: 1.0625rem;
  }
}

.l-footer__linkWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0 3rem;
  margin-bottom: 0.75rem;
}
@media (max-width: 56.25rem) {
  .l-footer__linkWrap {
    gap: 0 1.25rem;
  }
}
@media (max-width: 40rem) {
  .l-footer__linkWrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.25rem 1rem;
    margin-bottom: 1rem;
  }
}

.l-footer__link a {
  color: #333;
  font-size: 0.875rem;
  font-weight: normal;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 1.25rem;
}
@media (max-width: 56.25rem) {
  .l-footer__link a {
    font-size: 0.75rem;
    padding-right: 0.9375rem;
  }
}
@media (max-width: 40rem) {
  .l-footer__link a {
    font-size: 0.6875rem;
    letter-spacing: 0;
    padding-right: 0.8125rem;
  }
}
.l-footer__link a::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  background-image: url(../img/arrow-up.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.875rem;
  height: 0.875rem;
}
@media (max-width: 56.25rem) {
  .l-footer__link a::after {
    width: 0.75rem;
    height: 0.75rem;
  }
}
@media (max-width: 40rem) {
  .l-footer__link a::after {
    top: 4px;
    width: 0.625rem;
    height: 0.625rem;
  }
}

.l-footer__copyright {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-family: "Open Sans", sans-serif;
  display: block;
  text-align: right;
}
@media (max-width: 40rem) {
  .l-footer__copyright {
    font-size: 0.8125rem;
    text-align: center;
  }
}

/*------------------------------------------------------------------------------
  l-commonContact
------------------------------------------------------------------------------*/
.l-commonContact {
  background-image: url(../img/contact-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 8.5rem 0 16.875rem;
}
@media (max-width: 40rem) {
  .l-commonContact {
    padding: 4.25rem 0 8.75rem;
  }
}

.l-commonContact__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 4rem;
}
@media (max-width: 40rem) {
  .l-commonContact__contents {
    margin-top: 3rem;
    display: block;
  }
}

.l-commonContact__contentsItem {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1.25rem 1rem 1.5rem;
}
@media (max-width: 40rem) {
  .l-commonContact__contentsItem {
    padding: 0 1rem;
  }
}
.l-commonContact__contentsItem:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.55);
}
@media (max-width: 40rem) {
  .l-commonContact__contentsItem:first-child {
    padding-bottom: 2.25rem;
    margin-bottom: 2.25rem;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  }
}

.l-commonContact__contentsTitle {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 1.875rem;
}
@media (max-width: 40rem) {
  .l-commonContact__contentsTitle {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}

.l-commonContact__tel {
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.4;
  font-family: "Open Sans", sans-serif;
  text-decoration: none;
  display: block;
  margin: 0 auto;
  max-width: 19.375rem;
  text-align: center;
}
@media (max-width: 56.25rem) {
  .l-commonContact__tel {
    font-size: 2rem;
  }
}
@media (max-width: 40rem) {
  .l-commonContact__tel {
    font-size: 1.75rem;
    max-width: 15rem;
  }
}

.l-commonContact__openingHours {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
}
@media (max-width: 40rem) {
  .l-commonContact__openingHours {
    font-size: 0.75rem;
  }
}

.l-commonContact__btn {
  margin: 0 auto;
}
.l-commonContact__btn.c-btn {
  color: #fff;
  font-size: 1.375rem;
  background-color: transparent;
  border-color: #fff;
  max-width: 25.625rem;
  height: 4.875rem;
}
@media (max-width: 56.25rem) {
  .l-commonContact__btn.c-btn {
    font-size: 1.25rem;
    max-width: 21.25rem;
    height: 4.125rem;
  }
}
@media (max-width: 48rem) {
  .l-commonContact__btn.c-btn {
    font-size: 1rem;
    height: 3.75rem;
  }
}
@media (max-width: 40rem) {
  .l-commonContact__btn.c-btn {
    border-width: 1px;
    margin-top: 1.5rem;
  }
}
.l-commonContact__btn.c-btn:hover {
  color: #333;
  background-color: #fff;
}
.l-commonContact__btn.c-btn:hover .c-btn__arrow {
  fill: #333;
}
.l-commonContact__btn .c-btn__arrow {
  fill: #fff;
  right: 20px;
  width: 1.25rem;
  height: 0.9375rem;
}
@media (max-width: 48rem) {
  .l-commonContact__btn .c-btn__arrow {
    right: 16px;
    width: 1rem;
    height: 0.75rem;
  }
}

/*------------------------------------------------------------------------------
  c-inner
------------------------------------------------------------------------------*/
.c-inner {
  max-width: 71.25rem;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 1.25rem;
}
@media (max-width: 40rem) {
  .c-inner {
    padding: 0 1rem;
  }
}

.c-inner--sm {
  max-width: 65rem;
}

/*------------------------------------------------------------------------------
  c-breadcrumb
------------------------------------------------------------------------------*/
.c-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-breadcrumb__item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-breadcrumb__item:not(:last-child) {
  margin-right: 35px;
}
@media (max-width: 40rem) {
  .c-breadcrumb__item:not(:last-child) {
    margin-right: 28px;
  }
}
.c-breadcrumb__item:not(:last-child)::after {
  content: "＞";
  position: absolute;
  top: 7px;
  right: -24px;
  color: #333;
  font-size: 0.625rem;
  font-weight: normal;
  opacity: 0.8;
}
@media (max-width: 40rem) {
  .c-breadcrumb__item:not(:last-child)::after {
    font-size: 0.5rem;
    top: 5.5px;
    right: -19px;
  }
}

.c-breadcrumb__link {
  color: #333;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.3;
  display: inline-block;
  text-decoration: none;
}
@media (max-width: 40rem) {
  .c-breadcrumb__link {
    font-size: 0.6875rem;
    font-weight: normal;
    letter-spacing: 0.02em;
  }
}
.c-breadcrumb__link:hover {
  text-decoration: underline;
}
.c-breadcrumb__link.--current {
  color: #696969;
  pointer-events: none;
}

/*------------------------------------------------------------------------------
  c-btn
------------------------------------------------------------------------------*/
.c-btn {
  color: #23914F;
  font-size: 1.3125rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-decoration: none;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #23914F;
  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;
  width: 100%;
  max-width: 26.25rem;
  height: 4.75rem;
  border-radius: 50px;
  position: relative;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media (max-width: 40rem) {
  .c-btn {
    font-size: 1rem;
    max-width: 20rem;
    height: 4rem;
  }
}
.c-btn:hover {
  opacity: 1;
  color: #fff;
  background-color: #23914F;
}
.c-btn:hover .c-btn__arrow {
  fill: #fff;
}

.c-btn--sm {
  font-size: 1.125rem;
  max-width: 20.625rem;
  height: 3.75rem;
}
@media (max-width: 40rem) {
  .c-btn--sm {
    font-size: 1rem;
    max-width: 17.5rem;
    height: 3.5rem;
  }
}
.c-btn--sm .c-btn__arrow {
  right: 21px;
  width: 1.1875rem;
  height: 0.875rem;
}
@media (max-width: 40rem) {
  .c-btn--sm .c-btn__arrow {
    right: 18px;
    width: 1.0625rem;
    height: 0.75rem;
  }
}

.c-btn__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.c-btn--en {
  font-family: "Open Sans", sans-serif;
}

.c-btn__arrow {
  position: absolute;
  top: 51%;
  right: 26px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  fill: #23914F;
  width: 1.3125rem;
  height: 1rem;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media (max-width: 40rem) {
  .c-btn__arrow {
    right: 22px;
    width: 1.0625rem;
    height: 0.75rem;
  }
}

.c-btn__apply {
  color: #fff;
  font-size: 1.375rem;
  background-color: #23914F;
  max-width: 32.5rem;
  height: 5rem;
}
@media (max-width: 40rem) {
  .c-btn__apply {
    font-size: 1.0625rem;
    max-width: 20rem;
    height: 4.125rem;
    padding-right: 0.5em;
  }
}
.c-btn__apply:hover {
  color: #23914F;
  background: #fff;
}
.c-btn__apply:hover .c-btn__document,
.c-btn__apply:hover .c-btn__arrow {
  fill: #23914F;
}
.c-btn__apply .c-btn__arrow {
  fill: #fff;
  width: 1.375rem;
  height: 1.125rem;
}
@media (max-width: 40rem) {
  .c-btn__apply .c-btn__arrow {
    width: 1.125rem;
    height: 0.875rem;
  }
}

.c-btn__document {
  position: relative;
  fill: #fff;
  width: 1.5625rem;
  height: 1.5625rem;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  margin-right: 0.75rem;
  margin-top: 0.1875rem;
}
@media (max-width: 40rem) {
  .c-btn__document {
    width: 1.4375rem;
    height: 1.4375rem;
    margin-right: 0.5rem;
  }
}

.c-btn__apply--lg {
  max-width: 47.25rem;
  height: 7rem;
  border-radius: 86px;
}
@media (max-width: 40rem) {
  .c-btn__apply--lg {
    font-size: 1rem;
    letter-spacing: 0.05em;
    max-width: 22.5rem;
    height: 5.125rem;
    text-align: center;
    line-height: 1.5;
    padding-right: 1.5rem;
  }
}
.c-btn__apply--lg .c-btn__document {
  width: 1.8125rem;
  height: 1.8125rem;
}
@media (max-width: 40rem) {
  .c-btn__apply--lg .c-btn__document {
    width: 1.6875rem;
    height: 1.6875rem;
  }
}
.c-btn__apply--lg .c-btn__arrow {
  right: 32px;
  width: 1.625rem;
  height: 1.25rem;
}
@media (max-width: 40rem) {
  .c-btn__apply--lg .c-btn__arrow {
    right: 18px;
    width: 1.125rem;
    height: 0.875rem;
  }
}

/*------------------------------------------------------------------------------
  c-label
------------------------------------------------------------------------------*/
.c-label {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background-color: #23914F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 30px;
  padding: 0.25rem 1rem;
}
@media (max-width: 40rem) {
  .c-label {
    font-size: 0.75rem;
  }
}

/*------------------------------------------------------------------------------
  c-burgerBtn
------------------------------------------------------------------------------*/
.c-burgerBtn {
  display: none;
}
@media (max-width: 40rem) {
  .c-burgerBtn {
    position: relative;
    top: -0.3125rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 4.625rem;
            flex: 0 0 4.625rem;
    height: 4.25rem;
    background: linear-gradient(93deg, #32A460 0.19%, #17964A 97.19%);
    border-radius: 0 0 0 6px;
    display: block;
    cursor: pointer;
    z-index: 999;
    /* ハンバーガーメニューが開いたとき */
  }
  .c-burgerBtn.cross {
    background: #F3F9F5;
  }
  .c-burgerBtn.cross .c-burgerBtn__bar {
    background-color: #23914F;
    position: relative;
    top: 4px;
    right: -4px;
  }
  .c-burgerBtn.cross .c-burgerBtn__bar--top {
    -webkit-transition-delay: 40ms;
            transition-delay: 40ms;
    -webkit-transform: translateY(11px) rotate(135deg);
            transform: translateY(11px) rotate(135deg);
  }
  .c-burgerBtn.cross .c-burgerBtn__bar--mid {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  .c-burgerBtn.cross .c-burgerBtn__bar--bottom {
    -webkit-transition-delay: 20ms;
            transition-delay: 20ms;
    -webkit-transform: translateY(-11px) rotate(-135deg);
            transform: translateY(-11px) rotate(-135deg);
  }
}

.c-burgerBtn__bar {
  display: block;
  width: 2.25rem;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  margin-left: auto;
  margin-right: auto;
}

.c-burgerBtn__bar--top,
.c-burgerBtn__bar--mid {
  margin-bottom: 9px;
}

/*------------------------------------------------------------------------------
  c-pagination
------------------------------------------------------------------------------*/
.c-pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-pagination .page-numbers li {
  margin: 0 0.3125rem;
}
@media (max-width: 40rem) {
  .c-pagination .page-numbers li {
    margin: 0 0.1875rem;
  }
}
.c-pagination .page-numbers span,
.c-pagination .page-numbers 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;
  color: #23914F;
  font-size: 1.0625rem;
  font-weight: bold;
  font-family: "Open Sans", sans-serif;
  background-color: #fff;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 43px;
  height: 43px;
  border: 1px solid #23914F;
  border-radius: 2px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding-top: 1px;
}
@media (max-width: 40rem) {
  .c-pagination .page-numbers span,
  .c-pagination .page-numbers a {
    font-size: 0.875rem;
    width: 34px;
    height: 34px;
  }
}
.c-pagination .page-numbers span.current,
.c-pagination .page-numbers a.current {
  pointer-events: none;
}
.c-pagination .page-numbers span.current, .c-pagination .page-numbers span:hover,
.c-pagination .page-numbers a.current,
.c-pagination .page-numbers a:hover {
  color: #fff;
  background-color: #23914F;
  opacity: 1;
}
.c-pagination .page-numbers .dots {
  font-weight: normal;
  pointer-events: none;
  border: none;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 30px;
}
@media (max-width: 40rem) {
  .c-pagination .page-numbers .dots {
    width: 26px;
  }
}
.c-pagination .page-numbers .prev,
.c-pagination .page-numbers .next {
  font-size: 0.9375rem;
  font-weight: bold;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 40rem) {
  .c-pagination .page-numbers .prev,
  .c-pagination .page-numbers .next {
    font-size: 0.8125rem;
  }
}

/*------------------------------------------------------------------------------
  c-title
------------------------------------------------------------------------------*/
.c-title--white .c-title__en {
  color: #fff;
}
.c-title--white .c-title__ja {
  color: #fff;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.11);
}

.c-title--center {
  text-align: center;
}

.c-title__en {
  color: #057733;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 2.125rem;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 3px;
  position: relative;
}
@media (max-width: 68.75rem) {
  .c-title__en {
    font-size: 1.125rem;
  }
}
@media (max-width: 56.25rem) {
  .c-title__en {
    font-size: 1rem;
  }
}
@media (max-width: 40rem) {
  .c-title__en {
    font-size: 0.9375rem;
    margin-bottom: 2rem;
  }
}

.c-title__en--sm {
  font-size: 1.125rem;
}
@media (max-width: 56.25rem) {
  .c-title__en--sm {
    font-size: 1rem;
  }
}
@media (max-width: 40rem) {
  .c-title__en--sm {
    font-size: 0.9375rem;
    margin-bottom: 2rem;
  }
}

.c-title__line {
  position: absolute;
  top: 24px;
  left: 3px;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
@media (max-width: 40rem) {
  .c-title__line {
    top: 19px;
    left: 2px;
  }
}

.c-title__ja {
  font-size: 2.625rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
@media (max-width: 68.75rem) {
  .c-title__ja {
    font-size: 2.375rem;
  }
}
@media (max-width: 56.25rem) {
  .c-title__ja {
    font-size: 2rem;
  }
}
@media (max-width: 40rem) {
  .c-title__ja {
    font-size: 1.625rem;
  }
}

.c-title__ja--md {
  font-size: 2.5rem;
}
@media (max-width: 68.75rem) {
  .c-title__ja--md {
    font-size: 2.375rem;
  }
}
@media (max-width: 56.25rem) {
  .c-title__ja--md {
    font-size: 2rem;
  }
}
@media (max-width: 40rem) {
  .c-title__ja--md {
    font-size: 1.625rem;
  }
}

.c-title__ja--sm {
  font-size: 1.875rem;
}
@media (max-width: 40rem) {
  .c-title__ja--sm {
    font-size: 1.375rem;
  }
}

.c-title__ja--sm2 {
  font-size: 2rem;
}
@media (max-width: 40rem) {
  .c-title__ja--sm2 {
    font-size: 1.4375rem;
  }
}

/*------------------------------------------------------------------------------
  c-businessCard
------------------------------------------------------------------------------*/
.c-businessCard {
  max-width: 32.5rem;
}

.c-businessCard__img {
  margin-bottom: 1rem;
}
@media (max-width: 40rem) {
  .c-businessCard__img {
    margin-bottom: 0.875rem;
  }
}
.c-businessCard__img img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 3/2;
}
@media (max-width: 40rem) {
  .c-businessCard__img img {
    border-radius: 6px;
  }
}

.c-businessCard__title {
  color: #23914F;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 0.75rem;
}
@media (max-width: 56.25rem) {
  .c-businessCard__title {
    font-size: 1.25rem;
  }
}
@media (max-width: 40rem) {
  .c-businessCard__title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}

.c-businessCard__text {
  letter-spacing: 0.15em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (max-width: 40rem) {
  .c-businessCard__text {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    line-height: 1.6;
    text-align: justify;
  }
}

/*------------------------------------------------------------------------------
  c-meritCard
------------------------------------------------------------------------------*/
.c-meritCard {
  width: 100%;
  max-width: 16.4375rem;
  background-color: #fff;
  -webkit-box-shadow: inset;
          box-shadow: inset;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 4.25rem 1.25rem 2.25rem;
  position: relative;
}
@media (max-width: 68.75rem) {
  .c-meritCard {
    max-width: 100%;
    padding: 4.25rem 1rem 2.25rem;
  }
}
@media (max-width: 56.25rem) {
  .c-meritCard {
    padding: 3.125rem 1rem 1.75rem;
  }
}
@media (max-width: 40rem) {
  .c-meritCard {
    padding: 2.5rem 1rem 1.5rem;
  }
}

.c-meritCard__number {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.01em;
  background-color: #23914F;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  width: 5.25rem;
  height: 4.4375rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.4375rem 0 0 0.5rem;
}
@media (max-width: 56.25rem) {
  .c-meritCard__number {
    font-size: 1rem;
    width: 4rem;
    height: 3.1875rem;
  }
}
@media (max-width: 40rem) {
  .c-meritCard__number {
    font-size: 1.25rem;
    width: 4.875rem;
    height: 4.125rem;
  }
}

.c-meritCard__lead {
  color: #23914F;
  font-size: 1.1875rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 1.5rem;
}
@media (max-width: 68.75rem) {
  .c-meritCard__lead {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }
}

.c-meritCard__icon {
  max-width: 6.375rem;
  min-height: 6.5625rem;
  margin: 0 auto 1.5rem;
}
@media (max-width: 56.25rem) {
  .c-meritCard__icon {
    max-width: 5.5rem;
    min-height: 5.75rem;
  }
}
@media (max-width: 40rem) {
  .c-meritCard__icon {
    min-height: 0;
    margin-bottom: 1rem;
  }
}
.c-meritCard__icon img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-meritCard__text {
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media (max-width: 56.25rem) {
  .c-meritCard__text br {
    display: none;
  }
}

/*------------------------------------------------------------------------------
  c-interviewCard
------------------------------------------------------------------------------*/
.c-interviewCard:hover {
  opacity: 1;
}
.c-interviewCard:hover .c-interviewCard__img::after {
  opacity: 1;
}
.c-interviewCard:hover .c-interviewCard__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.c-interviewCard:hover .c-interviewCard__lead {
  text-decoration: underline;
}

.c-interviewCard__link {
  color: #333;
  text-decoration: none;
}

.c-interviewCard__img {
  width: 100%;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
@media (max-width: 40rem) {
  .c-interviewCard__img {
    margin-bottom: 1rem;
  }
}
.c-interviewCard__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 340/412;
  border-radius: 16px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-interviewCard__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(93deg, rgba(50, 164, 96, 0.25) 0.19%, rgba(23, 150, 74, 0.25) 97.19%);
  border-radius: 16px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.c-interviewCard__info {
  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;
  margin-bottom: 1.25rem;
  gap: 0.5rem 1rem;
}
@media (max-width: 40rem) {
  .c-interviewCard__info {
    gap: 0.5rem 0.5rem;
    margin-bottom: 0.5rem;
  }
}

.c-interviewCard__label {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.c-interviewCard__department {
  font-size: 0.9375rem;
  font-weight: 500;
}
@media (max-width: 40rem) {
  .c-interviewCard__department {
    font-size: 0.8125rem;
  }
}

.c-interviewCard__name {
  color: #4F4F4F;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 0.5rem;
}
@media (max-width: 40rem) {
  .c-interviewCard__name {
    margin-bottom: 0.25rem;
  }
}

.c-interviewCard__lead {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media (max-width: 48rem) {
  .c-interviewCard__lead {
    font-size: 1rem;
  }
}
@media (max-width: 40rem) {
  .c-interviewCard__lead {
    font-size: 0.875rem;
  }
}

/*------------------------------------------------------------------------------
  c-jobMedia
------------------------------------------------------------------------------*/
.c-jobMedia {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #8BC5A2;
  padding: 4rem 0;
}
@media (max-width: 40rem) {
  .c-jobMedia {
    display: block;
    padding: 2.5rem 0;
  }
}

.c-jobMedia__textWrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 4.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 56.25rem) {
  .c-jobMedia__textWrap {
    padding-right: 2rem;
  }
}
@media (max-width: 40rem) {
  .c-jobMedia__textWrap {
    padding-right: 0;
    margin-bottom: 1.25rem;
  }
}

.c-jobMedia__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.25rem 0.625rem;
}
@media (max-width: 40rem) {
  .c-jobMedia__heading {
    gap: 0.25rem 0.5rem;
  }
}
.c-jobMedia__heading .c-label {
  font-size: 0.9375rem;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding: 0.125rem 1.25rem;
}
@media (max-width: 40rem) {
  .c-jobMedia__heading .c-label {
    font-size: 0.8125rem;
    padding: 0.125rem 1rem;
  }
}

.c-jobMedia__title {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media (max-width: 56.25rem) {
  .c-jobMedia__title {
    font-size: 1.5rem;
  }
}
@media (max-width: 40rem) {
  .c-jobMedia__title {
    font-size: 1.25rem;
  }
}

.c-jobMedia__employmentType {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  font-size: 0.9375rem;
  font-weight: 500;
}
@media (max-width: 40rem) {
  .c-jobMedia__employmentType {
    font-size: 0.875rem;
  }
}

.c-jobMedia__texts > * {
  margin-top: 1rem;
}

.c-jobMedia__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 45.45%;
          flex: 0 1 45.45%;
}
@media (max-width: 56.25rem) {
  .c-jobMedia__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 42%;
            flex: 0 1 42%;
  }
}
.c-jobMedia__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 500/390;
  border-radius: 8px;
}
@media (max-width: 40rem) {
  .c-jobMedia__img img {
    aspect-ratio: 3/2;
  }
}

/*------------------------------------------------------------------------------
  c-filter
------------------------------------------------------------------------------*/
.c-filter__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem 2.75rem;
}
@media (max-width: 56.25rem) {
  .c-filter__list {
    gap: 1.5rem 2rem;
  }
}
@media (max-width: 40rem) {
  .c-filter__list {
    gap: 1rem 1rem;
  }
}

.c-filter__btn {
  width: 100%;
  max-width: 12.75rem;
}
@media (max-width: 56.25rem) {
  .c-filter__btn {
    max-width: 11.25rem;
  }
}
@media (max-width: 40rem) {
  .c-filter__btn {
    max-width: 10rem;
  }
}

.c-filter__btnLink {
  color: #23914F;
  font-size: 1.0625rem;
  font-weight: 500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #ddd;
  padding: 0 2rem 1rem 0;
  position: relative;
}
@media (max-width: 56.25rem) {
  .c-filter__btnLink {
    font-size: 1rem;
  }
}
@media (max-width: 40rem) {
  .c-filter__btnLink {
    font-size: 0.875rem;
    padding: 0 1.5rem 0.75rem 0;
  }
}
.c-filter__btnLink:hover {
  opacity: 0.95;
}
.c-filter__btnLink:hover::before {
  width: 100%;
}
.c-filter__btnLink:hover .c-filter__btnArrow {
  -webkit-transform: rotate(90deg) translateX(3px);
          transform: rotate(90deg) translateX(3px);
}
.c-filter__btnLink::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 16px;
  height: 1px;
  background-color: #23914F;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.c-filter__btnLink .c-filter__btnArrow {
  position: absolute;
  top: 9px;
  right: 0;
  fill: #23914F;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 0.875rem;
  height: 0.6875rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 40rem) {
  .c-filter__btnLink .c-filter__btnArrow {
    top: 7.5px;
    width: 0.6875rem;
    height: 0.5rem;
  }
}

.c-filter__btn--lg {
  max-width: 15.625rem;
}
@media (max-width: 40rem) {
  .c-filter__btn--lg {
    max-width: 11.875rem;
  }
}

/*------------------------------------------------------------------------------
  p-mv
------------------------------------------------------------------------------*/
.p-mv {
  margin-bottom: 12.875rem;
}
@media (max-width: 56.25rem) {
  .p-mv {
    margin-bottom: 9rem;
  }
}

.p-mv__inner {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 2.5rem;
  position: relative;
}
@media (max-width: 40rem) {
  .p-mv__inner {
    padding-left: 0;
  }
}

.p-mv__texts {
  position: absolute;
  top: 22.5rem;
  left: 2.5rem;
  z-index: 9;
}
@media (max-width: 68.75rem) {
  .p-mv__texts {
    top: 20.625rem;
    left: 1.25rem;
  }
}
@media (max-width: 56.25rem) {
  .p-mv__texts {
    top: 17.5rem;
  }
}
@media (max-width: 40rem) {
  .p-mv__texts {
    top: auto;
    bottom: -4.375rem;
    left: 0;
    pointer-events: none;
  }
}

.p-mv__lead {
  width: 27.875rem;
  margin-bottom: 4.75rem;
}
@media (max-width: 68.75rem) {
  .p-mv__lead {
    width: 25rem;
    margin-bottom: 3.5rem;
  }
}
@media (max-width: 56.25rem) {
  .p-mv__lead {
    width: 20rem;
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 40rem) {
  .p-mv__lead {
    width: 17.5rem;
    margin-bottom: 1rem;
  }
}
.p-mv__lead img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-mv__text {
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.16em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (max-width: 40rem) {
  .p-mv__text {
    font-size: 0.78125rem;
    letter-spacing: 0.1em;
  }
}
.p-mv__text span {
  background-color: #23914F;
  border-radius: 2px;
  padding: 0.4375rem 0.75rem;
  display: inline-block;
}
@media (max-width: 40rem) {
  .p-mv__text span {
    padding: 0.375rem 0.5rem;
  }
}
.p-mv__text span:not(:last-child) {
  margin-bottom: 0.4375rem;
}
@media (max-width: 40rem) {
  .p-mv__text span:not(:last-child) {
    margin-bottom: 0.25rem;
  }
}

.p-mv__slider {
  width: 79%;
  height: 53.625rem;
  overflow: hidden;
  border-radius: 0 0 0 2.5rem;
  margin-left: auto;
  position: relative;
  z-index: 1;
  /* アニメーション停止ボタン */
}
@media (max-width: 68.75rem) {
  .p-mv__slider {
    width: 90%;
    height: 48.75rem;
  }
}
@media (max-width: 56.25rem) {
  .p-mv__slider {
    width: 94%;
    height: 41.875rem;
  }
}
@media (max-width: 40rem) {
  .p-mv__slider {
    width: 100%;
    height: 32.1875rem;
  }
}
.p-mv__slider .swiper-wrapper {
  height: calc(100% - 28px);
  border-radius: 0 0 0 2.5rem;
  overflow: hidden;
}
@media (max-width: 40rem) {
  .p-mv__slider .swiper-wrapper {
    height: calc(100% - 25px);
  }
}
.p-mv__slider .slide-img {
  width: 100%;
  height: 100%;
}
.p-mv__slider .slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -o-object-position: 0% center;
     object-position: 0% center;
  min-height: 100%;
  border-radius: 0 0 0 2.5rem;
}
.p-mv__slider .swiper-paginationWrap {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 18px;
  z-index: 99;
  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 (max-width: 40rem) {
  .p-mv__slider .swiper-paginationWrap {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-right: 1.5rem;
  }
}
.p-mv__slider .swiper-pagination {
  position: relative;
  top: 0;
  width: auto;
}
.p-mv__slider .swiper-pagination-bullets {
  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;
  z-index: 9;
}
.p-mv__slider .swiper-pagination-bullet {
  background-color: #23914F;
  opacity: 0.4;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 10px !important;
}
@media (max-width: 40rem) {
  .p-mv__slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 7px !important;
  }
}
.p-mv__slider .swiper-pagination-bullet-active {
  opacity: 1;
}
.p-mv__slider .swiper-pagination-bullet:focus {
  outline: 2px solid #007bff;
  opacity: 1 !important;
}
.p-mv__slider .swiper-slide-active .slide-img,
.p-mv__slider .swiper-slide-duplicate-active .slide-img,
.p-mv__slider .swiper-slide-prev .slide-img {
  -webkit-animation: zoomUp 5.4s linear 0s normal both;
          animation: zoomUp 5.4s linear 0s normal both;
}
.p-mv__slider.no-zoom .swiper-slide-active .slide-img,
.p-mv__slider.no-zoom .swiper-slide-duplicate-active .slide-img,
.p-mv__slider.no-zoom .swiper-slide-prev .slide-img {
  -webkit-animation: none;
          animation: none;
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.135);
            transform: scale(1.135);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.135);
            transform: scale(1.135);
  }
}
.p-mv__swiperPause {
  cursor: pointer;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-image: url(../img/paused-btn.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 6px;
}
@media (max-width: 40rem) {
  .p-mv__swiperPause {
    width: 13px;
    height: 13px;
  }
}
.p-mv__swiperPause.paused {
  background-image: url(../img/play-btn.png);
}

/*------------------------------------------------------------------------------
  p-homeAbout
------------------------------------------------------------------------------*/
.p-homeAbout {
  margin-bottom: 20rem;
  position: relative;
}
@media (max-width: 56.25rem) {
  .p-homeAbout {
    margin-bottom: 11.25rem;
  }
}
@media (max-width: 40rem) {
  .p-homeAbout {
    margin-bottom: 8rem;
  }
}
.p-homeAbout::before {
  content: "";
  position: absolute;
  bottom: -240px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../img/bg-sanco.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 89.1875rem;
  height: 20.5rem;
  z-index: 0;
  mix-blend-mode: multiply;
}
@media (max-width: 80rem) {
  .p-homeAbout::before {
    bottom: -10vw;
    width: 96%;
    height: 17.2vw;
  }
}
@media (max-width: 40rem) {
  .p-homeAbout::before {
    bottom: -13vw;
  }
}

.p-homeAbout__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 83.5rem;
  padding-left: 2.75rem;
}
@media (max-width: 68.75rem) {
  .p-homeAbout__inner {
    padding-left: 1.25rem;
  }
}
@media (max-width: 40rem) {
  .p-homeAbout__inner {
    display: block;
  }
}

.p-homeAbout__textWrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 41.275%;
          flex: 0 1 41.275%;
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 56.25rem) {
  .p-homeAbout__textWrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 48%;
            flex: 0 1 48%;
  }
}
@media (max-width: 40rem) {
  .p-homeAbout__textWrap {
    margin-top: 0;
  }
}

.p-homeAbout__texts {
  margin-top: 2.5rem;
}
@media (max-width: 40rem) {
  .p-homeAbout__texts {
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
  }
}
.p-homeAbout__texts p {
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (max-width: 68.75rem) {
  .p-homeAbout__texts p {
    font-size: 0.9375rem;
  }
  .p-homeAbout__texts p br {
    display: none;
  }
}
@media (max-width: 56.25rem) {
  .p-homeAbout__texts p {
    font-size: 0.875rem;
  }
}
@media (max-width: 40rem) {
  .p-homeAbout__texts p {
    font-size: 0.8125rem;
    line-height: 1.8;
    letter-spacing: 0.07em;
  }
}
.p-homeAbout__texts p:not(:last-child) {
  margin-bottom: 1.5em;
}
@media (max-width: 56.25rem) {
  .p-homeAbout__texts p:not(:last-child) {
    margin-bottom: 1em;
  }
}

.p-homeAbout__imgWrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 54.6%;
          flex: 0 1 54.6%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 56.25rem) {
  .p-homeAbout__imgWrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 48%;
            flex: 0 1 48%;
  }
}

.p-homeAbout__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 48.3%;
          flex: 0 1 48.3%;
}
.p-homeAbout__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-homeAbout__img--01 {
  margin-top: 2rem;
}
@media (max-width: 40rem) {
  .p-homeAbout__img--01 {
    margin-top: 1rem;
  }
}

/*------------------------------------------------------------------------------
  p-homeBusiness
------------------------------------------------------------------------------*/
.p-homeBusiness {
  background-color: #F3F9F5;
  border-radius: 5rem 5rem 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10rem 0;
}
@media (max-width: 40rem) {
  .p-homeBusiness {
    border-radius: 2.5rem 2.5rem 0 0;
  }
}
@media (max-width: 40rem) {
  .p-homeBusiness {
    padding: 5rem 0;
  }
  .p-homeBusiness .c-title__ja {
    font-size: 1.5625rem;
  }
}

.p-homeBusiness__businessCardWrap {
  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: 5.625rem 0 4.875rem;
}
@media (max-width: 40rem) {
  .p-homeBusiness__businessCardWrap {
    margin: 2.5rem 0;
  }
}
.p-homeBusiness__businessCardWrap .c-businessCard {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 47.27%;
          flex: 0 1 47.27%;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media (max-width: 40rem) {
  .p-homeBusiness__businessCardWrap .c-businessCard {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 48%;
            flex: 0 1 48%;
  }
}
.p-homeBusiness__businessCardWrap .c-businessCard:nth-child(even) {
  margin-top: 3rem;
}
@media (max-width: 40rem) {
  .p-homeBusiness__businessCardWrap .c-businessCard:nth-child(even) {
    margin-top: 1.75rem;
  }
}

.p-homeBusiness__bottom {
  border-top: 2px solid #23914F;
  border-bottom: 2px solid #23914F;
}
@media (max-width: 40rem) {
  .p-homeBusiness__bottom {
    border-width: 1.5px;
  }
}

.p-homeBusiness__bottomText {
  font-size: 1.1875rem;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.26em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  width: calc(100% - 2.75rem);
  border-left: 2px solid #23914F;
  border-right: 2px solid #23914F;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  padding: 3rem 1rem;
}
@media (max-width: 56.25rem) {
  .p-homeBusiness__bottomText {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
}
@media (max-width: 48rem) {
  .p-homeBusiness__bottomText {
    font-size: 0.9375rem;
  }
}
@media (max-width: 40rem) {
  .p-homeBusiness__bottomText {
    font-size: 0.875rem;
    line-height: 1.8;
    width: calc(100% - 1.375rem);
    border-width: 1.5px;
    padding: 1.75rem 1rem;
  }
}
.p-homeBusiness__bottomText .u-primaryColor {
  font-size: 1.3125rem;
  line-height: 1.8;
}
@media (max-width: 56.25rem) {
  .p-homeBusiness__bottomText .u-primaryColor {
    font-size: 1.125rem;
  }
}
@media (max-width: 40rem) {
  .p-homeBusiness__bottomText .u-primaryColor {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/*------------------------------------------------------------------------------
  p-homeMerit
------------------------------------------------------------------------------*/
.p-homeMerit {
  padding: 7.75rem 0;
  background-image: url(../img/merit-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 40rem) {
  .p-homeMerit {
    padding: 4rem 0;
  }
}

.p-homeMerit__meritCardWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 4.5rem 0 3.5rem;
}
@media (max-width: 48rem) {
  .p-homeMerit__meritCardWrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.25rem 0;
  }
}
@media (max-width: 40rem) {
  .p-homeMerit__meritCardWrap {
    gap: 1rem 0;
    margin: 2.5rem 0 1.5rem;
  }
}
.p-homeMerit__meritCardWrap .c-meritCard {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 23.9%;
          flex: 0 1 23.9%;
}
@media (max-width: 48rem) {
  .p-homeMerit__meritCardWrap .c-meritCard {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 48%;
            flex: 0 1 48%;
  }
}
@media (max-width: 40rem) {
  .p-homeMerit__meritCardWrap .c-meritCard {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}

/*------------------------------------------------------------------------------
  p-homeInterview
------------------------------------------------------------------------------*/
.p-homeInterview__inner {
  margin-left: 10.625rem;
}
@media (max-width: 90rem) {
  .p-homeInterview__inner {
    width: calc(1140px + (100% - 1140px) / 2);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 1.25rem;
    margin-left: auto;
  }
}
@media (max-width: 68.75rem) {
  .p-homeInterview__inner {
    width: 100%;
  }
}

.p-homeInterview__slider {
  margin-top: 3.5rem;
  margin-bottom: 4.5rem;
  position: relative;
  /* 前への矢印カスタマイズ */
  /* 次への矢印カスタマイズ */
}
@media (max-width: 40rem) {
  .p-homeInterview__slider {
    margin-top: 2rem;
    margin-bottom: 2.5rem;
  }
}
.p-homeInterview__slider .swiper-button-prev,
.p-homeInterview__slider .swiper-button-next {
  top: -100px;
  height: 68px;
  width: 68px;
}
@media (max-width: 40rem) {
  .p-homeInterview__slider .swiper-button-prev,
  .p-homeInterview__slider .swiper-button-next {
    top: -48px;
    height: 38px;
    width: 38px;
  }
}
.p-homeInterview__slider .swiper-button-prev:focus,
.p-homeInterview__slider .swiper-button-next:focus {
  border-radius: 50%;
  outline: 2px solid #005fcc;
  outline-offset: -4px;
}
.p-homeInterview__slider .swiper-button-prev {
  left: auto;
  right: 124px;
}
@media (max-width: 68.75rem) {
  .p-homeInterview__slider .swiper-button-prev {
    right: 104px;
  }
}
@media (max-width: 40rem) {
  .p-homeInterview__slider .swiper-button-prev {
    right: 60px;
  }
}
.p-homeInterview__slider .swiper-button-next {
  right: 40px;
}
@media (max-width: 68.75rem) {
  .p-homeInterview__slider .swiper-button-next {
    right: 12px;
  }
}
.p-homeInterview__slider .swiper-button-prev::after,
.p-homeInterview__slider .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  width: 68px;
  height: 68px;
}
@media (max-width: 40rem) {
  .p-homeInterview__slider .swiper-button-prev::after,
  .p-homeInterview__slider .swiper-button-next::after {
    height: 38px;
    width: 38px;
  }
}
.p-homeInterview__slider .swiper-button-prev::after {
  background-image: url(../img/slide-btnL.png);
}
.p-homeInterview__slider .swiper-button-next::after {
  background-image: url(../img/slide-btnR.png);
}

/*------------------------------------------------------------------------------
  p-homeMessage
------------------------------------------------------------------------------*/
.p-homeMessage {
  padding: 7.5rem 0 6.5rem;
  margin-bottom: 7.5rem;
  position: relative;
}
@media (max-width: 40rem) {
  .p-homeMessage {
    padding: 4rem 0 3.25rem;
    margin-bottom: 4rem;
  }
  .p-homeMessage .c-inner {
    padding-left: 3rem;
  }
}
.p-homeMessage::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-color: #F3F9F5;
  width: calc(100% - 60px);
  height: 100%;
  border-radius: 72px 0 0 72px;
  z-index: -1;
}
@media (max-width: 80rem) {
  .p-homeMessage::before {
    width: calc(100% - 32px);
  }
}
@media (max-width: 40rem) {
  .p-homeMessage::before {
    width: calc(100% - 24px);
    border-radius: 48px 0 0 48px;
  }
}
.p-homeMessage::after {
  content: "";
  position: absolute;
  top: 34px;
  right: 0;
  width: calc(100% - 40px);
  height: calc(100% - 14px);
  background: linear-gradient(93deg, #32A460 0.19%, #17964A 97.19%);
  border-radius: 80px 0 0 80px;
  z-index: -2;
}
@media (max-width: 80rem) {
  .p-homeMessage::after {
    width: calc(100% - 16px);
    height: calc(100% - 18px);
  }
}
@media (max-width: 40rem) {
  .p-homeMessage::after {
    top: 16px;
    width: calc(100% - 16px);
    height: calc(100% - 8px);
    border-radius: 56px 0 0 56px;
  }
}

.p-homeMessage__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 40rem) {
  .p-homeMessage__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-homeMessage__contents .c-title {
    -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
            order: -2;
  }
}

.p-homeMessage__textWrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  margin-top: 1.125rem;
}
@media (max-width: 80rem) {
  .p-homeMessage__textWrap {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 2.75rem;
  }
}
@media (max-width: 56.25rem) {
  .p-homeMessage__textWrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 56%;
            flex: 0 1 56%;
    margin-top: 0;
  }
}
@media (max-width: 40rem) {
  .p-homeMessage__textWrap {
    display: contents;
  }
}

.p-homeMessage__lead {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.12em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin: 3rem 0 2rem;
}
@media (max-width: 56.25rem) {
  .p-homeMessage__lead {
    font-size: 1.25rem;
    letter-spacing: 0.07em;
    margin: 2rem 0 1.5rem;
  }
}
@media (max-width: 40rem) {
  .p-homeMessage__lead {
    font-size: 1.125rem;
    margin: 1.25rem 0;
  }
}

.p-homeMessage__texts {
  line-height: 1.8;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (max-width: 40rem) {
  .p-homeMessage__texts {
    line-height: 1.7;
    text-align: justify;
    letter-spacing: 0.07em;
  }
}
.p-homeMessage__texts p:not(:last-child) {
  margin-bottom: 1.5em;
}
@media (max-width: 56.25rem) {
  .p-homeMessage__texts p:not(:last-child) {
    margin-bottom: 1em;
  }
}

.p-homeMessage__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 41.81%;
          flex: 0 1 41.81%;
}
@media (max-width: 56.25rem) {
  .p-homeMessage__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 39%;
            flex: 0 1 39%;
  }
}
@media (max-width: 40rem) {
  .p-homeMessage__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-top: 1.5rem;
  }
}
.p-homeMessage__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}
.p-homeMessage__img figcaption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 0.75rem;
  margin-left: auto;
}
.p-homeMessage__img figcaption span {
  font-weight: 300;
  letter-spacing: 0.15em;
  font-weight: normal;
  padding-top: 0.125rem;
  margin-right: 0.75rem;
}
@media (max-width: 40rem) {
  .p-homeMessage__img figcaption span {
    padding-top: 0.25rem;
  }
}
.p-homeMessage__img figcaption img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  width: 6.5rem;
}
@media (max-width: 40rem) {
  .p-homeMessage__img figcaption img {
    width: 6rem;
  }
}

/*------------------------------------------------------------------------------
  p-homeBanner
------------------------------------------------------------------------------*/
.p-homeBanner {
  margin-bottom: 9rem;
}
@media (max-width: 40rem) {
  .p-homeBanner {
    margin-bottom: 4rem;
  }
}

.p-homeBanner__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 40rem) {
  .p-homeBanner__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem 0;
  }
}
.p-homeBanner__list li {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 48.18%;
          flex: 0 1 48.18%;
}
@media (max-width: 40rem) {
  .p-homeBanner__list li {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}
.p-homeBanner__list li a img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/*------------------------------------------------------------------------------
  p-homeFlow
------------------------------------------------------------------------------*/
.p-homeFlow__lead {
  font-size: 1.1875rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.15em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  margin: 2.5rem 0 3rem;
}
@media (max-width: 48rem) {
  .p-homeFlow__lead {
    font-size: 1rem;
  }
}
@media (max-width: 40rem) {
  .p-homeFlow__lead {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    line-height: 1.7;
    margin: 1.25rem 0 1.75rem;
  }
}
.p-homeFlow__lead .u-primaryColor {
  font-size: 1.25rem;
  font-weight: bold;
}
@media (max-width: 40rem) {
  .p-homeFlow__lead .u-primaryColor {
    font-size: 1rem;
  }
}

.p-homeFlow__contents {
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-bottom: 1.625rem;
}
@media (max-width: 40rem) {
  .p-homeFlow__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    margin: 0 auto 1.5rem;
  }
}

.p-homeFlow__item {
  display: block;
  padding: 3rem 1rem 3rem 4.25rem;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  background-color: #E8F5EC;
  position: relative;
  max-width: none;
}
@media (max-width: 56.25rem) {
  .p-homeFlow__item {
    padding: 2rem 1rem 2rem 3.25rem;
  }
}
@media (max-width: 40rem) {
  .p-homeFlow__item {
    padding: 3rem 1rem 3.5rem;
    width: 100%;
    margin-bottom: 0;
  }
  .p-homeFlow__item:nth-child(n+2) {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    margin-top: -2.25rem;
  }
}
.p-homeFlow__item:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 31%;
          flex: 0 1 31%;
  padding-left: 2rem;
}
@media (max-width: 56.25rem) {
  .p-homeFlow__item:first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 29%;
            flex: 0 1 29%;
    padding-left: 1rem;
  }
}
@media (max-width: 40rem) {
  .p-homeFlow__item:first-child {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    padding: 1.25rem 1rem 3.5rem;
  }
}
.p-homeFlow__item:nth-child(2) {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 34%;
          flex: 0 1 34%;
}
.p-homeFlow__item:last-child {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 2.25rem;
}
@media (max-width: 56.25rem) {
  .p-homeFlow__item:last-child {
    padding-right: 2rem;
  }
}
@media (max-width: 40rem) {
  .p-homeFlow__item:last-child {
    padding-right: 1rem;
  }
}
.p-homeFlow__item::before, .p-homeFlow__item::after {
  content: "";
  border-right: 3px solid #fff;
  display: block;
  position: absolute;
  height: 50%;
  right: -8px;
  z-index: 1;
  width: 64px;
  background-color: #E8F5EC;
}
.p-homeFlow__item::before {
  top: 0;
  -webkit-transform: skew(25deg);
          transform: skew(25deg);
}
.p-homeFlow__item::after {
  bottom: 0;
  -webkit-transform: skew(-25deg);
          transform: skew(-25deg);
}
.p-homeFlow__item:last-child::before, .p-homeFlow__item:last-child::after {
  right: -32px;
  background-color: #fff;
  border: none;
}
@media (max-width: 56.25rem) {
  .p-homeFlow__item:last-child::before, .p-homeFlow__item:last-child::after {
    right: -36px;
  }
}
@media (max-width: 48rem) {
  .p-homeFlow__item:last-child::before, .p-homeFlow__item:last-child::after {
    width: 76px;
  }
}
@media (max-width: 40rem) {
  .p-homeFlow__item::before, .p-homeFlow__item::after {
    border-right: none;
    position: absolute;
    top: auto;
    bottom: 0;
    left: -10px;
    right: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 2.5rem 50vw 0 50vw;
    border-color: #fff transparent transparent transparent;
    -webkit-transform: skew(0deg);
            transform: skew(0deg);
    z-index: 1;
    background-color: transparent !important;
  }
  .p-homeFlow__item::after {
    bottom: 2px;
    border-color: #E8F5EC transparent transparent transparent;
  }
  .p-homeFlow__item:last-child::before, .p-homeFlow__item:last-child::after {
    border-right: none;
    position: absolute;
    top: auto;
    bottom: 0;
    left: -10px;
    right: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 2.5rem 50vw 0 50vw;
    border-color: #fff transparent transparent transparent;
    -webkit-transform: skew(0deg);
            transform: skew(0deg);
    z-index: 1;
    background-color: transparent !important;
  }
  .p-homeFlow__item:last-child::after {
    bottom: 0px;
    bottom: 0px;
    border-color: #E8F5EC #fff #fff #fff;
  }
}

.p-homeFlow__itemHeading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 40rem) {
  .p-homeFlow__itemHeading {
    text-align: center;
    margin-bottom: 0.375rem;
  }
}

.p-homeFlow__itemNum {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #23914F;
  font-size: 1.875rem;
  font-weight: bold;
  font-family: "Open Sans", sans-serif;
  margin-right: 0.625rem;
}
@media (max-width: 56.25rem) {
  .p-homeFlow__itemNum {
    font-size: 1.625rem;
    margin-right: 0.5rem;
  }
}
@media (max-width: 40rem) {
  .p-homeFlow__itemNum {
    padding-top: 0.0625rem;
    margin-right: 0.75rem;
  }
}

.p-homeFlow__itemTitle {
  font-size: 1.3125rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media (max-width: 56.25rem) {
  .p-homeFlow__itemTitle {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
}
@media (max-width: 48rem) {
  .p-homeFlow__itemTitle {
    padding-right: 0.5rem;
  }
}
@media (max-width: 40rem) {
  .p-homeFlow__itemTitle {
    font-size: 1.125rem;
  }
}

.p-homeFlow__itemText {
  font-size: 0.9375rem;
  font-weight: 500;
  max-width: 17.25rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 56.25rem) {
  .p-homeFlow__itemText {
    font-size: 0.8125rem;
  }
}
@media (max-width: 40rem) {
  .p-homeFlow__itemText {
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: none;
    text-align: left;
  }
}

.p-homeFlow__text {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
}
@media (max-width: 48rem) {
  .p-homeFlow__text {
    font-size: 0.875rem;
  }
}

/*------------------------------------------------------------------------------
  p-pageMv
------------------------------------------------------------------------------*/
.p-pageMv {
  margin-top: 7.75rem;
  position: relative;
}
@media (max-width: 40rem) {
  .p-pageMv {
    margin-top: 7.75rem;
  }
}
.p-pageMv::before {
  content: "";
  position: absolute;
  top: 3.25rem;
  left: -27.6875rem;
  background-image: url(../img/page-mv-line.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 119.625rem;
  height: 22.5rem;
  z-index: 0;
}
@media (max-width: 68.75rem) {
  .p-pageMv::before {
    top: 4.25rem;
    left: -21.875rem;
    width: 87.5rem;
    height: 16.875rem;
  }
}
@media (max-width: 56.25rem) {
  .p-pageMv::before {
    top: 3.5rem;
    left: -20.625rem;
    width: 81.25rem;
    height: 15.625rem;
  }
}
@media (max-width: 40rem) {
  .p-pageMv::before {
    top: 1.875rem;
    left: -3.5rem;
    width: 31.25rem;
    height: 5.875rem;
  }
}

.p-pageMv--lineThin::before {
  background-image: url(../img/page-mv-line-thin.svg);
}

.p-pageMv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 40rem) {
  .p-pageMv__inner {
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 1rem;
  }
}

.p-pageMv__contents {
  margin-left: 4.5rem;
  margin-top: 1rem;
}
@media (max-width: 68.75rem) {
  .p-pageMv__contents {
    margin-left: 2rem;
  }
}
@media (max-width: 40rem) {
  .p-pageMv__contents {
    margin-left: 0;
    width: 100%;
    margin-bottom: 1.5rem;
  }
}

.p-pageMv__title {
  margin-top: 1rem;
}
@media (max-width: 40rem) {
  .p-pageMv__title {
    margin-top: 0.625rem;
  }
}

.p-pageMv__titleJa {
  font-size: 2.875rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 0.125rem;
}
@media (max-width: 68.75rem) {
  .p-pageMv__titleJa {
    font-size: 2.5rem;
  }
}
@media (max-width: 56.25rem) {
  .p-pageMv__titleJa {
    font-size: 2rem;
    letter-spacing: 0.05em;
  }
}
@media (max-width: 40rem) {
  .p-pageMv__titleJa {
    font-size: 1.75rem;
  }
}
.p-pageMv__titleJa::first-letter {
  color: #23914F;
}

.p-pageMv__titleEn {
  color: #616161;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.12em;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 0.1875rem;
}
@media (max-width: 68.75rem) {
  .p-pageMv__titleEn {
    font-size: 0.875rem;
  }
}
@media (max-width: 56.25rem) {
  .p-pageMv__titleEn {
    font-size: 0.8125rem;
  }
}
@media (max-width: 40rem) {
  .p-pageMv__titleEn {
    font-size: 0.6875rem;
  }
}

.p-pageMv__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 55.56%;
          flex: 0 1 55.56%;
  height: 20.625rem;
}
@media (max-width: 68.75rem) {
  .p-pageMv__img {
    height: 17.5rem;
  }
}
@media (max-width: 56.25rem) {
  .p-pageMv__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 52%;
            flex: 0 1 52%;
    height: 15.625rem;
  }
}
@media (max-width: 40rem) {
  .p-pageMv__img {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
    height: 11rem;
  }
}
.p-pageMv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 24px 0 0 24px;
}
@media (max-width: 40rem) {
  .p-pageMv__img img {
    border-radius: 12px 0 0 12px;
  }
}

.p-pageMv--interview {
  padding-top: 1rem;
}
@media (max-width: 40rem) {
  .p-pageMv--interview {
    padding-top: 0;
  }
}
.p-pageMv--interview::before {
  top: 4vw;
  left: 40%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 90rem) {
  .p-pageMv--interview::before {
    top: 4.875rem;
    left: 37%;
  }
}
@media (max-width: 68.75rem) {
  .p-pageMv--interview::before {
    top: 6.5rem;
    left: 32%;
  }
}
@media (max-width: 56.25rem) {
  .p-pageMv--interview::before {
    top: 2.5rem;
    left: -20.625rem;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media (max-width: 40rem) {
  .p-pageMv--interview::before {
    top: 2.375rem;
    left: -5.25rem;
  }
}
.p-pageMv--interview .p-pageMv__contents {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 52%;
          flex: 0 1 52%;
  padding-top: 3rem;
  padding-right: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: 0;
  margin-top: 0;
}
@media (max-width: 68.75rem) {
  .p-pageMv--interview .p-pageMv__contents {
    margin-left: 0;
  }
}
@media (max-width: 56.25rem) {
  .p-pageMv--interview .p-pageMv__contents {
    padding-top: 1rem;
    padding-right: 1.5rem;
  }
}
@media (max-width: 40rem) {
  .p-pageMv--interview .p-pageMv__contents {
    padding-top: 0.75rem;
    padding-right: 0;
  }
}

.p-pageMv--interview__heading {
  margin-top: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 1rem;
}
@media (max-width: 68.75rem) {
  .p-pageMv--interview__heading {
    margin-top: 2.5rem;
  }
}
@media (max-width: 56.25rem) {
  .p-pageMv--interview__heading {
    margin-top: 2rem;
  }
}
@media (max-width: 40rem) {
  .p-pageMv--interview__heading {
    margin-top: 1.5rem;
    gap: 0.625rem 0.875rem;
  }
}

.p-pageMv--interview__name {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  color: #4F4F4F;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
  padding-left: 0.25rem;
}
@media (max-width: 68.75rem) {
  .p-pageMv--interview__name {
    font-size: 1.5rem;
  }
}
@media (max-width: 56.25rem) {
  .p-pageMv--interview__name {
    font-size: 1.25rem;
  }
}

.p-pageMv--interview__heading__department {
  font-size: 1.25rem;
  font-weight: 500;
}
@media (max-width: 40rem) {
  .p-pageMv--interview__heading__department {
    font-size: 0.9375rem;
    margin-top: 0.0625rem;
  }
}

.p-pageMv--interview__lead {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  padding-top: 0.5rem;
}
@media (max-width: 68.75rem) {
  .p-pageMv--interview__lead {
    font-size: 1.75rem;
  }
}
@media (max-width: 56.25rem) {
  .p-pageMv--interview__lead {
    font-size: 1.5rem;
  }
}
@media (max-width: 40rem) {
  .p-pageMv--interview__lead {
    font-size: 1.25rem;
    padding-top: 0.25rem;
  }
}

.p-pageMv--interview__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 44%;
          flex: 0 1 44%;
  height: auto;
  position: relative;
  z-index: 9;
}
.p-pageMv--interview__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 16px;
  aspect-ratio: 484/438;
}
@media (max-width: 40rem) {
  .p-pageMv--interview__img img {
    border-radius: 12px;
  }
}

/*------------------------------------------------------------------------------
  p-personality
------------------------------------------------------------------------------*/
.p-personality {
  margin-bottom: 8.75rem;
}
@media (max-width: 40rem) {
  .p-personality {
    margin-bottom: 4.5rem;
  }
}

.p-personality__lead {
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-align: center;
  margin: 2.5rem 0 3rem;
}
@media (max-width: 40rem) {
  .p-personality__lead {
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    margin: 1.75rem 0;
  }
}

.p-personality__cardWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 40rem) {
  .p-personality__cardWrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem 0;
  }
}

.p-personality__card {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 23.45%;
          flex: 0 1 23.45%;
}
@media (max-width: 40rem) {
  .p-personality__card {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 48%;
            flex: 0 1 48%;
  }
}

.p-personality__cardImg {
  margin-bottom: 1rem;
}
@media (max-width: 40rem) {
  .p-personality__cardImg {
    margin-bottom: 0.75rem;
  }
}
.p-personality__cardImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 256/228;
  border-radius: 12px;
}
@media (max-width: 40rem) {
  .p-personality__cardImg img {
    border-radius: 8px;
  }
}

.p-personality__cardTitle {
  font-size: 1.1875rem;
  font-weight: bold;
  line-height: 1.55;
  text-align: center;
  margin-bottom: 1rem;
}
@media (max-width: 56.25rem) {
  .p-personality__cardTitle {
    font-size: 0.9375rem;
  }
}
@media (max-width: 40rem) {
  .p-personality__cardTitle {
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
  }
}

.p-personality__cardTitle--mySpace {
  padding: 0.90625rem 0;
}
@media (max-width: 40rem) {
  .p-personality__cardTitle--mySpace {
    padding: 0.6875rem 0;
  }
}

/*------------------------------------------------------------------------------
  p-jobRoles
------------------------------------------------------------------------------*/
.p-jobRoles {
  background-color: #F3F9F5;
  border-radius: 5rem 5rem 0 0;
  padding: 8.5rem 0;
  margin-bottom: 8rem;
}
@media (max-width: 40rem) {
  .p-jobRoles {
    border-radius: 2.5rem 2.5rem 0 0;
  }
}
@media (max-width: 40rem) {
  .p-jobRoles {
    padding: 4.5rem 0 4rem;
    margin-bottom: 4rem;
  }
}

.p-jobRoles__list {
  margin-top: 0.25rem;
  margin-bottom: 4rem;
}
@media (max-width: 40rem) {
  .p-jobRoles__list {
    margin: 1rem 0 2.5rem;
  }
}

/*------------------------------------------------------------------------------
  p-apply
------------------------------------------------------------------------------*/
.p-apply {
  margin-bottom: 7.75rem;
}
@media (max-width: 40rem) {
  .p-apply {
    margin-bottom: 4.5rem;
  }
}
.p-apply:first-of-type {
  margin-top: 7.75rem;
}
@media (max-width: 40rem) {
  .p-apply:first-of-type {
    margin-top: 4.5rem;
  }
}

.p-apply__tableWrap:first-of-type {
  margin-top: 3.5rem;
}
@media (max-width: 40rem) {
  .p-apply__tableWrap:first-of-type {
    margin-top: 2rem;
  }
}
.p-apply__tableWrap:not(:last-of-type) {
  margin-bottom: 5rem;
}
@media (max-width: 40rem) {
  .p-apply__tableWrap:not(:last-of-type) {
    margin-bottom: 3rem;
  }
}

.p-apply__tableTtitle {
  font-size: 1.375rem;
  font-weight: bold;
  margin-left: 1rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 40rem) {
  .p-apply__tableTtitle {
    font-size: 1rem;
    margin-left: 0;
    margin-bottom: 0.75rem;
  }
}

.p-apply__table {
  border-top: 1px solid #ddd;
  margin-bottom: 2rem;
}
@media (max-width: 40rem) {
  .p-apply__table {
    margin-bottom: 1.5rem;
  }
}
.p-apply__table tr {
  border-bottom: 1px solid #ddd;
}
@media (max-width: 40rem) {
  .p-apply__table tr {
    display: block;
  }
}
.p-apply__table tr td:first-child {
  width: 20%;
  color: #23914F;
  font-size: 1.125rem;
  font-weight: bold;
  padding: 1.75rem 1.5rem;
}
@media (max-width: 56.25rem) {
  .p-apply__table tr td:first-child {
    width: 28%;
    font-size: 1rem;
  }
}
@media (max-width: 40rem) {
  .p-apply__table tr td:first-child {
    font-size: 0.9375rem;
    display: block;
    width: 100%;
    padding: 1.5rem 0.5rem 0.5rem;
  }
}
.p-apply__table tr td:last-child {
  width: 80%;
  font-weight: 500;
  padding: 1.75rem 1.5rem 1.75rem 0;
}
@media (max-width: 56.25rem) {
  .p-apply__table tr td:last-child {
    width: 72%;
  }
}
@media (max-width: 40rem) {
  .p-apply__table tr td:last-child {
    width: 100%;
    display: block;
    padding: 0 0.5rem 1.5rem;
  }
}

/*------------------------------------------------------------------------------
  p-interview
------------------------------------------------------------------------------*/
.p-interview {
  margin-bottom: 8rem;
}
@media (max-width: 40rem) {
  .p-interview {
    margin-bottom: 4rem;
  }
}

.p-interview__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5rem 3.5%;
  margin-bottom: 3.5rem;
}
@media (max-width: 40rem) {
  .p-interview__list {
    gap: 1.75rem 6%;
    margin-bottom: 2rem;
  }
}
.p-interview__list .c-interviewCard {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 31%;
          flex: 0 1 31%;
}
@media (max-width: 40rem) {
  .p-interview__list .c-interviewCard {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 47%;
            flex: 0 1 47%;
  }
}

/*------------------------------------------------------------------------------
  p-interviewPost
------------------------------------------------------------------------------*/
.p-interviewPost {
  background-color: #F3F9F5;
  border-radius: 5rem 5rem 0 0;
  padding: 3.5rem 0 8rem;
  margin-bottom: 8rem;
}
@media (max-width: 40rem) {
  .p-interviewPost {
    border-radius: 2.5rem 2.5rem 0 0;
  }
}
@media (max-width: 40rem) {
  .p-interviewPost {
    padding: 2rem 0 4rem;
    margin-bottom: 4rem;
  }
}

.p-interviewPost__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 4.5rem 0;
}
@media (max-width: 40rem) {
  .p-interviewPost__media {
    display: block;
    padding: 2.125rem 0 2.5rem;
  }
}
.p-interviewPost__media:not(:last-child) {
  border-bottom: 1px solid #8BC5A2;
}

.p-interviewPost__mediaContents {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 53%;
          flex: 0 1 53%;
  margin-top: 1.5rem;
}
@media (max-width: 40rem) {
  .p-interviewPost__mediaContents {
    margin: 0 0 1.25rem;
  }
}

.p-interviewPost__mediaTitle {
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 3.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}
@media (max-width: 68.75rem) {
  .p-interviewPost__mediaTitle {
    font-size: 1.5rem;
    padding-left: 3rem;
  }
}
@media (max-width: 40rem) {
  .p-interviewPost__mediaTitle {
    font-size: 1.125rem;
    padding-left: 2rem;
    margin-bottom: 1.25rem;
  }
}
.p-interviewPost__mediaTitle::before {
  content: "Q";
  position: absolute;
  top: -6px;
  left: 0;
  color: #23914F;
  font-size: 3.25rem;
  font-weight: bold;
  line-height: 1;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 68.75rem) {
  .p-interviewPost__mediaTitle::before {
    font-size: 2.75rem;
  }
}
@media (max-width: 68.75rem) {
  .p-interviewPost__mediaTitle::before {
    top: -3px;
    font-size: 2rem;
  }
}

.p-interviewPost__mediaText {
  font-weight: 500;
  line-height: 1.9;
}

.p-interviewPost__mediaImg {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 41.63%;
          flex: 0 1 41.63%;
  height: auto;
}
.p-interviewPost__mediaImg img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 16px;
}
@media (max-width: 40rem) {
  .p-interviewPost__mediaImg img {
    border-radius: 12px;
  }
}

.p-interviewPost__message {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  margin: 0 auto 4.5rem;
  background-color: #23914F;
  padding: 1rem;
}
@media (max-width: 40rem) {
  .p-interviewPost__message {
    padding: 0.5rem;
    margin-bottom: 2.25rem;
  }
}

.p-interviewPost__messageContents {
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  padding: 5.5rem 1rem;
  background: repeating-linear-gradient(-48deg, #fff, #fff 14px, #EDF6F1 14px, #EDF6F1 15px);
}
@media (max-width: 40rem) {
  .p-interviewPost__messageContents {
    border-radius: 2px;
    padding: 2.5rem 1rem;
  }
}

.p-interviewPost__messageTexts {
  margin-top: 2rem;
}
@media (max-width: 40rem) {
  .p-interviewPost__messageTexts {
    margin-top: 1.5rem;
  }
}
.p-interviewPost__messageTexts > * {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
}
@media (max-width: 56.25rem) {
  .p-interviewPost__messageTexts > * {
    font-size: 1.125rem;
  }
}
@media (max-width: 40rem) {
  .p-interviewPost__messageTexts > * {
    font-size: 0.8125rem;
    letter-spacing: 0.07em;
    line-height: 1.8;
  }
}

/*------------------------------------------------------------------------------
  p-faq
------------------------------------------------------------------------------*/
.p-faq {
  margin-bottom: 7rem;
}
@media (max-width: 40rem) {
  .p-faq {
    margin-bottom: 4rem;
  }
}
.p-faq:first-of-type {
  margin-top: 7.75rem;
}
@media (max-width: 40rem) {
  .p-faq:first-of-type {
    margin-top: 4rem;
  }
}

.p-faq__list {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem 0;
}
@media (max-width: 40rem) {
  .p-faq__list {
    margin-top: 2rem;
    gap: 1rem 0;
  }
}

.p-faq__item {
  background-color: #F3F9F5;
  border-radius: 16px;
  border: 1px solid #C8E4D3;
  overflow: hidden;
}
@media (max-width: 40rem) {
  .p-faq__item {
    border-radius: 8px;
  }
}
.p-faq__item summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem 1.5rem;
  cursor: pointer;
  position: relative;
}
@media (max-width: 40rem) {
  .p-faq__item summary {
    padding: 1.25rem 1rem;
  }
}
.p-faq__item summary::-webkit-details-marker {
  display: none;
}
.p-faq__item summary:focus {
  outline: 2px solid #005fcc;
  outline-offset: -2px;
  border-radius: 16px;
}

.p-faq__item details[open] .p-faq__toggleIcon::after {
  opacity: 0;
}

.p-faq__questionIcon {
  width: 3rem;
  height: 3rem;
  background-color: #23914F;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 1.5rem;
}
@media (max-width: 40rem) {
  .p-faq__questionIcon {
    width: 2.125rem;
    height: 2.125rem;
    margin-right: 1rem;
  }
}
.p-faq__questionIcon::after {
  content: "Q";
  color: #fff;
  font-size: 1.375rem;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 40rem) {
  .p-faq__questionIcon::after {
    font-size: 1.125rem;
  }
}

.p-faq__question {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 56.25rem) {
  .p-faq__question {
    font-size: 1.125rem;
  }
}
@media (max-width: 40rem) {
  .p-faq__question {
    font-size: 0.875rem;
  }
}

.p-faq__toggleIcon {
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 1rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (max-width: 40rem) {
  .p-faq__toggleIcon {
    width: 1rem;
    height: 1rem;
  }
}
.p-faq__toggleIcon::before, .p-faq__toggleIcon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #23914F;
  border-radius: 1px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-faq__toggleIcon::before {
  width: 22px;
  height: 2px;
}
@media (max-width: 40rem) {
  .p-faq__toggleIcon::before {
    width: 16px;
  }
}
.p-faq__toggleIcon::after {
  width: 2px;
  height: 22px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (max-width: 40rem) {
  .p-faq__toggleIcon::after {
    height: 16px;
  }
}

.p-faq__answer {
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2.5rem 1.5rem 2rem 6rem;
  position: relative;
}
@media (max-width: 40rem) {
  .p-faq__answer {
    padding: 1.25rem 1rem 1.25rem 4rem;
  }
}

.p-faq__answerIcon {
  position: absolute;
  top: 1.875rem;
  left: 1.5rem;
  width: 3rem;
  height: 3rem;
  background-color: #F3F9F5;
  border: 1px solid #8BC5A2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50%;
  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;
}
@media (max-width: 40rem) {
  .p-faq__answerIcon {
    top: 1rem;
    left: 1rem;
    width: 2.125rem;
    height: 2.125rem;
  }
}
.p-faq__answerIcon::after {
  content: "A";
  color: #23914F;
  font-size: 1.375rem;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 40rem) {
  .p-faq__answerIcon::after {
    font-size: 1.125rem;
  }
}

.p-faq__answerText {
  font-size: 1.0625rem;
  font-weight: 500;
}
@media (max-width: 56.25rem) {
  .p-faq__answerText {
    font-size: 0.875rem;
  }
}
@media (max-width: 40rem) {
  .p-faq__answerText {
    font-size: 0.8125rem;
  }
}

/*------------------------------------------------------------------------------
  p-benefitsIntro
------------------------------------------------------------------------------*/
.p-benefitsIntro {
  margin: 3rem 0 7.5rem;
}
@media (max-width: 40rem) {
  .p-benefitsIntro {
    margin: 1.5rem 0 3.5rem;
  }
}

.p-benefitsIntro__text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (max-width: 56.25rem) {
  .p-benefitsIntro__text {
    font-size: 1rem;
  }
}
@media (max-width: 40rem) {
  .p-benefitsIntro__text {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}
.p-benefitsIntro__text .u-primaryColor {
  font-weight: bold;
}

/*------------------------------------------------------------------------------
  p-benefits
------------------------------------------------------------------------------*/
.p-benefits {
  margin-bottom: 8rem;
}
@media (max-width: 40rem) {
  .p-benefits {
    margin-bottom: 4.5rem;
  }
}

.p-benefits__meritCardWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2.5rem;
}
@media (max-width: 48rem) {
  .p-benefits__meritCardWrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.25rem 0;
  }
}
@media (max-width: 40rem) {
  .p-benefits__meritCardWrap {
    gap: 1rem 0;
    margin-top: 1.5rem;
  }
}
.p-benefits__meritCardWrap .c-meritCard {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 23.9%;
          flex: 0 1 23.9%;
  border: 3px solid #23914F;
}
@media (max-width: 48rem) {
  .p-benefits__meritCardWrap .c-meritCard {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 48%;
            flex: 0 1 48%;
  }
}
@media (max-width: 40rem) {
  .p-benefits__meritCardWrap .c-meritCard {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}

/*------------------------------------------------------------------------------
  p-benefitsIntro
------------------------------------------------------------------------------*/
.p-gallery {
  margin-bottom: 8rem;
}
@media (max-width: 40rem) {
  .p-gallery {
    margin-bottom: 4.5rem;
  }
}

.p-gallery__inner {
  background-color: #F3F9F5;
  border-radius: 48px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 7.5rem 1.5rem;
}
@media (max-width: 40rem) {
  .p-gallery__inner {
    border-radius: 24px;
    padding: 4rem 0;
  }
}

.p-numbers__gallerySlider {
  max-width: 60.25rem;
  margin: 2.5rem auto 0;
}
@media (max-width: 40rem) {
  .p-numbers__gallerySlider {
    margin-top: 1.75rem;
  }
}

/* メインスライダー */
.p-numbers__galleryMain {
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 2rem !important;
  margin-bottom: 0.75rem;
  /* ナビゲーションボタン */
}
@media (max-width: 40rem) {
  .p-numbers__galleryMain {
    padding: 0 1rem !important;
    margin-bottom: 0.25rem;
  }
}
.p-numbers__galleryMain .swiper-slide {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.p-numbers__galleryMain .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 900/506;
  border-radius: 8px;
  margin-bottom: 0.125rem;
}
.p-numbers__galleryMain .swiper-slide .figcaption {
  font-size: 0.875rem;
  display: block;
}
@media (max-width: 40rem) {
  .p-numbers__galleryMain .swiper-slide .figcaption {
    font-size: 0.75rem;
  }
}
.p-numbers__galleryMain .swiper-button-next,
.p-numbers__galleryMain .swiper-button-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 58px;
  height: 58px;
  background-color: #23914F;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  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;
  z-index: 9;
}
@media (max-width: 40rem) {
  .p-numbers__galleryMain .swiper-button-next,
  .p-numbers__galleryMain .swiper-button-prev {
    top: 55%;
    width: 34px;
    height: 34px;
  }
}
.p-numbers__galleryMain .swiper-button-next::after,
.p-numbers__galleryMain .swiper-button-prev::after {
  display: none;
}
.p-numbers__galleryMain .swiper-button-next:focus,
.p-numbers__galleryMain .swiper-button-prev:focus {
  outline: 2px solid #005fcc;
}
.p-numbers__galleryMain .swiper-button-next .p-numbers__gallerySliderBtn,
.p-numbers__galleryMain .swiper-button-prev .p-numbers__gallerySliderBtn {
  fill: #fff;
  width: 18px;
  height: 15px;
}
@media (max-width: 40rem) {
  .p-numbers__galleryMain .swiper-button-next .p-numbers__gallerySliderBtn,
  .p-numbers__galleryMain .swiper-button-prev .p-numbers__gallerySliderBtn {
    width: 14px;
    height: 9px;
  }
}
.p-numbers__galleryMain .swiper-button-prev {
  left: 2px;
}
.p-numbers__galleryMain .swiper-button-prev .p-numbers__gallerySliderBtn {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-numbers__galleryMain .swiper-button-next {
  left: auto;
  right: 2px;
}

/* サムネイルスライダー */
.p-numbers__galleryThumbs {
  max-width: 56.25rem;
  margin: 0 auto;
}
@media (max-width: 63.125rem) {
  .p-numbers__galleryThumbs {
    max-width: calc(100% - 4rem);
  }
}
@media (max-width: 40rem) {
  .p-numbers__galleryThumbs {
    max-width: calc(100% - 2rem);
  }
}
.p-numbers__galleryThumbs .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 40rem) {
  .p-numbers__galleryThumbs .swiper-wrapper {
    gap: 0.5rem;
  }
}
.p-numbers__galleryThumbs .swiper-slide {
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: auto;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media (max-width: 40rem) {
  .p-numbers__galleryThumbs .swiper-slide {
    border-radius: 2px;
  }
}
.p-numbers__galleryThumbs .swiper-slide.is-active::before {
  background: none;
}
.p-numbers__galleryThumbs .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
}
.p-numbers__galleryThumbs .swiper-slide:hover {
  opacity: 0.8;
}
.p-numbers__galleryThumbs .swiper-slide:focus {
  outline: 3px solid #005fcc;
  outline-offset: -3px;
}
.p-numbers__galleryThumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  width: 167px;
  height: 94px;
}
@media (max-width: 40rem) {
  .p-numbers__galleryThumbs .swiper-slide img {
    width: 106px;
    height: 66px;
  }
}

/*------------------------------------------------------------------------------
  p-numbers
------------------------------------------------------------------------------*/
.p-numbers {
  margin-bottom: 8rem;
}
@media (max-width: 40rem) {
  .p-numbers {
    margin-bottom: 4rem;
  }
}

.p-numbers__text {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 2.5rem;
}
@media (max-width: 40rem) {
  .p-numbers__text {
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-top: 1.5rem;
  }
}

.p-numbers__text--sm {
  font-size: 0.9375rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 0.25rem;
}
@media (max-width: 40rem) {
  .p-numbers__text--sm {
    font-size: 0.75rem;
    margin-top: 0.125rem;
  }
}

.p-numbers__list {
  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;
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (max-width: 48rem) {
  .p-numbers__list {
    gap: 1rem;
  }
}
@media (max-width: 40rem) {
  .p-numbers__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }
}

.p-numbers__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 1rem);
          flex: 0 1 calc(50% - 1rem);
}
@media (max-width: 48rem) {
  .p-numbers__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 0.5rem);
            flex: 0 1 calc(50% - 0.5rem);
  }
}
@media (max-width: 40rem) {
  .p-numbers__item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.p-numbers__item img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/*------------------------------------------------------------------------------
  p-pageLink
------------------------------------------------------------------------------*/
.p-pageLink__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem 0;
}
@media (max-width: 56.25rem) {
  .p-pageLink__list {
    gap: 1.75rem 0;
  }
}
@media (max-width: 32.5rem) {
  .p-pageLink__list {
    gap: 1rem 0;
  }
}

.p-pageLink__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 31.36%;
          flex: 0 1 31.36%;
}
@media (max-width: 56.25rem) {
  .p-pageLink__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 48%;
            flex: 0 1 48%;
  }
}
.p-pageLink__item a img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/*------------------------------------------------------------------------------
  u-color
------------------------------------------------------------------------------*/
.u-whiteColor {
  color: #fff;
}

.u-textColor {
  color: #333;
}

.u-primaryColor {
  color: #23914F;
}

/*------------------------------------------------------------------------------
  u-bgc
------------------------------------------------------------------------------*/
.u-bgcPrimary {
  background-color: #23914F;
}

/*------------------------------------------------------------------------------
  u-fz
------------------------------------------------------------------------------*/
.u-fz22 {
  font-size: 1.375rem;
}

.u-fz20 {
  font-size: 1.25rem;
}

.u-fz19 {
  font-size: 1.1875rem;
}

.u-fz18 {
  font-size: 1.125rem;
}

.u-fz17 {
  font-size: 1.0625rem;
}

.u-fz16 {
  font-size: 1rem;
}

.u-fz15 {
  font-size: 0.9375rem;
}

.u-fz14 {
  font-size: 0.875rem;
}

.u-fz13 {
  font-size: 0.8125rem;
}

.u-fz12 {
  font-size: 0.75rem;
}

@media (max-width: 40rem) {
  .u-fz16--sp {
    font-size: 1rem;
  }
}

/*------------------------------------------------------------------------------
  u-fw
------------------------------------------------------------------------------*/
.u-fwBold {
  font-weight: bold;
}

.u-fwMedium {
  font-weight: 500;
}

.u-fwNormal {
  font-weight: 400;
}

/*------------------------------------------------------------------------------
  u-text-align
------------------------------------------------------------------------------*/
.u-textAlignLeft {
  text-align: left !important;
}

.u-textAlignCenter {
  text-align: center !important;
}

.u-textAlignRight {
  text-align: right !important;
}

/*------------------------------------------------------------------------------
  text-decoration
------------------------------------------------------------------------------*/
.u-tdUnderline {
  text-decoration: underline;
}

/*------------------------------------------------------------------------------
  margin
------------------------------------------------------------------------------*/
.u-mt-0 {
  margin-top: 0 !important;
}

.u-mt-space-4 {
  margin-top: 4px !important;
}

.u-mt-1 {
  margin-top: 0.5rem !important;
}

.u-mt-2 {
  margin-top: 1rem !important;
}

.u-mt-3 {
  margin-top: 1.5rem !important;
}

.u-mt-4 {
  margin-top: 2rem !important;
}

.u-mt-5 {
  margin-top: 2.5rem !important;
}

.u-mt-6 {
  margin-top: 3rem !important;
}

.u-mt-7 {
  margin-top: 3.5rem !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-1 {
  margin-bottom: 0.5rem !important;
}

.u-mb-2 {
  margin-bottom: 1rem !important;
}

.u-mb-3 {
  margin-bottom: 1.5rem !important;
}

.u-mb-4 {
  margin-bottom: 2rem !important;
}

.u-mb-5 {
  margin-bottom: 2.5rem !important;
}

.u-mb-6 {
  margin-bottom: 3rem !important;
}

.u-mb-7 {
  margin-bottom: 3.5rem !important;
}

.u-mb-8 {
  margin-bottom: 4rem !important;
}

.u-mb-9 {
  margin-bottom: 4.5rem !important;
}

.u-mb-10 {
  margin-bottom: 5rem !important;
}

.u-my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.u-my-1 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.u-my-2 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.u-my-3 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.u-my-4 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.u-my-5 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.u-my-6 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.u-my-7 {
  margin-top: 3.5rem !important;
  margin-bottom: 3.5rem !important;
}

.u-ml-0 {
  margin-left: 0 !important;
}

.u-ml-1 {
  margin-left: 0.5rem !important;
}

.u-ml-2 {
  margin-left: 1rem !important;
}

.u-mr-0 {
  margin-right: 0 !important;
}

.u-mr-1 {
  margin-right: 0.5rem !important;
}

.u-mr-2 {
  margin-right: 1rem !important;
}

.u-mr-3 {
  margin-right: 1.5rem !important;
}

.u-mr-4 {
  margin-right: 2rem !important;
}

.u-mr-5 {
  margin-right: 2.5rem !important;
}

.u-mr-6 {
  margin-right: 3rem !important;
}

.u-mr-7 {
  margin-right: 3.5rem !important;
}

.u-m-1 {
  margin: 0.5rem !important;
}

.u-m-2 {
  margin: 1rem !important;
}

.u-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-ml-auto {
  margin-left: auto !important;
}

.u-mr-auto {
  margin-right: auto !important;
}

/*------------------------------------------------------------------------------
  padding
------------------------------------------------------------------------------*/
.u-pt-0 {
  padding-top: 0 !important;
}

.u-pt-1 {
  padding-top: 8px !important;
}

.u-pt-2 {
  padding-top: 16px !important;
}

.u-pt-3 {
  padding-top: 24px !important;
}

.u-pt-4 {
  padding-top: 32px !important;
}

.u-pt-5 {
  padding-top: 40px !important;
}

.u-pt-6 {
  padding-top: 48px !important;
}

.u-pt-7 {
  padding-top: 56px !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pb-1 {
  padding-bottom: 8px !important;
}

.u-pb-2 {
  padding-bottom: 16px !important;
}

.u-pb-3 {
  padding-bottom: 24px !important;
}

.u-pb-4 {
  padding-bottom: 32px !important;
}

.u-pb-5 {
  padding-bottom: 40px !important;
}

.u-pb-6 {
  padding-bottom: 48px !important;
}

.u-pb-7 {
  padding-bottom: 56px !important;
}

.u-py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.u-py-1 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.u-py-2 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.u-py-3 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.u-py-4 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.u-py-5 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.u-py-6 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.u-py-7 {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

.u-pl-1 {
  padding-left: 8px !important;
}

.u-pl-2 {
  padding-left: 16px !important;
}

.u-pr-1 {
  padding-right: 8px !important;
}

.u-pr-2 {
  padding-right: 16px !important;
}

.u-p-1 {
  padding: 8px !important;
}

.u-p-2 {
  padding: 16px !important;
}

/*------------------------------------------------------------------------------
  u-flex
------------------------------------------------------------------------------*/
.u-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.u-justify-content-star {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: start !important;
}

.u-justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: end !important;
}

.u-justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.u-justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.u-align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: start !important;
}

.u-align-items-flex-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.u-align-items-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: end !important;
}

.u-align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.u-align-self-start {
  -ms-flex-item-align: start !important;
      -ms-grid-row-align: start !important;
      align-self: start !important;
}

.u-align-self-end {
  -ms-flex-item-align: end !important;
      -ms-grid-row-align: end !important;
      align-self: end !important;
}

.u-align-self-center {
  -ms-flex-item-align: center !important;
      -ms-grid-row-align: center !important;
      align-self: center !important;
}

.u-align-self-strech {
  -ms-flex-item-align: stretch !important;
      -ms-grid-row-align: stretch !important;
      align-self: stretch !important;
}

.u-flex-direction-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.u-flex-grow-1 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.u-flex-shrink-0 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}