@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
button,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

p {
  text-align: justify;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1rem;
  font-weight: 400;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

caption,
th {
  text-align: left;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

sup {
  vertical-align: text-top;
}

img,
picture {
  max-width: 100%;
  vertical-align: top;
}

iframe {
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

span {
  color: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  box-shadow: none;
}

a {
  display: inline-block;
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: inherit;
  font-size: inherit;
  cursor: pointer;
  vertical-align: middle;
  transition: ease-in-out, 0.3s;
}

:focus:not(:focus-visible) {
  outline: 0; /* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 1082px) {
  html {
    font-size: 1.4787430684vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  background: #ffffff;
  color: #000000;
  font-size: 1rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
}

button {
  color: #000000;
}

.l-inner {
  width: 100%;
  max-width: 68.125rem;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .l-inner {
    width: 100%;
    max-width: 41.875rem;
    padding-inline: 2.1875rem;
  }
}

.c-button {
  display: inline-block;
}

.p-about__fv {
  aspect-ratio: 1280/717;
  background: url(../images/about/fv_pc.webp) center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .p-about__fv {
    aspect-ratio: 375/425;
    background: url(../images/about/fv_sp.webp) center/contain no-repeat;
  }
}

.p-about__fv-inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 65.25rem;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}

.p-about__fv .p-under-title {
  position: absolute;
  bottom: 0.8125rem;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-about__fv .p-under-title {
    bottom: -2.5rem;
    left: 1.4375rem;
  }
}

.p-about__fv .p-under-title__en {
  padding-right: 3.3125rem;
}
@media screen and (max-width: 768px) {
  .p-about__fv .p-under-title__en {
    font-size: 3rem;
    padding-right: 2.0625rem;
    padding-bottom: 0.375rem;
  }
}

.p-about__introduction-inner {
  padding-bottom: 4.6875rem;
}
@media screen and (max-width: 768px) {
  .p-about__introduction-inner {
    padding-bottom: 3.25rem;
  }
}

.p-about__inner {
  padding-inline: 1.5625rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-about__inner {
    padding-inline: 2.25rem;
  }
}

.p-about__title {
  padding-bottom: 1.25rem;
  color: #004e99;
  font-family: "Krona One", sans-serif;
  font-size: 1.5rem;
  line-height: 1.1;
  text-transform: capitalize;
}

.p-about__underbar {
  position: relative;
  padding-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-about__underbar {
    padding-bottom: 1.25rem;
  }
}

.p-about__underbar::before {
  content: "";
  position: absolute;
  bottom: 0.375rem;
  left: 0;
  width: 3.125rem;
  height: 3px;
  background: #004e99;
}
@media screen and (max-width: 768px) {
  .p-about__underbar::before {
    height: 2px;
    bottom: 0;
  }
}

.p-about__title-en {
  padding-bottom: 1.875rem;
  color: #004e99;
  font-family: "Krona One", sans-serif;
  font-size: 3.5rem;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .p-about__title-en {
    font-size: 2rem;
    padding-bottom: 1.25rem;
  }
}

.p-about__title-ja {
  margin-top: 2rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .p-about__title-ja {
    margin-top: 1.5rem;
    font-size: 1.125rem;
  }
}

.p-about__introduction {
  margin-top: 3.5rem;
}

.p-about__introduction-header {
  max-width: 66.125rem;
}

.p-about__introduction-header .p-about__title-en {
  font-size: 1.5rem;
}

.p-about__introduction-header .p-about__title-ja {
  margin-top: 1.5625rem;
  font-size: 2.5rem;
  letter-spacing: 0.032em;
}
@media screen and (max-width: 768px) {
  .p-about__introduction-header .p-about__title-ja {
    margin-top: 1.3125rem;
    font-size: 1.125rem;
    letter-spacing: -0.01em;
  }
}

.p-about__introduction-body {
  overflow-x: clip;
  margin-top: 4.8125rem;
}
@media screen and (max-width: 768px) {
  .p-about__introduction-body {
    margin-top: 2.5rem;
  }
}

.p-about__introduction-ceo {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1280/576;
}
@media screen and (max-width: 768px) {
  .p-about__introduction-ceo {
    aspect-ratio: 375/256;
  }
}

.p-about__introduction-ceo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

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

.p-about__introduction-ceo__meta {
  position: absolute;
  left: 68%;
  top: 77%;
  width: -moz-fit-content;
  width: fit-content;
  background: #ffffff;
  padding: 0.625rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .p-about__introduction-ceo__meta {
    right: auto;
    top: 74%;
    left: calc(50% - 9.875rem);
    padding: 0.4375rem;
  }
}

.p-about__introduction-ceo__position {
  line-height: 1.1;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-about__introduction-ceo__position {
    font-size: 0.9375rem;
  }
}

.p-about__introduction-ceo__name {
  margin-top: 0.375rem;
  font-size: 1.5rem;
  line-height: 1.1;
  text-align: right;
  margin-left: 8.375rem;
}
@media screen and (max-width: 768px) {
  .p-about__introduction-ceo__name {
    font-size: 0.9375rem;
    margin-left: 4.375rem;
  }
}

.p-about__introduction-content {
  margin-top: -5rem;
  position: relative;
  z-index: 1;
  max-width: 66rem;
  margin-top: -1.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-about__introduction-content {
    margin-top: 3.1875rem;
    max-width: 37.5rem;
  }
}

.p-about__introduction-lead {
  margin-top: 1.5625rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.032em;
}
@media screen and (max-width: 768px) {
  .p-about__introduction-lead {
    font-size: 1.125rem;
    margin-top: 0.6875rem;
    white-space: nowrap;
    line-height: 1.57;
  }
}

.p-about__introduction-lead--ceo {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .p-about__introduction-lead--ceo {
    font-size: 1.125rem;
  }
}

.p-about__introduction-lead--ceo::after {
  content: "";
  position: absolute;
  top: -3.25rem;
  right: -2.3125rem;
  width: 62.5vw;
  height: 5rem;
  background: #ffffff;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-about__introduction-lead--ceo::after {
    content: none;
  }
}

@media screen and (max-width: 768px) {
  .p-about__introduction-lead.p-about__underbar::before {
    bottom: 0.5625rem;
    width: 2.5rem;
  }
}

.p-about__introduction-text {
  max-width: 60rem;
  margin-top: 1.1875rem;
  color: #090000;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .p-about__introduction-text {
    margin-top: 0;
    font-size: 0.875rem;
  }
}

.p-about__introduction-lead--ceo + .p-about__introduction-text {
  margin-top: 0.8125rem;
}
@media screen and (max-width: 768px) {
  .p-about__introduction-lead--ceo + .p-about__introduction-text {
    margin-top: 0;
  }
}

.p-about__introduction-block {
  margin-top: 3.5625rem;
}
@media screen and (max-width: 768px) {
  .p-about__introduction-block {
    margin-top: 3.125rem;
  }
}

.p-about__introduction-title {
  position: relative;
  padding-left: 1.4375rem;
  color: #004e99;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.11em;
}
@media screen and (max-width: 768px) {
  .p-about__introduction-title {
    padding-left: 1.1875rem;
    font-size: 0.75rem;
  }
}

.p-about__introduction-title::before {
  content: "";
  position: absolute;
  top: 52%;
  left: 0;
  transform: translateY(-50%);
  width: 1rem;
  height: 1.25rem;
  background: url(../images/common/icon_circle_green.webp) center/contain no-repeat;
}

.p-about__about {
  background: #e1e6f0;
  overflow-x: clip;
}

.p-about__about-inner {
  max-width: 66rem;
  padding-top: 4.625rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .p-about__about-inner {
    max-width: 37.5rem;
    padding-top: 3.3125rem;
    padding-bottom: 3.125rem;
  }
}

.p-about__about-header .p-about__title-ja {
  margin-top: 1.4375rem;
  letter-spacing: 0.043em;
}
@media screen and (max-width: 768px) {
  .p-about__about-header .p-about__title-ja {
    line-height: 1.4;
  }
}

.p-about__about-body {
  margin-top: 2.375rem;
}
@media screen and (max-width: 768px) {
  .p-about__about-body {
    margin-top: 2.25rem;
  }
}

.p-about__about-image {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-about__about-image {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: auto;
    padding-inline: 1.5625rem;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
}

@media screen and (max-width: 768px) {
  .p-about__about-image picture {
    display: block;
    width: 40.1875rem;
    max-width: none;
  }
}

.p-about__about-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .p-about__about-image img {
    width: 40.1875rem;
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .p-about__about-image::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .p-about__about-image picture,
  .p-about__about-image img {
    width: 40.1875rem;
    max-width: none;
    margin-inline: auto;
  }
}
.p-about__about-text {
  margin-top: 2.9375rem;
  color: #090000;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-about__about-text {
    margin-top: 1.3125rem;
    font-size: 0.875rem;
    line-height: 2;
  }
}

.p-about__about-company {
  margin-top: 3.3125rem;
}
@media screen and (max-width: 768px) {
  .p-about__about-company {
    margin-top: 2.125rem;
  }
}

.p-about__about-company-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5555555556;
  text-align: center;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .p-about__about-company-title {
    font-size: 1.125rem;
    text-align: left;
    letter-spacing: 0.04em;
  }
}

.p-about__about-company-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5625rem 1.125rem;
  margin-top: 3.4375rem;
}
@media screen and (max-width: 768px) {
  .p-about__about-company-list {
    gap: 0.625rem;
    margin-top: 1.5rem;
    justify-content: flex-start;
  }
}

.p-about__about-company-item {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 14.8125rem;
  aspect-ratio: 237/152;
  border-radius: 0.875rem;
  overflow: clip;
}
@media screen and (max-width: 768px) {
  .p-about__about-company-item {
    max-width: 100%;
    width: calc((100% - 0.625rem) / 2);
    border-radius: 0.375rem;
  }
}

.p-about__about-company-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-about__business-inner {
  padding-top: 4.5625rem;
  padding-bottom: 4.8125rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-about__business-inner {
    max-width: 37.5rem;
    padding-top: 3.3125rem;
    padding-bottom: 3.125rem;
  }
}

.p-about__business-header {
  max-width: 65.9375rem;
  padding-inline: 1.5625rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-about__business-header {
    padding-inline: 2.25rem;
  }
}

.p-about__business-header .p-about__title-ja {
  margin-top: 1.4375rem;
}

.p-about__business-card-header {
  text-align: center;
}

.p-about__business-card-title {
  color: #004e99;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .p-about__business-card-title {
    font-size: 1.125rem;
  }
}

.p-about__business-card-desc {
  margin-top: 1.125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-about__business-card-desc {
    margin-top: 1rem;
    font-size: 0.875rem;
    text-align: left;
    line-height: 1.9;
    letter-spacing: normal;
  }
}

.p-about__business-body {
  max-width: 74.25rem;
  margin-top: 3.75rem;
  padding-inline: 1.5625rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-about__business-body {
    margin-top: 1.5625rem;
    padding-inline: 1.3125rem;
  }
}

.p-about__business-card-body {
  margin-top: 3.5625rem;
}
@media screen and (max-width: 768px) {
  .p-about__business-card-body {
    margin-top: 1.5rem;
  }
}

.p-about__business-card {
  background: #e1e6f0;
  border-radius: 3.375rem;
  padding-top: 4.25rem;
  padding-inline: 6.625rem;
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-about__business-card {
    border-radius: 2.25rem;
    padding-top: 2.5625rem;
    padding-inline: 1.0625rem;
    padding-bottom: 3.3125rem;
  }
}

.p-about__business-item {
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-about__business-item {
    flex-direction: column;
    gap: 1.75rem;
  }
}

.p-about__business-item + .p-about__business-item {
  margin-top: 3.9375rem;
}
@media screen and (max-width: 768px) {
  .p-about__business-item + .p-about__business-item {
    margin-top: 3.25rem;
  }
}

.p-about__business-item-image {
  position: relative;
  flex-shrink: 0;
  width: 27.9375rem;
  aspect-ratio: 447/320;
}
@media screen and (max-width: 768px) {
  .p-about__business-item-image {
    width: 100%;
    max-width: 100%;
    border-radius: 0.375rem;
    aspect-ratio: 447/310;
  }
}

.p-about__business-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-about__business-item-body {
  padding-top: 0.5625rem;
}
@media screen and (max-width: 768px) {
  .p-about__business-item-body {
    padding-top: 0;
  }
}

.p-about__business-item-title {
  position: relative;
  padding-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .p-about__business-item-title {
    padding-bottom: 1.25rem;
    font-size: 1rem;
  }
}

.p-about__business-item-title::before {
  content: "";
  position: absolute;
  bottom: 0.1875rem;
  left: 0;
  width: 1.5625rem;
  height: 3px;
  background: #004e99;
}
@media screen and (max-width: 768px) {
  .p-about__business-item-title::before {
    width: 2.5625rem;
    height: 2px;
  }
}

.p-about__business-item-text {
  margin-top: 0.4375rem;
  color: #090000;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .p-about__business-item-text {
    margin-top: 0;
    font-size: 0.875rem;
    line-height: 2;
  }
}

.p-about__area {
  background: #e1e6f0;
}

.p-about__area-inner {
  max-width: 65.9375rem;
  padding-top: 5rem;
  padding-bottom: 5.625rem;
}
@media screen and (max-width: 768px) {
  .p-about__area-inner {
    max-width: 37.5rem;
    padding-top: 3.5625rem;
    padding-bottom: 3.75rem;
    overflow-x: clip;
  }
}

.p-about__area-header .p-about__title-ja {
  margin-top: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-about__area-header .p-about__title-ja {
    margin-top: 1.5625rem;
  }
}

.p-about__area-body {
  margin-top: 2.6875rem;
}
@media screen and (max-width: 768px) {
  .p-about__area-body {
    margin-top: 1.75rem;
  }
}

.p-about__area-legend {
  width: -moz-fit-content;
  width: fit-content;
  padding-block: 0.75rem;
  padding-inline: 1.75rem;
  padding-right: 1.9375rem;
  background: #ffffff;
  border-radius: 0.25rem;
}
@media screen and (max-width: 768px) {
  .p-about__area-legend {
    padding-block: 0.625rem;
    padding-right: 1.4375rem;
    padding-left: 1.5625rem;
  }
}

.p-about__area-legend-item {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  color: #090000;
  font-weight: 700;
  letter-spacing: 0.13em;
}
@media screen and (max-width: 768px) {
  .p-about__area-legend-item {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }
}

.p-about__area-legend-item::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .p-about__area-legend-item::before {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.p-about__area-legend-item--red::before {
  background: #f90019;
}

.p-about__area-legend-item--blue::before {
  background: #004da0;
}

.p-about__area-image {
  margin-top: -12.6875rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-about__area-image {
    margin-top: -2.875rem;
    margin-inline: calc(50% - 50vw);
    width: 100vw;
  }
}

.p-about__area-image img {
  width: 99%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .p-about__area-image img {
    width: 22.8125rem;
    max-width: none;
    margin-inline: auto;
  }
}

.p-about__date-inner {
  padding-top: 5rem;
  padding-bottom: 5rem;
  max-width: 68.125rem;
}
@media screen and (max-width: 768px) {
  .p-about__date-inner {
    padding-top: 1.125rem;
    max-width: 37.5rem;
    padding-bottom: 4.75rem;
  }
}

@media screen and (max-width: 768px) {
  .p-about__date-inner.p-about__inner {
    padding-inline: 0;
  }
}

.p-about__date-header {
  max-width: 62.9375rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-about__date-header {
    padding-inline: 2.25rem;
  }
}

.p-about__date-header .p-about__title-ja {
  margin-top: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-about__date-header .p-about__title-ja {
    margin-top: 1.5rem;
    letter-spacing: 0.05em;
  }
}

.p-about__date-body {
  margin-top: 3.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-about__date-body {
    margin-top: 1.8125rem;
    padding-inline: 1.375rem;
  }
}

.p-about__date-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.9375rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-about__date-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0.9375rem;
    max-width: 37.5rem;
    width: 100%;
    margin-inline: auto;
  }
}

.p-about__date-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 2.0625rem 1.25rem 3.5rem;
  border-radius: 3.75rem;
  background: #e1e6f0;
  aspect-ratio: 1;
}
@media (max-width: 768px) {
  .p-about__date-item {
    padding-top: calc(3.83px + 3.245vw);
    padding-inline: calc(2.84px + 1.909vw);
    padding-bottom: calc(2.82px + 5.916vw);
    border-radius: calc(11.96px + 5.344vw);
  }
}
@media screen and (max-width: 375px) {
  .p-about__date-item {
    padding-top: 1rem;
    padding-inline: 0.625rem;
    padding-bottom: 1.5625rem;
    border-radius: 2rem;
  }
}

.p-about__date-item-icon {
  margin-inline: auto;
}

.p-about__date-item-icon--01 {
  width: 6.3125rem;
  max-width: 6.3125rem;
  aspect-ratio: 101/102;
}
@media screen and (max-width: 768px) {
  .p-about__date-item-icon--01 {
    width: calc(9.63px + 10.16vw);
    max-width: calc(9.63px + 10.16vw);
  }
}
@media screen and (max-width: 375px) {
  .p-about__date-item-icon--01 {
    width: 3rem;
    max-width: 3rem;
  }
}

.p-about__date-item-icon--02 {
  width: 6.875rem;
  max-width: 6.875rem;
  aspect-ratio: 110/70;
}
@media screen and (max-width: 768px) {
  .p-about__date-item-icon--02 {
    width: calc(10.49px + 11.069vw);
    max-width: calc(10.49px + 11.069vw);
  }
}
@media screen and (max-width: 375px) {
  .p-about__date-item-icon--02 {
    width: 3.25rem;
    max-width: 3.25rem;
  }
}

.p-about__date-item-icon--03 {
  width: 4.875rem;
  max-width: 4.875rem;
  aspect-ratio: 78/66;
}
@media screen and (max-width: 768px) {
  .p-about__date-item-icon--03 {
    width: calc(7.44px + 7.85vw);
    max-width: calc(7.44px + 7.85vw);
  }
}
@media screen and (max-width: 375px) {
  .p-about__date-item-icon--03 {
    width: 2.3125rem;
    max-width: 2.3125rem;
  }
}

.p-about__date-item-icon--04 {
  width: 5.5rem;
  max-width: 5.5rem;
  aspect-ratio: 88/71;
}
@media screen and (max-width: 768px) {
  .p-about__date-item-icon--04 {
    width: calc(8.39px + 8.86vw);
    max-width: calc(8.39px + 8.86vw);
  }
}
@media screen and (max-width: 375px) {
  .p-about__date-item-icon--04 {
    width: 2.625rem;
    max-width: 2.625rem;
  }
}

.p-about__date-item-icon--05 {
  width: 6.125rem;
  max-width: 6.125rem;
  aspect-ratio: 98/86;
}
@media screen and (max-width: 768px) {
  .p-about__date-item-icon--05 {
    width: calc(9.35px + 9.86vw);
    max-width: calc(9.35px + 9.86vw);
  }
}
@media screen and (max-width: 375px) {
  .p-about__date-item-icon--05 {
    width: 2.875rem;
    max-width: 2.875rem;
  }
}

.p-about__date-item-icon--06 {
  width: 5.25rem;
  max-width: 5.25rem;
  aspect-ratio: 84/83;
}
@media screen and (max-width: 768px) {
  .p-about__date-item-icon--06 {
    width: calc(8.02px + 8.47vw);
    max-width: calc(8.02px + 8.47vw);
  }
}
@media screen and (max-width: 375px) {
  .p-about__date-item-icon--06 {
    width: 2.5rem;
    max-width: 2.5rem;
  }
}

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

.p-about__date-item-heading {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-about__date-item-heading {
    font-size: calc(2.84px + 1.909vw);
  }
}
@media screen and (max-width: 375px) {
  .p-about__date-item-heading {
    font-size: 0.625rem;
  }
}

.p-about__date-item-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.p-about__date-item-value--stacked {
  flex-direction: column;
  align-items: center;
}

.p-about__date-item-value-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.p-about__date-item-num-wrap {
  position: relative;
}

.p-about__date-item-kanji.p-about__date-item-monthly-label {
  position: absolute;
  top: -1.6875rem;
  right: 0.125rem;
  width: 100%;
  font-size: 1.375rem;
}
@media screen and (max-width: 768px) {
  .p-about__date-item-kanji.p-about__date-item-monthly-label {
    top: calc(-4.7px - 2.481vw);
    font-size: calc(3.13px + 2.099vw);
  }
}
@media screen and (max-width: 375px) {
  .p-about__date-item-kanji.p-about__date-item-monthly-label {
    top: -0.875rem;
    font-size: 0.6875rem;
  }
}

.p-about__date-item-num {
  font-family: "Krona One", sans-serif;
  color: #004e99;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .p-about__date-item-num {
    font-size: calc(7.96px + 5.344vw);
  }
}
@media screen and (max-width: 375px) {
  .p-about__date-item-num {
    font-size: 1.75rem;
    font-weight: 400;
  }
}

.p-about__date-item-kanji {
  color: #004e99;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .p-about__date-item-kanji {
    font-size: calc(4.55px + 3.053vw);
  }
}
@media screen and (max-width: 375px) {
  .p-about__date-item-kanji {
    font-size: 1rem;
  }
}

.p-about__date-item-note {
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  position: absolute;
  bottom: 2.1875rem;
  left: 48%;
  transform: translateX(-50%);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-about__date-item-note {
    bottom: calc(0.69px + 3.817vw);
    font-size: calc(7.08px + 0.325vw);
  }
}
@media screen and (max-width: 375px) {
  .p-about__date-item-note {
    bottom: 0.9375rem;
    font-size: 0.51875rem;
  }
}

.p-about__date-item--image {
  padding: 0;
  overflow: hidden;
}

.p-about__date-item--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: inherit;
}

.p-about__br {
  display: none;
}
@media (max-width: 550px) {
  .p-about__br {
    display: block;
  }
}

.p-about__about-image .scroll-hint-icon-wrap {
  transition: opacity 0.5s ease;
}
.p-about__about-image .scroll-hint-icon-wrap.is-hiding {
  opacity: 0;
}

.p-about__about-image .scroll-hint-icon {
  top: calc(50% + 16px);
  left: calc(50% - 66px);
  border-radius: 0.625rem;
}

.p-about__about-image .scroll-hint-icon-white {
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
}

.p-about__about-image .scroll-hint-icon-white::before {
  width: 3.125rem;
  height: 3.125rem;
  background-image: url(../images/common/icon_scrollhint.svg);
}

.p-about__about-image .scroll-hint-text {
  font-size: 10px;
}

/* ========================================
   Button Component
   ======================================== */
.p-button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 17.5rem;
  border-radius: 0.25rem;
  padding-block: 1.25rem;
  padding-left: 2rem;
  padding-right: 1.5rem;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .p-button {
    max-width: 100%;
  }
}

.p-button__arrow {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-button__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1rem;
  transform: translateY(-50%);
  width: 1px;
  height: 2.125rem;
  border-left: 1px dashed rgba(255, 255, 255, 0.5);
}

.p-button__arrow img {
  width: 0.75rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .p-button__arrow img {
    width: 0.375rem;
  }
}

.p-button:hover .p-button__arrow img {
  transform: translateX(0.1875rem);
}

/* ----------------------------------------
   Size Modifiers
   ---------------------------------------- */
.p-button--sm {
  width: auto;
  max-width: none;
  padding-block: 1.125rem;
  padding-right: 1.5rem;
  padding-left: 1.875rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  gap: 1.875rem;
}

.p-button--sm .p-button__text {
  flex: none;
}

.p-button--sm .p-button__arrow::before {
  left: -0.9375rem;
  height: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-button--sm .p-button__arrow::before {
    left: -0.25rem;
    height: 0.75rem;
  }
}

.p-button--nav {
  max-width: 13.75rem;
  height: 3.125rem;
  padding-left: 1.25rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.3);
  border-radius: 0.25rem;
  font-size: 0.875rem;
}

.p-button--nav .p-button__arrow::before {
  height: 1.875rem;
}

.p-button--nav a {
  gap: 1.25rem;
}

/* ----------------------------------------
   Color Modifiers
   ---------------------------------------- */
.p-button--green {
  background: linear-gradient(170deg, #52dac1 40%, #009b8d 100%);
}

.p-button--blue {
  background: linear-gradient(170deg, #008fb2 44%, #004e99 100%);
}

.p-entry-cards {
  display: flex;
  justify-content: center;
  gap: 2.125rem;
}
@media screen and (max-width: 768px) {
  .p-entry-cards {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}

.p-entry-cards__item {
  position: relative;
  background: #ffffff;
  border: 1px solid #004e99;
  border-radius: 0.25rem;
  aspect-ratio: 325/211;
}
@media screen and (max-width: 768px) {
  .p-entry-cards__item {
    width: 100%;
  }
}

.p-entry-cards__item a {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-block: 1.875rem;
  padding-inline: 1.5rem;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-entry-cards__item a {
    padding-right: 1.6875rem;
    padding-left: 1.5rem;
  }
}

.p-entry-cards__item a::before {
  content: "";
  position: absolute;
  width: 5.25rem;
  height: 5.25rem;
}

.p-entry-cards__item-title-ja {
  color: #004e99;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.128em;
}

.p-entry-cards__item-title-en {
  display: block;
  margin-top: 0.5rem;
  font-family: "Krona One", sans-serif;
  color: #004e99;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  line-height: 1;
}

.p-entry-cards__item-arrow {
  position: relative;
  padding-top: 0.5625rem;
}

.p-entry-cards__item-arrow::before {
  content: "";
  position: absolute;
  top: 0.0625rem;
  left: -0.9375rem;
  width: 1px;
  height: 1.25rem;
  border-left: 1px dotted #004e99;
}

.p-entry-cards__item-arrow__box {
  position: relative;
  display: block;
  width: 0.6875rem;
  height: 0.5rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}

@media (any-hover: hover) {
  .p-entry-cards__item a:hover .p-entry-cards__item-arrow__box {
    transform: translateX(0.1875rem);
  }
}
.p-entry-cards__item-arrow__box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.9375rem;
  transform: translateY(-50%);
  width: 1px;
  height: 1.25rem;
  border-left: 1px dotted #004e99;
}

.p-entry-cards__item-arrow__box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/common/arrow_blue.webp) center/contain no-repeat;
  transform: translateX(-100%);
}

.p-entry-cards__item-arrow__box img {
  position: relative;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (any-hover: hover) {
  .p-entry-cards__item:hover .p-entry-cards__item-arrow__box img {
    animation: arrow-out 0.4s ease forwards;
  }
  .p-entry-cards__item:hover .p-entry-cards__item-arrow__box::after {
    animation: arrow-in 0.4s ease 0.2s forwards;
  }
}
.p-environment__fv {
  aspect-ratio: 1280/624;
  background: url(../images/environment/fv_pc.webp) center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .p-environment__fv {
    aspect-ratio: 375/312;
    background: url(../images/environment/fv_sp.webp) center/contain no-repeat;
  }
}

.p-environment__fv-inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 62.5rem;
  margin-inline: auto;
}

.p-environment__fv .p-under-title {
  position: absolute;
  bottom: 0.4375rem;
  left: -1.875rem;
}
@media screen and (max-width: 768px) {
  .p-environment__fv .p-under-title {
    bottom: 0;
    left: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .p-environment__fv .p-under-title__en {
    font-size: 2rem;
    padding-right: 1.75rem;
  }
}

.p-environment__body {
  max-width: 67.5rem;
  margin-inline: auto;
  padding: 4.375rem 1.875rem 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-environment__body {
    max-width: 31.25rem;
    padding: 2.5rem 1.75rem 3.3125rem;
  }
}

.p-environment__list {
  display: flex;
  flex-wrap: wrap;
  gap: 5.1875rem 4.875rem;
}
@media screen and (max-width: 768px) {
  .p-environment__list {
    flex-direction: column;
    align-items: center;
    gap: 3.3125rem;
  }
}

.p-environment__item {
  width: calc((100% - 4.875rem) / 2);
}
@media screen and (max-width: 768px) {
  .p-environment__item {
    width: 100%;
  }
}

.p-environment__item-header {
  position: relative;
}

.p-environment__item-header img {
  display: block;
  width: 100%;
  height: auto;
}

.p-environment__item-title {
  position: absolute;
  bottom: 1.625rem;
  left: -0.75rem;
  width: -moz-fit-content;
  width: fit-content;
  padding-block: 0.0625rem;
  padding-left: 0.5rem;
  padding-right: 1.8125rem;
  background-color: #004e99;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0.005em;
}
@media screen and (max-width: 768px) {
  .p-environment__item-title {
    bottom: 0.875rem;
    left: -0.375rem;
    padding-block: 0;
    padding-right: 1.25rem;
    padding-left: 0.3125rem;
    font-size: 1rem;
  }
}

.p-environment__item-body {
  margin-top: 2.3125rem;
}
@media screen and (max-width: 768px) {
  .p-environment__item-body {
    margin-top: 1.625rem;
  }
}

.p-environment__item-bullet {
  position: relative;
  padding-left: 1.3125rem;
  color: #090000;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.74;
}
@media screen and (max-width: 768px) {
  .p-environment__item-bullet {
    padding-left: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.456;
  }
}

.p-environment__item-bullet::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.1875rem;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background: #090000;
  border-radius: 100vh;
}
@media screen and (max-width: 768px) {
  .p-environment__item-bullet::before {
    left: 0.5rem;
    width: 0.875rem;
    height: 0.875rem;
  }
}

.p-environment__item-bullet + .p-environment__item-bullet {
  margin-top: 0.25rem;
}

.p-environment__item-text {
  max-width: 27.0625rem;
  color: #090000;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.9;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .p-environment__item-text {
    max-width: 94%;
    margin-inline: auto;
    font-size: 0.875rem;
    line-height: 1.7;
  }
}

/* ========================================
   Footer Section
   ======================================== */
.p-footer {
  background: #f2f2f2;
}

.p-footer__inner {
  position: relative;
  z-index: 1;
  padding-bottom: 3.75rem;
}
@media (min-width: 1700px) {
  .p-footer__inner {
    padding-top: 5.625rem;
  }
}
@media screen and (max-width: 768px) {
  .p-footer__inner {
    padding-top: 4.9375rem;
    padding-bottom: 2.5rem;
  }
}
@media screen and (max-width: 375px) {
  .p-footer__inner {
    padding-top: 1.8125rem;
  }
}

.p-footer__body {
  display: grid;
  grid-template-columns: 20rem 1fr;
  grid-template-rows: auto auto 1fr;
  -moz-column-gap: 3.5625rem;
       column-gap: 3.5625rem;
}
@media screen and (max-width: 768px) {
  .p-footer__body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

.p-footer__logo {
  grid-column: 1;
  grid-row: 1;
  width: 16.875rem;
  height: auto;
  aspect-ratio: 270/40;
}
@media screen and (max-width: 768px) {
  .p-footer__logo {
    order: 1;
  }
}

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

.p-footer__nav-links {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-content: start;
  grid-column: 2;
  grid-row: 1/4;
  -moz-column-gap: 2.6875rem;
       column-gap: 2.6875rem;
}
@media screen and (max-width: 768px) {
  .p-footer__nav-links {
    display: flex;
    flex-direction: column;
    order: 2;
    gap: 2.125rem;
    margin-top: 1.125rem;
  }
}

.p-footer__nav-col {
  grid-row: 1;
}

.p-footer__external {
  display: inline-flex;
  grid-column: 1;
  grid-row: 2;
  align-items: center;
  gap: 0.25rem;
  margin-left: 2.375rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2;
  text-decoration: none;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-footer__external {
    order: 3;
    margin-left: 0.3125rem;
    margin-top: 0;
  }
}

.p-footer__external-icon {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 375px) {
  .p-footer__external-icon {
    width: 0.5625rem;
    height: 0.5625rem;
  }
}

@media (any-hover: hover) {
  .p-footer__external:hover .p-footer__external-icon {
    transform: translate(0.1875rem, -0.1875rem);
  }
}
.p-footer__external-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__buttons {
  display: flex;
  flex-direction: column;
  grid-column: 1;
  grid-row: 3;
  gap: 0.9375rem;
  margin-top: 1.8125rem;
}
@media screen and (max-width: 768px) {
  .p-footer__buttons {
    order: 4;
    align-items: center;
    margin-top: 0.9375rem;
    flex-direction: row;
    justify-content: center;
  }
}
@media (max-width: 550px) {
  .p-footer__buttons {
    flex-direction: column;
  }
}

.p-footer__buttons .p-button {
  padding-top: 1.0625rem;
  padding-bottom: 1.25rem;
  padding-left: 2.125rem;
  padding-right: 1.375rem;
  max-width: 14.8125rem;
}

.p-footer__buttons .p-button--green {
  padding-left: 1.9375rem;
}
@media screen and (max-width: 768px) {
  .p-footer__buttons .p-button--green {
    padding-left: 2.125rem;
  }
}

.p-footer__buttons .p-button--blue {
  padding-left: 2.5625rem;
}
@media screen and (max-width: 768px) {
  .p-footer__buttons .p-button--blue {
    padding-left: 2.6875rem;
  }
}

@media screen and (max-width: 768px) {
  .p-footer__buttons .p-button__arrow img {
    width: 0.6875rem;
  }
}

@media screen and (max-width: 768px) {
  .p-footer__buttons .p-button__arrow::before {
    height: 1.375rem;
  }
}

.p-footer__nav-section + .p-footer__nav-section {
  margin-top: 1.9375rem;
}
@media screen and (max-width: 768px) {
  .p-footer__nav-section + .p-footer__nav-section {
    margin-top: 1.875rem;
  }
}

.p-footer__nav-title {
  font-family: "Krona One", sans-serif;
  font-size: 0.75rem;
  color: #004e99;
  letter-spacing: 0.2em;
  line-height: 1.1666666667;
}

.p-footer__nav-title::before {
  content: "";
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 0.0625rem;
  background: url(../images/common/icon_circle_green.webp) center/contain no-repeat;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .p-footer__nav-title::before {
    margin-right: 0.25rem;
  }
}

.p-footer__nav-item {
  font-size: 0.875rem;
  line-height: 1.6;
  padding-left: 1.0625rem;
}

.p-footer__nav-item a {
  color: #000000;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: ease-in-out, 0.3s;
}
@media screen and (max-width: 375px) {
  .p-footer__nav-item a {
    font-size: 0.875rem;
  }
}

@media (any-hover: hover) {
  .p-footer__nav-item a:hover {
    color: #009b8d;
  }
}
@media screen and (max-width: 375px) {
  .p-footer__nav-section--about .p-footer__nav-item a {
    letter-spacing: 0.01em;
  }
}

.p-footer__copyright-wrapper--pc {
  grid-column: 1/-1;
  grid-row: 2;
  margin-top: 4.6875rem;
}
@media screen and (max-width: 768px) {
  .p-footer__copyright-wrapper--pc {
    display: none;
  }
}

.p-footer__copyright-wrapper--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-footer__copyright-wrapper--sp {
    display: block;
    order: 5;
    margin-top: 0.6875rem;
    text-align: center;
    line-height: 1;
  }
}

.p-footer__copyright {
  font-family: "Krona One", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-footer__copyright {
    font-size: 0.5rem;
    line-height: 1;
  }
}

.p-home .p-footer {
  position: relative;
  margin-top: -15.625rem;
}
@media (min-width: 1100px) {
  .p-home .p-footer {
    margin-top: -15.625vw;
  }
}
@media (min-width: 1300px) {
  .p-home .p-footer {
    margin-top: -10.6666666667vw;
  }
}
@media (min-width: 1600px) {
  .p-home .p-footer {
    margin-top: -7.5vw;
  }
}
@media screen and (max-width: 768px) {
  .p-home .p-footer {
    margin-top: -9.4375rem;
  }
}
@media screen and (max-width: 375px) {
  .p-home .p-footer {
    margin-top: -13.8125rem;
  }
}

.p-home .p-footer__inner {
  padding-top: 15.5rem;
}
@media (min-width: 1700px) {
  .p-home .p-footer__inner {
    padding-top: 14.7058823529vw;
  }
}

.p-under + .p-footer .p-footer__inner {
  padding-top: 6rem;
}
@media screen and (max-width: 768px) {
  .p-under + .p-footer .p-footer__inner {
    padding-top: 3.625rem;
    padding-inline: 1.5625rem;
  }
}
@media screen and (max-width: 375px) {
  .p-under + .p-footer .p-footer__inner {
    padding-inline: 2.1875rem;
  }
}

.p-hamburger {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
  width: 3.5rem;
  height: 3.5rem;
  background: #ffffff;
  border-radius: 0.25rem;
  border: 1px solid #ffffff;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-hamburger {
    width: 2rem;
    height: 2rem;
    gap: 0.25rem;
  }
}

.p-header.is-scrolled .p-hamburger {
  border: 1px solid #dcdddd;
}

.p-hamburger__bar {
  display: block;
  width: 1.25rem;
  height: 0.125rem;
  background: #004e99;
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .p-hamburger__bar {
    width: 1rem;
  }
}
@media screen and (max-width: 375px) {
  .p-hamburger__bar {
    width: 0.625rem;
  }
}

.p-hamburger.is-active .p-hamburger__bar:nth-child(1) {
  transform: translateY(0.25rem) rotate(45deg);
}

.p-hamburger.is-active .p-hamburger__bar:nth-child(2) {
  transform: translateY(-0.25rem) rotate(-45deg);
}

/* ========================================
   Header Section
   ======================================== */
.p-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
  transition: background-color 0.3s ease;
}

.p-header.is-scrolled {
  background: rgba(255, 255, 255, 0.7);
}

.p-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-block: 2.1875rem;
  padding-right: 2rem;
  padding-left: 2.1875rem;
  transition: ease-in-out, 0.3s;
}
@media screen and (max-width: 768px) {
  .p-header__inner {
    gap: 0.5rem;
    padding-block: 0.625rem;
    padding-right: 0.625rem;
    padding-left: 0.9375rem;
  }
}

.p-header.is-scrolled .p-header__inner {
  padding-block: 0.75rem;
}
@media screen and (max-width: 768px) {
  .p-header.is-scrolled .p-header__inner {
    padding-block: 0.375rem;
  }
}

.p-header__logo {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-header__logo {
    margin-top: 0.25rem;
  }
}

.p-header__logo img {
  width: 17.0625rem;
  height: auto;
  aspect-ratio: 258/45;
}
@media screen and (max-width: 768px) {
  .p-header__logo img {
    width: 10.125rem;
    aspect-ratio: 162/26;
  }
}

.p-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 375px) {
  .p-header__actions {
    align-items: center;
    flex-direction: row;
    gap: 0.5rem;
  }
}

.p-header__buttons {
  display: flex;
  gap: 0.25rem;
}
@media screen and (max-width: 768px) {
  .p-header__buttons {
    display: none;
  }
}

/* ========================================
   Navigation Drawer
   ======================================== */
.p-header__nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 10000;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: ease-in-out, transform 0.3s, opacity 0.4s;
}
@media screen and (max-width: 768px) {
  .p-header__nav {
    background: #ffffff;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
}

.js-navigation.is-open {
  pointer-events: auto;
  transform: translateY(0);
  opacity: 1;
}

.p-header__nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 2.1875rem;
  padding-inline: 2rem;
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .p-header__nav-header {
    padding-block: 0.625rem;
    padding-left: 0.875rem;
    padding-right: 0.625rem;
  }
}

.p-header__nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media screen and (max-width: 768px) {
  .p-header__nav-logo {
    margin-top: 0.3125rem;
  }
}

.p-header__nav-logo img {
  width: 17.0625rem;
  height: auto;
}
@media screen and (max-width: 768px) {
  .p-header__nav-logo img {
    width: 10.25rem;
  }
}

.p-header__nav-close {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  cursor: pointer;
  border: 1px solid #dcdddd;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .p-header__nav-close {
    width: 2rem;
    height: 2rem;
  }
}

.p-header__nav-close-bar {
  position: absolute;
  display: block;
  width: 1.25rem;
  height: 0.125rem;
  background: #004e99;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .p-header__nav-close-bar {
    width: 1rem;
  }
}
@media screen and (max-width: 375px) {
  .p-header__nav-close-bar {
    width: 0.625rem;
  }
}

.p-header__nav-close-bar:first-child {
  transform: rotate(45deg);
}

.p-header__nav-close-bar:last-child {
  transform: rotate(-45deg);
}

.p-header__nav-body {
  display: flex;
  justify-content: center;
  gap: 7.5rem;
  margin-top: 2.5rem;
  margin-inline: auto;
  min-width: 50%;
  padding: 2.5rem 3.75rem;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .p-header__nav-body {
    display: block;
    width: 100%;
    padding-inline: 2.25rem;
    background: transparent;
    margin-top: 0;
    padding-top: 2.875rem;
    padding-bottom: 1.5625rem;
    border-radius: 0;
    box-shadow: none;
    overflow-y: auto;
  }
}

.p-header__nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-header__nav-list {
    gap: 2rem;
  }
}

.p-header__nav-item {
  color: #000000;
}

.p-header__nav-item a,
.p-header__nav-item-wrapper {
  transition: ease-in-out, 0.3s;
}

@media (any-hover: hover) {
  .p-header__nav-item a:hover .p-header__nav-item-ja {
    color: #009b8d;
  }
}
.p-header__nav-item-en {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Krona One", sans-serif;
  font-size: 0.875rem;
  color: #004e99;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .p-header__nav-item-en {
    gap: 0.25rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
  }
}

.p-header__nav-item-en::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: url("../images/common/icon_circle_green.webp") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-header__nav-item-en::before {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.p-header__nav-item-ja {
  display: block;
  margin-top: 0.25rem;
  padding-left: 1rem;
  font-weight: 700;
  color: #000000;
  transition: ease-in-out, 0.3s;
}
@media screen and (max-width: 768px) {
  .p-header__nav-item-ja {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 768px) {
  .p-header__nav-item--about .p-header__nav-item-ja {
    letter-spacing: 0.02em;
  }
}

.p-header__nav-item__sub {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.5rem;
  padding-left: 1rem;
}
@media screen and (max-width: 768px) {
  .p-header__nav-item__sub {
    gap: 0;
    margin-top: 0.25rem;
  }
}

.p-header__nav-item__sub-item {
  color: #000000;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-header__nav-item__sub-item {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
  }
}

.p-header__nav-item__sub-item a {
  color: inherit;
  text-decoration: none;
  transition: ease-in-out, 0.3s;
}

@media (any-hover: hover) {
  .p-header__nav-item__sub-item a:hover {
    color: #009b8d;
  }
}
.p-header__nav-external {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1.5rem;
  color: #000000;
  font-weight: 700;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .p-header__nav-external {
    margin-top: 1.8125rem;
    margin-left: 0.25rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }
}

.p-header__nav-external-icon {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .p-header__nav-external-icon {
    width: 0.625rem;
    height: 0.625rem;
  }
}

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

@media (any-hover: hover) {
  .p-header__nav-external:hover .p-header__nav-external-icon {
    transform: translate(0.1875rem, -0.1875rem);
  }
}
.p-header__nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media screen and (max-width: 768px) {
  .p-header__nav-buttons {
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-direction: row;
    justify-content: center;
  }
}
@media (max-width: 550px) {
  .p-header__nav-buttons {
    flex-direction: column;
  }
}

.p-header__nav-buttons .p-button {
  min-width: 17.5rem;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .p-header__nav-buttons .p-button {
    width: 100%;
    min-width: auto;
    max-width: 14.75rem;
    padding-top: 1.0625rem;
    padding-bottom: 1.125rem;
    padding-left: 2.5rem;
    padding-right: 1.4375rem;
  }
}

@media screen and (max-width: 768px) {
  .p-header__nav-buttons .p-button.p-button--green {
    padding-left: 1.4375rem;
  }
}

@media screen and (max-width: 768px) {
  .p-header__nav-buttons .p-button.p-button--blue {
    padding-left: 2.6875rem;
  }
}

@media screen and (max-width: 768px) {
  .p-header__nav-buttons .p-button__arrow img {
    width: 0.6875rem;
  }
}

@media screen and (max-width: 768px) {
  .p-header__nav-buttons .p-button__arrow::before {
    height: 1.25rem;
    left: -0.75rem;
  }
}

/* ========================================
   SP Entry Button + Popup
   ======================================== */
.p-header__entry {
  position: relative;
  display: none;
}
@media screen and (max-width: 768px) {
  .p-header__entry {
    display: block;
  }
}

.p-header__entry-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-block: 0.75rem;
  padding-inline: 0.875rem;
  background: linear-gradient(170deg, #52dac1 40%, #009b8d 100%);
  border: none;
  border-radius: 0.25rem;
  color: #ffffff;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media screen and (max-width: 375px) {
  .p-header__entry-btn {
    gap: 0.5625rem;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    padding-left: 1.1875rem;
    border-radius: 0.125rem;
    font-size: 0.5rem;
  }
}

.p-header__entry-text {
  white-space: nowrap;
}

.p-header__entry-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0.75rem;
  border-left: 1px dashed rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 375px) {
  .p-header__entry-arrow {
    padding-left: 0.5rem;
  }
}

.p-header__entry-arrow img {
  width: 0.75rem;
  height: auto;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .p-header__entry-arrow img {
    width: 0.375rem;
  }
}

.p-header__entry-btn:hover .p-header__entry-arrow img {
  transform: translateX(0.125rem);
}

.p-header__entry-popup {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: -2.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem;
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.625rem);
  transition: opacity 0.2s ease-in, visibility 0.2s ease-in, transform 0.3s ease-in;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .p-header__entry-popup {
    right: -0.6875rem;
    gap: 0.3125rem;
    padding-block: 0.4375rem;
    padding-inline: 0.3125rem;
    border-radius: 0.25rem;
  }
}

.p-header__entry-popup::before {
  content: "";
  position: absolute;
  top: -0.375rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-bottom: 0.5rem solid #ffffff;
}

.p-header__entry-popup .p-button {
  width: 100%;
  white-space: nowrap;
  font-size: 0.5rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-header__entry-popup .p-button {
    padding-block: 0.375rem;
    padding-right: 0.875rem;
    padding-left: 0.5625rem;
    gap: 0.625rem;
  }
}

.p-header__entry-popup .p-button.p-button--blue {
  padding-right: 0.5rem;
  justify-content: flex-end;
  gap: 0.875rem;
}

@media screen and (max-width: 768px) {
  .p-header__entry-popup .p-button .p-button--blue .p-button__text {
    display: inline-block;
    padding-left: 0.3125rem;
  }
}

@media (hover: hover) {
  .p-header__entry:hover .p-header__entry-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.p-header__entry.is-open .p-header__entry-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.p-home-about {
  overflow-x: clip;
}

.p-home-about__inner {
  position: relative;
  padding-top: 16.5625rem;
  padding-bottom: 12.5rem;
}
@media screen and (max-width: 768px) {
  .p-home-about__inner {
    padding-top: 8.625rem;
    padding-bottom: 12.5rem;
  }
}

.p-home-about__inner.p-home-about__inner {
  max-width: 62.125rem;
}
@media screen and (max-width: 768px) {
  .p-home-about__inner.p-home-about__inner {
    max-width: 41.875rem;
  }
}

.p-home-about__inner::before {
  content: "";
  position: absolute;
  top: 48.7%;
  left: 58.2%;
  transform: translate(-50%, -50%);
  width: 38.8125rem;
  height: 33.5rem;
  background: url(../images/home/about_bg.webp) center/contain no-repeat;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-home-about__inner::before {
    top: 31.7%;
    left: 50%;
    width: 21.625rem;
    height: 18.75rem;
  }
}

.p-home-about__title-en {
  margin-top: 1.125rem;
  color: #004e99;
  font-size: 4.5rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-home-about__title-en {
    margin-top: 0.875rem;
    font-size: 3rem;
  }
}

.p-home-about__text {
  margin-top: 0.4375rem;
}
@media screen and (max-width: 768px) {
  .p-home-about__text {
    margin-top: 0.75rem;
  }
}

.p-home-about__image {
  position: absolute;
  z-index: -5;
}

.p-home-about__image--01 {
  top: 4.4375rem;
  left: 15.3125rem;
  max-width: 13.6875rem;
  aspect-ratio: 219/146;
}
@media screen and (max-width: 768px) {
  .p-home-about__image--01 {
    top: 2.0625rem;
    left: 0;
    max-width: 8.75rem;
    aspect-ratio: 140/93;
  }
}

.p-home-about__image--02 {
  top: 21.25rem;
  right: -4.1875rem;
  max-width: 19.75rem;
  aspect-ratio: 316/200;
}
@media screen and (max-width: 768px) {
  .p-home-about__image--02 {
    top: auto;
    left: auto;
    bottom: 3.4375rem;
    right: 0;
    max-width: 12.625rem;
    aspect-ratio: 202/134;
  }
}

.p-home-about__image--03 {
  bottom: 1.6875rem;
  left: 31.5625rem;
  max-width: 12.125rem;
  aspect-ratio: 194/129;
}
@media screen and (max-width: 768px) {
  .p-home-about__image--03 {
    bottom: 6.4375rem;
    left: 0;
    max-width: 7.6875rem;
    aspect-ratio: 124/82;
  }
}

.p-home-about__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-home-environment {
  overflow-x: clip;
}

.p-home-environment__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 9.6875rem;
}
@media screen and (max-width: 768px) {
  .p-home-environment__inner {
    flex-direction: column;
    gap: 4.3125rem;
    padding-top: 2.4375rem;
  }
}

.p-home-environment__content {
  margin-top: 1.6875rem;
  padding-left: 2.9375rem;
}
@media screen and (max-width: 768px) {
  .p-home-environment__content {
    margin-top: 0;
    padding-left: 0;
  }
}

.p-home-environment__title-en {
  margin-top: 0.75rem;
  color: #004e99;
  font-size: 3.5rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-home-environment__title-en {
    font-size: 2.125rem;
  }
}

.p-home-environment__text {
  margin-top: 1.6875rem;
}
@media screen and (max-width: 768px) {
  .p-home-environment__text {
    margin-top: 0.8125rem;
  }
}

.p-home-environment__image {
  position: relative;
  flex-shrink: 0;
  width: 32rem;
  aspect-ratio: 505/308;
  margin-right: -1.25rem;
}
@media screen and (max-width: 768px) {
  .p-home-environment__image {
    margin-right: 0;
    margin-left: -0.1875rem;
  }
}

.p-home-environment__image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36.25rem;
  height: 26.25rem;
  background: #004e99;
  background: url(../images/home/environment_bg.webp) center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .p-home-environment__image::before {
    top: 49%;
    width: 34.375rem;
    height: 23.125rem;
  }
}

.p-home-environment__image img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.p-home-fv {
  position: relative;
  aspect-ratio: 1280/940;
  overflow-x: clip;
}
@media screen and (max-width: 768px) {
  .p-home-fv {
    aspect-ratio: 375/600;
  }
}

.p-home-fv__list {
  width: 100%;
  height: 100%;
  overflow: hidden;
  mix-blend-mode: multiply;
}

.p-home-fv__item {
  width: 100%;
  height: 100%;
}

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

.p-home-fv__inner {
  position: relative;
}

.p-home-fv__content {
  position: absolute;
  right: -5.75rem;
  bottom: 21.8125rem;
  z-index: 50;
}
@media (min-width: 1550px) {
  .p-home-fv__content {
    right: -11.25rem;
    bottom: 26.4516129032vw;
  }
}
@media (min-width: 1650px) {
  .p-home-fv__content {
    right: -15.625rem;
    bottom: 26.4516129032vw;
  }
}
@media (min-width: 1740px) {
  .p-home-fv__content {
    right: -18.75rem;
  }
}
@media (min-width: 2000px) {
  .p-home-fv__content {
    right: -23.75rem;
  }
}
@media (max-width: 1230px) {
  .p-home-fv__content {
    right: -1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .p-home-fv__content {
    right: -0.8vw;
    bottom: 20.5333333333vw;
  }
}
@media screen and (max-width: 375px) {
  .p-home-fv__content {
    right: -0.1875rem;
    bottom: 4.8125rem;
  }
}

.p-home-fv__title {
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
}
@media (min-width: 1550px) {
  .p-home-fv__title {
    font-size: clamp(4rem, 4.1290322581vw, 5.25rem);
  }
}
@media screen and (max-width: 768px) {
  .p-home-fv__title {
    font-size: 8.5333333333vw;
    letter-spacing: 0.05em;
    line-height: 1.1428571429;
  }
}
@media screen and (max-width: 375px) {
  .p-home-fv__title {
    font-size: 2rem;
  }
}

.p-home-fv__text {
  margin-top: 0.625rem;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.09em;
}
@media (min-width: 1550px) {
  .p-home-fv__text {
    font-size: clamp(1.5rem, 1.5483870968vw, 2rem);
  }
}
@media screen and (max-width: 768px) {
  .p-home-fv__text {
    font-size: 3.7333333333vw;
    letter-spacing: normal;
    line-height: 1.1428571429;
  }
}
@media screen and (max-width: 375px) {
  .p-home-fv__text {
    font-size: 0.875rem;
  }
}

.p-home-interview {
  overflow-x: clip;
}

.p-home-interview__inner.l-inner {
  padding-top: 4.125rem;
  padding-bottom: 3.125rem;
  max-width: 68.75rem;
}
@media screen and (max-width: 768px) {
  .p-home-interview__inner.l-inner {
    padding-top: 0.6875rem;
    padding-inline: 0;
  }
}

.p-home-interview__title {
  padding-left: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-home-interview__title {
    padding-inline: 2.25rem;
  }
}

.p-home-interview__title-en {
  margin-top: -0.625rem;
  margin-left: -0.8125rem;
  color: #e8eff6;
  font-size: 9.5rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-home-interview__title-en {
    margin-top: 0.4375rem;
    margin-left: 0;
    color: #004e99;
    font-size: 3rem;
    letter-spacing: normal;
  }
}

.p-home-interview__contents {
  margin-top: -4.25rem;
  margin-left: 1.4375rem;
  max-width: 64.1875rem;
}
@media screen and (max-width: 768px) {
  .p-home-interview__contents {
    margin-top: 2.8125rem;
    margin-left: 0;
  }
}

.p-home-recruitment {
  position: relative;
  overflow-x: clip;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .p-home-recruitment {
    background: #004e99;
  }
}
@media screen and (max-width: 375px) {
  .p-home-recruitment {
    background: transparent;
  }
}

.p-home-recruitment::before {
  content: "";
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 60.625vw;
  background: url(../images/home/recruitment_bg_pc.webp) center/contain no-repeat;
  z-index: -1;
}
@media (max-width: 1280px) {
  .p-home-recruitment::before {
    height: 48.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-home-recruitment::before {
    top: -7.8125rem;
    left: 0;
    transform: translate(0, 0);
    height: 22.5rem;
    background: url(../images/home/recruitment_bg_top.webp) top center/cover no-repeat;
    z-index: 5;
  }
}
@media screen and (max-width: 375px) {
  .p-home-recruitment::before {
    top: 49.9%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 64.25rem;
    background: url(../images/home/recruitment_bg_sp.webp) center/contain no-repeat;
  }
}

@media screen and (max-width: 768px) {
  .p-home-recruitment::after {
    content: "";
    position: absolute;
    bottom: -4.1875rem;
    left: 0;
    width: 100vw;
    height: 30.625rem;
    background: url(../images/home/recruitment_bg_bottom.webp) bottom center/cover no-repeat;
    z-index: 5;
  }
}
@media screen and (max-width: 375px) {
  .p-home-recruitment::after {
    content: none;
  }
}

.p-home-recruitment__inner {
  padding-top: 8.203125vw;
  padding-bottom: 14.375rem;
  padding-bottom: 14.0625vw;
}
@media (max-width: 1200px) {
  .p-home-recruitment__inner {
    padding-top: 7vw;
  }
}
@media screen and (max-width: 768px) {
  .p-home-recruitment__inner {
    padding-top: 5.625rem;
    padding-bottom: 5.625rem;
  }
}
@media screen and (max-width: 768px) {
  .p-home-recruitment__inner {
    padding-top: 3.75rem;
  }
}

@media screen and (max-width: 768px) {
  .p-home-recruitment__inner.l-inner {
    position: relative;
    z-index: 10;
    padding-inline: 0;
    max-width: 26.25rem;
  }
}

.p-home-recruitment__contents {
  padding-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-home-recruitment__contents {
    padding-top: 0;
  }
}

.p-home-recruitment__header {
  display: flex;
  align-items: flex-end;
  gap: 4.1875rem;
}
@media screen and (max-width: 768px) {
  .p-home-recruitment__header {
    display: block;
    padding-inline: 2.1875rem;
  }
}

.p-home-recruitment__title-ja.p-home__title-ja {
  color: #ffffff;
}

.p-home-recruitment__title-ja.p-home__title-ja::before {
  background: url(../images/common/icon_circle_white.webp) center/contain no-repeat;
}

.p-home-recruitment__title-en {
  margin-top: 0.625rem;
  color: #ffffff;
  font-size: 4.5rem;
}
@media screen and (max-width: 768px) {
  .p-home-recruitment__title-en {
    font-size: 2rem;
  }
}

.p-home__text.p-home-recruitment__text {
  margin-top: 0;
  padding-bottom: 1.25rem;
  color: #ffffff;
  max-width: 24rem;
}
@media screen and (max-width: 768px) {
  .p-home__text.p-home-recruitment__text {
    margin-top: 1rem;
    max-width: 100%;
  }
}

.p-home-recruitment__list {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-home-recruitment__list {
    margin-top: 0.3125rem;
    padding-inline: 1.4375rem;
    gap: 1.625rem;
  }
}

.p-home-recruitment__item {
  width: calc((100% - 4.25rem) / 3);
}
@media screen and (max-width: 768px) {
  .p-home-recruitment__item {
    width: 100%;
  }
}

.p-home-recruitment__item:first-child a::before {
  right: 1rem;
  bottom: 1rem;
  background: url(../images/home/recruitment_01.webp) center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .p-home-recruitment__item:first-child a::before {
    right: 0.75rem;
  }
}

.p-home-recruitment__item:nth-of-type(2) a::before {
  right: 1.0625rem;
  bottom: 0.375rem;
  background: url(../images/home/recruitment_02.webp) center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .p-home-recruitment__item:nth-of-type(2) a::before {
    right: 1.25rem;
    bottom: 0.5625rem;
  }
}

.p-home-recruitment__item:last-child a::before {
  right: 0.6875rem;
  bottom: -0.0625rem;
  background: url(../images/home/recruitment_03.webp) center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .p-home-recruitment__item:last-child a::before {
    right: 0.875rem;
    bottom: 0.125rem;
  }
}

.p-home-slider {
  overflow-x: clip;
  margin-bottom: -5.46875vw;
  padding-top: 12.890625vw;
  padding-bottom: 6.25vw;
}
@media (min-width: 1300px) {
  .p-home-slider {
    margin-bottom: -4.375vw;
  }
}
@media (min-width: 1600px) {
  .p-home-slider {
    margin-bottom: -2.375vw;
  }
}
@media (min-width: 1900px) {
  .p-home-slider {
    margin-bottom: -0.375vw;
  }
}
@media (min-width: 2000px) {
  .p-home-slider {
    margin-bottom: 0.625vw;
  }
}
@media screen and (max-width: 768px) {
  .p-home-slider {
    padding-top: 2.5rem;
    padding-bottom: 11.25rem;
  }
}
@media screen and (max-width: 375px) {
  .p-home-slider {
    padding-top: 6rem;
    padding-bottom: 3.625rem;
  }
}

.p-home-slider__wrapper {
  transform: rotate(5.9deg);
}

.p-home-slider__list {
  display: flex;
  gap: 5rem;
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .p-home-slider__list {
    gap: 2.5rem;
  }
}

.p-home-slider__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-home-slider__item {
    gap: 1rem;
  }
}

.p-home-slider__item-image {
  flex-shrink: 0;
  width: 8.4375rem;
  aspect-ratio: 1;
  margin-top: 1.4375rem;
}
@media screen and (max-width: 768px) {
  .p-home-slider__item-image {
    margin-top: 0.3125rem;
    width: 3.25rem;
  }
}

.p-home-slider__item-image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-home-slider__item-content {
  flex-shrink: 0;
}

.p-home-slider__item-title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.048em;
  line-height: 1.3333333333;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-home-slider__item-title {
    font-size: 1.125rem;
  }
}

.p-home-slider__item-text {
  margin-top: 0.625rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.6842105263;
  letter-spacing: 0.128em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-home-slider__item-text {
    margin-top: 0.3125rem;
    font-size: 0.625rem;
  }
}

.p-home__title-ja {
  position: relative;
  display: inline-block;
  padding-left: 1.5rem;
  color: #004e99;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.1;
}
@media (max-width: 450px) {
  .p-home__title-ja {
    padding-left: 1.1875rem;
    font-size: 0.75rem;
    letter-spacing: 0.01em;
  }
}

.p-home__title-ja::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1rem;
  height: 1.25rem;
  background: url(../images/common/icon_circle_green.webp) center/contain no-repeat;
}
@media (max-width: 450px) {
  .p-home__title-ja::before {
    width: 0.75rem;
    height: 1rem;
  }
}

.p-home__title-en {
  font-family: "Krona One", sans-serif;
}

.p-home__text {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.7142857143;
  letter-spacing: 0.05em;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .p-home__text {
    max-width: 100%;
    letter-spacing: 0.03em;
  }
}

.p-home__button {
  margin-top: 1.75rem;
  max-width: 13.875rem;
}
@media screen and (max-width: 768px) {
  .p-home__button {
    margin-top: 1.0625rem;
  }
}

@media screen and (max-width: 768px) {
  .p-home-environment .p-home__button {
    margin-top: 2.9375rem;
  }
}

.p-home__button a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 0.875rem;
  padding-bottom: 1rem;
  padding-left: 2rem;
  padding-right: 1.5rem;
  background: #02bab1;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}

.p-home__button-arrow {
  position: relative;
  display: inline-block;
  width: 0.6875rem;
  height: 0.5rem;
}

.p-home__button-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.9375rem;
  transform: translateY(-50%);
  width: 1px;
  height: 1.25rem;
  border-left: 1px dotted #000000;
}

.p-home__button-arrow img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}

@media (any-hover: hover) {
  .p-home__button a:hover .p-home__button-arrow img {
    transform: translateX(0.1875rem);
  }
}
.p-interview-sk .p-interview__fv-catch {
  position: absolute;
  top: 41%;
  right: 18px;
}
@media screen and (max-width: 768px) {
  .p-interview-sk .p-interview__fv-catch {
    top: 52%;
    right: auto;
    left: 0;
  }
}
.p-interview-sk .p-interview__fv-catch-text {
  padding-left: 1.125rem;
  padding-right: 2.4375rem;
}
@media screen and (max-width: 768px) {
  .p-interview-sk .p-interview__fv-catch-text {
    padding-left: 0.8125rem;
    padding-right: 1.625rem;
  }
}
.p-interview-sk .p-interview__fv-catch-text + .p-interview__fv-catch-text {
  padding-right: 3.375rem;
}
@media screen and (max-width: 768px) {
  .p-interview-sk .p-interview__fv-catch-text + .p-interview__fv-catch-text {
    padding-right: 2.1875rem;
  }
}
.p-interview-sk .p-interview__fv-meta {
  bottom: 14.3%;
  right: 1.1875rem;
}
@media screen and (max-width: 768px) {
  .p-interview-sk .p-interview__fv-meta {
    bottom: 0;
    right: 0.0625rem;
  }
}
.p-interview-sk .p-interview__fv-dept {
  padding-right: 3.8125rem;
  padding-left: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-interview-sk .p-interview__fv-dept {
    padding-right: 3.1875rem;
    padding-left: 0.5rem;
    letter-spacing: 0.05em;
  }
}
.p-interview-sk .p-interview__fv-name + .p-interview__fv-dept {
  padding-right: 3rem;
}
.p-interview-sk .p-interview__fv-name {
  padding-block: 0.25rem;
  padding-left: 0.75rem;
  padding-right: 4rem;
}
@media screen and (max-width: 768px) {
  .p-interview-sk .p-interview__fv-name {
    padding-left: 0.5rem;
    padding-right: 3.3125rem;
  }
}

@media screen and (max-width: 768px) {
  .p-interview-yk .p-interview__block-title {
    letter-spacing: 0.02em;
  }
}

.p-interview__inner {
  max-width: 74.125rem;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-interview__inner {
    padding-inline: 2.1875rem;
    padding-right: 2.875rem;
  }
}

@media (max-width: 1280px) and (min-width: 769px) {
  .p-interview__block > .p-interview__inner {
    max-width: none;
    padding-inline: 5.625vw;
  }
}

.p-interview__fv {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-interview__fv {
    overflow: visible;
  }
}

.p-interview__fv picture {
  display: block;
  width: 100%;
}

.p-interview__fv img {
  display: block;
  width: 100%;
  height: auto;
}

.p-interview__fv-inner {
  position: absolute;
  inset: 0;
  max-width: 65.25rem;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-interview__fv-inner {
    padding-inline: 1.25rem;
  }
}

.p-interview__fv .p-under-title {
  position: absolute;
  top: 9.8%;
  right: 3.2%;
}
@media screen and (max-width: 768px) {
  .p-interview__fv .p-under-title {
    top: -1.875rem;
    right: auto;
    left: 1.4375rem;
  }
}

.p-interview__fv .p-under-title__en {
  font-size: 3.5rem;
}
@media screen and (max-width: 768px) {
  .p-interview__fv .p-under-title__en {
    font-size: 2rem;
    background: transparent;
  }
}

@media screen and (max-width: 768px) {
  .p-interview__fv .p-under-title__ja {
    background: transparent;
  }
}

.p-interview__fv-catch {
  position: absolute;
  top: 41%;
  right: 1.125rem;
}
@media screen and (max-width: 768px) {
  .p-interview__fv-catch {
    top: auto;
    bottom: 25%;
    left: 1rem;
  }
}

.p-interview__fv-catch-text {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding-block: 0.375rem;
  background: #009b8d;
  color: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-interview__fv-catch-text {
    font-size: 1.25rem;
    padding: 0.3125rem 0.625rem;
    letter-spacing: 0.12em;
  }
}

.p-interview__fv-catch-text + .p-interview__fv-catch-text {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-interview__fv-catch-text + .p-interview__fv-catch-text {
    margin-top: 0.5rem;
  }
}

.p-interview__fv-meta {
  position: absolute;
}

.p-interview__fv-name {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background: #009b8d;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .p-interview__fv-name {
    font-size: 1.1875rem;
    padding: 0.25rem 0.875rem;
  }
}

.p-interview__fv-dept {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0.25rem;
  padding-block: 0.25rem;
  background: #009b8d;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.1;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-interview__fv-dept {
    padding: 0.125rem 0.5rem;
    font-size: 0.75rem;
  }
}

.p-interview__fv-dept + .p-interview__fv-dept {
  margin-top: 0.5rem;
  letter-spacing: -0.001em;
}
@media screen and (max-width: 768px) {
  .p-interview__fv-dept + .p-interview__fv-dept {
    margin-top: 0.5625rem;
    letter-spacing: 0.05em;
  }
}

.p-interview__fv--img {
  position: relative;
  overflow: hidden;
}

.p-interview__fv--img .p-under-title__ja {
  position: absolute;
  left: -9999px;
}

.p-interview__fv--img picture {
  display: block;
  width: 100%;
  aspect-ratio: 2561/1360;
}
@media screen and (max-width: 768px) {
  .p-interview__fv--img picture {
    aspect-ratio: 750/803;
  }
}

.p-interview__fv--img picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-interview__block--work {
  margin-top: 4.1875rem;
}
@media screen and (max-width: 768px) {
  .p-interview__block--work {
    margin-top: 3.3125rem;
  }
}

.p-interview__block--mission {
  margin-top: 7.3125rem;
}
@media screen and (max-width: 768px) {
  .p-interview__block--mission {
    margin-top: 3.1875rem;
  }
}

.p-interview__block--vision {
  margin-top: 8.75rem;
}
@media screen and (max-width: 768px) {
  .p-interview__block--vision {
    margin-top: 3.125rem;
  }
}

.p-interview__block-body {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}
@media (max-width: 1280px) {
  .p-interview__block-body {
    padding-inline: 1.953125vw;
  }
}
@media screen and (max-width: 768px) {
  .p-interview__block-body {
    display: block;
    width: 100%;
    margin-inline: 0;
    padding-inline: 0;
  }
}

.p-interview__block-body-text {
  display: contents;
}
@media screen and (max-width: 768px) {
  .p-interview__block-body-text {
    display: grid;
  }
}

.p-interview__block-content {
  flex: 1;
  padding-right: 3.9375rem;
}
@media (max-width: 1280px) {
  .p-interview__block-content {
    padding-right: 4.921875vw;
  }
}
@media screen and (max-width: 768px) {
  .p-interview__block-content {
    grid-row: 1;
    grid-column: 1;
    width: auto;
    padding-right: 0;
  }
}

.p-interview__block-sidebar {
  position: sticky;
  top: 6.875rem;
  left: 0;
  align-self: flex-start;
  width: 2.5rem;
  transform: translateX(var(--label-offset-x, calc(-100% - 4rem)));
  padding-top: 0.5rem;
}
@media (max-width: 1280px) {
  .p-interview__block-sidebar {
    width: 3.125vw;
    transform: translateX(calc(-100% - 5vw));
  }
}
@media screen and (max-width: 768px) {
  .p-interview__block-sidebar {
    grid-row: 1;
    grid-column: 1;
    align-self: start;
    top: 5rem;
    width: 0;
    overflow: visible;
    padding-top: 0.4375rem;
    transform: translateX(-2.4375rem);
  }
}

.p-interview__block-label {
  writing-mode: vertical-rl;
  color: #009b8d;
  font-family: "Krona One", sans-serif;
  font-size: 3.4375rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-interview__block-label {
    font-size: 2rem;
  }
}

.p-interview__block-main {
  flex: 1;
}

.p-interview__block-title {
  position: relative;
  padding-bottom: 2.125rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5555555556;
}
@media screen and (max-width: 768px) {
  .p-interview__block-title {
    padding-bottom: 0.8125rem;
    font-size: 1.125rem;
    letter-spacing: 0.04em;
  }
}

.p-interview__block-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3.125rem;
  height: 3px;
  background: #009b8d;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .p-interview__block-title::after {
    width: 2.5rem;
    height: 2px;
  }
}

.p-interview__block-text {
  margin-top: 1.3125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-interview__block-text {
    margin-top: 0.4375rem;
    font-size: 0.875rem;
    letter-spacing: -0.01em;
  }
}

.p-interview__block--mission .p-interview__block-text {
  letter-spacing: 0.01em;
}

.p-interview__block--vision .p-interview__block-text {
  max-width: 60rem;
  letter-spacing: 0.01em;
}

.p-interview__block-text p + p {
  margin-top: 1.9em;
}
@media screen and (max-width: 768px) {
  .p-interview__block-text p + p {
    margin-top: 1.75rem;
  }
}

@media screen and (max-width: 768px) {
  .p-interview__block--vision .p-interview__block-text p + p,
  .p-interview__block--mission .p-interview__block-text p + p {
    margin-top: 0;
  }
}

.p-interview__block-image {
  flex-shrink: 0;
  width: 37.5rem;
  height: auto;
  aspect-ratio: 1;
  margin-right: -6.0625rem;
  margin-top: 0.3125rem;
}
@media (max-width: 1280px) {
  .p-interview__block-image {
    width: 46.875vw;
    margin-right: -7.578125vw;
  }
}
@media screen and (max-width: 768px) {
  .p-interview__block-image {
    width: calc(100% + 2.1875rem + 2.875rem);
    margin-top: 3.1875rem;
    margin-right: -2.875rem;
    margin-left: -2.1875rem;
  }
}

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

.p-interview__block--no-image .p-interview__block-content {
  padding-right: 0;
}

.p-interview__block--no-image .p-interview__block-image {
  display: none;
}

.p-interview__message {
  position: relative;
  margin-top: 3.75rem;
  overflow-x: clip;
}
@media screen and (max-width: 768px) {
  .p-interview__message {
    margin-top: 3.25rem;
  }
}

.p-interview__message-inner {
  position: relative;
  margin-top: 2.3125rem;
  max-width: 71.125rem;
}
@media screen and (max-width: 768px) {
  .p-interview__message-inner {
    margin-top: 4.125rem;
    padding-inline: 0;
  }
}

.p-interview__message-figure {
  width: 100%;
  margin-inline: auto;
}

.p-interview__message-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.p-interview__message-contents {
  position: relative;
  padding-top: 4.625rem;
  padding-inline: 2.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-interview__message-contents {
    background: rgba(0, 155, 141, 0.56);
    isolation: isolate;
    padding-top: 3.1875rem;
    padding-bottom: 3.0625rem;
    padding-inline: 2.25rem;
  }
}

.p-interview__message-contents::before {
  content: "";
  position: absolute;
  top: 0;
  left: -0.5rem;
  width: calc(100vw - ((100vw - 66.0625rem) / 2 - 1.4375rem));
  height: 100%;
  background: url(../images/interview/bg_message_pc.webp) left center/cover no-repeat;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-interview__message-contents::before {
    display: block;
    left: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 751/337;
    background: url(../images/interview/bg_message_top_sp.webp) center/100% auto no-repeat;
  }
}

@media screen and (max-width: 768px) {
  .p-interview__message-contents::after {
    content: "";
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 751/214;
    background: url(../images/interview/bg_message_botoom_sp.webp) center/100% auto no-repeat;
    z-index: -1;
  }
}

.p-interview__message-heading {
  position: absolute;
  top: 0;
  left: 2.625rem;
  display: flex;
  align-items: center;
  gap: 1.875rem;
  background: #ffffff;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 0.4375rem;
  padding-right: 5.3125rem;
  padding-left: 0.875rem;
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .p-interview__message-heading {
    gap: 0.9375rem;
    top: -0.0625rem;
    left: 1.3125rem;
    padding-top: 0.0625rem;
    padding-right: 5.625rem;
    padding-left: 0.6875rem;
  }
}

.p-interview__message-en {
  font-family: "Krona One", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-interview__message-en {
    font-size: 1.5rem;
  }
}

.p-interview__message-ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-interview__message-ja {
    font-size: 0.875rem;
  }
}

.p-interview__message-text {
  max-width: 60rem;
  margin-top: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 2rem;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .p-interview__message-text {
    margin-top: 0;
    font-size: 0.875rem;
    line-height: 2;
  }
}

.p-interview-list__layout {
  overflow-x: clip;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .p-interview-list__layout {
    margin-top: 3.9375rem;
  }
}

.p-environment .p-interview__list {
  margin-right: -1.625rem;
}
@media (max-width: 1100px) {
  .p-environment .p-interview__list {
    gap: 1.625rem;
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-environment .p-interview__list {
    gap: 5.4375rem;
    margin-right: 0;
  }
}

@media (max-width: 1100px) {
  .p-environment .p-interview__item {
    width: calc((100% - 3.25rem) / 3);
  }
}
@media screen and (max-width: 768px) {
  .p-environment .p-interview__item {
    width: 100%;
  }
}

.p-environment .p-interview-list__title {
  padding-left: 1.75rem;
}
@media screen and (max-width: 768px) {
  .p-environment .p-interview-list__title {
    padding-left: 0.5rem;
    color: #e8eff6;
  }
}

.p-interview-list__inner {
  padding-top: 5rem;
  padding-bottom: 10.625rem;
  max-width: 68.75rem;
}
@media screen and (max-width: 768px) {
  .p-interview-list__inner {
    padding-top: 0;
    padding-bottom: 7rem;
  }
}

.p-interview-list__title {
  font-family: "Krona One", sans-serif;
  font-size: 9.5rem;
  color: #e8eff6;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-interview-list__title {
    color: #004e99;
    font-size: 3rem;
    letter-spacing: normal;
  }
}

.p-interview .p-interview-list__contents {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-interview .p-interview-list__contents {
    margin-left: -2.1875rem;
    margin-right: -2.875rem;
  }
}

.p-interview__slider {
  position: relative;
}
.p-interview__slider.swiper {
  overflow-x: clip;
  overflow-y: visible;
}
@media screen and (max-width: 768px) {
  .p-interview__slider.swiper {
    padding-bottom: 2.5rem;
    margin-bottom: -2.5rem;
  }
}

@media (min-width: 769px) {
  .p-interview__slider {
    margin-right: calc(-50vw + 50%);
    padding-left: 1.5625rem;
    margin-left: -1.5625rem;
  }
}
.p-interview__slider-nav {
  position: absolute;
  top: -8.625rem;
  right: calc(50vw - 50% + 6rem);
  display: flex;
  gap: 0.75rem;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-interview__slider-nav {
    top: -3.375rem;
    right: 2rem;
    gap: 0.125rem;
  }
}

.p-interview__slider-prev,
.p-interview__slider-next {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 1.875rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .p-interview__slider-prev,
  .p-interview__slider-next {
    width: 1.875rem;
  }
}

.p-interview__slider-prev::before,
.p-interview__slider-next::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 4px;
  background: #009b8d;
}
@media screen and (max-width: 768px) {
  .p-interview__slider-prev::before,
  .p-interview__slider-next::before {
    height: 3px;
    width: 1rem;
  }
}

.p-interview__slider-prev::after,
.p-interview__slider-next::after {
  content: "";
  position: absolute;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border-top: 4px solid #009b8d;
  border-right: 4px solid #009b8d;
}
@media screen and (max-width: 768px) {
  .p-interview__slider-prev::after,
  .p-interview__slider-next::after {
    width: 0.75rem;
    height: 0.75rem;
    border-top: 3px solid #009b8d;
    border-right: 3px solid #009b8d;
  }
}

.p-interview__slider-prev:hover,
.p-interview__slider-next:hover {
  opacity: 0.7;
}

.p-interview__slider-prev::after {
  left: 0;
  transform: rotate(-135deg);
}

.p-interview__slider-next::after {
  right: 0;
  transform: rotate(45deg);
}

.p-interview__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  -moz-column-gap: 3.4375rem;
       column-gap: 3.4375rem;
  row-gap: 7.5rem;
  margin-top: 4.375rem;
}
@media (max-width: 1100px) {
  .p-interview__list {
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
    row-gap: 5.625rem;
  }
}
@media screen and (max-width: 768px) {
  .p-interview__list {
    align-items: center;
    flex-direction: column;
    gap: 5.4375rem;
  }
}

.p-interview__item {
  width: 19.0625rem;
  height: 100%;
  aspect-ratio: 1;
}
@media (max-width: 1100px) {
  .p-interview__item {
    width: calc((100% - 5rem) / 3);
  }
}
@media screen and (max-width: 768px) {
  .p-interview__item {
    width: 100%;
    max-width: 19.0625rem;
  }
}

.p-interview__slider .p-interview__list {
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
}

.p-interview__slider .p-interview__item {
  width: 100%;
  height: auto;
}

.p-interview__item a {
  position: relative;
  width: 100%;
  height: 100%;
  padding-block: 1.5625rem;
  padding-inline: 2rem;
  background: url(../images/home/interview_card.webp) center/contain no-repeat;
  transition: transform 0.3s ease;
}

.p-interview__item a:hover {
  transform: translateY(-8px);
}

.p-interview__department {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.064em;
  line-height: 1.75;
}

.p-interview__name {
  display: block;
  margin-top: 0.9375rem;
  color: #ffffff;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.128em;
  line-height: 1;
}

.p-interview__comment {
  position: absolute;
  bottom: -1.4375rem;
  left: -1.25rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-interview__comment {
    bottom: -1.3125rem;
  }
}

.p-interview__comment span {
  display: inline-block;
  padding-block: 0.5625rem;
  padding-inline: 0.625rem;
  color: #009b8d;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.128em;
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .p-interview__comment span {
    padding-inline: 0.4375rem;
  }
}

@media screen and (max-width: 768px) {
  .p-interview__slider .p-interview__item a {
    padding: min(3.7333333333vw, 20px);
  }
}

@media screen and (max-width: 768px) {
  .p-interview__slider .p-interview__department {
    font-size: max(2.4vw, 9px);
  }
}

@media screen and (max-width: 768px) {
  .p-interview__slider .p-interview__name {
    font-size: max(2.9333333333vw, 11px);
  }
}

@media screen and (max-width: 768px) {
  .p-interview__slider .p-interview__comment span {
    font-size: max(2.9333333333vw, 11px);
  }
}

.p-interview__item-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  aspect-ratio: 2429/2906;
}

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

.p-interview__schedule {
  position: relative;
  margin-top: 8.25rem;
  padding-bottom: 2.625rem;
  overflow-x: clip;
}
@media screen and (max-width: 768px) {
  .p-interview__schedule {
    margin-top: 3.4375rem;
    background: rgba(0, 155, 141, 0.56);
    padding-bottom: 0;
  }
}

.p-interview__schedule-bg {
  position: absolute;
  top: 0;
  left: calc((100vw - 66.0625rem) / 2 - 1.4375rem);
  width: calc(100vw - ((100vw - 66.0625rem) / 2 - 1.4375rem));
  height: 100%;
  background: rgba(0, 155, 141, 0.56);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .p-interview__schedule-bg {
    display: none;
  }
}

.p-interview__schedule-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 2705/764;
  background: url(../images/interview/bg_schedule_pc_top.webp) center/cover no-repeat;
}

.p-interview__schedule-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 2705/678;
  background: url(../images/interview/bg_schedule_pc_bottom.webp) center/cover no-repeat;
}

@media screen and (max-width: 768px) {
  .p-interview__schedule::before,
  .p-interview__schedule::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    z-index: 0;
  }
}

@media screen and (max-width: 768px) {
  .p-interview__schedule::before {
    top: -0.4375rem;
    aspect-ratio: 751/280;
    background: url(../images/interview/bg_schedule_top_sp.webp) bottom center/cover no-repeat;
  }
}
@media screen and (max-width: 375px) {
  .p-interview__schedule::before {
    aspect-ratio: 751/609;
    background: url(../images/interview/bg_schedule_top_sp.webp) center/cover no-repeat;
  }
}

@media screen and (max-width: 768px) {
  .p-interview__schedule::after {
    bottom: -0.1875rem;
    aspect-ratio: 751/280;
    background: url(../images/interview/bg_schedule_bottom_sp.webp) top center/cover no-repeat;
  }
}
@media screen and (max-width: 375px) {
  .p-interview__schedule::after {
    aspect-ratio: 751/463;
    background: url(../images/interview/bg_schedule_bottom_sp.webp) center/cover no-repeat;
  }
}

.p-interview__schedule-inner {
  position: relative;
  z-index: 1;
}

.p-interview__schedule-inner.p-interview__inner {
  position: relative;
  max-width: 67.0625rem;
  padding-top: 5.9375rem;
}
@media screen and (max-width: 768px) {
  .p-interview__schedule-inner.p-interview__inner {
    padding-top: 3.875rem;
    padding-left: 1.25rem;
    padding-right: 2.4375rem;
    padding-bottom: 3.375rem;
  }
}

.p-interview__schedule-heading {
  position: absolute;
  top: 0;
  left: 2.1875rem;
  display: flex;
  align-items: center;
  gap: 2.5625rem;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 0.0625rem;
  padding-right: 4.25rem;
  padding-left: 0.875rem;
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .p-interview__schedule-heading {
    top: -0.0625rem;
    left: 1.25rem;
    gap: 1.3125rem;
    padding-right: 1.625rem;
    padding-bottom: 0.375rem;
  }
}

.p-interview__schedule-en {
  font-family: "Krona One", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.1;
}

@media screen and (max-width: 768px) {
  .p-interview__schedule-en {
    font-size: 1.5rem;
  }
}

.p-interview__schedule-ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .p-interview__schedule-ja {
    font-size: 0.875rem;
  }
}

.p-interview__schedule-grid {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-interview__schedule-grid {
    flex-direction: column;
    justify-content: flex-start;
    gap: 2rem;
  }
}

.p-interview__schedule-col {
  flex-shrink: 0;
  width: 100%;
  max-width: 28.4375rem;
}
@media screen and (max-width: 768px) {
  .p-interview__schedule-col {
    margin-inline: auto;
  }
}

.p-interview__schedule-item {
  display: flex;
  gap: 1.6875rem;
}
@media screen and (max-width: 768px) {
  .p-interview__schedule-item {
    gap: 1.125rem;
  }
}

.p-interview__schedule-item + .p-interview__schedule-item {
  margin-top: 2.0625rem;
}
@media screen and (max-width: 768px) {
  .p-interview__schedule-item + .p-interview__schedule-item {
    margin-top: 2rem;
  }
}

.p-interview__schedule-time {
  flex-shrink: 0;
  min-width: 4.75rem;
  font-family: "Krona One", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-interview__schedule-time {
    min-width: 3.5rem;
    font-size: 0.9375rem;
  }
}

.p-interview__schedule-text {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .p-interview__schedule-text {
    font-size: 0.75rem;
    letter-spacing: 0.01em;
    line-height: 1.8;
  }
}

.p-interview__schedule-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1.0625rem;
  height: 104%;
  width: 2px;
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .p-interview__schedule-text::before {
    left: -0.75rem;
    height: 94%;
    width: 1px;
  }
}

.p-interview__schedule-title {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 768px) {
  .p-interview__schedule-title {
    font-size: 0.8125rem;
  }
}

.p-recruitment__fv {
  position: relative;
  height: 43.75vw;
  aspect-ratio: 1280/560;
}
@media screen and (max-width: 768px) {
  .p-recruitment__fv {
    height: 89.6vw;
    aspect-ratio: 375/336;
  }
}

.p-recruitment__fv::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
  aspect-ratio: 1280/560;
  background: url(../images/recruitment/bg_fv_pc.webp) center/contain no-repeat;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-recruitment__fv::before {
    aspect-ratio: 375/336;
    background: url(../images/recruitment/bg_fv_sp.webp) center/contain no-repeat;
  }
}

.p-recruitment__fv-inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 62.5rem;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}

.p-recruitment__fv-content {
  position: absolute;
  bottom: 34.4%;
  left: 3%;
}
@media screen and (max-width: 768px) {
  .p-recruitment__fv-content {
    bottom: 26.4%;
    left: 6%;
  }
}

.p-recruitment__fv .p-under-title__ja::before {
  background: url(../images/common/icon_circle_white.webp) center/contain no-repeat;
}

.p-recruitment__fv-text {
  margin-top: 1.125rem;
  padding-inline: 0.9375rem;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.7142857143;
}
@media screen and (max-width: 768px) {
  .p-recruitment__fv-text {
    letter-spacing: 0.01em;
  }
}

.p-recruitment__header {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .p-recruitment__header {
    align-items: flex-end;
    gap: 1.5rem;
    padding-left: 1rem;
  }
}

.p-recruitment__icon {
  flex-shrink: 0;
  max-width: 4rem;
  height: auto;
  aspect-ratio: 64/79;
}
@media screen and (max-width: 768px) {
  .p-recruitment__icon {
    max-width: 3.3125rem;
  }
}

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

@media screen and (max-width: 768px) {
  .p-recruitment__title {
    padding-bottom: 0.625rem;
  }
}

.p-recruitment__title-ja {
  color: #004e99;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.128em;
}
@media screen and (max-width: 768px) {
  .p-recruitment__title-ja {
    font-size: 1.25rem;
  }
}

.p-recruitment__title-en {
  margin-top: 0.1875rem;
  color: #004e99;
  font-family: "Krona One", sans-serif;
  font-size: 0.75rem;
  line-height: 1.1;
  letter-spacing: 0.2em;
}

.p-recruitment__body {
  margin-top: 2.0625rem;
}

.p-recruitment__list {
  border-radius: 0.625rem;
  overflow: clip;
}
@media screen and (max-width: 768px) {
  .p-recruitment__list {
    border-radius: 0.5rem;
  }
}

.p-recruitment__row {
  display: grid;
  grid-template-columns: 10.625rem 1fr;
}
@media screen and (max-width: 768px) {
  .p-recruitment__row {
    grid-template-columns: 6.875rem 1fr;
  }
}
@media (max-width: 400px) {
  .p-recruitment__row {
    grid-template-columns: 4.75rem 1fr;
  }
}

.p-recruitment__row:nth-child(odd) .p-recruitment__term {
  background: rgba(221, 226, 233, 0.4);
}

.p-recruitment__row:nth-child(odd) .p-recruitment__desc {
  background: rgba(221, 226, 233, 0.4);
}

.p-recruitment__row:nth-child(even) .p-recruitment__term {
  background: rgba(221, 226, 233, 0.2);
}

.p-recruitment__row:nth-child(even) .p-recruitment__desc {
  background: rgba(221, 226, 233, 0.2);
}

.p-recruitment__term {
  padding-top: 0.875rem;
  padding-bottom: 0.625rem;
  padding-left: 2.5rem;
  padding-right: 0.5rem;
  color: #004e99;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-recruitment__term {
    padding-block: 0.75rem;
    padding-left: 1rem;
    padding-right: 0;
    font-size: 0.75rem;
  }
}

.p-recruitment__desc {
  padding-top: 0.875rem;
  padding-bottom: 1.125rem;
  padding-inline: 0.625rem;
  color: #090000;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .p-recruitment__desc {
    padding-block: 0.75rem;
    padding-inline: 0.6875rem;
    font-size: 0.75rem;
  }
}

.p-recruitment__inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 63.125rem;
  margin-inline: auto;
  padding-inline: 1.5625rem;
  padding-top: 0.6875rem;
  padding-bottom: 6.0625rem;
}
@media screen and (max-width: 768px) {
  .p-recruitment__inner {
    padding-top: 1.9375rem;
    padding-inline: 1.3125rem;
    max-width: 35.625rem;
  }
}

.p-recruitment__fv .p-under-title__ja,
.p-recruitment__fv .p-under-title__en {
  background: transparent;
  color: #ffffff;
}

.p-recruitment__fv .p-under-title__en {
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  .p-recruitment__fv .p-under-title__en {
    font-size: 2rem;
  }
}

.p-recruitment__entry-cards {
  margin-top: 5.125rem;
}

.p-recruitment__entry-item {
  width: calc((100% - 2.125rem) / 2);
  max-width: 20.5rem;
  border: 2px solid #004e99;
}
@media screen and (max-width: 768px) {
  .p-recruitment__entry-item {
    width: 100%;
  }
}

.p-recruitment__entry-item:first-child a::before {
  right: 1.0625rem;
  bottom: 0.375rem;
  background: url(../images/home/recruitment_02.webp) center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .p-recruitment__entry-item:first-child a::before {
    right: 1.25rem;
    bottom: 0.5625rem;
  }
}

.p-recruitment__entry-item:last-child a::before {
  right: 0.6875rem;
  bottom: -0.0625rem;
  background: url(../images/home/recruitment_03.webp) center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .p-recruitment__entry-item:last-child a::before {
    right: 0.875rem;
    bottom: 0.125rem;
  }
}

.p-recruitment__term-br {
  display: none;
}
@media screen and (max-width: 375px) {
  .p-recruitment__term-br {
    display: block;
  }
}

.p-under-fv {
  width: 100%;
  height: auto;
}

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

.p-about__fv.p-under-fv {
  margin-top: 6.125rem;
}
@media screen and (max-width: 768px) {
  .p-about__fv.p-under-fv {
    margin-top: 3.5rem;
  }
}

.p-environment__fv.p-under-fv {
  margin-top: 7.1875rem;
}
@media screen and (max-width: 768px) {
  .p-environment__fv.p-under-fv {
    margin-top: 4.25rem;
  }
}

.p-interview__fv.p-under-fv {
  margin-top: 7.625rem;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-interview__fv.p-under-fv {
    margin-top: 4.9375rem;
  }
}

.p-recruitment__fv.p-under-fv {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .p-recruitment__fv.p-under-fv {
    margin-top: 3.5rem;
  }
}

.p-under-title__ja {
  position: relative;
  max-width: 27rem;
  padding-top: 0.5625rem;
  padding-bottom: 0.8125rem;
  padding-left: 2.5rem;
  background: #ffffff;
  color: #004e99;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .p-under-title__ja {
    font-size: 0.75rem;
    width: -moz-fit-content;
    width: fit-content;
    letter-spacing: normal;
    padding-top: 0.5625rem;
    padding-bottom: 0.9375rem;
    padding-right: 1.125rem;
    padding-left: 1.9375rem;
  }
}

.p-under-title__ja::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  width: 1rem;
  height: 1.25rem;
  background: url(../images/common/icon_circle_green.webp) center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .p-under-title__ja::before {
    top: 44%;
    left: 0.75rem;
    width: 0.8125rem;
    height: 1.0625rem;
  }
}

.p-interview .p-under-title__ja::before {
  content: none;
}

.p-under-title__en {
  margin-top: -0.0625rem;
  padding-top: 0.375rem;
  padding-inline: 1rem;
  background: #ffffff;
  color: #004e99;
  font-family: "Krona One", sans-serif;
  font-size: 4.5rem;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .p-under-title__en {
    padding-top: 0.125rem;
    padding-inline: 0.8125rem;
    font-size: 3rem;
  }
}

/* ========================================
   Scroll Fade-in Animation
   ======================================== */
.js-body.is-active {
  overflow: hidden;
}

.js-fade-in-stagger {
  opacity: 0;
  transform: translateY(1.875rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-fade-in-stagger.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-fade-in {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

.u-df {
  display: flex;
}

.u-jc-c {
  justify-content: center;
}

.u-jc-sb {
  justify-content: space-between;
}

.u-ai-c {
  align-items: center;
}

@media screen and (max-width: 768px) {
  .u-ai-c-md-max {
    align-items: center;
  }
}

.u-fd-c {
  flex-direction: column;
}

@media screen and (max-width: 768px) {
  .u-fd-c-md-max {
    flex-direction: column;
  }
}

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

.u-font-bold {
  font-weight: 700;
}

.u-po-rel {
  position: relative;
}

.u-po-abs {
  position: absolute;
}

@media screen and (max-width: 768px) {
  .u-po-sta-md-max {
    position: static;
  }
}
/*# sourceMappingURL=style.css.map */
