@charset "UTF-8";
@font-face {
  font-family: "Helvetica CE 35 Thin";
  src: url("../font/Helvetica Neue CE 35 Thin.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue";
  src: url("../font/HelveticaNeue-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "DIN Alternate";
  src: url("../font/din-alternate-bold.ttf") format("ttf");
  font-weight: 700;
  font-style: normal;
}
html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3698630137vw;
  }
}
@media (min-width: 1168px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.14em;
  overflow-x: hidden;
}

@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

main {
  margin-top: 3.4375rem;
}
@media screen and (min-width: 768px) {
  main {
    margin-top: 7.5625rem;
  }
}

.home main {
  margin-top: 0;
}

.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.fadeIn {
  -webkit-transform: translate3d(0, 50px, 0);
          transform: translate3d(0, 50px, 0);
  -webkit-transition: 1s;
  transition: 1s;
  opacity: 0;
}

.fadeIn.animated {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
}

.to-top {
  position: fixed;
  bottom: 5.3125rem;
  right: 0.9375rem;
  z-index: 101;
  border-radius: 50%;
  color: #fff;
  width: 3.4375rem;
  height: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .to-top {
    position: absolute;
    border-radius: 0;
    bottom: 0;
    right: 0;
    width: 9.375rem;
    height: 9.375rem;
  }
}

.to-top 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;
  width: 100%;
  height: 100%;
  font-size: 0.8125rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1.1538461538;
  letter-spacing: 0.15em;
  color: #fff;
  padding-top: 0.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .to-top a {
    font-size: 1rem;
    line-height: 1;
    padding-top: 1.875rem;
  }
}

.to-top a::before {
  content: "";
  position: absolute;
  top: 0.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0.625rem;
  height: 0.5rem;
  background: url(../img/common/totop.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .to-top a::before {
    top: 3.125rem;
    width: 1.875rem;
    height: 1.125rem;
  }
}

.bottom__entry {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  color: #fff;
  width: 100%;
  height: 4.375rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .bottom__entry {
    display: none;
  }
}

.bottom__entry a {
  display: block;
  padding: 1.71875rem 0;
  text-align: center;
}

.bottom__entry span {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  position: relative;
  padding-right: 1.25rem;
}
.bottom__entry span::before {
  content: "";
  position: absolute;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 0.75rem;
  height: 0.625rem;
  z-index: 1;
  background: url(../img/common/arrow-white.svg) no-repeat center/contain;
}

.bottom__entry-btn {
  background: -webkit-gradient(linear, left top, right top, from(#008942), to(#E1E35E));
  background: linear-gradient(90deg, #008942 0%, #E1E35E 100%);
}

.bottom__entry-btn--orange {
  background: -webkit-gradient(linear, left top, right top, from(#F36F48), to(#FFB655));
  background: linear-gradient(90deg, #F36F48 0%, #FFB655 100%);
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

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

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

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

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

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

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

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-bg {
  position: fixed;
  top: -3.75rem;
  right: 0;
  z-index: -1;
  width: 20.75rem;
  height: 50.875rem;
  background: url(../img/common/bg.png) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .l-bg {
    width: 50.3125rem;
    height: 105.0625rem;
    top: 0;
  }
}

.l-en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.home .l-en {
  bottom: 30%;
  z-index: 10;
}

.l-en span {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #fff;
  white-space: nowrap;
  -webkit-animation: loop-slide 30s infinite linear 1s both;
          animation: loop-slide 30s infinite linear 1s both;
}
@media screen and (min-width: 768px) {
  .l-en span {
    font-size: 8.125rem;
  }
}

.l-en--footer {
  overflow: hidden;
}

.home .l-en--footer {
  display: none;
}

.l-inner {
  width: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1168px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.c-btn-arrow {
  width: 100%;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  padding: 1rem 1.875rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  letter-spacing: 0.05em;
  color: #fff;
  border-radius: 30px;
}
@media screen and (min-width: 768px) {
  .c-btn-arrow {
    width: unset;
    min-width: 31.25rem;
    font-size: 1.875rem;
    line-height: 1;
    padding: 2.1875rem;
  }
}

.c-btn-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.03125rem;
  height: 0.625rem;
  background-color: #fff;
  -webkit-mask-image: url(../img/common/btn-arrow.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-image: url(../img/common/btn-arrow.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
}

.c-btn-grad {
  border-radius: 30px;
  display: block;
  padding: 1px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .c-btn-grad {
    display: inline-block;
  }
}

.c-btn-grad span {
  position: relative;
  z-index: 3;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5625;
  letter-spacing: 0.1em;
  padding: 1.0625rem 2.5625rem 1.0625rem 3.5625rem;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-btn-grad span {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.1em;
    padding: 1.0625rem 2.0625rem 1.0625rem 3.5625rem;
  }
}

.c-btn-grad__inner {
  background: #fff;
  border-radius: 30px;
}

.c-btn-grad::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.5625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.5rem;
  height: 0.75rem;
  mask-image: url(../img/common/arrow-grad.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url(../img/common/arrow-grad.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.c-btn {
  position: relative;
  display: inline-block;
  padding: 0.625rem 2.875rem;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  letter-spacing: 0.05em;
  border-radius: 30px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .c-btn {
    padding: 0.3125rem 3rem;
  }
}

.c-btn span {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.0555555556;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .c-btn span {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

.c-btn--blue {
  color: #fff;
  font-weight: 700;
  padding: 0.5rem 3rem;
}
@media screen and (min-width: 768px) {
  .c-btn--blue {
    padding: 0.4375rem 3.125rem;
  }
}

.c-card {
  display: inline-block;
  position: relative;
}

.c-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 70%;
  z-index: 1;
}

.c-card__img {
  position: relative;
  overflow: hidden;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .c-card__img {
    max-width: 100%;
    margin-top: 0;
  }
}

.c-card__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 375/323;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 60% center;
     object-position: 60% center;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .c-card__img img {
    aspect-ratio: 504/433;
  }
}

@media screen and (min-width: 768px) {
  .c-card:hover .c-card__img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.c-card__img-wrap {
  content: "";
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  width: 100%;
  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;
  color: #fff;
  padding: 0 1.25rem;
}

.c-card__department span {
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .c-card__department span {
    font-size: 0.625rem;
    line-height: 1.25;
  }
}
@media screen and (min-width: 1168px) {
  .c-card__department span {
    font-size: 0.7936507937vw;
  }
}
@media screen and (min-width: 1513px) {
  .c-card__department span {
    font-size: clamp(0.625rem, 0.8vw, 1rem);
  }
}

.c-card__department--white span {
  background: #fff;
  color: #008DE4;
}

.c-card__year {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.1em;
  z-index: 1;
  padding: 0.25rem 0.625rem;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .c-card__year {
    font-size: 0.625rem;
  }
}
@media screen and (min-width: 1168px) {
  .c-card__year {
    font-size: 0.7936507937vw;
  }
}
@media screen and (min-width: 1513px) {
  .c-card__year {
    font-size: clamp(0.625rem, 0.8vw, 1rem);
  }
}

.c-card__body-wrap {
  margin-top: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-card__body-wrap {
    margin-top: 0.625rem;
  }
}
@media screen and (min-width: 1168px) {
  .c-card__body-wrap {
    margin-top: 0.9375rem;
  }
}

.c-card__body {
  content: "";
  position: absolute;
  bottom: 0.9375rem;
  left: 0.9375rem;
  z-index: 2;
  width: calc(100% - 0.9375rem);
}
@media screen and (min-width: 768px) {
  .c-card__body {
    bottom: 0.9375rem;
  }
}
@media screen and (min-width: 1168px) {
  .c-card__body {
    bottom: 1.25rem;
  }
}

.c-card__body-en {
  font-size: 0.75rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
}

.c-card__body-facility {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.0714285714;
  letter-spacing: 0.05em;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
}
@media screen and (min-width: 768px) {
  .c-card__body-facility {
    margin-top: 0.625rem;
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 1168px) {
  .c-card__body-facility {
    margin-top: 0.7936507937vw;
    font-size: 0.9259259259vw;
  }
}
@media screen and (min-width: 1513px) {
  .c-card__body-facility {
    font-size: clamp(0.625rem, 1vw, 1.125rem);
  }
}

.c-card__body-facility::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  background: #fff;
  opacity: 0.5;
}

.c-card__name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 0.9375;
  letter-spacing: 0.2em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .c-card__name {
    font-size: 0.9375rem;
    line-height: 0.9375;
  }
}
@media screen and (min-width: 1168px) {
  .c-card__name {
    font-size: 1.0582010582vw;
  }
}
@media screen and (min-width: 1513px) {
  .c-card__name {
    font-size: clamp(0.75rem, 1.05vw, 1.25rem);
  }
}

.c-card__text {
  margin-top: 0.625rem;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2.1428571429;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 2;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .c-card__text {
    margin-top: 0.3125rem;
    font-size: 1rem;
    line-height: 1.875;
  }
}
@media screen and (min-width: 1168px) {
  .c-card__text {
    margin-top: 0.6613756614vw;
    font-size: 1.1904761905vw;
  }
}
@media screen and (min-width: 1513px) {
  .c-card__text {
    font-size: clamp(0.875rem, 1.2vw, 1.375rem);
  }
}

.c-card2 {
  border-radius: 20px;
  position: relative;
  border-radius: 20px;
  padding: 0.9375rem 0.9375rem 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-card2 {
    padding: 0.9375rem 0.9375rem 1.4375rem;
  }
}

.c-card2::after {
  content: "";
  position: absolute;
  bottom: 1.25rem;
  right: 1.5625rem;
  width: 0.75rem;
  height: 0.625rem;
  background-color: #00381B;
  -webkit-mask-image: url(../img/common/arrow-white.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-image: url(../img/common/arrow-white.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .c-card2::after {
    bottom: 1.625rem;
    right: 1.5rem;
    width: 0.75rem;
    height: 0.625rem;
  }
}

.c-card2__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 315/225;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .c-card2__img img {
    aspect-ratio: 330/234;
    border-radius: 15px;
  }
}

.c-card2__title {
  margin-top: 0.8125rem;
  margin-left: 0.625rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .c-card2__title {
    margin-top: 1.25rem;
    margin-left: 1.25rem;
  }
}

.c-section-title {
  position: relative;
  display: inline-block;
  padding-left: 1.5rem;
  font-size: 1.5625rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .c-section-title {
    font-size: 1.875rem;
    padding-left: 1.5rem;
  }
}

.c-section-title__en {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.075em;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .c-section-title__en {
    font-size: 1.25rem;
    line-height: 1.8;
  }
}

.c-section-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
}

.c-section-title2 {
  color: #fff;
  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;
  padding: 0.8125rem 0.9375rem 0.8125rem 1.25rem;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .c-section-title2 {
    padding: 0.3125rem 1.5625rem 0.3125rem 3.125rem;
    border-radius: 20px;
  }
}

.c-section-title2 p {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .c-section-title2 p {
    font-size: 1.875rem;
    line-height: 2;
  }
}

.c-section-title2 span {
  font-size: 0.8125rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1.5384615385;
  letter-spacing: 0.075em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .c-section-title2 span {
    font-size: 1.25rem;
    line-height: 1;
  }
}

.c-section-title2 p.small {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-section-title2 p.small {
    font-weight: 500;
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.c-section-title2--main {
  color: #008DE4;
}

.c-section-title3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .c-section-title3 {
    font-size: 2.5rem;
  }
}

.c-section-title3 span {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5384615385;
  letter-spacing: 0.075em;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .c-section-title3 span {
    font-size: 1.25rem;
    line-height: 1;
  }
}

.c-section-title3 p.small {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-section-title3 p.small {
    font-weight: 500;
    font-size: 1rem;
    line-height: 2.5;
  }
}

.c-section-title3.center {
  text-align: center;
}

.c-table dl {
  display: grid;
  gap: 0.625rem;
  grid-template-columns: 6.25rem 1fr;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  border-bottom: 1px solid;
  padding: 1.25rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-table dl {
    grid-template-columns: 10.9375rem 1fr;
    gap: 6.5625rem;
    padding: 2.5rem 1.875rem;
  }
}

.c-table dt {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-table dt {
    font-size: 1rem;
    line-height: 2.625;
    letter-spacing: 0.2em;
    width: unset;
  }
}

.c-table dd {
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-table dd {
    font-size: 1rem;
    line-height: 2.625;
    padding-left: unset;
  }
}

.c-title {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.1em;
  padding: 0.625rem 0.9375rem;
  color: #008DE4;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .c-title {
    font-size: 1.0625rem;
    line-height: 2;
    letter-spacing: 0.2em;
  }
}

.p-404 {
  margin-top: 3.5625rem;
  margin-bottom: 5.625rem;
}
@media screen and (min-width: 768px) {
  .p-404 {
    margin-top: 4.6875rem;
    margin-bottom: 9.375rem;
    text-align: left;
  }
}

.p-404__title {
  margin-top: 1.5625rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .p-404__title {
    margin-top: 2.8125rem;
    font-size: 2.5rem;
    line-height: 1.5;
    text-align: center;
  }
}

.p-404__text {
  margin-top: 1.875rem;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-404__text {
    margin-top: 4.8125rem;
    font-size: 0.9375rem;
    line-height: 2;
    letter-spacing: 0.1em;
    text-align: center;
  }
}

.p-404__btn {
  margin-top: 1.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-404__btn {
    margin-top: 3.75rem;
  }
}

.p-404__btn .c-btn-arrow {
  color: #00381B;
  text-align: left;
  min-width: 13.625rem;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0.2em;
  padding: 1.875rem 1.25rem;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-404__btn .c-btn-arrow {
    min-width: 40.125rem;
    font-size: 1.25rem;
    line-height: 1.25;
    letter-spacing: 0.1em;
    text-align: center;
    padding: 2.5rem 0;
  }
}

.p-404__btn .c-btn-arrow::after {
  background: #00381B;
  right: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-404__btn .c-btn-arrow::after {
    right: 1.875rem;
  }
}

.p-about {
  margin-top: 3.25rem;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .p-about {
    margin-top: 6.875rem;
  }
}

.p-about__head {
  text-align: center;
}

.p-about__head-read {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .p-about__head-read {
    font-size: 2.5rem;
    line-height: 1.1;
  }
}

.p-about__head-read span {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5384615385;
  letter-spacing: 0.075em;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .p-about__head-read span {
    font-size: 1.25rem;
  }
}

.p-about__head-text {
  margin-top: 1.875rem;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-about__head-text {
    margin-top: 1.375rem;
    font-size: 1rem;
    line-height: 2.5;
  }
}

.p-about__service {
  margin-top: 5rem;
  padding: 6.25rem 0 7.5rem;
  background: rgba(0, 141, 228, .8);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
}

.p-about__title {
  background: #fff;
  max-width: 70rem;
  margin-inline: auto;
  padding: 2.5rem 0.9375rem 0.75rem;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .p-about__title {
    padding: 4.375rem 2.5rem 4.375rem 3.75rem;
  }
}

.p-about__business {
  margin-top: 3.75rem;
  position: relative;
  padding-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-about__business {
    padding-top: 5.625rem;
    margin-top: 5.625rem;
  }
}

.p-about__business .l-inner {
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-about__business .l-inner {
    padding: 0 1.5625rem;
  }
}

.p-about__business-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 11.875rem;
}
@media screen and (min-width: 768px) {
  .p-about__business-bg {
    height: 17.9375rem;
  }
}

.p-about__business-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, .5)), to(#ffffff));
  background: linear-gradient(180deg, rgba(255, 255, 255, .5) 0%, #ffffff 100%);
}

.p-about__business-items {
  margin-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-about__business-items {
    margin-top: 3.75rem;
  }
}

.p-about__business-item {
  border-radius: 0 10px 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-about__business-item {
    border-radius: 30px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.p-about__business-item:nth-child(n+2) {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-about__business-item:nth-child(n+2) {
    margin-top: 7.5rem;
  }
}

.p-about__business-item:nth-child(even) {
  margin-right: calc(50% - 50vw);
  margin-left: unset;
  border-radius: 20px 0 0 20px;
}
@media screen and (min-width: 768px) {
  .p-about__business-item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.p-about__business-item:nth-child(even) .p-about__business-body {
  padding: 3.3125rem 0.9375rem 1.875rem 1.0625rem;
}
@media screen and (min-width: 768px) {
  .p-about__business-item:nth-child(even) .p-about__business-body {
    padding: 3.75rem 16rem 3.4375rem 3.5rem;
  }
}

.p-about__business-img {
  margin-right: calc(50% - 53vw);
  margin-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-about__business-img {
    min-width: 34.375rem;
    max-width: 34.375rem;
    margin-top: -3.125rem;
    margin-left: unset;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.p-about__business-img img {
  border-radius: 20px 0 0 20px;
  width: 100%;
  height: auto;
  aspect-ratio: 363/239;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-about__business-img img {
    border-radius: 20px;
    aspect-ratio: 550/350;
  }
}

.p-about__business-body {
  margin-top: -1.5625rem;
  margin-left: calc(50% - 50vw);
  padding: 3.3125rem 0.9375rem 1.875rem 2.3125rem;
  border-radius: 0 10px 10px 0;
}
@media screen and (min-width: 768px) {
  .p-about__business-body {
    margin-top: 0;
    margin-left: unset;
    padding: 3.75rem 3.5rem 3.4375rem 10rem;
    min-height: 20.625rem;
    border-radius: 10px;
  }
}
@media screen and (min-width: 1440px) {
  .p-about__business-body {
    padding: 3.75rem 3.5rem 3.4375rem 16rem;
  }
}

.p-about__business-title h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2.5;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .p-about__business-title h3 {
    font-size: 1.5625rem;
    line-height: 1.6;
  }
}

.p-about__business-text {
  margin-top: 0.625rem;
  line-height: 2;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-about__business-text {
    margin-top: 1.1875rem;
    font-size: 1rem;
    line-height: 2.5;
  }
}

@media screen and (min-width: 768px) {
  .p-about__business-item:nth-child(odd) {
    border-radius: 0 20px 20px 0;
  }
}

.p-about__business-item:nth-child(even) .p-about__business-img {
  margin-right: 0.9375rem;
  margin-left: calc(50% - 53vw);
}
@media screen and (min-width: 768px) {
  .p-about__business-item:nth-child(even) .p-about__business-img {
    margin-left: calc(50% - 53vw);
  }
}

.p-about__business-item:nth-child(even) .p-about__business-img img {
  border-radius: 0 10px 10px 0;
}
@media screen and (min-width: 768px) {
  .p-about__business-item:nth-child(even) .p-about__business-img img {
    border-radius: 10px;
  }
}

.p-about__business-item:nth-child(even) .p-about__business-body {
  margin-left: unset;
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-about__business-item:nth-child(even) .p-about__business-body {
    margin-right: unset;
    padding-right: 11.4375rem;
  }
}

.p-about__effort {
  margin-top: 5rem;
  position: relative;
  padding-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-about__effort {
    margin-top: 4.5rem;
    padding-top: 5.625rem;
  }
}

.p-about__effort .l-inner {
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-about__effort .l-inner {
    padding: 0 1.5625rem;
  }
}

.p-about__effort-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  height: 11.875rem;
}
@media screen and (min-width: 768px) {
  .p-about__effort-bg {
    height: 17.9375rem;
  }
}

.p-about__effort-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, .5)), to(#ffffff));
  background: linear-gradient(180deg, rgba(255, 255, 255, .5) 0%, #ffffff 100%);
}

.p-about__effort-container {
  margin-top: 1.875rem;
  display: grid;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-about__effort-container {
    margin-top: 3.75rem;
    gap: 1.875rem;
  }
}

.p-about__effort-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin-left: calc(50% - 50vw);
  border-radius: 0 20px 20px 0;
}
@media screen and (min-width: 768px) {
  .p-about__effort-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    border-radius: 20px;
  }
}

@media screen and (min-width: 768px) {
  .p-about__effort-item:nth-child(n+2) {
    margin-top: 5.625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-about__effort-item:nth-child(odd) {
    border-radius: 0 20px 20px 0;
  }
}

.p-about__effort-item:nth-child(even) {
  margin-left: unset;
  margin-right: calc(50% - 50vw);
  border-radius: 20px 0 0 20px;
}
@media screen and (min-width: 768px) {
  .p-about__effort-item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-left: unset;
    border-radius: 20px;
  }
}
.p-about__effort-item:nth-child(even) .p-about__effort-body {
  padding: 1.875rem 1.5625rem 1.875rem 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-about__effort-item:nth-child(even) .p-about__effort-body {
    padding: 3.75rem 12.1875rem 3.75rem 3.5rem;
  }
}
.p-about__effort-item:nth-child(even) .p-about__effort-img {
  margin-right: 0.9375rem;
  margin-left: calc(50% - 53vw);
}
@media screen and (min-width: 768px) {
  .p-about__effort-item:nth-child(even) .p-about__effort-img {
    margin-right: unset;
  }
}
.p-about__effort-item:nth-child(even) .p-about__effort-img img {
  border-radius: 0 20px 20px 0;
}
@media screen and (min-width: 768px) {
  .p-about__effort-item:nth-child(even) .p-about__effort-img img {
    border-radius: 20px;
  }
}

.p-about__effort-body {
  padding: 1.75rem 0.9375rem 1.875rem 1.875rem;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-about__effort-body {
    min-height: 20.625rem;
    padding: 3.75rem 3.1875rem 3.75rem 10rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-about__effort-body {
    padding: 3.75rem 3.1875rem 3.75rem 16rem;
  }
}

.p-about__effort-read {
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .p-about__effort-read {
    font-size: 1.5625rem;
    line-height: 1.6;
  }
}

.p-about__effort-text {
  margin-top: 0.9375rem;
  line-height: 2;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-about__effort-text {
    margin-top: 1.1875rem;
    font-size: 1rem;
    line-height: 2.5;
  }
}

.p-about__effort-img {
  margin-right: calc(50% - 53vw);
  margin-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-about__effort-img {
    min-width: 34.375rem;
    max-width: 34.375rem;
    margin-top: -3.125rem;
    margin-left: unset;
  }
}

.p-about__effort-img source,
.p-about__effort-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 363/239;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 0 0 20px;
}
@media screen and (min-width: 768px) {
  .p-about__effort-img source,
  .p-about__effort-img img {
    aspect-ratio: 550/350;
    border-radius: 20px;
  }
}

.p-about__message {
  margin-top: 5.5rem;
  position: relative;
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .p-about__message {
    margin-top: 7.5rem;
    padding: 6.25rem 0;
  }
}

.p-about__inner {
  position: relative;
  z-index: 1;
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-about__inner {
    padding: 0 1.5625rem;
  }
}

.p-about__title {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.p-about__message .p-about__title {
  background: none;
  padding: 0;
}

.p-about__message-item {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-about__message-item {
    margin-top: 1.875rem;
    gap: 1.875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-about__message-body {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-about__message-body {
    display: block;
    width: 44.7321428571%;
    padding-bottom: 1.875rem;
  }
}

.p-about__message-read {
  margin-top: 0.625rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.2em;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media screen and (min-width: 768px) {
  .p-about__message-read {
    margin-top: 0;
    font-size: 1.5625rem;
    line-height: 1.6;
  }
}

.p-about__message-text {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-about__message-text {
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 2.5;
  }
}

.p-about__message-name {
  margin-top: 0.125rem;
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
  text-align: right;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-about__message-name {
    margin-top: 0.625rem;
    font-size: 1.125rem;
    line-height: 2.2222222222;
  }
}

.p-about__message-name span {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .p-about__message-name span {
    font-size: 1.0625rem;
    line-height: 2.3529411765;
  }
}

.p-about__message-img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (min-width: 768px) {
  .p-about__message-img {
    width: 50%;
  }
}

.p-about__message-img source,
.p-about__message-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 560/560;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-about__office {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-about__office {
    margin-top: 13.125rem;
  }
}

.p-about__office .p-about__title {
  background: none;
  padding: 0;
}

.p-about__office-container {
  margin-top: 2.5rem;
  display: grid;
}
@media screen and (min-width: 768px) {
  .p-about__office-container {
    margin-top: 5.3125rem;
  }
}

.p-about__office-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px solid rgba(0, 0, 0, .2);
}
.p-about__office-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, .2);
}

.p-about__office-body {
  background: #fff;
  padding: 1.875rem 0.9375rem;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-about__office-body {
    width: 50%;
    padding: 6.25rem 1.875rem 3.75rem 12.25rem;
  }
}

.p-about__office-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .p-about__office-title {
    font-size: 1.875rem;
    line-height: 1;
  }
}

.p-about__office-address {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.05em;
  font-style: normal;
}
@media screen and (min-width: 768px) {
  .p-about__office-address {
    margin-top: 2.5rem;
    font-size: 1rem;
    line-height: 1.875;
  }
}

.p-about__office-tel {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-about__office-tel {
    font-size: 1rem;
    line-height: 1.875;
  }
}

.p-about__office-fax {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-about__office-fax {
    font-size: 1rem;
    line-height: 1.875;
  }
}

.p-about__office-btn {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-about__office-btn {
    margin-top: 1.0625rem;
  }
}

.p-about__office-btn a {
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  font-style: italic;
  padding: 0.625rem 3.375rem 0.625rem 2.4375rem;
  border-radius: 100px;
}
@media screen and (min-width: 768px) {
  .p-about__office-btn a {
    font-size: 1.25rem;
    font-style: normal;
    padding: 0.8125rem 3.8125rem 0.8125rem 3.0625rem;
  }
}

.p-about__office-btn a span {
  position: relative;
  z-index: 1;
}

.p-about__office-btn a span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -2.1875rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.625rem;
  height: 0.75rem;
  background-color: #fff;
  -webkit-mask-image: url(../img/common/map.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-image: url(../img/common/map.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-about__office-btn a span::before {
    width: 0.875rem;
    height: 1.1875rem;
  }
}

.p-about__office-btn a:hover:before {
  background-color: #fff;
}

.p-about__office-btn:hover a {
  color: #fff;
  opacity: 1;
}

.p-about__office-wrap {
  padding: 0 0.9375rem 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-about__office-wrap {
    padding: 0 12.25rem 5.625rem 12.25rem;
  }
}

.p-about__office-lists-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.1em;
  padding-left: 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-about__office-lists-title {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.p-about__office-lists-title.mt {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-about__office-lists-title.mt {
    margin-top: 3.625rem;
  }
}

.p-about__office-lists-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.625rem;
  height: 0.625rem;
  background: -webkit-gradient(linear, left top, right top, from(#008942), to(#E1E35E));
  background: linear-gradient(90deg, #008942 0%, #E1E35E 100%);
  border-radius: 50%;
}

.p-about__office-lists {
  margin-top: 0.625rem;
  display: grid;
  gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-about__office-lists {
    margin-top: 1.125rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9375rem 0.84375rem;
  }
}

.p-about__office-list {
  font-size: 0.75rem;
  line-height: 1.8333333333;
  letter-spacing: 0.05em;
  padding: 0.3125rem 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-about__office-list {
    font-size: 0.875rem;
    line-height: 2.1428571429;
  }
}

.p-about__office-list::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#008942), to(#E1E35E));
  background: linear-gradient(90deg, #008942 0%, #E1E35E 100%);
}

.p-about__profile {
  margin-top: 2.5rem;
  margin-bottom: 5.625rem;
}
@media screen and (min-width: 768px) {
  .p-about__profile {
    margin-top: 7.5rem;
    margin-bottom: 9.0625rem;
  }
}

.p-about__profile .l-inner {
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-about__profile .l-inner {
    padding: 0 1.5625rem;
  }
}

.p-about__profile .p-about__title {
  background: none;
  padding: 0;
}

.p-about__profile-table {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-about__profile-table {
    margin-top: 2.8125rem;
  }
}

.p-about__profile-table.c-table dl {
  grid-template-columns: 1fr;
  padding: 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .p-about__profile-table.c-table dl {
    grid-template-columns: 10.9375rem 1fr;
    padding: 2.5rem 1.875rem;
  }
}

.p-entry {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 137, 66, .1)), to(rgba(225, 227, 94, .1)));
  background: linear-gradient(90deg, rgba(0, 137, 66, .1) 0%, rgba(225, 227, 94, .1) 100%);
}
@media screen and (min-width: 768px) {
  .p-entry {
    padding-top: 5.9375rem;
    padding-bottom: 4.1875rem;
  }
}

.p-entry__title {
  text-align: center;
}

.p-entry__form {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-entry__form {
    margin-top: 4.8125rem;
  }
}

/* フォーム全体のテーブルスタイル */
.contact-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.contact-table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .contact-table tr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.9375rem;
  }
}
.contact-table tr:nth-child(n+2) {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .contact-table tr:nth-child(n+2) {
    margin-top: 0.9375rem;
  }
}

.contact-table th, .contact-table td {
  padding: 0;
}

.contact-table th {
  width: 100%;
  vertical-align: top;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .contact-table th {
    font-size: 1rem;
    width: 24%;
    padding-top: 0.625rem;
  }
}

.contact-table th p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .contact-table th p {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
}

.contact-table td {
  width: 100%;
}

.contact-table td.flex-row p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .contact-table td.flex-row p {
    gap: 1.25rem;
  }
}

.contact-table td p {
  margin-bottom: 0.3125rem;
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.contact-table td p.note {
  display: block;
  margin-top: 1.25rem;
  margin-bottom: 1.0625rem;
  font-weight: 400;
}
.contact-table td p .wpcf7-form-control-wrap {
  max-width: 10rem;
}
@media screen and (min-width: 768px) {
  .contact-table td p .wpcf7-form-control-wrap {
    max-width: 14.3125rem;
  }
}

.address-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .address-wrap {
    gap: 1.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.address-row {
  margin-bottom: 0.4375rem;
}
.address-row:last-child {
  margin-bottom: 0.875rem;
}

/* 必須ラベル */
.must {
  background: -webkit-gradient(linear, left top, right top, from(#008942), to(#E1E35E));
  background: linear-gradient(90deg, #008942 0%, #E1E35E 100%);
  border-radius: 4px;
  color: #fff;
  font-size: 0.6875rem;
  padding: 0.125rem 0.5rem;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .must {
    font-size: 0.8125rem;
    padding: 0.375rem 1.125rem;
  }
}

/* 入力欄の幅調整 */
.contact-table input[type=text],
.contact-table input[type=email],
.contact-table input[type=tel],
.contact-table textarea {
  width: 100%;
  padding: 0.9375rem;
  border: none;
  border-radius: 10px;
}

.contact-table input[type=radio] {
  width: 0.9375rem;
  height: 0.9375rem;
  cursor: pointer;
  accent-color: #008942;
}
.contact-table input[type=radio]:checked {
  accent-color: #008942;
}

.contact-table textarea {
  padding: 0.9375rem 1.25rem;
  height: 11.3125rem;
}

.wpcf7-select {
  padding: 0.9375rem 0.625rem;
  padding-right: 2.5rem;
  border: none;
  width: 100%;
  border-radius: 10px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2300381B' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9375rem center;
  background-size: 0.75rem 0.5rem;
  color: #00381B;
}
@media screen and (min-width: 768px) {
  .wpcf7-select {
    width: 14.3125rem !important;
  }
}

.contact-table .short1 {
  width: 7.5rem !important;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .contact-table .short1 {
    width: 12.5rem !important;
  }
}

.contact-table .short {
  width: 3.75rem !important;
  display: inline-block;
  margin-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .contact-table .short {
    width: 5.625rem !important;
  }
}

.contact-table .address1 {
  width: 100% !important;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .contact-table .address1 {
    width: 14.3125rem !important;
  }
}

.wpcf7-checkbox {
  display: block;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .wpcf7-checkbox {
    margin-top: 0.9375rem;
  }
}

.wpcf7-list-item {
  margin-left: 0;
  margin-right: 0.3125rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .wpcf7-list-item {
    margin-left: 0.9375rem;
    margin-right: 0;
  }
}

.wpcf7-list-item input[type=checkbox] {
  cursor: pointer;
}

.wpcf7-list-item.first {
  margin-left: 0;
}

.wpcf7-list-item-label {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .wpcf7-list-item-label {
    font-size: 1rem;
  }
}

.wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label {
  font-size: 0.8125rem;
  line-height: 3.1;
}

.wpcf7-form-control.wpcf7-radio input {
  margin: 0;
}

.sub-label-time {
  margin-top: 1.25rem;
  padding-top: 0.625rem;
  border-top: 1px solid #00381B;
}

/* 送信ボタン */
.submit-btn {
  text-align: center;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .submit-btn {
    margin-top: 3.4375rem;
  }
}

.submit-btn input[type=submit] {
  -webkit-appearance: none; /* iOS独自のスタイルをリセット */
  -moz-appearance: none;
       appearance: none;
  background-color: #00381B;
  color: white;
  padding: 0.9375rem 5rem;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .submit-btn input[type=submit] {
    font-size: 1.25rem;
    line-height: 1.5;
    padding: 1.5625rem 9.625rem;
  }
}

.wpcf7-spinner {
  display: none;
}

.p-faq {
  padding: 3.125rem 0 5.625rem;
}
@media screen and (min-width: 768px) {
  .p-faq {
    padding: 5.625rem 0 9.1875rem;
  }
}

.p-faq__links {
  display: grid;
  -webkit-column-gap: 1.875rem;
     -moz-column-gap: 1.875rem;
          column-gap: 1.875rem;
  row-gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-faq__links {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.25rem;
  }
}

.p-faq__link a {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
  padding: 0.8125rem 0.625rem;
  border-radius: 15px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-faq__link a {
    font-size: 1rem;
    line-height: 1;
    padding: 1.4375rem 1.875rem;
  }
}

.p-faq__link a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.625rem;
  height: 0.5rem;
  background-color: #00381B;
  -webkit-mask-image: url(../img/common/down-arrow.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-image: url(../img/common/down-arrow.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
}
@media screen and (min-width: 768px) {
  .p-faq__link a::before {
    right: 1.8125rem;
    width: 1.03125rem;
    height: 0.625rem;
  }
}

.p-faq__container {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-faq__container {
    margin-top: 3.875rem;
  }
}

.p-faq__contents {
  scroll-margin-top: 4.6875rem;
}
@media screen and (min-width: 768px) {
  .p-faq__contents {
    scroll-margin-top: 9.375rem;
  }
}

.p-faq__contents:nth-child(n+2) {
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-faq__contents:nth-child(n+2) {
    margin-top: 5.625rem;
  }
}

.p-faq__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.2em;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #00381B;
}
@media screen and (min-width: 768px) {
  .p-faq__title {
    font-size: 1.125rem;
    line-height: 1.4;
    padding-bottom: 0.9375rem;
  }
}

.p-faq__content {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-faq__content {
    margin-top: 1.875rem;
  }
}

.p-faq__item {
  position: relative;
}

.p-faq__item:nth-child(n+2) {
  margin-top: 1.625rem;
}
@media screen and (min-width: 768px) {
  .p-faq__item:nth-child(n+2) {
    margin-top: 1.4375rem;
  }
}

.p-faq__item-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 0.6875rem 1.875rem 0.6875rem 2.0625rem;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.8666666667;
  letter-spacing: 0.1em;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-faq__item-title {
    font-size: 1.125rem;
    line-height: 3.3333333333;
    letter-spacing: 0.2em;
    padding: 0.25rem 3.75rem;
    border-radius: 30px;
  }
}

.p-faq__item-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.9375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.8125rem;
  height: 0.8125rem;
  background-color: #00381B;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .p-faq__item-title::before {
    left: 1.875rem;
    width: 1rem;
    height: 1rem;
  }
}

.p-faq__item-title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.3125rem;
  height: 0.3125rem;
  background: url(../img/common/arrow.svg) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-faq__item-title::after {
    left: 2.25rem;
    width: 0.39375rem;
    height: 0.39375rem;
  }
}

.p-faq__item-title.open::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  left: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-faq__item-title.open::after {
    left: 2.1875rem;
  }
}

.p-faq__item-body {
  display: none;
  padding: 0.9375rem 0 0;
  border-top: none;
}
@media screen and (min-width: 768px) {
  .p-faq__item-body {
    padding: 0.9375rem 3.75rem 0;
  }
}

.p-faq__item-body-wrap ul {
  margin-top: 0.625rem;
  list-style: disc;
  padding-left: 1.25rem;
}

.p-faq__item-body-wrap li {
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #00381B;
}
@media screen and (min-width: 768px) {
  .p-faq__item-body-wrap li {
    font-size: 1rem;
    line-height: 2.5;
  }
}

.p-faq__item-body p {
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #00381B;
}
@media screen and (min-width: 768px) {
  .p-faq__item-body p {
    font-size: 1rem;
    line-height: 2.5;
  }
}

.p-faq__item-body a {
  text-decoration: underline;
  font-weight: 700;
}

.p-faq__item-title.open p {
  position: relative;
  z-index: 1;
}

.p-footer {
  padding: 3.125rem 0 10.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-footer {
    background: #fff;
    padding: 0;
  }
}

.p-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-footer__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: calc(50% - 50vw);
    max-width: 100%;
    gap: 0;
    padding-left: 1.875rem;
    padding-right: 10rem;
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-footer__inner {
    gap: 3.75rem;
    padding-left: 3.125rem;
    padding-right: 11.5625rem;
  }
}

.p-footer__left {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__left {
    text-align: left;
    display: block;
  }
}

.p-footer__logo {
  color: #fff;
  font-size: 3.75rem;
  font-weight: 800;
}

.p-footer__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-footer__logo a {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.p-footer__logo a img {
  margin-inline: auto;
  max-width: 13rem;
}
@media screen and (min-width: 768px) {
  .p-footer__logo a img {
    margin-inline: unset;
    max-width: 14.8125rem;
  }
}

.p-footer__logo span {
  font-size: 1.3125rem;
  font-weight: 400;
  letter-spacing: 0;
}

.p-footer__site {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.15em;
  padding-right: 0.9rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-footer__site {
    font-size: 1rem;
  }
}

.p-footer__site::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.75rem;
  height: 0.9375rem;
  background: url(../img/common/link.svg) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  .p-footer__site::after {
    width: 0.75rem;
    height: 0.9375rem;
  }
}

.p-footer__btn {
  margin-top: 2.5rem;
}

.p-footer__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-footer__nav {
    display: block;
  }
}

.p-footer__nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-items {
    gap: 3.125rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
@media screen and (min-width: 1440px) {
  .p-footer__nav-items {
    gap: 3.125rem;
  }
}

.p-footer__nav-item {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-item {
    padding-top: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.15em;
  }
}
@media screen and (min-width: 1440px) {
  .p-footer__nav-item {
    font-size: 1rem;
  }
}

.p-footer__nav-item span {
  display: inline-block;
  padding-bottom: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.p-footer__nav-item a:hover {
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .p-footer__nav-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 0.625rem;
    height: 0.625rem;
    background: #fff;
    border-radius: 50%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
  }
}

.p-footer__nav-item:hover::before {
  opacity: 1;
}

.p-footer__link {
  margin-top: 3.3125rem;
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-decoration: underline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-footer__link {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    margin-top: 0.875rem;
    font-size: 0.9375rem;
    text-align: right;
    text-decoration: none;
  }
}

.p-footer__copyright {
  margin-top: 3.4375rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.16em;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    margin-top: 0.625rem;
    text-align: left;
  }
}

.p-head {
  position: relative;
}

.p-head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-head__container {
  position: absolute;
  bottom: -1.875rem;
  left: 0.9375rem;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-head__container {
    left: 3.125rem;
    bottom: 6%;
  }
}
@media screen and (min-width: 1440px) {
  .p-head__container {
    left: 12.25rem;
  }
}

.p-head__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 375/150;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (min-width: 768px) {
  .p-head__img img {
    aspect-ratio: 1512/393;
  }
}

.p-head__title {
  position: relative;
}

.p-head__title span {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-head__title span {
    font-size: 2.5rem;
    line-height: 1.5;
  }
}

.p-head__title span.p-head__title-en {
  display: block;
  color: #fff;
  font-size: 0.8125rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.075em;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-head__title span.p-head__title-en {
    font-size: 1.25rem;
  }
}

.p-head__nav {
  margin-top: 0.9375rem;
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 2.6666666667;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-head__nav {
    margin-top: 0;
    color: #fff;
    font-size: 0.9375rem;
    line-height: 2.1333333333;
  }
}

.p-head__nav a {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .p-head__nav a {
    text-decoration: none;
  }
}

.p-head__nav .p-head__current-item {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-head__nav .p-head__current-item {
    display: inline-block;
  }
}

.p-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 0.5rem 0 0 0.9375rem;
  background: #fff;
  height: 3.4375rem;
}
@media screen and (min-width: 768px) {
  .p-header {
    position: fixed;
    padding: 0 0 0 3.125rem;
    height: 7.5625rem;
  }
}

.home .p-header {
  background: transparent;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .home .p-header {
    background: #fff;
  }
}

.p-header__inner {
  max-width: 86.25rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 100%;
    margin-right: 0;
    max-width: 100%;
  }
}

.p-header__logo {
  position: relative;
  z-index: 102;
  color: #fff;
  font-size: 2.125rem;
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    font-size: 3.75rem;
    width: 15rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-header__logo {
    width: 18.3125rem;
  }
}

.p-header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  max-width: 8.875rem;
}
@media screen and (min-width: 768px) {
  .p-header__logo a {
    max-width: 15rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-header__logo a {
    max-width: 18.3125rem;
  }
}

.p-header__logo span {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-header__logo span {
    font-size: 1.3125rem;
  }
}

.p-header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    display: block;
  }
}

.p-header__wrapper {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  width: 100vw;
  height: 100vh;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-header__wrapper {
    display: contents;
  }
}

.p-header__nav-items {
  padding: 7.875rem 0.9375rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.4375rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-header__nav-items {
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
    height: 100%;
  }
}

.p-header__nav-item {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.15em;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-header__nav-item span {
  display: inline-block;
  padding-bottom: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

@media screen and (min-width: 768px) {
  .p-header__nav-item:not(.p-header__nav-item--btn) {
    margin-right: 1.875rem;
  }
}
@media screen and (min-width: 1440px) {
  .p-header__nav-item:not(.p-header__nav-item--btn) {
    margin-right: 2.9375rem;
  }
}

.p-header__nav-item--btn {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header__nav-item--btn {
    display: block;
    height: 100%;
    color: #fff;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 10rem;
    min-width: 10rem;
  }
}

.p-header__nav-item--btn2 {
  background: -webkit-gradient(linear, left top, right top, from(#EF634A), to(#FAC553));
  background: linear-gradient(90deg, #EF634A 0%, #FAC553 100%);
}

.p-header__nav-item--btn:hover {
  opacity: 0.7;
}

.p-header__nav-item--btn a {
  display: block;
  width: 100%;
  padding: 3.3125rem 1.3125rem 3.3125rem 1.3125rem;
  font-size: 0.9375rem;
  letter-spacing: 0.15em;
  text-align: center;
}

.p-header__nav-item.p-header__nav-item--btn span {
  padding: 0;
  padding-right: 1.25rem;
  color: #fff;
  -webkit-text-fill-color: #fff;
  position: relative;
}

.p-header__nav-item.p-header__nav-item--btn span::before {
  content: "";
  position: absolute;
  top: 56%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 0.75rem;
  height: 0.625rem;
  z-index: 1;
  background: url(../img/common/arrow-white.svg) no-repeat center/contain;
}

.p-header__hamburger {
  width: 3.4375rem;
  height: 3.4375rem;
  position: fixed;
  z-index: 102;
  right: 0;
  top: 0;
  padding-right: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger {
    display: none;
  }
}

.p-header__hamburger-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.p-header__hamburger span {
  width: 0.875rem;
  height: 0.0625rem;
  background: #fff;
  display: block;
  border-radius: 0.125rem;
  margin-left: auto;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-header__hamburger span:nth-child(2) {
  width: 1.25rem;
  margin-top: 6px;
  margin-bottom: 6px;
}

.p-header__hamburger.open .p-header__hamburger-wrap {
  display: block;
  background: none;
}

.p-header__hamburger.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
  width: 1.25rem;
  background: #fff;
}

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

.p-header__hamburger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: -6px;
  width: 1.25rem;
  background: #fff;
}

.p-header__hamburger p {
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.p-header__hamburger .p-header__wrapper .l-bg {
  display: none;
}

.p-header__hamburger.open, .p-header__wrapper .l-bg {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger.open, .p-header__wrapper .l-bg {
    display: none;
  }
}

.p-header__link {
  margin-top: 3.875rem;
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-decoration: underline;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-header__link {
    display: none;
  }
}

.p-header__copyright {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-header__copyright {
    display: none;
  }
}

.p-interview {
  margin-top: 3.25rem;
}
@media screen and (min-width: 768px) {
  .p-interview {
    margin-top: 5.625rem;
  }
}

.p-interview .c-card__name {
  color: #fff;
}

.p-interview .c-card__body::after {
  background: #fff;
}

.p-interview__cards {
  display: grid;
}
@media screen and (min-width: 768px) {
  .p-interview__cards {
    max-width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-jobs {
  margin-bottom: 5.625rem;
}
@media screen and (min-width: 768px) {
  .p-jobs {
    margin-bottom: 9.375rem;
  }
}

.p-jobs__container {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-jobs__container {
    margin-top: 5.625rem;
  }
}

.p-jobs__title {
  text-align: center;
}

.p-job__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8125rem;
  -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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-job__tabs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 3.125rem;
  }
}

.p-job__tab a {
  display: inline-block;
  background: -webkit-gradient(linear, left top, right top, from(#008942), to(#E1E35E));
  background: linear-gradient(90deg, #008942 0%, #E1E35E 100%);
  color: #fff;
  padding: 0.9375rem 7.1875rem;
  border-radius: 160px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0.075em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-job__tab a {
    font-size: 1.125rem;
    line-height: 1.6666666667;
    padding: 1.125rem 7.1875rem;
  }
}

.p-job__tab:not(.is-active) a {
  background: #fff;
  color: #008942;
  border: 2px solid #008942;
}

.p-job__tab.is-active a {
  background: -webkit-gradient(linear, left top, right top, from(#008942), to(#E1E35E));
  background: linear-gradient(90deg, #008942 0%, #E1E35E 100%);
  color: #fff;
}

.p-job__content {
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-job__content.is-active {
  display: block;
  opacity: 1;
}

.p-job__table {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-job__table {
    margin-top: 2.8125rem;
  }
}

.p-job__table dl {
  display: grid;
  gap: 1.25rem;
  padding: 1.25rem 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-job__table dl {
    grid-template-columns: 19.375rem 1fr;
    gap: 0;
    padding: 2.5rem 0;
  }
}

.p-job__table dl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(#008942), to(#E1E35E));
  background: linear-gradient(90deg, #008942 0%, #E1E35E 100%);
}

.p-job__table dt {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .p-job__table dt {
    font-size: 1rem;
    line-height: 1.25;
    padding-left: 1.875rem;
  }
}

.p-job__table dd {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-job__table dd {
    font-size: 1rem;
  }
}

.p-job__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-job__list {
    gap: 0.9375rem;
  }
}

.p-job__list--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-job__list--row {
    gap: 0.5rem 1.5rem;
  }
}

.p-job__list-item {
  position: relative;
  padding-left: 0.9375rem;
}

.p-job__list-item::before {
  content: "";
  position: absolute;
  top: 0.375rem;
  left: 0;
  width: 0.625rem;
  height: 0.625rem;
  background: -webkit-gradient(linear, left top, right top, from(#008942), to(#E1E35E));
  background: linear-gradient(90deg, #008942 0%, #E1E35E 100%);
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .p-job__list-item::before {
    top: 0.5rem;
  }
}

.p-job__flow-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 1.25rem;
  margin-bottom: 1.5625rem;
}

.p-job__flow-item {
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 137, 66, .1)), to(rgba(225, 227, 94, .1)));
  background: linear-gradient(90deg, rgba(0, 137, 66, .1) 0%, rgba(225, 227, 94, .1) 100%);
  border-radius: 20px;
  padding: 1.25rem;
  margin-bottom: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-job__flow-item {
    padding: 1.875rem;
    margin-bottom: 2.5rem;
  }
}

.p-job__flow-item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -25px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 25px solid #F1F7ED;
}

.p-job__flow-item:last-child::after {
  display: none;
}

.p-job__flow-num {
  font-size: 1.875rem;
  font-family: "DIN Alternate", sans-serif;
  line-height: 1.3333333333;
  letter-spacing: 0;
  font-weight: 700;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: -webkit-gradient(linear, left top, right top, from(#008942), to(#E1E35E));
  background: linear-gradient(90deg, #008942 0%, #E1E35E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.p-job__flow-body {
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-job__flow-body img {
  margin-top: 0.625rem;
  max-width: 9.375rem;
}
@media screen and (min-width: 768px) {
  .p-job__flow-body img {
    margin-top: 1.4375rem;
    max-width: 12.5625rem;
  }
}

.p-job__flow-title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-job__flow-title {
    font-size: 1rem;
    line-height: 1.5625;
    letter-spacing: 0.2em;
  }
}

.p-job__flow-text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-job__flow-text {
    font-size: 1rem;
    line-height: 1.4;
  }
}

.p-job__subtitle {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0.4375rem 1.875rem;
  background: -webkit-gradient(linear, left top, right top, from(#008942), to(#E1E35E));
  background: linear-gradient(90deg, #008942 0%, #E1E35E 100%);
  color: #fff;
}

.p-job__items {
  margin-top: 0.4375rem;
  display: grid;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-job__items {
    gap: 0.625rem;
  }
}

.p-job__item {
  display: grid;
  gap: 0.625rem;
  padding: 0.5rem 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-job__item {
    grid-template-columns: 13.6875rem 1fr;
    gap: 0;
  }
}

.p-job__item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 137, 66, .2)), to(rgba(225, 227, 94, .2)));
  background: linear-gradient(90deg, rgba(0, 137, 66, .2) 0%, rgba(225, 227, 94, .2) 100%);
}

.p-job__item-title {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
  padding-left: 0.9375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-job__item-title {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.p-job__item-title::before {
  content: "";
  position: absolute;
  top: 0.375rem;
  left: 0;
  width: 0.625rem;
  height: 0.625rem;
  background: -webkit-gradient(linear, left top, right top, from(#008942), to(#E1E35E));
  background: linear-gradient(90deg, #008942 0%, #E1E35E 100%);
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .p-job__item-title::before {
    top: 0.625rem;
  }
}

.p-job__item-text {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-job__item-text {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.p-job__item-wrap {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-job__item-wrap {
    font-size: 1rem;
  }
}

.p-job__item-wrap.mt-80 {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-job__item-wrap.mt-80 {
    margin-top: 5rem;
  }
}

.p-job__item-wrap span {
  display: inline-block;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.4375rem;
}

.p-job__item-wrap-list:nth-child(n+2) {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-job__item-wrap-list:nth-child(n+2) {
    margin-top: 1.125rem;
  }
}

.p-job__item-wrap-list-title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-job__item-wrap-list-title {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.p-job__item-wrap-list-title::before {
  content: "";
  position: absolute;
  top: 0.375rem;
  left: 0;
  width: 0.625rem;
  height: 0.625rem;
  background: -webkit-gradient(linear, left top, right top, from(#008942), to(#E1E35E));
  background: linear-gradient(90deg, #008942 0%, #E1E35E 100%);
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .p-job__item-wrap-list-title::before {
    top: 0.625rem;
  }
}

.p-job__item-wrap-list-text {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-job__item-wrap-list-text {
    font-size: 1rem;
  }
}

.p-jobs__entry-title {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-jobs__entry-title {
    margin-top: 7.5rem;
  }
}

.p-jobs__entry-btn {
  margin-top: 1.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-jobs__entry-btn {
    margin-top: 3.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-jobs__entry-btn .c-btn-arrow {
    font-size: 1.25rem;
    line-height: 1.5;
    min-width: 37.5rem;
    padding: 1.5625rem;
    letter-spacing: 0.2em;
  }
}

@media screen and (min-width: 768px) {
  .p-jobs__entry-btn .c-btn-arrow::after {
    width: 1.25rem;
    height: 1.875rem;
    right: 2.1875rem;
  }
}

.p-jobs__entry-btn .c-btn-arrow span {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-jobs__entry-btn .c-btn-arrow span {
    font-size: 1rem;
    line-height: 1.25;
  }
}

.p-movie {
  padding-bottom: 5.625rem;
}
@media screen and (min-width: 768px) {
  .p-movie {
    padding-bottom: 9.375rem;
  }
}

.p-movie .l-inner {
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-movie .l-inner {
    padding: 0 1.5625rem;
  }
}

.p-movie__container {
  margin-top: 3.25rem;
  display: grid;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-movie__container {
    margin-top: 5.625rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-movie__item {
  border-radius: 10px;
  padding: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-movie__item {
    padding: 1rem 0.9375rem 1.3125rem;
    border-radius: 20px;
  }
}

.p-movie__item iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 315/226;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-movie__item iframe {
    aspect-ratio: 330/237;
  }
}

.p-movie__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-top: 0.9375rem;
  padding-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-movie__title {
    margin-top: 1rem;
    padding-left: 1.25rem;
  }
}

.p-movie .p-news__pagination {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-movie .p-news__pagination {
    margin-top: 5.625rem;
  }
}

.p-mv {
  width: 100%;
  height: 100vh;
  height: calc(100vh - 4.375rem);
  overflow: hidden;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-mv {
    height: 100vh;
  }
}

.p-mv__img {
  margin-inline: auto;
  position: relative;
  width: 100%;
  height: 100vh;
}

.p-mv__img img {
  width: 100%;
  height: calc(100vh - 4.375rem);
  aspect-ratio: 345/656;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-animation: zoomIn 4s ease-in-out forwards;
          animation: zoomIn 4s ease-in-out forwards;
}
@media screen and (min-width: 768px) {
  .p-mv__img img {
    height: 100vh;
    aspect-ratio: 1512/820;
  }
}

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

@keyframes zoomIn {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.07);
            transform: scale(1.07);
  }
}
.p-mv__title {
  position: absolute;
  top: 13%;
  left: 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-mv__title {
    top: unset;
    bottom: 6%;
  }
}

.p-mv__title span {
  font-size: 0.9875rem;
  font-family: "Helvetica CE 35 Thin", "Helvetica Neue", Helvetica, Arial, serif;
  font-weight: 100;
  line-height: 1;
  letter-spacing: 1em;
  color: #fff;
  display: inline-block;
  padding: 1.125rem 2.125rem 0.875rem 1.875rem;
  mix-blend-mode: normal;
}
@media screen and (min-width: 768px) {
  .p-mv__title span {
    font-size: 1.83125rem;
    padding: 2.125rem 4.625rem 1.625rem 5.625rem;
  }
}

.p-mv__title span:nth-child(n+2) {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-mv__title span:nth-child(n+2) {
    margin-top: 1rem;
  }
}

.p-mv__en {
  position: absolute;
  bottom: 0;
  left: 5%;
  max-width: 21.5625rem;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-mv__en {
    bottom: unset;
    left: unset;
    top: 8.1875rem;
    right: 1%;
    width: min(10.25rem, (100vh - 7.5625rem - 1.25rem) * 164 / 790);
    max-width: 10.25rem;
    max-height: calc(100vh - 8.8125rem);
    height: auto;
  }
}

.p-mv__en img {
  width: 100%;
  height: auto;
  aspect-ratio: 345/254;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .p-mv__en img {
    aspect-ratio: 164/790;
    width: 100%;
    height: 100%;
  }
}

.p-news {
  margin-top: -1.5625rem;
  padding-top: 1.875rem;
  padding-bottom: 5.625rem;
}
@media screen and (min-width: 768px) {
  .p-news {
    margin-top: 0;
    padding-top: 3.25rem;
    padding-bottom: 9.375rem;
  }
}

.p-news .l-inner {
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-news .l-inner {
    padding: 0 1.5625rem;
  }
}

.p-news__items {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-news__items {
    margin-top: 0.3125rem;
  }
}

.p-news__item a {
  display: block;
  padding: 0.8125rem 1.875rem 0.8125rem 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-news__item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
    padding: 2.125rem 5.625rem 2.125rem 1.875rem;
  }
}

.p-news__item a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.3125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.75rem;
  height: 0.625rem;
  background-color: #00381B;
  -webkit-mask-image: url(../img/common/news-arrow.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-image: url(../img/common/news-arrow.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-news__item a::before {
    right: 1.5rem;
  }
}

.p-news__day {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-news__day {
    font-size: 1rem;
  }
}

.p-news__title {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-news__title {
    margin-top: 0;
    line-height: 1.25;
    font-size: 1rem;
    line-height: 1;
  }
}

.p-news__pagination {
  margin-top: 3.75rem;
  text-align: center;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .p-news__pagination {
    margin-top: 3.75rem;
  }
}

.p-news__pagination .nav-links {
  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;
}

.p-news__pagination .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
  color: #00381B;
  width: 3rem;
  height: 3.75rem;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-news__pagination .page-numbers {
    width: 4.6875rem;
    height: 4.6875rem;
    font-size: 1.125rem;
  }
}

.p-news__pagination .page-numbers:hover {
  border-bottom: 2px solid #fff;
}

.p-news__pagination .page-numbers.prev {
  border-radius: 60px 0 0 60px;
}

.p-news__pagination .page-numbers.prev:hover {
  border-bottom: none;
}

.p-news__pagination .page-numbers.next {
  border-radius: 0 60px 60px 0;
}

.p-news__pagination .page-numbers.next:hover {
  border-bottom: none;
}

.p-news__pagination .page-numbers.current {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #00381B;
  color: #fff;
  width: 3rem;
  height: 3.75rem;
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .p-news__pagination .page-numbers.current {
    width: 4.6875rem;
    height: 4.6875rem;
  }
}

.p-news__single {
  padding: 0 0 5.625rem;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .p-news__single {
    padding: 5.5rem 0 9.375rem;
  }
}

.p-news__single .l-inner {
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-news__single .l-inner {
    padding: 0 1.5625rem;
  }
}

.single-news .p-head__container {
  bottom: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .single-news .p-head__container {
    bottom: 6%;
  }
}

.single-news .p-head__nav {
  margin-top: 0;
}

.p-news__single-pagination {
  margin-top: 1.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-news__single-pagination {
    margin-top: 3.75rem;
  }
}

.p-news__single-btn {
  margin-top: 3.75rem;
  text-align: center;
}

.p-news__single .p-news__day {
  margin-top: 0.9375rem;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .p-news__single .p-news__day {
    margin-top: 0;
    text-align: center;
    font-size: 1rem;
  }
}

.p-news__single .p-news__title {
  color: #00381B;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-news__single .p-news__title {
    text-align: center;
    display: block;
    font-size: 2.5rem;
    line-height: 1.25;
    letter-spacing: 0.1em;
    margin-bottom: 3.125rem;
  }
}

.p-news__single .p-news__contents {
  margin-top: 1.875rem;
}

.p-news__single .p-news__contents p {
  margin-top: 1.625rem;
  margin-bottom: 1.875rem;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-news__single .p-news__contents p {
    margin-top: 1.875rem;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    line-height: 2.5;
  }
}

.p-news__single .p-news__contents h4 {
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  padding-bottom: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-news__single .p-news__contents h4 {
    font-size: 1.5625rem;
    line-height: 1.2;
    letter-spacing: 0.05em;
    padding: 1.25rem 0;
  }
}

.p-news__single .p-news__contents h5 {
  margin-top: 1.875rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  display: inline;
}
@media screen and (min-width: 768px) {
  .p-news__single .p-news__contents h5 {
    margin-top: 2.5rem;
    font-size: 1rem;
    line-height: 2.5;
  }
}

.p-news__single .p-news__contents .wp-block-image {
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-news__single .p-news__contents .wp-block-image {
    margin-top: 3.75rem;
    margin-bottom: 2.5rem;
  }
}

.p-news__single .p-news__contents .wp-block-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 345/154;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-news__single .p-news__contents .wp-block-image img {
    aspect-ratio: 1120/500;
  }
}

.p-privacypolicy {
  margin-top: 3.4375rem;
  margin-bottom: 6.5625rem;
}
@media screen and (min-width: 768px) {
  .p-privacypolicy {
    margin-top: 5.625rem;
    margin-bottom: 9.375rem;
  }
}

.p-privacypolicy .l-inner {
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-privacypolicy .l-inner {
    padding: 0 1.5625rem;
    max-width: 65.625rem;
  }
}

.p-privacypolicy p:first-child {
  font-size: 0.8125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-privacypolicy p:first-child {
    font-size: 0.9375rem;
    line-height: 2.1333333333;
    letter-spacing: 0.14em;
  }
}

.p-privacypolicy__container {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-privacypolicy__container {
    margin-top: 5rem;
  }
}

.p-privacypolicy h3 {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.2em;
  position: relative;
  z-index: 2;
  margin-top: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-privacypolicy h3 {
    font-size: 1rem;
    line-height: 1.25;
    margin-top: 3.75rem;
  }
}

.p-privacypolicy p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-privacypolicy p {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
    line-height: 2;
    letter-spacing: 0.1em;
  }
}

.p-privacypolicy .wp-block-list li {
  margin-left: 1.25rem;
  font-size: 0.8125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  list-style: decimal;
}
@media screen and (min-width: 768px) {
  .p-privacypolicy .wp-block-list li {
    margin-left: 1.5625rem;
    font-size: 0.9375rem;
    line-height: 2.1333333333;
    letter-spacing: 0.14em;
  }
}

.p-privacypolicy .wp-block-group__inner-container {
  margin-top: 3.75rem;
  border-radius: 30px;
  padding: 2.5rem 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-privacypolicy .wp-block-group__inner-container {
    margin-top: 6.25rem;
    padding: 3.125rem 3.125rem 3.125rem;
  }
}

.p-privacypolicy .wp-block-group__inner-container h4 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.2em;
  text-align: center;
}

.p-privacypolicy .wp-block-group__inner-container p {
  margin-top: 1.25rem;
  color: #00381B;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-privacypolicy .wp-block-group__inner-container p {
    font-size: 0.9375rem;
    line-height: 2;
    letter-spacing: 0.1em;
    text-align: left;
  }
}

.p-privacypolicy__contact-wrap {
  margin-top: 0.9375rem;
  margin-inline: auto;
  border-radius: 15px;
}

.p-privacypolicy__contact-wrap .wp-block-group__inner-container {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.625rem;
  background: none;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .p-privacypolicy__contact-wrap .wp-block-group__inner-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.125rem;
  }
}

.p-privacypolicy__contact-wrap h5 {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-privacypolicy__contact-wrap h5 {
    font-size: 1.0625rem;
    line-height: 2;
    letter-spacing: 0.15em;
  }
}

.p-privacypolicy__contact-wrap a {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3888888889;
  letter-spacing: 0.1em;
  background: #fff;
  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;
  min-width: 19.4375rem;
  min-height: 4.75rem;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-privacypolicy__contact-wrap a {
    min-width: 20.0625rem;
    line-height: 1.25;
    font-size: 1.25rem;
  }
}

.p-privacypolicy__contact-wrap a span {
  position: relative;
  padding-left: 1.875rem;
}

.p-privacypolicy__contact-wrap a span::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  mask-image: url(../img/common/tel.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url(../img/common/tel.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.wp-block-group__inner-container .p-privacypolicy__contact-wrap p {
  margin-top: 0.625rem;
  font-size: 0.8125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  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;
  min-width: 19.4375rem;
  max-width: 19.4375rem;
  min-height: 4.75rem;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .wp-block-group__inner-container .p-privacypolicy__contact-wrap p {
    min-width: 20.0625rem;
    margin-top: 0;
    font-size: 0.9375rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    letter-spacing: 0.14em;
  }
}

.p-privacypolicy__contact-wrap p.mail {
  margin-top: 0;
  font-size: 1.125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.3888888889;
  letter-spacing: 0.1em;
  background: #fff;
  position: relative;
  min-width: 19.4375rem;
  max-width: 19.4375rem;
}
@media screen and (min-width: 768px) {
  .p-privacypolicy__contact-wrap p.mail {
    font-size: 1.25rem;
    line-height: 1.25;
    min-width: 20.0625rem;
    max-width: 20.0625rem;
  }
}

.p-privacypolicy__contact-wrap p.mail a {
  padding-left: 1.25rem;
}
.p-privacypolicy__contact-wrap p.mail::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 1.875rem;
  width: 1.5rem;
  height: 1.5rem;
  mask-image: url(../img/common/mail.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center center;
  -webkit-mask-image: url(../img/common/mail.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center center;
}
@media screen and (min-width: 768px) {
  .p-privacypolicy__contact-wrap p.mail::before {
    left: 1.875rem;
  }
}

.p-read {
  padding: 3.75rem 0 3.75rem;
  color: #fff;
  background: url(../img/top/top_read.png) no-repeat center center/cover;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-read {
    text-align: center;
    padding: 11.3125rem 0 12.8125rem;
  }
}

.p-read::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.p-read::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: #0058C0;
  opacity: 0.3;
}

.p-read__container {
  position: relative;
  z-index: 2;
}

.p-read__title {
  display: inline;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.2em;
  color: #fff;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-read__title {
    font-size: 1.75rem;
    line-height: 2.1428571429;
  }
}

.p-read__text {
  margin-top: 1.875rem;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.8571428571;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-read__text {
    margin-top: 2.0625rem;
    font-size: 1.125rem;
    line-height: 2.3333333333;
  }
}

.p-recruit {
  margin-bottom: 5.625rem;
}
@media screen and (min-width: 768px) {
  .p-recruit {
    margin-bottom: 9.375rem;
  }
}

.p-recruit__title {
  text-align: center;
}

.p-recruit__title:nth-child(n+2) {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-recruit__title:nth-child(n+2) {
    margin-top: 5.625rem;
  }
}

.p-recruit__title .c-section-title3 p.small {
  margin-top: 0.625rem;
}

.p-recruit__wrap {
  padding: 4.125rem 0 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-recruit__wrap {
    padding: 5rem 0 5.625rem;
  }
}

.p-recruit__read {
  display: inline-block;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.2em;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-recruit__read {
    font-size: 2.5rem;
  }
}

.p-recruit__read::before {
  content: "";
  position: absolute;
  top: 43%;
  left: 48%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 4.3125rem;
  height: 4.4375rem;
  border-radius: 60% 40% 70% 50%/50% 60% 40% 60%;
}
@media screen and (min-width: 768px) {
  .p-recruit__read::before {
    top: 47%;
    left: 49.3%;
    width: 6.9375rem;
    height: 7.0625rem;
  }
}

.p-recruit__read::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 4.4375rem;
  height: 4.4375rem;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .p-recruit__read::after {
    width: 7.0625rem;
    height: 7.0625rem;
  }
}

.p-recruit__text {
  margin-top: 1.9375rem;
  display: grid;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-recruit__text {
    margin-top: 3.125rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem;
  }
}

.p-recruit__text p {
  display: inline-block;
  position: relative;
  font-size: 0.9375rem;
  line-height: 1.6666666667;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-recruit__text p {
    font-size: 1.25rem;
    line-height: 1.25;
    white-space: nowrap;
  }
}

.p-recruit__text span {
  display: inline-block;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .p-recruit__text span {
    margin-bottom: 1.75rem;
    font-size: 3.125rem;
    line-height: 1;
  }
}

.p-recruit__container {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-recruit__container {
    margin-top: 5.625rem;
  }
}

.p-recruit__container .l-inner {
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-recruit__container .l-inner {
    padding: 0 1.5625rem;
    max-width: 81.0625rem;
  }
}

.p-recruit-search {
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 137, 66, .2)), to(rgba(225, 227, 94, .2)));
  background: linear-gradient(90deg, rgba(0, 137, 66, .2) 0%, rgba(225, 227, 94, .2) 100%);
  padding: 1.875rem 1.25rem;
  border-radius: 20px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-search {
    margin-top: 5.3125rem;
    padding: 3.5625rem 3.9375rem 5.625rem;
  }
}

.p-recruit-search__inner {
  max-width: 70.0625rem;
  margin: 0 auto;
}

/* 共通ブロック */
.p-recruit-block {
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-block {
    margin-bottom: 3.8125rem;
  }
}

.p-recruit-block.area {
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-block.area {
    margin-bottom: 0.8125rem;
  }
}

.p-recruit-block__title {
  font-size: 1.125rem;
  line-height: 1.1111111111;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-block__title {
    font-size: 1.5625rem;
    line-height: 1.6;
    margin-bottom: 1.875rem;
  }
}

/* タグ */
.p-recruit-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-recruit-tags {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit-tags.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.625rem;
    padding: 0 1.875rem;
  }
}

.p-recruit-tag {
  border-radius: 999px;
  border: none;
  color: #00381B;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  min-width: 9.0625rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-recruit-tag {
    font-size: 1rem;
    letter-spacing: 0.2em;
    min-width: 13.125rem;
  }
}
.p-recruit-tag input[type=checkbox] {
  width: 0.8125rem;
  height: 0.8125rem;
  cursor: pointer;
  margin: 0;
}

/* エリア */
@media screen and (min-width: 768px) {
  .p-recruit-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem 3.75rem;
  }
}

.p-recruit-area__group {
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-area__group {
    margin-bottom: 0.8125rem;
  }
}

.p-recruit-area__group:first-child {
  grid-column: 1/3;
}

.p-recruit-area__head {
  width: 100%;
  text-align: left;
  padding: 0.875rem 0.625rem;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: none;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(#008942), to(#E1E35E));
  background: linear-gradient(90deg, #008942 0%, #E1E35E 100%);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-area__head {
    font-size: 1.25rem;
    letter-spacing: 0.2em;
    padding: 1.125rem 1.875rem;
  }
}
.p-recruit-area__head input[type=checkbox] {
  width: 0.8125rem;
  height: 0.8125rem;
  cursor: pointer;
  margin: 0;
}

.p-recruit-area__body {
  display: grid;
  padding: 1.25rem 0;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-area__body {
    padding: 1.875rem;
    gap: 1.125rem 1.5625rem;
    grid-template-columns: repeat(3, 1fr);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit-area__group:first-child .p-recruit-area__body {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.125rem 0.3125rem;
  }
}

.p-recruit-area__body .p-recruit-tag {
  min-width: unset;
}

/* ボタン */
.p-recruit-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
  margin-top: 1.875rem;
  max-width: 51.875rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-recruit-actions {
    margin-top: 5.75rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.875rem;
  }
}

.p-recruit-btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 14px;
  border-radius: 30px;
  border: none;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0.1em;
  font-weight: 700;
  cursor: pointer;
  background: #fff;
  color: #00381B;
}
@media screen and (min-width: 768px) {
  .p-recruit-btn {
    padding: 1.5625rem 1.875rem;
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.2em;
  }
}

.p-recruit-btn--primary {
  background: #00381B;
  color: #fff;
}

.p-recruit-result {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-result {
    margin-top: 5.625rem;
    max-width: 70rem;
    margin-inline: auto;
  }
}

.p-recruit-result__title {
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.2em;
  font-weight: 700;
  border-bottom: 1px solid #00381B;
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-result__title {
    font-size: 1.5625rem;
    line-height: 1.6;
  }
}

.p-recruit-result__text {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-recruit-result__text {
    margin-top: 1.875rem;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.1em;
  }
}

.p-recruit-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-card {
    margin-top: 1.875rem;
  }
}

.p-recruit-card:nth-child(n+4) {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-card:nth-child(n+4) {
    margin-top: 3.4375rem;
  }
}

/* タイトル */
.p-recruit-card__title {
  margin-bottom: 8px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 137, 66, .2)), to(rgba(225, 227, 94, .2)));
  background: linear-gradient(90deg, rgba(0, 137, 66, .2) 0%, rgba(225, 227, 94, .2) 100%);
}
@media screen and (min-width: 768px) {
  .p-recruit-card__title {
    gap: 0;
  }
}

/* NEW */
.p-recruit-card__new {
  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: #fff;
  font-size: 1.125rem;
  font-family: "DIN Alternate", sans-serif;
  line-height: 2.2222222222;
  letter-spacing: 0.05em;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(#EF634A), to(#FAC553));
  background: linear-gradient(90deg, #EF634A 0%, #FAC553 100%);
  border-radius: 20px 0px 0px 20px;
  padding: 0.9375rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-card__new {
    font-size: 1.375rem;
    line-height: 1.8181818182;
    padding: 1.25rem 1.625rem;
  }
}

.p-recruit-card__title-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9375rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-card__title-text {
    font-size: 1.25rem;
    letter-spacing: 0.2em;
    padding: 1.25rem 1.625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit-card__inner {
    padding: 0 1.875rem;
  }
}

/* メタ */
.p-recruit-card__meta {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  letter-spacing: 0.05em;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-card__meta {
    font-size: 0.875rem;
    line-height: 1.4;
    letter-spacing: 0.2em;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit-card__day {
    padding-right: 0.625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit-card__number {
    position: relative;
    padding-left: 0.625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-recruit-card__number::before {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
    width: 1px;
    height: 1.25rem;
    background: #00381B;
  }
}

/* ラベル */
.p-recruit-card__labels {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.625rem;
}

.p-recruit-card__labels li {
  background: #fff;
  color: #008942;
  border: 1px solid #008942;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-recruit-card__labels li {
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.2em;
    padding: 0.5rem 0.75rem;
  }
}

.p-recruit-card__body {
  margin-top: 1.25rem;
  display: grid;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-card__body {
    margin-top: 1.875rem;
    grid-template-columns: 1fr 1fr;
    gap: 0.1875rem;
  }
}

.p-recruit-card__wrap dl {
  display: grid;
  grid-template-columns: 6.25rem 1fr;
  gap: 1.25rem 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-card__wrap dl {
    grid-template-columns: 7.5rem 1fr;
    gap: 1.875rem;
    padding-right: 1.5625rem;
  }
}

.p-recruit-card__wrap dl:nth-child(n+2) {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-card__wrap dl:nth-child(n+2) {
    margin-top: 1.875rem;
  }
}

.p-recruit-card__wrap dt {
  font-size: 0.875rem;
  font-weight: 700;
  background: #00381B;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0.125rem 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-card__wrap dt {
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.2em;
    padding: 0.5625rem 0.3125rem;
    border-radius: 10px;
  }
}

.p-recruit-card__wrap dd {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  margin-top: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-card__wrap dd {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.2em;
    margin-top: 0.3125rem;
  }
}

/* MORE STEP */
.p-recruit-card__more {
  margin-top: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-recruit-card__more {
    margin-top: 0.9375rem;
  }
}

.p-recruit-card__more span {
  display: inline-block;
  font-weight: 700;
  font-size: 1.875rem;
  font-family: "DIN Alternate", sans-serif;
  line-height: 1.3333333333;
  letter-spacing: 0;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#008942), to(#E1E35E));
  background: linear-gradient(90deg, #008942 0%, #E1E35E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* ボタン */
.p-recruit-card__actions {
  margin-top: -1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  gap: 0.625rem;
  background: rgba(167, 167, 167, .1);
  border-radius: 20px;
  padding: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-card__actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 2.25rem 0 1.875rem;
    gap: 1rem;
  }
}

.p-recruit-btn-outline {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 999px;
  border: 1px solid #008942;
  color: #008942;
  font-weight: 700;
  text-decoration: none;
  background: #fff;
  max-width: 18.75rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-btn-outline {
    padding: 1.0625rem;
  }
}

.p-recruit-btn-primary {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 999px;
  background: -webkit-gradient(linear, left top, right top, from(#008942), to(#E1E35E));
  background: linear-gradient(90deg, #008942 0%, #E1E35E 100%);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  max-width: 18.75rem;
}
@media screen and (min-width: 768px) {
  .p-recruit-btn-primary {
    padding: 1.0625rem;
  }
}

.p-recruit__pagination {
  margin-top: 3.75rem;
  text-align: center;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .p-recruit__pagination {
    margin-top: 5.625rem;
  }
}

.p-recruit__pagination .nav-links {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 137, 66, .2)), to(rgba(225, 227, 94, .2)));
  background: linear-gradient(90deg, rgba(0, 137, 66, .2) 0%, rgba(225, 227, 94, .2) 100%);
  border-radius: 60px;
}

.p-recruit__pagination .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #00381B;
  width: 3rem;
  height: 3.75rem;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-recruit__pagination .page-numbers {
    width: 4.6875rem;
    height: 4.6875rem;
    font-size: 1.125rem;
  }
}

.p-recruit__pagination .page-numbers:hover {
  border-bottom: 2px solid #fff;
}

.p-recruit__pagination .page-numbers.prev {
  border-radius: 60px 0 0 60px;
}

.p-recruit__pagination .page-numbers.prev:hover {
  border-bottom: none;
}

.p-recruit__pagination .page-numbers.next {
  border-radius: 0 60px 60px 0;
}

.p-recruit__pagination .page-numbers.next:hover {
  border-bottom: none;
}

.p-recruit__pagination .page-numbers.current {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #00381B;
  color: #fff;
  width: 3rem;
  height: 3.75rem;
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .p-recruit__pagination .page-numbers.current {
    width: 4.6875rem;
    height: 4.6875rem;
  }
}

.p-single-interview {
  padding-top: 3.25rem;
}
@media screen and (min-width: 768px) {
  .p-single-interview {
    padding-top: 7.5rem;
  }
}

.p-single-interview .p-head__nav {
  text-align: left;
  margin-top: 0.125rem;
  margin-left: unset;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-single-interview .p-head__nav {
    text-align: right;
    margin-right: unset;
    margin-left: auto;
    margin-top: 1.25rem;
  }
}

.p-single-interview__head-wrap {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-single-interview__head-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 46.3392857143%;
  }
}

.p-single-interview__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-single-interview__inner {
    gap: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-single-interview .l-inner {
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-single-interview .l-inner {
    padding: 0 1.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-single-interview__img {
    width: 49.9107142857%;
  }
}

.p-single-interview__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 345/229;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-single-interview__img img {
    aspect-ratio: 559/404;
  }
}

.p-single-interview__body-wrap2 {
  margin-top: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-single-interview__body-wrap2 {
    margin-top: 0.9375rem;
    gap: 1.25rem;
  }
}

.p-single-interview__comment span {
  color: #008DE4;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.2em;
  display: inline-block;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .p-single-interview__comment span {
    font-size: 1.5rem;
    line-height: 2.0833333333;
    letter-spacing: 0.1em;
  }
}

.p-single-interview__body-wrap-facility {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  color: #00381B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-single-interview__body-wrap-facility {
    margin-top: 1.875rem;
    font-size: 1rem;
    line-height: 1.25;
  }
}

.p-single-interview__body-wrap-facility::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  background: #00381B;
  opacity: 0.2;
}

.p-single-interview__year {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5384615385;
  letter-spacing: 0.05em;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-single-interview__year {
    display: block;
    font-size: 1rem;
    line-height: 1.2;
  }
}

.p-single-interview__department {
  padding: 0.25rem 1.25rem;
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-single-interview__department {
    font-size: 1rem;
    padding: 0.25rem 1.875rem;
  }
}

.p-single-interview__name {
  margin-top: 0.9375rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-single-interview__name {
    font-size: 1.3125rem;
  }
}

.p-single-interview__subcomment {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-single-interview__subcomment {
    margin-top: 0.9375rem;
    font-size: 1rem;
    line-height: 2.5;
  }
}

.p-single-interview__qa {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-single-interview__qa {
    margin-top: 7rem;
  }
}

.p-single-interview__qa-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-single-interview__qa-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-single-interview__qa-img {
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-single-interview__qa-img {
    margin-left: unset;
    width: 49.9107142857%;
  }
}

.p-single-interview__qa-img img {
  max-width: 34.9375rem;
  width: 100%;
  height: auto;
  aspect-ratio: 360/250;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-single-interview__qa-img img {
    aspect-ratio: 559/404;
  }
}

.p-single-interview__qa-body {
  margin-top: -2.375rem;
  padding: 0;
  position: relative;
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-single-interview__qa-body {
    margin-top: 0;
    margin-right: unset;
    width: 49.1071428571%;
    padding: 2.5rem 0 4rem 2.5rem;
  }
}

.p-single-interview__qa-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 3.75;
  letter-spacing: 0.2em;
  color: #fff;
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-single-interview__qa-title {
    font-size: 1.25rem;
    line-height: 3;
    padding: 0.3125rem 6.25rem 0.3125rem 5.125rem;
    margin-left: -5rem;
  }
}

.p-single-interview__qa-title span {
  display: inline-block;
  margin-right: 0.625rem;
}

.p-single-interview__qa-text {
  margin-top: 0.9375rem;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  padding-right: 0.9375rem;
  padding-left: 3rem;
  text-indent: -1.2em;
}
@media screen and (min-width: 768px) {
  .p-single-interview__qa-text {
    margin-top: 1.5625rem;
    font-size: 1rem;
    line-height: 2.8125;
    padding-left: 2.5em;
    text-indent: -1.2em;
  }
}

.p-single-interview__qa-text span {
  display: inline-block;
  margin-right: 0.625rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .p-single-interview__qa-text span {
    font-size: 1.25rem;
  }
}

.p-single-interview__qa-item:nth-child(odd) {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-single-interview__qa-item:nth-child(odd) {
    margin-top: 5rem;
  }
}

.p-single-interview__qa-item:nth-child(even) {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-single-interview__qa-item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-top: 5rem;
  }
}

.p-single-interview__qa-item:nth-child(even) .p-single-interview__qa-body {
  margin-right: unset;
}
@media screen and (min-width: 768px) {
  .p-single-interview__qa-item:nth-child(even) .p-single-interview__qa-body {
    padding-left: 0;
  }
}

.p-single-interview__qa-item:nth-child(even) .p-single-interview__qa-title {
  margin-top: 0;
  margin-right: unset;
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-single-interview__qa-item:nth-child(even) .p-single-interview__qa-title {
    margin-right: -5rem;
    margin-left: unset;
  }
}

.p-single-interview__qa-item:nth-child(even) .p-single-interview__qa-text {
  padding-right: 0;
}

.p-single-interview__qa-item:nth-child(even) .p-single-interview__qa-img {
  margin-left: unset;
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-single-interview__qa-item:nth-child(even) .p-single-interview__qa-img {
    margin-right: unset;
  }
}

.p-single-interview__schedule {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-single-interview__schedule {
    margin-top: 5.625rem;
  }
}

.p-single-interview__title {
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-single-interview__title {
    margin-left: unset;
  }
}

.p-single-interview__schedule .c-section-title2 {
  display: inline-block;
  border-radius: 0;
  padding: 0 4.375rem 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-single-interview__schedule .c-section-title2 {
    padding: 0.3125rem 2.5rem;
  }
}

.p-single-interview__schedule .c-section-title2 p {
  font-size: 1rem;
  line-height: 3.75;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .p-single-interview__schedule .c-section-title2 p {
    font-size: 1.25rem;
    line-height: 3;
  }
}

.p-single-interview__schedule-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 1.875rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-single-interview__schedule-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}

.p-single-interview__schedule-contain {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-single-interview__schedule-contain {
    width: 61.9642857143%;
  }
}

@media screen and (min-width: 768px) {
  .p-single-interview__schedule-items {
    margin-top: 2rem;
  }
}

.p-single-interview__schedule-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.875rem;
  padding: 1.5625rem 0;
}
@media screen and (min-width: 768px) {
  .p-single-interview__schedule-item {
    padding: 1.6875rem 1.875rem;
  }
}

.p-single-interview__schedule-time {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.1428571429;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-single-interview__schedule-time {
    font-size: 1rem;
    line-height: 1;
  }
}

.p-single-interview__schedule-body {
  width: 100%;
}
.p-single-interview__schedule-body-title {
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.1428571429;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .p-single-interview__schedule-body-title {
    font-size: 1rem;
    line-height: 1;
  }
}

.p-single-interview__schedule-body-text {
  font-size: 0.8125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-single-interview__schedule-body-text {
    margin-top: 0.625rem;
    font-size: 0.9375rem;
  }
}

.p-single-interview__schedule-img {
  max-width: 36.8125rem;
  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.875rem;
}
@media screen and (min-width: 768px) {
  .p-single-interview__schedule-img {
    width: 30.8035714286%;
    gap: 1.875rem;
  }
}

.p-single-interview__schedule-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 345/250;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-single-interview__voice {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-single-interview__voice {
    margin-top: 1.25rem;
  }
}

.p-single-interview__voice-en {
  display: inline-block;
  font-size: 2.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.075em;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .p-single-interview__voice-en {
    font-size: 3.125rem;
    margin-left: 2.1875rem;
  }
}

.p-single-interview__voice-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9375rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  background: rgba(255, 255, 255, .7);
  border-radius: 20px;
  padding: 0.9375rem 0.9375rem 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-single-interview__voice-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 2.1875rem;
    padding: 2.5rem;
  }
}

.p-single-interview__voice-img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (min-width: 768px) {
  .p-single-interview__voice-img {
    max-width: 11.9375rem;
  }
}

.p-single-interview__voice-img img {
  border-radius: 20px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-single-interview__voice-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (min-width: 768px) {
  .p-single-interview__voice-wrap {
    margin-top: 0.9375rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.25rem;
  }
}

.p-single-interview__voice-wrap2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-single-interview__voice-wrap2 {
    gap: 1.25rem;
  }
}

.p-single-interview__voice-wrap .p-single-interview__department {
  padding: 0.1875rem 0.875rem;
  font-size: 0.8125rem;
  display: inline-block;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-single-interview__voice-wrap .p-single-interview__department {
    padding: 0.4375rem 1.6875rem;
  }
}

.p-single-interview__voice-wrap .p-single-interview__name {
  font-size: 1.0625rem;
  display: inline-block;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-single-interview__voice-wrap .p-single-interview__name {
    margin-top: 0;
  }
}

.p-single-interview__voice-wrap2 .p-single-interview__department {
  margin-bottom: 0;
}

.p-single-interview__voice-body {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-single-interview__voice-body {
    display: block;
  }
}

.p-single-interview__voice-body .p-single-interview__title {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.1111111111;
  letter-spacing: 0.05em;
  margin-left: unset;
}
@media screen and (min-width: 768px) {
  .p-single-interview__voice-body .p-single-interview__title {
    font-size: 1.5625rem;
    line-height: 1.6;
    letter-spacing: 0.2em;
  }
}

.p-single-interview__voice-read {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  font-size: 0.8125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-single-interview__voice-read {
    margin-top: 0.625rem;
    font-size: 1rem;
  }
}

.p-single-interview__voice-message-title {
  margin-top: 1.875rem;
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.2em;
  padding: 0.5625rem 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-single-interview__voice-message-title {
    margin-top: 3.75rem;
    font-size: 1.3125rem;
    line-height: 2.8571428571;
    padding: 0 1.75rem;
  }
}

.p-single-interview__voice-text {
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-single-interview__voice-text {
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 2.5;
  }
}

.p-single-interview__btn {
  text-align: center;
  margin-top: 2.5rem;
}

.p-single-interview__message {
  margin-top: 3.75rem;
  margin-bottom: 1.875rem;
  margin-left: 0.9375rem;
  margin-right: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-single-interview__message {
    margin-top: 5.75rem;
    margin-bottom: 5.625rem;
    margin-left: unset;
    margin-right: unset;
  }
}

.p-single-interview .l-inner.p-single-interview__message-inner {
  background: rgba(255, 255, 255, .7);
  border-radius: 20px;
  padding: 2.5rem 0.9375rem 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-single-interview .l-inner.p-single-interview__message-inner {
    max-width: 69.875rem;
    padding: 2.375rem 3.75rem 2.9375rem;
  }
}

.p-single-interview__message .c-section-title3 span {
  line-height: 1.2;
}

.p-single-interview__message-text {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-single-interview__message-text {
    margin-top: 1.25rem;
    font-size: 1rem;
    line-height: 2.5;
  }
}

.p-single-interview__back-btn {
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-single-interview__back-btn {
    padding-bottom: 0;
    position: fixed;
    right: 3.125rem;
    bottom: 5rem;
    z-index: 200;
  }
}

.p-single-interview .p-top-interview {
  padding-top: 1.5625rem;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-single-interview .p-top-interview {
    padding-top: 3.4375rem;
  }
}

.p-single-interview .p-top-interview__head {
  padding-bottom: 1.875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-single-interview .p-top-interview__head {
    padding-bottom: 4.6875rem;
  }
}

.p-single-interview .swiper-wrapper {
  height: auto;
}

.p-single-interview .p-top-interview__cards .swiper-button-prev,
.p-single-interview .p-top-interview__cards .swiper-button-next {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-single-interview .p-top-interview__cards .swiper-button-prev,
  .p-single-interview .p-top-interview__cards .swiper-button-next {
    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;
  }
}

.p-single-recruit {
  margin-top: 3.25rem;
  margin-bottom: 5.625rem;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .p-single-recruit {
    margin-top: 8.6875rem;
    margin-bottom: 9.375rem;
  }
}

.p-single-recruit .l-inner {
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-single-recruit .l-inner {
    padding: 0 1.5625rem;
  }
}

.p-single-recruit__back-btn {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__back-btn {
    display: block;
    position: fixed;
    right: 3.125rem;
    bottom: 5rem;
    z-index: 200;
  }
}

.p-single-recruit__work-items {
  margin-top: 1.875rem;
  display: grid;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__work-items {
    margin-top: 3.75rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.p-single-recruit__work-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__work-item {
    background: #fff;
  }
}

.p-single-recruit__work-img {
  position: relative;
  z-index: 1;
  height: 100%;
}

.p-single-recruit__work-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 345/239;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__work-img img {
    aspect-ratio: 360/250;
  }
}

.p-single-recruit__work-body {
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__work-body {
    height: 100%;
    margin-top: unset;
    margin-left: unset;
  }
}

.p-single-recruit__work-title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 2.6666666667;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__work-title {
    margin-top: 0.625rem;
    font-size: 1.125rem;
    line-height: 2.2222222222;
    padding-bottom: 0.625rem;
  }
}

.p-single-recruit__work-text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__work-text {
    margin-top: 0.6875rem;
    font-size: 1rem;
    line-height: 2.5;
  }
}

.p-single-recruit__work-item:nth-child(even) .p-single-recruit__work-img {
  margin-right: unset;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__work-item:nth-child(even) .p-single-recruit__work-img {
    margin-left: unset;
  }
}

.p-single-recruit__work-item:nth-child(even) .p-single-recruit__work-body {
  margin-left: unset;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__work-item:nth-child(even) .p-single-recruit__work-body {
    margin-right: unset;
  }
}

.p-single-recruit__interview {
  padding: 1.875rem 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__interview {
    padding: 3.75rem 0;
  }
}

.p-single-recruit__interview-title {
  position: relative;
  z-index: 1;
}

.p-single-recruit__interview-title .c-section-title3 {
  font-size: 1.25rem;
  border-bottom: 1px solid #00381B;
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__interview-title .c-section-title3 {
    font-size: 1.875rem;
    padding-bottom: 0.9375rem;
  }
}

.p-single-recruit__interview-container {
  margin-top: 0.9375rem;
  display: grid;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__interview-container {
    margin-top: 1.875rem;
    grid-template-columns: 34.9375rem 1fr;
    gap: 2.375rem;
  }
}

.p-single-recruit__interview-img {
  overflow: hidden;
}

.p-single-recruit__interview-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 345/239;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__interview-img img {
    aspect-ratio: 559/316;
  }
}

.p-single-recruit__interview-body {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__interview-body {
    margin-top: 1.625rem;
  }
}

.p-single-interview__body-flex {
  margin-top: 0.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-single-interview__body-flex {
    margin-top: 0;
    gap: 1.25rem;
  }
}

.p-single-recruit__interview-body-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.2em;
  display: inline-block;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__interview-body-title {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}

.p-single-recruit__interview-year {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5384615385;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__interview-year {
    margin-top: 0.9375rem;
    font-size: 1rem;
    line-height: 1.25;
  }
}

.p-single-recruit__interview-department {
  padding: 0.3125rem 1.25rem;
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  vertical-align: bottom;
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__interview-department {
    margin-top: 0.5625rem;
    font-size: 1rem;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    padding: 0.3125rem 1.875rem;
  }
}

.p-single-recruit__interview-name {
  margin-top: 1.0625rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__interview-name {
    margin-top: 0.9375rem;
    font-size: 1.25rem;
    line-height: 1;
  }
}

.p-single-recruit__interview-btn {
  margin-top: 0.9375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__interview-btn {
    margin-top: 1.25rem;
    text-align: left;
  }
}

.p-single-recruit__interview-btn .c-btn {
  min-width: 11.625rem;
  max-width: 11.625rem;
  font-size: 0.9375rem;
  line-height: 1.2;
  padding: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__interview-btn .c-btn {
    min-width: 16.125rem;
    max-width: 16.125rem;
    font-size: 1.125rem;
    line-height: 1;
  }
}

.p-single-recruit__interview-container:hover .p-single-recruit__interview-img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.p-single-recruit__interview-container:hover .p-single-recruit__interview-body::after {
  right: -0.3125rem;
}

.p-single-recruit__profile {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__profile {
    margin-top: 5.75rem;
  }
}

.p-single-recruit__profile-table {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__profile-table {
    margin-top: 1.5625rem;
  }
}

.p-single-recruit__flow {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__flow {
    margin-top: 5.9375rem;
  }
}

.p-single-recruit__flow-items {
  margin-top: 1.875rem;
  display: grid;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__flow-items {
    margin-top: 2.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.8125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-single-recruit__flow-items--5 {
    gap: 1.25rem;
  }
}

.p-single-recruit__flow-item {
  padding: 1.25rem 0.9375rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__flow-item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.6875rem;
    padding: 2.5rem 1.125rem 3.125rem;
    border-radius: 20px;
    max-width: 16.8125rem;
  }
}

.p-single-recruit__flow-number {
  display: inline-block;
  color: #fff;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__flow-number {
    font-size: 3.125rem;
    line-height: 1;
  }
}

.p-single-recruit__flow-title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6666666667;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__flow-title {
    font-size: 1.25rem;
    line-height: 1.25;
  }
}

.p-single-recruit__flow-text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__flow-text {
    margin-top: 1.4375rem;
    font-size: 1rem;
    line-height: 2.5;
  }
}

.p-single-recruit__entry {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__entry {
    margin-top: 5.625rem;
  }
}

.p-single-recruit__entry-contents {
  text-align: center;
}

.p-single-recruit__entry-btn {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__entry-btn {
    margin-top: 3.125rem;
  }
}

.p-single-recruit__entry-btn .c-btn-arrow {
  min-width: 13.625rem;
  max-width: 13.625rem;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__entry-btn .c-btn-arrow {
    min-width: 37.5rem;
    max-width: 37.5rem;
  }
}

.p-single-recruit__entry-btn .c-btn-arrow::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__entry-btn .c-btn-arrow::after {
    display: block;
    right: 2.5rem;
    width: 1.25rem;
    height: 1.875rem;
  }
}

.p-single-recruit__entry-other {
  margin-top: 2.375rem;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__entry-other {
    margin-top: 5.625rem;
  }
}

.p-single-recruit__entry-other-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.2em;
  padding-bottom: 0.9375rem;
  border-bottom: 1px solid #1E2E5D;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__entry-other-title {
    font-size: 1.875rem;
    line-height: 1.4;
    padding-bottom: 1.25rem;
  }
}

.p-single-recruit__entry-other-items {
  margin-top: 1.875rem;
  gap: 0.9375rem;
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .p-single-recruit__entry-other-items {
    grid-template-columns: repeat(4, 1fr);
    gap: 3.75rem;
  }
}

.p-single-recruit__entry-other-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 400/210;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-thanks {
  margin-top: 1.5625rem;
  margin-bottom: 5.875rem;
}
@media screen and (min-width: 768px) {
  .p-thanks {
    margin-top: 12.5rem;
    margin-bottom: 9.0625rem;
  }
}

@media screen and (min-width: 768px) {
  .thanks .p-head {
    display: none;
  }
}

.thanks .p-head::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .thanks .p-head::before {
    display: block;
  }
}

.p-thanks .l-inner {
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-thanks .l-inner {
    padding: 0 1.5625rem;
  }
}

.p-thanks__title .c-section-title3.center {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-thanks__title .c-section-title3.center {
    text-align: center;
  }
}

.p-thanks h2 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .p-thanks h2 {
    font-size: 2.5rem;
    text-align: center;
  }
}

.p-thanks p {
  margin-top: 1.875rem;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-thanks p {
    margin-top: 5rem;
    font-size: 0.9375rem;
    text-align: center;
    letter-spacing: 0.1em;
  }
}

.p-thanks .wp-block-columns {
  background: -webkit-gradient(linear, left top, right top, from(rgba(43, 101, 197, .1)), to(rgba(27, 176, 196, .1)));
  background: linear-gradient(90deg, rgba(43, 101, 197, .1) 0%, rgba(27, 176, 196, .1) 100%);
  border-radius: 10px;
  padding: 2.5rem 0.9375rem;
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-thanks .wp-block-columns {
    margin-top: 5.625rem;
    grid-template-columns: 1fr 1fr;
    gap: 1.875rem;
    padding: 3.125rem 10.625rem 2.5rem;
    max-width: 62.5rem;
    margin-inline: auto;
  }
}

.p-thanks .is-layout-flex {
  height: auto;
  width: 100%;
}

.p-thanks .wp-block-button {
  height: auto;
  width: 100%;
}

.p-thanks .wp-block-button {
  text-align: center;
  min-width: 21.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-thanks .wp-block-button {
    min-width: 31.25rem;
  }
}

.p-thanks .wp-block-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.875rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.625rem;
  height: 1rem;
  background: url(../img/common/btn-arrow.svg) no-repeat center/contain;
}

.p-thanks .wp-block-button__link {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  background: #fff;
  -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, .25);
          box-shadow: 0px 4px 20px rgba(0, 0, 0, .25);
  border-radius: 25px;
  padding: 1.1875rem;
  color: #00381B;
}
@media screen and (min-width: 768px) {
  .p-thanks .wp-block-button__link {
    font-size: 1.25rem;
  }
}

.p-thanks__btn {
  text-align: center;
  padding: 0.625rem 0 0.625rem;
  position: relative;
  background: #fff;
  display: block;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-thanks__btn {
    font-size: 1.25rem;
    padding: 1.25rem 0 1.25rem;
  }
}

.p-thanks .wp-block-group {
  margin-top: 3.75rem;
  border-radius: 20px;
  padding: 2.5rem 0.9375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-thanks .wp-block-group {
    margin-top: 5.625rem;
    padding: 3.125rem 0 2.5rem;
    max-width: 62.5rem;
    margin-inline: auto;
    border-radius: 10px;
  }
}

.p-thanks .wp-block-group .p-thanks__contact-wrap {
  background: none;
  padding: 0;
  margin-top: 0;
}

.p-thanks .wp-block-group .p-thanks__contact-wrap .wp-block-group__inner-container {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-thanks .wp-block-group .p-thanks__contact-wrap .wp-block-group__inner-container {
    margin-top: 3.125rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.875rem;
  }
}

.p-thanks .wp-block-group .p-thanks__contact-wrap .wp-block-group__inner-container p {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  background: #fff;
  border-radius: 10px;
  padding: 1.1875rem;
  min-width: 19.4375rem;
  color: #00381B;
  margin-top: 0;
  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;
  min-height: 4.75rem;
}
@media screen and (min-width: 768px) {
  .p-thanks .wp-block-group .p-thanks__contact-wrap .wp-block-group__inner-container p {
    font-size: 1.25rem;
    min-width: 20.0625rem;
    min-height: 6.5625rem;
  }
}

.p-thanks .wp-block-group .p-thanks__contact-wrap .wp-block-group__inner-container .p-thanks__btn p {
  margin-top: 0.375rem;
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.4166666667;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0;
  min-height: unset;
}
@media screen and (min-width: 768px) {
  .p-thanks .wp-block-group .p-thanks__contact-wrap .wp-block-group__inner-container .p-thanks__btn p {
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.4615384615;
  }
}

.p-thanks .wp-block-group .p-thanks__contact-wrap .wp-block-group__inner-container .p-thanks__btn span {
  position: relative;
  padding-left: 1.25rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-thanks .wp-block-group .p-thanks__contact-wrap .wp-block-group__inner-container .p-thanks__btn span {
    padding-left: 2.125rem;
  }
}
.p-thanks .wp-block-group .p-thanks__contact-wrap .wp-block-group__inner-container .p-thanks__btn span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.875rem;
  height: 1.125rem;
  mask-image: url(../img/common/tel.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url(../img/common/tel.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}
@media screen and (min-width: 768px) {
  .p-thanks .wp-block-group .p-thanks__contact-wrap .wp-block-group__inner-container .p-thanks__btn span::before {
    width: 1.1875rem;
    height: 1.5rem;
  }
}

.p-thanks .wp-block-group .p-thanks__contact-wrap .wp-block-group__inner-container p.mail span {
  position: relative;
  padding-left: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .p-thanks .wp-block-group .p-thanks__contact-wrap .wp-block-group__inner-container p.mail span {
    padding-left: 2.0625rem;
  }
}
.p-thanks .wp-block-group .p-thanks__contact-wrap .wp-block-group__inner-container p.mail span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.0625rem;
  height: 0.6875rem;
  mask-image: url(../img/common/mail.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url(../img/common/mail.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}
@media screen and (min-width: 768px) {
  .p-thanks .wp-block-group .p-thanks__contact-wrap .wp-block-group__inner-container p.mail span::before {
    width: 1.3125rem;
    height: 0.875rem;
  }
}

.p-top-about {
  background: url(../img/top/top_about-sp.png) no-repeat center/cover;
  position: relative;
  padding: 3.75rem 0 4.6875rem;
}
@media screen and (min-width: 768px) {
  .p-top-about {
    padding: 4.6875rem 0 5.5rem;
    background: url(../img/top/top_about.png) no-repeat center/cover;
  }
}

.p-top-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(239, 99, 74, .8)), to(rgba(250, 197, 83, .8)));
  background: linear-gradient(90deg, rgba(239, 99, 74, .8) 0%, rgba(250, 197, 83, .8) 100%);
}
@media screen and (min-width: 768px) {
  .p-top-about::before {
    width: 33.3%;
  }
}

.p-top-about__inner {
  display: grid;
  max-width: 91.875rem;
  padding: 0 1.5625rem 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-about__inner {
    padding: 0 1.25rem 0 3.125rem;
    width: 33.3%;
    margin-left: unset;
  }
}

.p-top-about__head {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-top-about__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.25rem;
  }
}

.p-top-about__title .c-section-title {
  color: #fff;
}

.p-top-about__title .c-section-title__en {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.p-top-about__title .c-section-title::before {
  background: #fff;
}

.p-top-about__text {
  margin-top: 2rem;
  color: #fff;
  position: relative;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .p-top-about__text {
    margin-top: 1.875rem;
    line-height: 2.1875;
  }
}

.p-top-about__btn {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-top: 2.0625rem;
}
@media screen and (min-width: 768px) {
  .p-top-about__btn {
    margin-top: 1.875rem;
  }
}

.p-top-about__btn .c-btn span {
  background: -webkit-gradient(linear, left top, right top, from(#EF634A), to(#FAC553));
  background: linear-gradient(90deg, #EF634A 0%, #FAC553 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.p-top-faq {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5.625rem 0;
}
@media screen and (min-width: 768px) {
  .p-top-faq {
    padding: 0;
  }
}

.p-top-faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-top-faq__img {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.p-top-faq__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 375/282;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-top-faq__img img {
    aspect-ratio: 501/385;
  }
}

.p-top-faq__title {
  text-align: center;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-top-faq__title {
    font-size: 1.875rem;
  }
}

.p-top-faq__title span {
  display: inline-block;
  padding-bottom: 0.625rem;
  font-size: 0.9375rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.075em;
}
@media screen and (min-width: 768px) {
  .p-top-faq__title span {
    font-size: 1.25rem;
  }
}

.p-top-faq__btn {
  margin-top: 0.9375rem;
  text-align: center;
}

.p-top-instagram {
  padding: 2.5rem 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 137, 66, .1)), to(rgba(225, 227, 94, .1)));
  background: linear-gradient(90deg, rgba(0, 137, 66, .1) 0%, rgba(225, 227, 94, .1) 100%);
}
@media screen and (min-width: 768px) {
  .p-top-instagram {
    padding: 3.75rem 0 5.625rem;
  }
}

.p-top-instagram__container {
  display: grid;
}

.p-top-instagram__wrap {
  display: contents;
}
@media screen and (min-width: 768px) {
  .p-top-instagram__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    -ms-flex-direction: row;
        flex-direction: row;
  }
}

.p-top-instagram__btn {
  margin-top: 1.875rem;
  text-align: center;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media screen and (min-width: 768px) {
  .p-top-instagram__btn {
    margin-top: 0;
  }
}

.p-top-instagram__items #sb_instagram #sbi_images {
  padding: 1.25rem 0 0;
  gap: 0.9375rem !important;
}
@media screen and (min-width: 768px) {
  .p-top-instagram__items #sb_instagram #sbi_images {
    padding: 3.75rem 0 0;
    gap: 2rem !important;
  }
}

.p-top-interview {
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-top-interview {
    padding-top: 0;
  }
}

.p-top-interview__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 2.375rem;
}
@media screen and (min-width: 768px) {
  .p-top-interview__inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
  }
}

.p-top-interview__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.1875rem;
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-top-interview__head {
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 137, 66, .1)), to(rgba(225, 227, 94, .1)));
    background: linear-gradient(90deg, rgba(0, 137, 66, .1) 0%, rgba(225, 227, 94, .1) 100%);
    padding: 1.875rem 3.125rem 3.125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
}

.p-top-interview__cards {
  overflow: hidden;
  position: relative;
}

.p-top-interview__cards.swiper {
  overflow-x: hidden;
  margin-left: unset;
  margin-right: unset;
}

.p-top-interview__card {
  width: 100%;
}

.home .p-top-interview__card .c-card__img img {
  aspect-ratio: 375/433;
}
@media screen and (min-width: 768px) {
  .home .p-top-interview__card .c-card__img img {
    aspect-ratio: 504/433;
  }
}

.p-top-interview__cards .swiper-button-prev,
.p-top-interview__cards .swiper-button-next {
  width: 3.125rem;
  height: 3.125rem;
  margin-top: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-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;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 10;
}
.p-top-interview__cards .swiper-button-prev::after,
.p-top-interview__cards .swiper-button-next::after {
  display: none;
}
.p-top-interview__cards .swiper-button-prev img,
.p-top-interview__cards .swiper-button-next img {
  width: 0.75rem;
  height: auto;
  display: block;
}
.p-top-interview__cards .swiper-button-prev.swiper-button-disabled,
.p-top-interview__cards .swiper-button-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.p-top-interview__cards .swiper-button-prev {
  left: 0;
}
.p-top-interview__cards .swiper-button-prev img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.p-top-interview__cards .swiper-button-next {
  right: 0;
}

@media screen and (min-width: 768px) {
  .p-top-interview__btn {
    margin-top: 2.5rem;
  }
}

.p-top-interview__btn .c-btn {
  padding: 0.5rem 1.5625rem;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-top-interview__btn .c-btn {
    padding: 0.625rem 2.875rem;
    font-size: 1.125rem;
  }
}

.p-top-news {
  padding: 2.5625rem 0 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-top-news {
    padding: 3.75rem 0;
  }
}

.p-top-news .l-inner {
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-top-news .l-inner {
    padding: 0 1.5625rem;
  }
}

.p-top-news__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-top-news__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 9.375rem;
  }
}

.p-top-news__wrap {
  display: contents;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-top-news__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-top-news .p-news__items {
    margin-top: -1.25rem;
  }
}

.p-top-news .p-news__item a {
  display: block;
  padding: 1rem 1.875rem 1rem 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-news .p-news__item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    padding: 1.25rem 5.625rem 1.4375rem 1.875rem;
  }
}

.p-top-news .p-news__item a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.75rem;
  height: 0.625rem;
  -webkit-mask-image: url(../img/common/news-arrow.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-image: url(../img/common/news-arrow.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.p-top-news__btn {
  text-align: center;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-top-news__btn {
    margin-top: 0;
  }
}

.p-top-recruit {
  background: #fff;
  position: relative;
}

.p-top-recruit__body {
  padding: 3.125rem 0 2.5rem 1.25rem;
  color: #fff;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, .8);
}
@media screen and (min-width: 768px) {
  .p-top-recruit__body {
    padding: 8rem 0 7.6875rem 3.125rem;
    width: 33.3%;
  }
}

.p-top-recruit__title .c-section-title {
  color: #00381B;
}

.p-top-recruit__text {
  margin-top: 2.375rem;
}

.p-top-recruit__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
}

.p-top-recruit__btn .c-btn {
  margin-top: 10rem;
  min-width: 11.625rem;
}
@media screen and (min-width: 768px) {
  .p-top-recruit__btn .c-btn {
    margin-top: 0.625rem;
    min-width: 11.8125rem;
  }
}

.p-top-recruit__btn .c-btn:nth-child(2) {
  margin-top: 0;
}

.p-top-recruit__img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.p-top-recruit__img source,
.p-top-recruit__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 345/243;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-top-recruit__img source,
  .p-top-recruit__img img {
    aspect-ratio: 704/439;
  }
}

.p-top-recruit__btn {
  margin-top: 1.25rem;
}

.p-top-recruit__flex {
  display: grid;
}
@media screen and (min-width: 768px) {
  .p-top-recruit__flex {
    grid-template-columns: 2fr 1fr;
  }
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

.u-grad {
  position: relative;
}

.u-grad::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(9.38deg, rgba(26, 85, 175, .8) 5.78%, rgba(255, 255, 255, 0) 64.42%);
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */
