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

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  padding: 0;
  margin: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

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

ol,
ul {
  list-style: none;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

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

[hidden] {
  display: none !important;
}

:root {
  --color-primary: #53b34f;
  --color-secondary: #003700;
  --color-black: #333333;
  --color-nature-500: #666666;
  --color-nature-400: #d3d3d3;
  --color-nature-300: #eaeaea;
  --color-background: #f7f5e8;
  --color-panel: #f3eac4;
  --color-message-bg: #f7f5e8;
  --color-text: #4d4036;
  --color-brown: #6b482f;
  --color-green: #6d9351;
  --color-green-dark: #2f4b31;
  --color-green-soft: #edf3df;
  --color-cream: #f7f5e8;
  --color-paper: #fffaf0;
  --color-accent: #f58433;
  --color-yellow: #f2cc3f;
  --color-white: #ffffff;
  --font-body: "IBM Plex Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --font-heading: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif;
  --font-roboto: "Roboto", "Helvetica Neue", Arial, sans-serif;
  --design-width: 1480;
  --design-cap: 1920px;
  --content-max: max(1104px, calc(1104 / var(--design-width) * min(100vw, var(--design-cap))));
  --content-narrow: max(1102px, calc(1102 / var(--design-width) * min(100vw, var(--design-cap))));
  --gutter: 32px;
  --body-font-size-min: 15px;
  --body-line-height-sp-xs: 1.7;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
@media (min-width: 1481px) {
  html {
    font-size: calc(10px * min(100vw, 1920px) / 1480);
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 58%;
  }
}
@media screen and (max-width: 486px) {
  html {
    font-size: 55%;
  }
}

body {
  min-width: 320px;
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-roboto), var(--font-body);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  word-break: break-word;
}

main {
  display: block;
}

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

img {
  width: auto;
  height: auto;
}

address {
  font-style: normal;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

::selection {
  background: rgba(109, 147, 81, 0.2);
}

:root {
  --transition-duration: 0.2s;
  --transition-ease: ease;
}

@media (prefers-reduced-motion: no-preference) {
  a,
  button {
    transition: color var(--transition-duration) var(--transition-ease), background-color var(--transition-duration) var(--transition-ease), border-color var(--transition-duration) var(--transition-ease), opacity var(--transition-duration) var(--transition-ease), transform var(--transition-duration) var(--transition-ease), box-shadow var(--transition-duration) var(--transition-ease), text-decoration-color var(--transition-duration) var(--transition-ease);
  }
}
.l-wrapper {
  --site-header-height: min(max(100px, 100 / 1480 * min(100vw, 1920px)), 100px);
  min-height: 100vh;
  background: var(--color-background);
}
@media screen and (max-width: 768px) {
  .l-wrapper {
    --site-header-height: 84px;
  }
}
@media screen and (max-width: 486px) {
  .l-wrapper {
    --site-header-height: 72px;
  }
}

.l-container {
  width: min(100% - var(--gutter) * 2, var(--content-max));
  margin-inline: auto;
}
@media screen and (max-width: 486px) {
  .l-container {
    width: min(100% - 40px, var(--content-max));
  }
}

.l-header.p-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
}

.l-main {
  overflow-x: clip;
}

.l-footer {
  position: relative;
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 54px;
  padding: 12px 34px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--color-green);
  box-shadow: 0 10px 18px rgba(61, 88, 40, 0.14);
  color: var(--color-white);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.c-button:hover, .c-button:focus-visible {
  background: var(--color-green-dark);
  color: var(--color-white);
  transform: translateY(-2px);
}
.c-button:focus-visible {
  outline: 3px solid rgba(109, 147, 81, 0.3);
  outline-offset: 3px;
}
.c-button--light {
  background: var(--color-white);
  box-shadow: 0 8px 18px rgba(36, 56, 25, 0.18);
  color: var(--color-green);
}
.c-button--light:hover, .c-button--light:focus-visible {
  background: var(--color-paper);
  color: var(--color-green-dark);
}

.c-logo {
  position: relative;
  display: inline-grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "mark sub" "mark name";
  column-gap: 12px;
  align-items: center;
  color: var(--color-brown);
  font-weight: 700;
  line-height: 1.2;
}
.c-logo::before {
  grid-area: mark;
  content: "";
  width: 46px;
  height: 46px;
  border: 3px solid currentColor;
  border-radius: 50% 50% 44% 44%;
  background: radial-gradient(circle at 35% 43%, currentColor 0 2px, transparent 2.5px), radial-gradient(circle at 65% 43%, currentColor 0 2px, transparent 2.5px), radial-gradient(circle at 50% 64%, currentColor 0 3px, transparent 3.5px), var(--color-white);
  box-shadow: -10px -16px 0 -7px var(--color-white), -10px -16px 0 -4px currentColor, 10px -16px 0 -7px var(--color-white), 10px -16px 0 -4px currentColor;
}
.c-logo__sub {
  grid-area: sub;
  font-size: 1.2rem;
}
.c-logo__name {
  grid-area: name;
  font-family: var(--font-heading);
  font-size: 2.7rem;
  font-weight: 700;
  white-space: nowrap;
}
.c-logo--light {
  color: var(--color-white);
}
.c-logo--light::before {
  background: radial-gradient(circle at 35% 43%, var(--color-green-dark) 0 2px, transparent 2.5px), radial-gradient(circle at 65% 43%, var(--color-green-dark) 0 2px, transparent 2.5px), radial-gradient(circle at 50% 64%, var(--color-green-dark) 0 3px, transparent 3.5px), var(--color-white);
}
@media screen and (max-width: 486px) {
  .c-logo {
    column-gap: 9px;
  }
  .c-logo::before {
    width: 38px;
    height: 38px;
    box-shadow: -8px -13px 0 -6px var(--color-white), -8px -13px 0 -4px currentColor, 8px -13px 0 -6px var(--color-white), 8px -13px 0 -4px currentColor;
  }
  .c-logo__sub {
    font-size: 1rem;
  }
  .c-logo__name {
    font-size: 2rem;
  }
}

.p-page-subhead {
  display: flex;
  flex-direction: column;
  gap: max(16px, 16 / 1480 * min(100vw, 1920px));
}
.p-page-subhead__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: calc(var(--site-header-height) + min(max(37px, 37 / 1480 * min(100vw, 1920px)), 37px));
  padding-bottom: max(64px, 64 / 1480 * min(100vw, 1920px));
  border-bottom: 1px solid var(--color-nature-500);
}
.p-page-subhead__inner {
  display: flex;
  gap: max(270px, 270 / 1480 * min(100vw, 1920px));
  align-items: flex-start;
  width: min(100% - var(--gutter) * 2, max(1280px, 1280 / 1480 * min(100vw, 1920px)));
}
.p-page-subhead__title-group {
  display: flex;
  flex-direction: column;
  gap: max(8px, 8 / 1480 * min(100vw, 1920px));
  flex-shrink: 0;
}
.p-page-subhead__title-en {
  font-family: var(--font-roboto);
  font-size: 10.4rem;
  font-weight: 700;
  line-height: 1.29;
  color: var(--color-primary);
}
.p-page-subhead__title-ja {
  font-family: var(--font-body);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-secondary);
  margin: 0;
}
.p-page-subhead__lead {
  display: flex;
  flex-direction: column;
  gap: max(12px, 12 / 1480 * min(100vw, 1920px));
  padding-top: max(21px, 21 / 1480 * min(100vw, 1920px));
  color: var(--color-secondary);
}
.p-page-subhead__heading {
  font-family: var(--font-body);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.6;
}
.p-page-subhead__description {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.8;
}
.p-page-subhead__breadcrumb {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding-inline: max(98px, 98 / 1480 * min(100vw, 1920px));
}
.p-page-subhead__breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: max(8px, 8 / 1480 * min(100vw, 1920px));
  max-width: 100%;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.8;
  color: var(--color-nature-500);
}
.p-page-subhead__breadcrumb-list > li {
  flex-shrink: 0;
}
.p-page-subhead__breadcrumb-list a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.15em;
}
.p-page-subhead__breadcrumb-list a:hover {
  text-decoration-color: currentColor;
}
.p-page-subhead__breadcrumb-sep {
  flex-shrink: 0;
  color: var(--color-nature-500);
}
.p-page-subhead__breadcrumb-current {
  color: var(--color-primary);
}
.p-page-subhead--breadcrumb-truncate .p-page-subhead__breadcrumb-item--current {
  flex-shrink: 1;
  min-width: max(80px, 80 / 1480 * min(100vw, 1920px));
  max-width: min(max(280px, 280 / 1480 * min(100vw, 1920px)), 280px);
}
.p-page-subhead--breadcrumb-truncate .p-page-subhead__breadcrumb-current {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-page-subhead--breadcrumb-truncate .p-page-subhead__breadcrumb-item--current {
    min-width: 6rem;
    max-width: min(42vw, 18rem);
  }
}
@media screen and (max-width: 486px) {
  .p-page-subhead--breadcrumb-truncate .p-page-subhead__breadcrumb-item--current {
    min-width: 5rem;
    max-width: min(38vw, 14rem);
  }
}
@media screen and (max-width: 1100px) {
  .p-page-subhead__inner {
    flex-direction: column;
    gap: max(32px, 32 / 1480 * min(100vw, 1920px));
  }
  .p-page-subhead__lead {
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-page-subhead__title-en {
    font-size: clamp(5.6rem, 14vw, 10.4rem);
  }
  .p-page-subhead__heading {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
  }
  .p-page-subhead__breadcrumb {
    padding-inline: var(--gutter);
  }
}
@media screen and (max-width: 468px) {
  .p-page-subhead__heading {
    font-size: min(4rem, (100vw - 79px) / 13.25);
    line-height: 1.6;
  }
}

.c-recruit-head__label {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-secondary);
}
.c-recruit-head__title {
  font-family: var(--font-roboto);
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 1.39;
  color: var(--color-primary);
}
@media screen and (max-width: 768px) {
  .c-recruit-head__title {
    font-size: clamp(4.8rem, 12vw, 7.2rem);
  }
}

.c-section-heading {
  display: flex;
  justify-content: center;
  text-align: center;
}
.c-section-heading__title {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-brown);
}
.c-section-heading__title::before, .c-section-heading__title::after {
  content: "";
  width: 24px;
  height: 34px;
  background: radial-gradient(ellipse at 50% 22%, var(--color-yellow) 0 5px, transparent 5.5px), linear-gradient(64deg, transparent 47%, var(--color-green) 48% 52%, transparent 53%), radial-gradient(ellipse at 35% 70%, var(--color-green) 0 5px, transparent 5.5px), radial-gradient(ellipse at 65% 56%, var(--color-green) 0 5px, transparent 5.5px);
  background-repeat: no-repeat;
}
.c-section-heading__title::after {
  transform: scaleX(-1);
}
.c-section-heading__title span {
  color: var(--color-green);
  font-size: 4.2rem;
  line-height: 1;
}
@media screen and (max-width: 486px) {
  .c-section-heading__title {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 8px;
    font-size: 2.5rem;
  }
  .c-section-heading__title::before, .c-section-heading__title::after {
    width: 18px;
    height: 28px;
  }
  .c-section-heading__title span {
    font-size: 3.4rem;
  }
}

.p-site-header {
  background: transparent;
}
.p-site-header__bar {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: min(max(100px, 100 / 1480 * min(100vw, 1920px)), 100px);
  padding-right: max(40px, 40 / 1480 * min(100vw, 1920px));
}
.p-site-header__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  min-height: min(max(100px, 100 / 1480 * min(100vw, 1920px)), 100px);
  max-height: 100px;
  padding: min(max(20px, 20 / 1480 * min(100vw, 1920px)), 20px) min(max(40px, 40 / 1480 * min(100vw, 1920px)), 40px);
  border-bottom-right-radius: max(22.605px, 22.605 / 1480 * min(100vw, 1920px));
  background: var(--color-primary);
  color: var(--color-white);
}
.p-site-header__brand:hover, .p-site-header__brand:focus-visible {
  opacity: 0.72;
}
.p-site-header__brand:focus-visible {
  outline: 3px solid rgba(0, 55, 0, 0.35);
  outline-offset: 3px;
}
.p-site-header__brand-sub {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.07px;
}
.p-site-header__brand-row {
  display: flex;
  align-items: center;
  gap: max(14px, 14 / 1480 * min(100vw, 1920px));
}
.p-site-header__brand-name {
  font-family: var(--font-body);
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 1.45px;
  white-space: nowrap;
}
.p-site-header__brand-divider {
  flex-shrink: 0;
  width: 1px;
  height: 16.667px;
  background: var(--color-white);
}
.p-site-header__brand-tag {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 3.52px;
  white-space: nowrap;
}
.p-site-header__actions {
  display: flex;
  align-items: center;
  align-self: center;
  gap: max(18px, 18 / 1480 * min(100vw, 1920px));
}
.p-site-header__tel {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--color-black);
  font-family: var(--font-roboto);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}
.p-site-header__tel img {
  display: block;
  width: 0.848em;
  height: 0.91em;
}
.p-site-header__tel:hover, .p-site-header__tel:focus-visible {
  opacity: 0.72;
}
.p-site-header__tel:focus-visible {
  outline: 3px solid rgba(51, 51, 51, 0.28);
  outline-offset: 4px;
}
.p-site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: max(180px, 180 / 1480 * min(100vw, 1920px));
  min-height: max(48px, 48 / 1480 * min(100vw, 1920px));
  padding: max(12px, 12 / 1480 * min(100vw, 1920px)) max(12px, 12 / 1480 * min(100vw, 1920px)) max(12px, 12 / 1480 * min(100vw, 1920px)) max(20px, 20 / 1480 * min(100vw, 1920px));
  border: 0;
  border-radius: max(8px, 8 / 1480 * min(100vw, 1920px));
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  white-space: nowrap;
  transition: background-color var(--transition-duration) var(--transition-ease), color var(--transition-duration) var(--transition-ease);
}
.p-site-header__cta img {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.p-site-header__cta:hover, .p-site-header__cta:focus-visible {
  background: #e07428;
}
.p-site-header__cta:focus-visible {
  outline: 3px solid rgba(245, 132, 51, 0.28);
  outline-offset: 3px;
}
.p-site-header__menu {
  display: inline-grid;
  place-content: center;
  gap: 4px;
  width: max(53px, 53 / 1480 * min(100vw, 1920px));
  height: max(53px, 53 / 1480 * min(100vw, 1920px));
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: var(--color-black);
  cursor: pointer;
}
.p-site-header__menu span:not(.u-visually-hidden) {
  display: block;
  width: 25px;
  height: 2px;
  border-radius: 83.024px;
  background: var(--color-white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.p-site-header__menu:focus-visible {
  outline: 3px solid rgba(51, 51, 51, 0.28);
  outline-offset: 3px;
}
.p-site-header__panel {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: max(120px, 120 / 1480 * min(100vw, 1920px)) max(40px, 40 / 1480 * min(100vw, 1920px)) max(48px, 48 / 1480 * min(100vw, 1920px));
  border: 0;
  border-radius: 0;
  background: var(--color-background);
  box-shadow: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.p-site-header__panel-list {
  display: grid;
  gap: max(12px, 12 / 1480 * min(100vw, 1920px));
  width: 100%;
  max-width: max(360px, 360 / 1480 * min(100vw, 1920px));
  margin-inline: auto;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease 0.08s, transform 0.35s ease 0.08s;
}
.p-site-header__panel-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: max(56px, 56 / 1480 * min(100vw, 1920px));
  padding: max(14px, 14 / 1480 * min(100vw, 1920px)) max(24px, 24 / 1480 * min(100vw, 1920px));
  border: 1px solid var(--color-secondary);
  border-radius: max(8px, 8 / 1480 * min(100vw, 1920px));
  background: var(--color-white);
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.p-site-header__panel-link:hover, .p-site-header__panel-link:focus-visible {
  border-color: var(--color-primary);
  background: var(--color-green-soft);
  color: var(--color-secondary);
}
.p-site-header__panel-link:focus-visible {
  outline: 3px solid rgba(83, 179, 79, 0.24);
  outline-offset: 2px;
}
.p-site-header__panel-link--external {
  gap: 0.6rem;
}
.p-site-header__panel-link--external i {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}
.p-site-header__panel-link--tel {
  gap: 4px;
  border-color: var(--color-secondary);
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-roboto);
  font-size: 2rem;
  font-weight: 700;
}
.p-site-header__panel-link--tel img {
  display: block;
  width: 0.848em;
  height: 0.91em;
  flex-shrink: 0;
}
.p-site-header__panel-link--tel:hover, .p-site-header__panel-link--tel:focus-visible {
  background: #4aa146;
  color: var(--color-white);
}
.p-site-header.is-menu-open .p-site-header__bar {
  position: relative;
  z-index: 2;
}
.p-site-header.is-menu-open .p-site-header__panel {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.p-site-header.is-menu-open .p-site-header__panel-list {
  opacity: 1;
  transform: translateY(0);
}
.p-site-header.is-menu-open .p-site-header__menu span:not(.u-visually-hidden):nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}
.p-site-header.is-menu-open .p-site-header__menu span:not(.u-visually-hidden):nth-child(3) {
  opacity: 0;
}
.p-site-header.is-menu-open .p-site-header__menu span:not(.u-visually-hidden):nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}
@media screen and (max-width: 1100px) {
  .p-site-header__tel, .p-site-header__cta {
    display: none;
  }
  .p-site-header__panel {
    padding-inline: 24px;
  }
  .p-site-header__panel-list {
    max-width: 320px;
  }
}
@media screen and (max-width: 768px) {
  .p-site-header__bar {
    min-height: 84px;
    padding-right: 24px;
  }
  .p-site-header__brand {
    min-height: 84px;
    padding: 16px 24px;
  }
  .p-site-header__brand-name {
    font-size: 2.4rem;
  }
  .p-site-header__brand-tag {
    font-size: 1.4rem;
    letter-spacing: 2.4px;
  }
  .p-site-header__panel {
    padding-top: 104px;
  }
}
@media screen and (max-width: 486px) {
  .p-site-header__bar {
    min-height: 72px;
    padding-right: 16px;
  }
  .p-site-header__brand {
    min-height: 72px;
    padding: 14px 18px;
    border-bottom-right-radius: 18px;
  }
  .p-site-header__brand-sub {
    font-size: 1.2rem;
  }
  .p-site-header__brand-name {
    font-size: 2rem;
    letter-spacing: 0.8px;
  }
  .p-site-header__brand-row {
    gap: 10px;
  }
  .p-site-header__brand-tag {
    font-size: 1.2rem;
    letter-spacing: 1.6px;
  }
  .p-site-header__menu {
    width: 48px;
    height: 48px;
  }
  .p-site-header__panel {
    padding-top: 96px;
    padding-inline: 16px;
  }
  .p-site-header__panel-list {
    max-width: none;
  }
}

body.is-menu-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .p-site-header__panel,
  .p-site-header__panel-list {
    transition: none;
  }
}
.p-site-footer {
  padding: 0 max(40px, 40 / 1480 * min(100vw, 1920px)) max(24px, 24 / 1480 * min(100vw, 1920px));
  color: var(--color-white);
}
.p-site-footer__wrap {
  width: 100%;
}
.p-site-footer__panel {
  overflow: hidden;
  border-radius: max(32px, 32 / 1480 * min(100vw, 1920px));
  background: var(--color-black);
}
.p-site-footer__panel-inner {
  display: flex;
  flex-direction: column;
  gap: max(72px, 72 / 1480 * min(100vw, 1920px));
  padding: max(53px, 53 / 1480 * min(100vw, 1920px)) max(149px, 149 / 1480 * min(100vw, 1920px)) max(48px, 48 / 1480 * min(100vw, 1920px));
}
.p-site-footer__contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: max(40px, 40 / 1480 * min(100vw, 1920px));
  padding-bottom: max(24px, 24 / 1480 * min(100vw, 1920px));
  border-bottom: 1px solid var(--color-nature-500);
}
.p-site-footer__contact-head {
  display: grid;
  gap: 8px;
}
.p-site-footer__contact-en {
  font-family: var(--font-roboto);
  font-size: 7rem;
  font-weight: 600;
  line-height: normal;
}
.p-site-footer__contact-ja {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: normal;
}
.p-site-footer__contact-body {
  display: grid;
  justify-items: end;
  gap: 10px;
}
.p-site-footer__tel {
  display: inline-flex;
  align-items: center;
  gap: max(12.26px, 12.26 / 1480 * min(100vw, 1920px));
  color: var(--color-white);
  font-family: var(--font-roboto);
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.56px;
  white-space: nowrap;
  transition: opacity var(--transition-duration) var(--transition-ease);
}
.p-site-footer__tel img {
  display: block;
  width: 0.714em;
  height: 0.714em;
  flex-shrink: 0;
}
.p-site-footer__tel:hover, .p-site-footer__tel:focus-visible {
  opacity: 0.88;
}
.p-site-footer__tel:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.35);
  outline-offset: 4px;
}
.p-site-footer__contact-note {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: normal;
  text-align: right;
}
.p-site-footer__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: max(40px, 40 / 1480 * min(100vw, 1920px));
}
.p-site-footer__bottom-left {
  display: grid;
  gap: max(27px, 27 / 1480 * min(100vw, 1920px));
}
.p-site-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: max(32px, 32 / 1480 * min(100vw, 1920px));
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
.p-site-footer__nav-list a {
  display: inline-flex;
  align-items: center;
  gap: 5.379px;
  color: var(--color-white);
  transition: opacity var(--transition-duration) var(--transition-ease);
}
.p-site-footer__nav-list a img {
  display: block;
  width: 11.285px;
  height: 11.285px;
  flex-shrink: 0;
}
.p-site-footer__nav-list a:hover, .p-site-footer__nav-list a:focus-visible {
  opacity: 0.72;
}
.p-site-footer__nav-list a:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.35);
  outline-offset: 3px;
}
.p-site-footer__copyright {
  font-family: var(--font-roboto);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-nature-300);
}
.p-site-footer__brand {
  display: grid;
  flex-shrink: 0;
  padding: max(10.999px, 10.999 / 1480 * min(100vw, 1920px)) max(17.874px, 17.874 / 1480 * min(100vw, 1920px));
  border: 1px solid var(--color-nature-500);
  border-radius: max(8.249px, 8.249 / 1480 * min(100vw, 1920px));
  color: var(--color-white);
}
.p-site-footer__brand:hover, .p-site-footer__brand:focus-visible {
  opacity: 0.72;
}
.p-site-footer__brand:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.35);
  outline-offset: 4px;
}
.p-site-footer__brand-sub {
  font-family: var(--font-body);
  font-size: 0.9166rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.0458px;
}
.p-site-footer__brand-row {
  display: flex;
  align-items: center;
  gap: max(9.624px, 9.624 / 1480 * min(100vw, 1920px));
}
.p-site-footer__brand-name {
  font-family: var(--font-body);
  font-size: 1.986rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.993px;
  white-space: nowrap;
}
.p-site-footer__brand-divider {
  flex-shrink: 0;
  width: 1px;
  height: max(11.458px, 11.458 / 1480 * min(100vw, 1920px));
  background: var(--color-white);
}
.p-site-footer__brand-tag {
  font-family: var(--font-body);
  font-size: 1.0694rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 2.3526px;
  white-space: nowrap;
}
@media screen and (max-width: 1100px) {
  .p-site-footer__panel-inner {
    padding-inline: 64px;
  }
  .p-site-footer__contact-en {
    font-size: 5.6rem;
  }
  .p-site-footer__tel {
    font-size: 4.4rem;
  }
}
@media screen and (max-width: 768px) {
  .p-site-footer {
    padding-inline: 20px;
  }
  .p-site-footer__panel-inner {
    gap: 48px;
    padding: 40px 32px 36px;
  }
  .p-site-footer__contact {
    flex-direction: column;
    align-items: flex-start;
  }
  .p-site-footer__contact-body {
    justify-items: start;
    width: 100%;
  }
  .p-site-footer__contact-note {
    text-align: left;
  }
  .p-site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .p-site-footer__brand {
    order: -1;
    align-self: center;
  }
  .p-site-footer__nav-list {
    gap: 20px 28px;
  }
}
@media screen and (max-width: 486px) {
  .p-site-footer__panel-inner {
    padding: 32px 20px 28px;
  }
  .p-site-footer__contact-en {
    font-size: 4.8rem;
  }
  .p-site-footer__contact-ja {
    font-size: 1.6rem;
  }
  .p-site-footer__tel {
    font-size: 3.2rem;
  }
  .p-site-footer__tel img {
    width: 1em;
    height: 1em;
  }
  .p-site-footer__contact-note {
    font-size: 1.4rem;
  }
  .p-site-footer__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media screen and (max-width: 468px) {
  .p-site-footer__tel {
    max-width: 100%;
    font-size: min(4.8rem, (100vw - 11rem - 10px) / 7.75);
    gap: 10px;
    letter-spacing: 0.04em;
  }
  .p-site-footer__tel img {
    width: 0.65em;
    height: 0.65em;
  }
}

.p-home-hero {
  position: relative;
  padding-top: calc(var(--site-header-height) + min(max(80px, 80 / 1480 * min(100vw, 1920px)), 80px));
  padding-inline: max(40px, 40 / 1480 * min(100vw, 1920px));
  padding-bottom: 0;
}
.p-home-hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: max(40px, 40 / 1480 * min(100vw, 1920px));
}
.p-home-hero__head {
  display: flex;
  align-items: flex-end;
  padding-inline: max(58px, 58 / 1480 * min(100vw, 1920px));
}
.p-home-hero__head-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: max(24px, 24 / 1480 * min(100vw, 1920px));
}
.p-home-hero__title {
  margin: 0;
}
.p-home-hero__title-lines {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: max(24px, 24 / 1480 * min(100vw, 1480px));
  width: min(100vw - 80px, max(712 / 1480 * min(100vw, 1480px), 397.8823529412px));
}
.p-home-hero__title-line {
  display: block;
  height: auto;
  max-width: none;
  object-fit: contain;
  object-position: left center;
}
.p-home-hero__title-line--first {
  width: 39.7471910112%;
  aspect-ratio: 283/68;
}
.p-home-hero__title-line--second {
  width: 100%;
  aspect-ratio: 712/71;
}
.p-home-hero__subtitle {
  color: var(--color-primary);
  font-family: var(--font-roboto);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: 0.25px;
  white-space: nowrap;
}
.p-home-hero__visual {
  width: 100%;
  height: max(645px, 645 / 1480 * min(100vw, 1920px));
  margin: 0;
  border-radius: max(32px, 32 / 1480 * min(100vw, 1920px));
  overflow: hidden;
}
.p-home-hero__slider {
  width: 100%;
  height: 100%;
}
.p-home-hero__slider .splide__track,
.p-home-hero__slider .splide__list,
.p-home-hero__slider .splide__slide {
  height: 100%;
}
.p-home-hero__slider .splide__slide {
  overflow: hidden;
}
.p-home-hero__slider img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 26%;
}
.p-home-hero__vertical-copy {
  position: absolute;
  top: max(105px, 105 / 1480 * min(100vw, 1920px));
  right: max(51px, 51 / 1480 * min(100vw, 1920px));
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: max(14.597px, 14.597 / 1480 * min(100vw, 1920px));
}
.p-home-hero__vertical-text {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0;
  padding-block: 0.45em;
  padding-inline: 0.55em;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: max(21.824px, 21.824 / 1480 * min(100vw, 1920px));
  font-weight: 500;
  font-feature-settings: "vert" on;
  line-height: 1.07;
  letter-spacing: 0.055em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-align: center;
}
@media screen and (max-width: 1360px) {
  .p-home-hero__vertical-copy {
    right: 24px;
  }
}
@media screen and (max-width: 1100px) {
  .p-home-hero__head {
    padding-inline: 24px;
  }
  .p-home-hero__subtitle {
    white-space: normal;
  }
  .p-home-hero__vertical-copy {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .p-home-hero {
    padding: calc(var(--site-header-height) + 24px) 24px 0;
  }
  .p-home-hero__inner {
    gap: 32px;
  }
  .p-home-hero__head {
    padding-inline: 0;
  }
  .p-home-hero__title-lines {
    gap: 20px;
    width: min(100vw - 48px, max(712 / 1480 * min(100vw, 1480px), 397.8823529412px));
  }
  .p-home-hero__subtitle {
    font-size: 1.8rem;
  }
  .p-home-hero__visual {
    height: auto;
    aspect-ratio: 1400/645;
  }
}
@media screen and (max-width: 486px) {
  .p-home-hero {
    padding: calc(var(--site-header-height) + 16px) 16px 0;
  }
  .p-home-hero__title-lines {
    width: min(100vw - 32px, max(712 / 1480 * min(100vw, 1480px), 397.8823529412px));
  }
  .p-home-hero__subtitle {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 468px) {
  .p-home-hero__inner {
    gap: 20px;
  }
  .p-home-hero__head-content {
    gap: 12px;
  }
  .p-home-hero__visual {
    border-radius: 12px;
    aspect-ratio: 4/3;
  }
  .p-home-hero__visual img {
    object-position: right center;
  }
}

.p-home-news {
  padding: max(56px, 56 / 1480 * min(100vw, 1920px)) max(40px, 40 / 1480 * min(100vw, 1920px)) max(72px, 72 / 1480 * min(100vw, 1920px));
}
.p-home-news__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: min(100%, var(--content-narrow));
  margin-inline: auto;
  gap: max(40px, 40 / 1480 * min(100vw, 1920px));
}
.p-home-news__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  flex-shrink: 0;
  align-self: stretch;
  width: max(165.624px, 165.624 / 1480 * min(100vw, 1920px));
  padding-top: 8px;
}
.p-home-news__heading-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.p-home-news__label {
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}
.p-home-news__title {
  color: var(--color-primary);
  font-family: var(--font-roboto);
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.4;
}
.p-home-news__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  text-decoration: underline;
  text-underline-position: from-font;
  transition: color var(--transition-duration) var(--transition-ease);
}
.p-home-news__more img {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.p-home-news__more:hover, .p-home-news__more:focus-visible {
  color: var(--color-primary);
}
.p-home-news__more:focus-visible {
  outline: 3px solid rgba(83, 179, 79, 0.24);
  outline-offset: 3px;
}
.p-home-news__list {
  width: min(100%, max(770px, 770 / 1480 * min(100vw, 1920px)));
}
.p-home-news__empty {
  display: flex;
  align-items: center;
  width: min(100%, max(770px, 770 / 1480 * min(100vw, 1920px)));
  flex: 1 1 auto;
  min-height: max(68px, 68 / 1480 * min(100vw, 1920px));
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8;
}
.p-home-news__item {
  box-sizing: border-box;
  height: max(68px, 68 / 1480 * min(100vw, 1920px));
  border-bottom: 1px solid var(--color-nature-400);
  margin-bottom: -1px;
}
.p-home-news__item:last-child {
  margin-bottom: 0;
}
.p-home-news__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 18px;
  padding: 0;
  color: inherit;
}
.p-home-news__link:hover .p-home-news__item-title, .p-home-news__link:focus-visible .p-home-news__item-title {
  color: var(--color-primary);
}
.p-home-news__link:focus-visible {
  outline: 3px solid rgba(83, 179, 79, 0.24);
  outline-offset: 3px;
}
.p-home-news__link-main {
  display: flex;
  flex: 1 1 auto;
  align-items: baseline;
  gap: 24px;
  min-width: 0;
}
.p-home-news__date {
  flex-shrink: 0;
  width: max(132px, 132 / 1480 * min(100vw, 1920px));
  color: var(--color-nature-500);
  font-family: var(--font-roboto);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
}
.p-home-news__item-title {
  flex: 1 1 auto;
  min-width: 0;
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8;
  transition: color var(--transition-duration) var(--transition-ease);
}
.p-home-news__icon {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
@media screen and (max-width: 1100px) {
  .p-home-news__inner {
    flex-direction: column;
    gap: 32px;
  }
  .p-home-news__heading {
    width: 100%;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    align-self: auto;
    padding-top: 0;
  }
  .p-home-news__list {
    width: 100%;
  }
  .p-home-news__empty {
    width: 100%;
    min-height: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-home-news {
    padding: 48px 24px 56px;
  }
  .p-home-news__title {
    font-size: 4rem;
  }
}
@media screen and (max-width: 486px) {
  .p-home-news {
    padding: 40px 16px 48px;
  }
  .p-home-news__heading {
    gap: 16px;
  }
  .p-home-news__title {
    font-size: 3.6rem;
  }
  .p-home-news__item {
    height: auto;
  }
  .p-home-news__link {
    padding: 18px 0;
  }
  .p-home-news__link-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .p-home-news__date {
    width: auto;
  }
}

.p-home-about {
  position: relative;
  overflow: hidden;
  padding: max(109px, 109 / 1480 * min(100vw, 1920px)) 0 max(105px, 105 / 1480 * min(100vw, 1920px));
  border-radius: max(80px, 80 / 1480 * min(100vw, 1920px));
  color: var(--color-white);
}
.p-home-about::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 82% 56%, #7cdd78 0%, #53b34f 100%);
}
.p-home-about::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url("../images/home/about-texture.png");
  background-position: top left;
  background-size: max(1024px, 1024 / 1480 * min(100vw, 1920px)) max(1024px, 1024 / 1480 * min(100vw, 1920px));
  background-repeat: repeat;
  opacity: 0.1;
  pointer-events: none;
}
.p-home-about__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: max(65px, 65 / 1480 * min(100vw, 1920px));
  width: min(100%, var(--content-narrow));
  margin-inline: auto;
  padding-inline: 0;
}
.p-home-about__intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.p-home-about__heading {
  flex-shrink: 0;
  padding-left: max(48px, 48 / 1480 * min(100vw, 1920px));
}
.p-home-about__label {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
}
.p-home-about__title {
  font-family: var(--font-roboto);
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 1.39;
}
.p-home-about__lead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  width: min(max(542px, 542 / 1480 * min(100vw, 1920px)), 542px);
  max-width: 542px;
  margin-right: max(0px, (100% - 1102px) * 0.5);
  padding-top: max(98px, 98 / 1480 * min(100vw, 1920px));
  gap: max(30px, 30 / 1480 * min(100vw, 1920px));
}
.p-home-about__catch {
  max-width: min(max(519px, 519 / 1480 * min(100vw, 1920px)), 519px);
  font-family: var(--font-body);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.4px;
}
.p-home-about__lead-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: var(--font-roboto), var(--font-body);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
}
.p-home-about__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: max(62px, 62 / 1480 * min(100vw, 1920px));
}
.p-home-about__carousel {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.p-home-about__slider {
  width: 100%;
  overflow: hidden;
}
.p-home-about__slider .splide__track {
  overflow: hidden;
}
.p-home-about__slider .splide__slide {
  height: auto;
  overflow: hidden;
}
.p-home-about__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  width: max(491px, 491 / 1480 * min(100vw, 1920px));
  height: max(594px, 594 / 1480 * min(100vw, 1920px));
  padding: max(24px, 24 / 1480 * min(100vw, 1920px)) max(24px, 24 / 1480 * min(100vw, 1920px)) max(22px, 22 / 1480 * min(100vw, 1920px));
  border: 1px solid var(--color-secondary);
  border-radius: max(10px, 10 / 1480 * min(100vw, 1920px));
  background: var(--color-white);
  color: var(--color-secondary);
}
.p-home-about__card-main {
  display: flex;
  flex-direction: column;
  gap: max(98px, 98 / 1480 * min(100vw, 1920px));
}
.p-home-about__feature-label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: max(24px, 24 / 1480 * min(100vw, 1920px));
  height: max(112px, 112 / 1480 * min(100vw, 1920px));
  overflow: hidden;
}
.p-home-about__feature-label-text {
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: var(--color-primary);
  font-family: var(--font-roboto);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  transform: rotate(90deg);
  white-space: nowrap;
}
.p-home-about__feature-label-en, .p-home-about__feature-label-num {
  font-family: inherit;
}
.p-home-about__card-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.p-home-about__card-title {
  font-family: var(--font-body);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.8;
}
.p-home-about__card-text {
  font-family: var(--font-roboto), var(--font-body);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
}
.p-home-about__card-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: flex-end;
  width: max(131px, 131 / 1480 * min(100vw, 1920px));
}
.p-home-about__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max(60.813px, 60.813 / 1480 * min(100vw, 1920px));
  height: max(60.813px, 60.813 / 1480 * min(100vw, 1920px));
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.p-home-about__nav img {
  display: block;
  width: 100%;
  height: 100%;
}
.p-home-about__nav:focus-visible {
  outline: 3px solid rgba(83, 179, 79, 0.35);
  outline-offset: 3px;
}
.p-home-about__visual {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  aspect-ratio: 400/300;
}
.p-home-about__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-home-about__badge {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max(122px, 122 / 1480 * min(100vw, 1920px));
  height: max(116px, 116 / 1480 * min(100vw, 1920px));
  padding: max(10px, 10 / 1480 * min(100vw, 1920px)) max(10px, 10 / 1480 * min(100vw, 1920px)) max(26px, 26 / 1480 * min(100vw, 1920px)) max(28px, 28 / 1480 * min(100vw, 1920px));
  border-bottom-left-radius: max(155px, 155 / 1480 * min(100vw, 1920px));
  background: rgba(98, 98, 98, 0.28);
}
.p-home-about__badge-inner {
  position: relative;
  width: max(82.147px, 82.147 / 1480 * min(100vw, 1920px));
  height: max(60.823px, 60.823 / 1480 * min(100vw, 1920px));
  overflow: visible;
}
.p-home-about__badge-current {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-white);
  font-family: var(--font-roboto);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.p-home-about__badge-separator {
  position: absolute;
  top: max(29.14px, 29.14 / 1480 * min(100vw, 1920px));
  left: max(47.19px, 47.19 / 1480 * min(100vw, 1920px));
  width: 1px;
  height: max(24px, 24 / 1480 * min(100vw, 1920px));
  background: var(--color-white);
  transform: rotate(38.11deg);
  transform-origin: center;
}
.p-home-about__badge-total {
  position: absolute;
  top: max(42.82px, 42.82 / 1480 * min(100vw, 1920px));
  left: max(59.15px, 59.15 / 1480 * min(100vw, 1920px));
  color: var(--color-nature-300);
  font-family: var(--font-roboto);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.p-home-about__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: max(230px, 230 / 1480 * min(100vw, 1920px));
  padding: max(16px, 16 / 1480 * min(100vw, 1920px)) max(14px, 14 / 1480 * min(100vw, 1920px)) max(16px, 16 / 1480 * min(100vw, 1920px)) max(25px, 25 / 1480 * min(100vw, 1920px));
  border: 2px solid var(--color-white);
  border-radius: 999px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8;
  transition: background-color var(--transition-duration) var(--transition-ease), color var(--transition-duration) var(--transition-ease);
}
.p-home-about__cta img {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.p-home-about__cta:hover, .p-home-about__cta:focus-visible {
  background: var(--color-white);
  color: var(--color-primary);
}
.p-home-about__cta:hover img, .p-home-about__cta:focus-visible img {
  content: url("../images/common/icon-chevron-secondary.svg");
}
.p-home-about__cta:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.35);
  outline-offset: 3px;
}
@media screen and (max-width: 1100px) {
  .p-home-about {
    border-radius: 48px;
  }
  .p-home-about__inner {
    padding-inline: 24px;
  }
  .p-home-about__intro {
    flex-direction: column;
    justify-content: flex-start;
  }
  .p-home-about__heading {
    padding-left: 0;
    margin-bottom: 24px;
  }
  .p-home-about__title {
    margin-bottom: 0;
  }
  .p-home-about__lead {
    margin-right: 0;
    padding-top: 0;
    width: 100%;
    max-width: none;
    gap: 14px;
  }
  .p-home-about__catch {
    max-width: none;
  }
  .p-home-about__lead-text {
    gap: 8px;
    line-height: 1.8;
  }
  .p-home-about__carousel {
    align-items: stretch;
  }
  .p-home-about__card {
    flex: 0 1 clamp(260px, 44.647%, 491px);
    width: clamp(260px, 44.647%, 491px);
    max-width: 491px;
    height: auto;
  }
  .p-home-about__card-main {
    gap: clamp(32px, 6vw, 98px);
  }
  .p-home-about__visual {
    flex: 1 1 0;
    min-width: 0;
    aspect-ratio: 611/458;
  }
}
@media screen and (max-width: 768px) {
  .p-home-about {
    padding: 72px 0 80px;
    border-radius: 32px;
  }
  .p-home-about__inner {
    padding-inline: 24px;
  }
  .p-home-about__title {
    font-size: 5.6rem;
  }
  .p-home-about__catch {
    font-size: 3.2rem;
  }
  .p-home-about__carousel {
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--color-secondary);
    border-radius: 10px;
    background: var(--color-white);
  }
  .p-home-about__visual {
    order: -1;
    flex: none;
    width: 100%;
    aspect-ratio: 611/458;
  }
  .p-home-about__card {
    flex: none;
    width: 100%;
    max-width: none;
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .p-home-about__slider .splide__slide {
    overflow: hidden;
  }
  .p-home-about__card-main {
    gap: 8px;
  }
  .p-home-about__feature-label {
    width: auto;
    height: auto;
    justify-content: flex-start;
  }
  .p-home-about__feature-label-text {
    flex-direction: row;
    gap: 8px;
    transform: none;
  }
  .p-home-about__card-copy {
    gap: 16px;
  }
  .p-home-about__card-title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 486px) {
  .p-home-about {
    padding: 56px 0 64px;
  }
  .p-home-about__inner {
    padding-inline: 16px;
    gap: 48px;
  }
  .p-home-about__title {
    font-size: 4.8rem;
  }
  .p-home-about__catch {
    font-size: 2.6rem;
  }
  .p-home-about__lead-text, .p-home-about__card-text {
    font-size: 1.6rem;
  }
  .p-home-about__card {
    min-height: auto;
    padding: 20px;
  }
}

.p-home-message {
  position: relative;
  overflow: hidden;
  padding: max(100px, 100 / 1480 * min(100vw, 1920px)) max(40px, 40 / 1480 * min(100vw, 1920px)) max(91px, 91 / 1480 * min(100vw, 1920px));
  background: var(--color-message-bg);
}
.p-home-message__watermark {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100vw;
  height: max(1091px, 1091 / 1480 * min(100vw, 1920px));
  pointer-events: none;
  transform: translateX(-50%);
}
.p-home-message__watermark img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 101.84%;
  object-fit: cover;
  object-position: center;
  opacity: 0.12;
}
.p-home-message__watermark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(247, 245, 232, 0) 40.88%, var(--color-message-bg) 100%);
}
.p-home-message__marquee {
  --marquee-height: max(256px, 256 / 1480 * min(100vw, 1920px));
  --marquee-offset: calc(var(--marquee-height) * 38 / 280);
  container-type: inline-size;
  position: absolute;
  right: 0;
  bottom: calc(-1 * var(--marquee-offset));
  left: 0;
  z-index: 0;
  height: var(--marquee-height);
  overflow: hidden;
  pointer-events: none;
}
.p-home-message__marquee-track {
  display: flex;
  align-items: flex-end;
  width: max-content;
  animation: p-home-message-marquee 48s linear infinite;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .p-home-message__marquee-track {
    animation: none;
  }
}
.p-home-message__marquee-track img {
  display: block;
  height: var(--marquee-height);
  width: auto;
  max-width: none;
  flex-shrink: 0;
}
.p-home-message__marquee-gap {
  flex: 0 0 100cqi;
  width: 100cqi;
  height: 1px;
  flex-shrink: 0;
}
.p-home-message__inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--content-max));
  margin-inline: auto;
}
.p-home-message__main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: max(40px, 40 / 1480 * min(100vw, 1920px));
}
.p-home-message__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(100%, max(670px, 670 / 1480 * min(100vw, 1920px)));
  padding-top: max(90px, 90 / 1480 * min(100vw, 1920px));
  gap: max(48px, 48 / 1480 * min(100vw, 1920px));
}
.p-home-message__visual {
  width: 100%;
  margin: 0;
  aspect-ratio: 160/90;
  border-radius: max(8px, 8 / 1480 * min(100vw, 1920px));
  overflow: hidden;
}
.p-home-message__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.p-home-message__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 11px;
}
.p-home-message__text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  gap: 32px;
  color: var(--color-secondary);
  font-family: var(--font-roboto), var(--font-body);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2.3;
  letter-spacing: 0.27px;
}
.p-home-message__text-block {
  width: 100%;
}
.p-home-message__text-block p + p {
  margin-top: 0;
}
.p-home-message__signature {
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.3;
  letter-spacing: 0.24px;
}
.p-home-message__aside {
  flex-shrink: 0;
}
.p-home-message__heading {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: max(50px, 50 / 1480 * min(100vw, 1920px));
  margin: 0;
}
.p-home-message__heading-columns {
  display: flex;
  align-items: flex-start;
  gap: max(28px, 28 / 1480 * min(100vw, 1920px));
}
.p-home-message__title-column {
  width: max(63.283px, 63.283 / 1480 * min(100vw, 1920px));
}
.p-home-message__title-column:first-child {
  padding-top: max(81px, 81 / 1480 * min(100vw, 1920px));
}
.p-home-message__title-group {
  display: flex;
  align-items: flex-start;
  gap: max(15.207px, 15.207 / 1480 * min(100vw, 1920px));
  width: max-content;
  font-size: 4.8rem;
}
.p-home-message__title-line {
  flex-shrink: 0;
  width: 1em;
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: inherit;
  font-weight: 700;
  font-feature-settings: "vert" on;
  line-height: 1.2;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.p-home-message__title-divider {
  flex-shrink: 0;
  width: 2px;
  border-radius: 999px;
  background: var(--color-black);
}
.p-home-message__title-column:first-child .p-home-message__title-divider {
  height: 7.3406034483em;
}
.p-home-message__title-column:last-child .p-home-message__title-divider {
  height: 7.3167586207em;
}
.p-home-message__label {
  display: inline-flex;
  align-items: center;
  height: max(131px, 131 / 1480 * min(100vw, 1920px));
  color: var(--color-primary);
  font-family: var(--font-roboto);
  font-size: 3.2rem;
  font-weight: 700;
  font-feature-settings: "vert" on;
  line-height: 1.1;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
@media screen and (max-width: 1100px) {
  .p-home-message__main {
    flex-direction: column;
  }
  .p-home-message__aside {
    order: -1;
    width: 100%;
  }
  .p-home-message__content {
    width: 100%;
    padding-top: 0;
  }
  .p-home-message__heading {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
  }
  .p-home-message__heading-columns {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    writing-mode: horizontal-tb;
    direction: ltr;
  }
  .p-home-message__title-column {
    width: auto;
  }
  .p-home-message__title-column:first-child {
    padding-top: 0;
    order: 2;
  }
  .p-home-message__title-column:last-child {
    order: 1;
  }
  .p-home-message__title-group {
    display: block;
    width: auto;
    font-size: 3.2rem;
  }
  .p-home-message__title-line {
    display: block;
    width: auto;
    font-feature-settings: normal;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
  }
  .p-home-message__title-divider {
    display: none;
  }
  .p-home-message__label {
    order: -1;
    height: auto;
    font-feature-settings: normal;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
  }
}
@media screen and (max-width: 768px) {
  .p-home-message {
    padding: 72px 24px 64px;
  }
  .p-home-message__marquee {
    --marquee-height: max(140px, 140 / 1480 * min(100vw, 1920px));
  }
  .p-home-message__marquee-track img {
    height: var(--marquee-height);
  }
  .p-home-message__title-line {
    font-size: 3.6rem;
  }
  .p-home-message__label {
    font-size: 2.6rem;
  }
  .p-home-message__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 486px) {
  .p-home-message {
    padding: 56px 16px 48px;
  }
  .p-home-message__heading {
    gap: 12px;
  }
  .p-home-message__title-group {
    font-size: 2.6rem;
  }
  .p-home-message__title-line {
    font-size: inherit;
  }
  .p-home-message__label {
    font-size: 2.2rem;
  }
}

@keyframes p-home-message-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.p-recruit-section-heading {
  margin-bottom: 34px;
}

.p-recruit-subvisual {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: max(16px, 16 / 1480 * min(100vw, 1920px)) max(10px, 10 / 1480 * min(100vw, 1920px)) 0;
}
.p-recruit-subvisual__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: max(20px, 20 / 1480 * min(100vw, 1920px));
  width: min(100% - var(--gutter) * 2, max(1283px, 1283 / 1480 * min(100vw, 1920px)));
}
.p-recruit-subvisual__figure {
  width: 100%;
  height: max(406px, 406 / 1480 * min(100vw, 1920px));
  margin: 0;
  border-radius: max(8px, 8 / 1480 * min(100vw, 1920px));
  overflow: hidden;
}
.p-recruit-subvisual__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-recruit-subvisual__nav {
  width: min(100%, max(1102px, 1102 / 1480 * min(100vw, 1920px)));
}
.p-recruit-subvisual__nav-list {
  display: flex;
  gap: max(15px, 15 / 1480 * min(100vw, 1920px));
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-recruit-subvisual__nav-list li {
  flex: 1 1 0;
  min-width: 0;
}
.p-recruit-subvisual__nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: max(8px, 8 / 1480 * min(100vw, 1920px));
  width: 100%;
  min-height: max(57px, 57 / 1480 * min(100vw, 1920px));
  padding: max(14px, 14 / 1480 * min(100vw, 1920px)) max(18px, 18 / 1480 * min(100vw, 1920px));
  border: 1px solid var(--color-secondary);
  border-radius: max(4px, 4 / 1480 * min(100vw, 1920px));
  background: var(--color-background);
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.8;
  text-decoration: none;
  transition: background-color var(--transition-duration) var(--transition-ease), border-color var(--transition-duration) var(--transition-ease), color var(--transition-duration) var(--transition-ease);
}
.p-recruit-subvisual__nav-link:hover span, .p-recruit-subvisual__nav-link:focus-visible span {
  opacity: 0.7;
}
.p-recruit-subvisual__nav-link:hover img, .p-recruit-subvisual__nav-link:focus-visible img {
  transform: translateY(2px);
}
.p-recruit-subvisual__nav-link img {
  flex-shrink: 0;
  width: max(20px, 20 / 1480 * min(100vw, 1920px));
  height: max(20px, 20 / 1480 * min(100vw, 1920px));
  transition: transform var(--transition-duration) var(--transition-ease);
}
.p-recruit-subvisual__nav-link span {
  min-width: 0;
  white-space: nowrap;
  transition: opacity var(--transition-duration) var(--transition-ease);
}
@media screen and (max-width: 1100px) {
  .p-recruit-subvisual__nav-list {
    flex-wrap: wrap;
  }
  .p-recruit-subvisual__nav-list li {
    flex: 1 1 calc(50% - max(7.5px, 7.5 / 1480 * min(100vw, 1920px)));
  }
}
@media screen and (max-width: 768px) {
  .p-recruit-subvisual__figure {
    height: auto;
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 486px) {
  .p-recruit-subvisual__nav-list {
    flex-direction: column;
  }
  .p-recruit-subvisual__nav-list li {
    flex: 1 1 auto;
    width: 100%;
  }
}

.p-recruit-background {
  padding: min(max(155px, 155 / 1480 * min(100vw, 1920px)), 155px) max(40px, 40 / 1480 * min(100vw, 1920px)) min(max(80px, 80 / 1480 * min(100vw, 1920px)), 80px) 0;
}
.p-recruit-background__inner {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.p-recruit-background__group {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100% - var(--gutter), max(1400px, 1400 / 1480 * min(100vw, 1920px)));
  max-width: 100%;
}
.p-recruit-background__text-area {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: max(799px, 799 / 1480 * min(100vw, 1920px));
  max-width: 100%;
}
.p-recruit-background__content {
  display: flex;
  flex-direction: column;
  gap: max(110px, 110 / 1480 * min(100vw, 1920px));
  width: max(454px, 454 / 1480 * min(100vw, 1920px));
  max-width: 100%;
  padding-top: min(max(69px, 69 / 1480 * min(100vw, 1920px)), 69px);
  flex-shrink: 0;
}
.p-recruit-background__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.p-recruit-background__text {
  display: flex;
  flex-direction: column;
  gap: max(32px, 32 / 1480 * min(100vw, 1920px));
  color: var(--color-secondary);
}
.p-recruit-background__lead {
  font-family: var(--font-body);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.85;
}
.p-recruit-background__body {
  display: flex;
  flex-direction: column;
  gap: max(24px, 24 / 1480 * min(100vw, 1920px));
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2;
}
.p-recruit-background__visual {
  position: relative;
  flex-shrink: 0;
  width: min(max(601px, 601 / 1480 * min(100vw, 1920px)), 601px);
  max-width: 100%;
  height: min(max(862px, 862 / 1480 * min(100vw, 1920px)), 862px);
  margin: 0;
}
.p-recruit-background__visual-main {
  width: min(max(452px, 452 / 1480 * min(100vw, 1920px)), 452px);
  max-width: 100%;
  height: min(max(687px, 687 / 1480 * min(100vw, 1920px)), 687px);
  border-radius: max(8px, 8 / 1480 * min(100vw, 1920px));
  object-fit: cover;
  object-position: bottom;
}
.p-recruit-background__visual-sub {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(max(300px, 300 / 1480 * min(100vw, 1920px)), 300px);
  height: min(max(300px, 300 / 1480 * min(100vw, 1920px)), 300px);
  border-radius: max(8px, 8 / 1480 * min(100vw, 1920px));
  object-fit: cover;
  object-position: bottom;
}
@media screen and (max-width: 1100px) {
  .p-recruit-background {
    padding-inline: var(--gutter);
  }
  .p-recruit-background__inner {
    justify-content: center;
  }
  .p-recruit-background__group {
    flex-direction: column;
    align-items: center;
    gap: max(48px, 48 / 1480 * min(100vw, 1920px));
    width: min(100%, min(max(601px, 601 / 1480 * min(100vw, 1920px)), 601px));
  }
  .p-recruit-background__text-area {
    width: 100%;
  }
  .p-recruit-background__content {
    width: 100%;
    padding-top: 0;
    gap: max(48px, 48 / 1480 * min(100vw, 1920px));
  }
  .p-recruit-background__visual {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: max(8px, 8 / 1480 * min(100vw, 1920px));
  }
  .p-recruit-background__visual-main {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    aspect-ratio: auto;
    border-radius: 0;
    object-position: center top;
  }
  .p-recruit-background__visual-sub {
    display: none;
  }
}
@media screen and (max-width: 486px) {
  .p-recruit-background {
    padding-top: max(80px, 80 / 1480 * min(100vw, 1920px));
  }
  .p-recruit-background__lead {
    font-size: clamp(2.6rem, 6.2vw, 3.2rem);
  }
}
@media screen and (max-width: 468px) {
  .p-recruit-background__lead {
    font-size: clamp(2.2rem, min(7vw, (100vw - 64px) / 14), 3.2rem);
    line-height: 1.85;
  }
  .p-recruit-background__lead-line {
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
  }
}
@media screen and (max-width: 350px) {
  .p-recruit-background__lead-line {
    white-space: normal;
  }
}

.p-recruit-traits {
  padding: 0;
}
.p-recruit-traits__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: max(59px, 59 / 1480 * min(100vw, 1920px));
  width: 100%;
  margin-inline: auto;
}
.p-recruit-traits__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.p-recruit-traits__list {
  display: flex;
  gap: max(18px, 18 / 1480 * min(100vw, 1920px));
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-recruit-traits__item {
  flex: 1 1 0;
  min-width: 0;
}
@media screen and (max-width: 1100px) {
  .p-recruit-traits {
    padding-inline: 0;
  }
  .p-recruit-traits__list {
    flex-wrap: wrap;
  }
  .p-recruit-traits__item {
    flex: 1 1 calc(50% - max(9px, 9 / 1480 * min(100vw, 1920px)));
  }
}
@media screen and (max-width: 768px) {
  .p-recruit-traits__list {
    flex-direction: column;
  }
  .p-recruit-traits__item {
    flex: 1 1 auto;
  }
}

.p-recruit-trait-card {
  display: flex;
  flex-direction: column;
  gap: max(16px, 16 / 1480 * min(100vw, 1920px));
  align-items: center;
  height: 100%;
  padding-bottom: max(18px, 18 / 1480 * min(100vw, 1920px));
  overflow: hidden;
  border: 0.5px solid var(--color-secondary);
  border-radius: max(11px, 11 / 1480 * min(100vw, 1920px));
  background: var(--color-white);
}
.p-recruit-trait-card__media {
  width: 100%;
  aspect-ratio: 160/90;
  overflow: hidden;
}
.p-recruit-trait-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.p-recruit-trait-card__media--cover img {
  object-position: center;
}
.p-recruit-trait-card__media--card-shot img {
  object-position: top;
}
.p-recruit-trait-card__body {
  display: flex;
  flex-direction: column;
  gap: max(8px, 8 / 1480 * min(100vw, 1920px));
  width: 100%;
  padding-inline: max(22px, 22 / 1480 * min(100vw, 1920px));
}
.p-recruit-trait-card__heading {
  display: flex;
  flex-direction: column;
  gap: max(7px, 7 / 1480 * min(100vw, 1920px));
  align-items: flex-start;
}
.p-recruit-trait-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: max(1px, 1 / 1480 * min(100vw, 1920px)) max(16px, 16 / 1480 * min(100vw, 1920px));
  border-radius: max(24px, 24 / 1480 * min(100vw, 1920px));
  background: var(--color-primary);
}
.p-recruit-trait-card__number span {
  font-family: var(--font-roboto);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-white);
}
.p-recruit-trait-card__title {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-secondary);
}
.p-recruit-trait-card__text {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-secondary);
}

.p-recruit-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding-top: min(max(133px, 133 / 1480 * min(100vw, 1920px)), 133px);
  overflow: visible;
}
.p-recruit-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: max(1605px, 1605 / 1480 * min(100vw, 1920px));
  height: max(368px, 368 / 1480 * min(100vw, 1920px));
  border-radius: 50%;
  background: var(--color-panel);
  pointer-events: none;
  transform: translateX(-50%);
}
@media screen and (min-width: 1921px) {
  .p-recruit-panel {
    padding-top: 8.9864864865vw;
  }
  .p-recruit-panel::before {
    width: 108.4459459459vw;
    height: 24.8648648649vw;
  }
}
.p-recruit-panel__surface {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: max(80px, 80 / 1480 * min(100vw, 1920px)) max(99px, 99 / 1480 * min(100vw, 1920px)) max(123px, 123 / 1480 * min(100vw, 1920px));
  background: var(--color-panel);
  overflow: visible;
}
.p-recruit-panel__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: max(96px, 96 / 1480 * min(100vw, 1920px));
  width: min(100%, min(max(1282px, 1282 / 1480 * min(100vw, 1920px)), 1282px));
  margin-inline: auto;
}
@media screen and (max-width: 1100px) {
  .p-recruit-panel {
    --panel-ellipse-width: min(130vw, max(1605px, 1605 / 1480 * min(100vw, 1920px)));
    padding-top: min(max(133px, 133 / 1480 * min(100vw, 1920px)), var(--panel-ellipse-width) * 368 / 1605);
  }
  .p-recruit-panel::before {
    width: var(--panel-ellipse-width);
    height: calc(var(--panel-ellipse-width) * 368 / 1605);
    aspect-ratio: auto;
  }
  .p-recruit-panel__surface {
    padding-inline: var(--gutter);
  }
}
@media screen and (max-width: 486px) {
  .p-recruit-panel {
    --panel-ellipse-width: min(150vw, max(1605px, 1605 / 1480 * min(100vw, 1920px)));
    padding-top: min(max(133px, 133 / 1480 * min(100vw, 1920px)), var(--panel-ellipse-width) * 368 / 1605);
  }
  .p-recruit-panel__surface {
    padding-top: max(56px, 56 / 1480 * min(100vw, 1920px));
    padding-bottom: max(80px, 80 / 1480 * min(100vw, 1920px));
  }
  .p-recruit-panel::before {
    width: var(--panel-ellipse-width);
    height: calc(var(--panel-ellipse-width) * 368 / 1605);
  }
  .p-recruit-panel__inner {
    gap: max(64px, 64 / 1480 * min(100vw, 1920px));
  }
}
@media screen and (max-width: 468px) {
  .p-recruit-panel {
    --panel-ellipse-width: min(160vw, max(1605px, 1605 / 1480 * min(100vw, 1920px)));
    padding-top: max(24px, 24 / 1480 * min(100vw, 1920px));
  }
  .p-recruit-panel::before {
    width: var(--panel-ellipse-width);
    height: calc(var(--panel-ellipse-width) * 368 / 1605);
  }
  .p-recruit-panel__inner {
    gap: max(40px, 40 / 1480 * min(100vw, 1920px));
  }
}

.p-recruit-flow {
  margin-top: 0;
  padding-block: max(32px, 32 / 1480 * min(100vw, 1920px));
  border: 1px solid var(--color-secondary);
  border-radius: max(14px, 14 / 1480 * min(100vw, 1920px));
  overflow: hidden;
  background: transparent;
}
.p-recruit-flow__layout {
  display: flex;
  align-items: stretch;
}
.p-recruit-flow__aside {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  flex-shrink: 0;
  width: max(306px, 306 / 1480 * min(100vw, 1920px));
  padding: max(32px, 32 / 1480 * min(100vw, 1920px)) max(16px, 16 / 1480 * min(100vw, 1920px));
}
.p-recruit-flow__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: max(6px, 6 / 1480 * min(100vw, 1920px));
}
.p-recruit-flow__nav {
  display: flex;
  justify-content: center;
  width: 100%;
}
.p-recruit-flow__nav-btn {
  display: grid;
  place-items: center;
  width: max(61px, 61 / 1480 * min(100vw, 1920px));
  height: max(61px, 61 / 1480 * min(100vw, 1920px));
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: opacity var(--transition-duration) var(--transition-ease);
}
.p-recruit-flow__nav-btn:hover {
  opacity: 0.85;
}
.p-recruit-flow__nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.p-recruit-flow__nav-btn + .p-recruit-flow__nav-btn {
  margin-left: max(10px, 10 / 1480 * min(100vw, 1920px));
}
.p-recruit-flow__nav-btn img {
  width: 100%;
  height: 100%;
}
.p-recruit-flow__viewport {
  flex: 1;
  min-width: 0;
}
.p-recruit-flow__viewport.splide .splide__track {
  box-sizing: border-box;
}
.p-recruit-flow__viewport.splide .splide__list {
  height: 100%;
  align-items: stretch;
}
.p-recruit-flow__viewport.splide .splide__slide {
  display: flex;
  height: 100%;
  box-sizing: border-box;
  opacity: 0.35;
  transition: opacity 0.4s ease;
}
.p-recruit-flow__viewport.splide .splide__slide.is-active {
  opacity: 1;
}
.p-recruit-flow__viewport.splide .p-recruit-flow-card {
  flex: 1;
  width: min(max(364px, 364 / 1480 * min(100vw, 1920px)), 364px);
  height: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 1100px) {
  .p-recruit-flow {
    border: 0;
  }
  .p-recruit-flow__layout {
    flex-direction: column;
    gap: max(32px, 32 / 1480 * min(100vw, 1920px));
  }
  .p-recruit-flow__aside {
    width: 100%;
    padding-inline: max(24px, 24 / 1480 * min(100vw, 1920px));
  }
  .p-recruit-flow__viewport.splide .splide__slide {
    height: auto;
  }
  .p-recruit-flow__viewport.splide .p-recruit-flow-card {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 1100px) and (min-width: 469px) {
  .p-recruit-flow__aside {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .p-recruit-flow__nav {
    flex-shrink: 0;
    width: auto;
    margin-top: 0;
    margin-left: auto;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 1100px) {
  .p-recruit-flow__head {
    flex-shrink: 0;
    width: fit-content;
    margin-top: 0;
    padding-left: 0;
    align-items: flex-start;
  }
  .p-recruit-flow .c-recruit-head__title {
    white-space: nowrap;
  }
}
@media screen and (max-width: 468px) {
  .p-recruit-flow {
    padding-top: 0;
    padding-bottom: max(16px, 16 / 1480 * min(100vw, 1920px));
    overflow: visible;
  }
  .p-recruit-flow__layout {
    gap: max(16px, 16 / 1480 * min(100vw, 1920px));
  }
  .p-recruit-flow__aside {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: max(16px, 16 / 1480 * min(100vw, 1920px));
    padding-block: 0;
    padding-inline: max(16px, 16 / 1480 * min(100vw, 1920px));
  }
  .p-recruit-flow__head {
    align-items: center;
    text-align: center;
  }
  .p-recruit-flow__nav {
    align-self: center;
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    justify-content: center;
  }
  .p-recruit-flow__viewport.splide {
    overflow: visible;
  }
}

.p-recruit-flow-card {
  display: flex;
  flex-direction: column;
  gap: max(22px, 22 / 1480 * min(100vw, 1920px));
  align-items: center;
  width: min(max(364px, 364 / 1480 * min(100vw, 1920px)), 364px);
  padding: max(32px, 32 / 1480 * min(100vw, 1920px)) max(24px, 24 / 1480 * min(100vw, 1920px)) max(40px, 40 / 1480 * min(100vw, 1920px));
  border: 1px solid #b4b4b4;
  border-radius: max(12px, 12 / 1480 * min(100vw, 1920px));
  background: var(--color-background);
}
.p-recruit-flow-card__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.p-recruit-flow-card__step {
  display: flex;
  align-items: baseline;
  gap: 0.08em;
  color: var(--color-primary);
  font-family: var(--font-roboto);
  font-weight: 700;
  line-height: 1.49;
}
.p-recruit-flow-card__step-label {
  font-size: 2.5rem;
}
.p-recruit-flow-card__step-num {
  font-size: 3.2rem;
}
.p-recruit-flow-card__title {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  color: var(--color-black);
}
.p-recruit-flow-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 316/192;
  overflow: hidden;
  border-radius: max(12px, 12 / 1480 * min(100vw, 1920px));
}
.p-recruit-flow-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-recruit-flow-card__text {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-secondary);
}
@media screen and (max-width: 486px) {
  .p-recruit-flow-card {
    flex-basis: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 468px) {
  .p-recruit-flow-card {
    padding: max(24px, 24 / 1480 * min(100vw, 1920px)) max(16px, 16 / 1480 * min(100vw, 1920px)) max(32px, 32 / 1480 * min(100vw, 1920px));
  }
}

.p-recruit-spec {
  position: relative;
  width: 100%;
  padding: 0;
}
.p-recruit-spec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(48px, 0.0540540541 * min(100vw, 1920px), 80px);
  background: var(--color-panel);
  pointer-events: none;
}
.p-recruit-spec__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: max(98px, 98 / 1480 * min(100vw, 1920px)) max(40px, 40 / 1480 * min(100vw, 1920px)) max(134px, 134 / 1480 * min(100vw, 1920px));
  border-radius: clamp(48px, 0.0540540541 * min(100vw, 1920px), 80px);
  background: var(--color-primary);
}
.p-recruit-spec__inner {
  display: flex;
  flex-direction: column;
  gap: max(52px, 52 / 1480 * min(100vw, 1920px));
  align-items: center;
  width: min(100%, min(max(1066px, 1066 / 1480 * min(100vw, 1920px)), 1066px));
  margin-inline: auto;
}
.p-recruit-spec__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--color-white);
}
.p-recruit-spec__head .c-recruit-head__label,
.p-recruit-spec__head .c-recruit-head__title {
  color: inherit;
}
.p-recruit-spec__list {
  display: flex;
  flex-direction: column;
  gap: max(12px, 12 / 1480 * min(100vw, 1920px));
  width: 100%;
  margin: 0;
}
.p-recruit-spec__row {
  display: flex;
  align-items: stretch;
  width: 100%;
  border-bottom: 1px dashed var(--color-white);
}
.p-recruit-spec__row dt,
.p-recruit-spec__row dd {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.8rem;
  line-height: 1.5;
  color: var(--color-white);
}
.p-recruit-spec__row dt {
  flex: 0 0 max(199px, 199 / 1480 * min(100vw, 1920px));
  padding: max(24px, 24 / 1480 * min(100vw, 1920px)) max(28px, 28 / 1480 * min(100vw, 1920px)) max(25px, 25 / 1480 * min(100vw, 1920px));
  font-weight: 700;
}
.p-recruit-spec__row dd {
  flex: 1 1 auto;
  min-width: 0;
  padding: max(21px, 21 / 1480 * min(100vw, 1920px)) max(28px, 28 / 1480 * min(100vw, 1920px)) max(21px, 21 / 1480 * min(100vw, 1920px)) max(18px, 18 / 1480 * min(100vw, 1920px));
  font-weight: 600;
}
.p-recruit-spec__cell {
  display: flex;
  flex-direction: column;
  gap: max(8px, 8 / 1480 * min(100vw, 1920px));
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-recruit-spec__cell li {
  margin: 0;
}
.p-recruit-spec__cell li::before {
  content: "・";
}
.p-recruit-spec__note {
  color: #fa0000;
}
@media screen and (max-width: 1100px) {
  .p-recruit-spec::before {
    height: 48px;
  }
  .p-recruit-spec__panel {
    padding-inline: var(--gutter);
    border-radius: 48px;
  }
  .p-recruit-spec .c-recruit-head__title {
    font-size: clamp(4.8rem, 8vw, 7.2rem);
  }
}
@media screen and (max-width: 768px) {
  .p-recruit-spec::before {
    height: 32px;
  }
  .p-recruit-spec__panel {
    padding: max(64px, 64 / 1480 * min(100vw, 1920px)) var(--gutter) max(80px, 80 / 1480 * min(100vw, 1920px));
    border-radius: 32px;
  }
  .p-recruit-spec .c-recruit-head__title {
    font-size: clamp(4.8rem, 12vw, 7.2rem);
  }
  .p-recruit-spec dd, .p-recruit-spec__cell li {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}
@media screen and (max-width: 486px) {
  .p-recruit-spec::before {
    height: 24px;
  }
  .p-recruit-spec__panel {
    border-radius: 24px;
  }
  .p-recruit-spec__row {
    flex-direction: column;
  }
  .p-recruit-spec__row dt {
    flex-basis: auto;
    padding-bottom: max(8px, 8 / 1480 * min(100vw, 1920px));
    border-bottom: 1px dashed rgba(255, 255, 255, 0.35);
  }
  .p-recruit-spec__row dd {
    padding-top: max(12px, 12 / 1480 * min(100vw, 1920px));
    padding-left: max(28px, 28 / 1480 * min(100vw, 1920px));
  }
}
@media screen and (max-width: 468px) {
  .p-recruit-spec__panel {
    padding-bottom: max(56px, 56 / 1480 * min(100vw, 1920px));
  }
  .p-recruit-spec__list {
    gap: 0;
  }
  .p-recruit-spec__row {
    border-bottom: none;
  }
  .p-recruit-spec__row dt,
  .p-recruit-spec__row dd {
    padding-inline: 0;
  }
  .p-recruit-spec__cell {
    display: block;
    padding-left: 1.2em;
    list-style: disc;
    list-style-position: outside;
  }
  .p-recruit-spec__cell li + li {
    margin-top: max(8px, 8 / 1480 * min(100vw, 1920px));
  }
  .p-recruit-spec__cell li::before {
    content: none;
  }
}

.p-recruit-selection {
  padding: max(80px, 80 / 1480 * min(100vw, 1920px)) max(100px, 100 / 1480 * min(100vw, 1920px)) max(120px, 120 / 1480 * min(100vw, 1920px));
  background: var(--color-cream);
}
.p-recruit-selection__inner {
  display: flex;
  flex-direction: column;
  gap: max(48px, 48 / 1480 * min(100vw, 1920px));
  align-items: center;
  width: min(100%, min(max(1281px, 1281 / 1480 * min(100vw, 1920px)), 1281px));
  margin-inline: auto;
}
.p-recruit-selection__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.p-recruit-selection__columns {
  display: flex;
  gap: 1px;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .p-recruit-selection {
    padding-inline: var(--gutter);
  }
  .p-recruit-selection__inner {
    width: min(100%, min(max(1281px, 1281 / 1480 * min(100vw, 1920px)), 1281px));
  }
  .p-recruit-selection .c-recruit-head__title {
    font-size: clamp(4.8rem, 8vw, 7.2rem);
  }
  .p-recruit-selection__columns {
    flex-direction: column;
    gap: max(32px, 32 / 1480 * min(100vw, 1920px));
  }
}
@media screen and (max-width: 768px) {
  .p-recruit-selection .c-recruit-head__title {
    font-size: clamp(4.8rem, 12vw, 7.2rem);
  }
}
@media screen and (max-width: 486px) {
  .p-recruit-selection {
    padding-top: max(56px, 56 / 1480 * min(100vw, 1920px));
    padding-bottom: max(80px, 80 / 1480 * min(100vw, 1920px));
  }
}
@media screen and (max-width: 468px) {
  .p-recruit-selection__columns {
    gap: max(24px, 24 / 1480 * min(100vw, 1920px));
  }
}

.p-recruit-selection-col {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  gap: max(34px, 34 / 1480 * min(100vw, 1920px));
  align-items: center;
  min-width: 0;
  border-right: 1px dashed var(--color-secondary);
}
.p-recruit-selection-col--first {
  border-left: 1px dashed var(--color-secondary);
}
.p-recruit-selection-col__media {
  width: 100%;
  height: max(261px, 261 / 1480 * min(100vw, 1920px));
  overflow: hidden;
}
.p-recruit-selection-col__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-recruit-selection-col__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: max(36px, 36 / 1480 * min(100vw, 1920px));
  align-items: center;
  width: 100%;
  padding-inline: max(36px, 36 / 1480 * min(100vw, 1920px));
}
.p-recruit-selection-col__content {
  display: flex;
  flex-direction: column;
  gap: max(11px, 11 / 1480 * min(100vw, 1920px));
  align-items: center;
  width: 100%;
  text-align: center;
}
.p-recruit-selection-col__title {
  font-family: var(--font-body);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.8;
  color: #333;
}
.p-recruit-selection-col__text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
  color: #333;
}
.p-recruit-selection-col__emphasis {
  color: #e95e5f;
}
@media screen and (max-width: 1100px) {
  .p-recruit-selection-col {
    border-left: 0;
    border-right: 0;
    border-top: 1px dashed var(--color-secondary);
    padding-top: max(32px, 32 / 1480 * min(100vw, 1920px));
  }
  .p-recruit-selection-col--first {
    border-top: 0;
    padding-top: 0;
  }
}
@media screen and (max-width: 486px) {
  .p-recruit-selection-col__body {
    padding-inline: max(20px, 20 / 1480 * min(100vw, 1920px));
  }
  .p-recruit-selection-col__title {
    font-size: clamp(2.4rem, 6vw, 3.2rem);
  }
}
@media screen and (max-width: 468px) {
  .p-recruit-selection-col {
    gap: max(20px, 20 / 1480 * min(100vw, 1920px));
  }
  .p-recruit-selection-col__media {
    border-radius: max(8px, 8 / 1480 * min(100vw, 1920px));
  }
}

.p-recruit-selection-point {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: max(10px, 10 / 1480 * min(100vw, 1920px));
  align-items: center;
  width: 100%;
  margin-top: auto;
  padding: max(21px, 21 / 1480 * min(100vw, 1920px)) max(14px, 14 / 1480 * min(100vw, 1920px)) max(17px, 17 / 1480 * min(100vw, 1920px));
  border-radius: max(4px, 4 / 1480 * min(100vw, 1920px));
  background: var(--color-white);
  text-align: center;
}
.p-recruit-selection-point__badge {
  position: absolute;
  top: max(-18px, -18 / 1480 * min(100vw, 1920px));
  left: 50%;
  margin: 0;
  padding: 0 max(14px, 14 / 1480 * min(100vw, 1920px));
  border-radius: max(34px, 34 / 1480 * min(100vw, 1920px));
  background: var(--color-primary);
  font-family: var(--font-roboto);
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-white);
  transform: translateX(-50%);
}
.p-recruit-selection-point__text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.72;
  color: var(--color-secondary);
}
@media screen and (max-width: 468px) {
  .p-recruit-selection-point {
    padding-top: max(28px, 28 / 1480 * min(100vw, 1920px));
  }
  .p-recruit-selection-point__badge {
    top: 0;
    transform: translate(-50%, -50%);
  }
}

.p-news-archive {
  padding: max(48px, 48 / 1480 * min(100vw, 1920px)) max(40px, 40 / 1480 * min(100vw, 1920px)) max(96px, 96 / 1480 * min(100vw, 1920px));
}
.p-news-archive__inner {
  width: min(100%, var(--content-narrow));
  margin-inline: auto;
}
.p-news-archive__list-wrap {
  display: flex;
  flex-direction: column;
  gap: max(40px, 40 / 1480 * min(100vw, 1920px));
}
.p-news-archive__list {
  width: 100%;
  margin-inline: auto;
}
.p-news-archive__pagination {
  display: flex;
  justify-content: center;
}
.p-news-archive__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: max(40px, 40 / 1480 * min(100vw, 1920px));
  height: max(40px, 40 / 1480 * min(100vw, 1920px));
  padding-inline: max(12px, 12 / 1480 * min(100vw, 1920px));
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
}
.p-news-archive__pagination .page-numbers.current {
  color: var(--color-primary);
}
.p-news-archive__pagination .page-numbers:hover, .p-news-archive__pagination .page-numbers:focus-visible {
  color: var(--color-primary);
}
.p-news-archive__empty {
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-news-archive {
    padding-inline: var(--gutter);
  }
}

.p-news-single {
  padding: max(48px, 48 / 1480 * min(100vw, 1920px)) max(40px, 40 / 1480 * min(100vw, 1920px)) max(96px, 96 / 1480 * min(100vw, 1920px));
}
.p-news-single__inner {
  width: min(100%, min(max(770px, 770 / 1480 * min(100vw, 1920px)), 770px));
  margin-inline: auto;
}
.p-news-single__header {
  display: flex;
  flex-direction: column;
  gap: max(16px, 16 / 1480 * min(100vw, 1920px));
  padding-bottom: max(24px, 24 / 1480 * min(100vw, 1920px));
  margin-bottom: max(32px, 32 / 1480 * min(100vw, 1920px));
  border-bottom: 1px solid var(--color-nature-400);
}
.p-news-single__date {
  color: var(--color-nature-500);
  font-family: var(--font-roboto);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
}
.p-news-single__title {
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
}
.p-news-single__thumbnail {
  margin-bottom: max(32px, 32 / 1480 * min(100vw, 1920px));
  overflow: hidden;
  border-radius: max(8px, 8 / 1480 * min(100vw, 1920px));
}
.p-news-single__thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}
.p-news-single__content {
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8;
}
.p-news-single__content > * + * {
  margin-top: 1.6rem;
}
.p-news-single__content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.p-news-single__content img {
  max-width: 100%;
  height: auto;
}
.p-news-single__nav {
  display: flex;
  justify-content: space-between;
  gap: max(24px, 24 / 1480 * min(100vw, 1920px));
  margin-top: max(64px, 64 / 1480 * min(100vw, 1920px));
  padding-top: max(32px, 32 / 1480 * min(100vw, 1920px));
  border-top: 1px solid var(--color-nature-400);
}
.p-news-single__nav-link {
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.8;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.15em;
}
.p-news-single__nav-link:hover, .p-news-single__nav-link:focus-visible {
  color: var(--color-primary);
  text-decoration-color: currentColor;
}
@media screen and (max-width: 768px) {
  .p-news-single {
    padding-inline: var(--gutter);
  }
  .p-news-single__title {
    font-size: clamp(1.8rem, 4.5vw, 2.4rem);
  }
}

.page-news-single .p-page-subhead__breadcrumb-list li:nth-child(3) a {
  color: inherit;
}

.p-error {
  padding: max(48px, 48 / 1480 * min(100vw, 1920px)) max(40px, 40 / 1480 * min(100vw, 1920px)) max(96px, 96 / 1480 * min(100vw, 1920px));
}
.p-error__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: max(24px, 24 / 1480 * min(100vw, 1920px));
  width: min(100%, var(--content-narrow));
  margin-inline: auto;
  text-align: center;
}
.p-error__lead {
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
}
.p-error__text {
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8;
}
.p-error .c-button {
  margin-top: max(16px, 16 / 1480 * min(100vw, 1920px));
}
@media screen and (max-width: 768px) {
  .p-error {
    padding-inline: var(--gutter);
  }
}

.p-privacy {
  padding: max(48px, 48 / 1480 * min(100vw, 1920px)) max(40px, 40 / 1480 * min(100vw, 1920px)) max(96px, 96 / 1480 * min(100vw, 1920px));
}
.p-privacy__inner {
  width: min(100%, min(max(770px, 770 / 1480 * min(100vw, 1920px)), 770px));
  margin-inline: auto;
}
.p-privacy__content {
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8;
}
.p-privacy__content > * + * {
  margin-top: 1.6rem;
}
.p-privacy__content a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.p-privacy__heading {
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  padding-bottom: max(24px, 24 / 1480 * min(100vw, 1920px));
  margin-bottom: max(8px, 8 / 1480 * min(100vw, 1920px));
  border-bottom: 1px solid var(--color-nature-400);
}
.p-privacy__article-title {
  color: var(--color-secondary);
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  margin-top: max(40px, 40 / 1480 * min(100vw, 1920px));
}
.p-privacy__list {
  padding-left: 1.6em;
  list-style: decimal;
}
.p-privacy__list > li + li {
  margin-top: 0.8rem;
}
.p-privacy__sublist {
  padding-left: 1.4em;
  margin-top: 0.8rem;
  list-style: disc;
}
.p-privacy__sublist > li + li {
  margin-top: 0.4rem;
}
.p-privacy__contact {
  display: flex;
  flex-direction: column;
  gap: max(12px, 12 / 1480 * min(100vw, 1920px));
  margin-top: max(8px, 8 / 1480 * min(100vw, 1920px));
}
.p-privacy__contact-row {
  display: grid;
  grid-template-columns: max(80px, 80 / 1480 * min(100vw, 1920px)) 1fr;
  gap: max(16px, 16 / 1480 * min(100vw, 1920px));
  align-items: baseline;
}
.p-privacy__contact-row dt {
  font-weight: 700;
}
.p-privacy__contact-row dd {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .p-privacy {
    padding-inline: var(--gutter);
  }
  .p-privacy__heading {
    font-size: clamp(1.8rem, 4.5vw, 2.4rem);
  }
  .p-privacy__article-title {
    font-size: clamp(1.7rem, 4vw, 2rem);
  }
  .p-privacy__contact-row {
    grid-template-columns: 6rem 1fr;
  }
}

.u-visually-hidden,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media screen and (max-width: 468px) {
  body {
    font-size: max(var(--body-font-size-min), 1.6rem);
    line-height: var(--body-line-height-sp-xs);
  }
  main p:not([class*=__heading]):not([class*=__lead]),
  main li,
  main dd,
  main p[class]:not([class*=__heading]):not([class*=__lead]),
  main [class*=__text],
  main [class*=__lead-text],
  main [class*=__card-copy],
  main [class*=__signature] {
    font-size: max(var(--body-font-size-min), 1em);
    line-height: var(--body-line-height-sp-xs);
  }
}
